@charset "UTF-8";
/* ==========================
 Variables
========================== */
/* Microsoft Jhenghei 400, 700 */
/* tab */
/* Column */
/* Import
----------------------------- */
/* 'Rubik' */
@import url("https://fonts.googleapis.com/css?family=Rubik:400");
/* 'Crimson Text' */
/* 'Noto Sans TC' */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap");
/* Microsoft Jhenghei 400, 700
----------------------------------------------- */
/* tab */
/* Column */
/* ==========================
 Mixins
========================== */
/* ==========================
 Middle Part
========================== */
/* ================================
Variables, Functions & Mixins 
================================ */
/*no transiton*/
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
.bgi_16x9 {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.bgi_4x3 {
  width: 100%;
  padding: 0;
  padding-top: 75%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

/* -------------------------------------------------------------
  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

  https://github.com/matthieua/sass-css3-mixins

------------------------------------------------------------- */
@keyframes owlPrev {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(-8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes owlNext {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* --------------------------
2018.11.07 - Edit scrollbar
-------------------------- */
/* Button Mixins */
/* Arrow Right */
.btn_arrow_r {
  display: block;
  position: relative;
  color: white;
  text-align: right;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
}
.btn_arrow_r:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 1.5em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  color: white;
  top: calc(50% - 0.5em);
  right: 0.25em;
}
@media screen and (min-width: 0) and (min-resolution: 72dpi) {
  .btn_arrow_r:before {
    font-size: 20px;
  }
}
.btn_arrow_r:hover, .btn_arrow_r:focus {
  color: white;
}
.btn_arrow_r:hover:before, .btn_arrow_r:focus:before {
  -webkit-animation: arrowR 1s both infinite;
  -khtml-animation: arrowR 1s both infinite;
  -moz-animation: arrowR 1s both infinite;
  -ms-animation: arrowR 1s both infinite;
  -o-animation: arrowR 1s both infinite;
  animation: arrowR 1s both infinite;
}

@keyframes arrowR {
  from {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
  50% {
    -webkit-transform: translateX(0.1em);
    -khtml-transform: translateX(0.1em);
    -moz-transform: translateX(0.1em);
    -ms-transform: translateX(0.1em);
    -o-transform: translateX(0.1em);
    transform: translateX(0.1em);
  }
  to {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
}
.btn_arrow_btm {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
.btn_arrow_btm:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #1bc7ed;
  bottom: 0;
  left: calc(50% - 6px);
}
.btn_arrow_btm:hover {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
}
.btn_arrow_btm:hover:before {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
  animation-name: arrowBtm;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes arrowBtm {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* Button Cornoer Right Bottom */
.btn_corner_rbtm {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 70px;
  border-color: transparent transparent #1bc7ed transparent;
  margin: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
  position: absolute;
  right: 0px;
  top: 2.5em;
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #727272;
  width: 50px;
  font-size: 12px;
  font-weight: 500;
}
.btn_corner_rbtm:hover {
  border-color: transparent transparent #4ad3f1 transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #1bc7ed;
  border-bottom: 1px dotted #1bc7ed;
}
.btn_dashed:hover, .btn_icon_dashed:hover {
  color: #2b0066;
  border-bottom-style: dashed;
}

.btn_icon_dashed {
  margin: 60px 10px;
}
.btn_icon_dashed:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/common/icon_btn_id.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 50px);
  left: -20px;
  z-index: -1;
  color: #1bc7ed;
}

.btn_ghost {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 0.5em;
  border: 1px solid;
  padding-right: 40px;
}
.btn_ghost:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
.btn_ghost {
  border-color: #1bc7ed;
  background-color: transparent;
  color: #1bc7ed;
}
.btn_ghost:before {
  color: #1bc7ed;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #1bc7ed;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #4d4d4d;
  background-color: transparent;
  color: #4d4d4d;
}
.btn_ghost.main-text:before {
  color: #4d4d4d;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #4d4d4d;
}
.btn_ghost.main-text:hover:before {
  color: #fff;
}
.btn_ghost.reverse {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn_ghost.reverse:before {
  color: #fff;
}
.btn_ghost.reverse:hover {
  color: #4d4d4d;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #4d4d4d;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #1bc7ed;
  margin: 0 10px;
}
.btn_tilt_arrow:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 0.5em);
  right: 10px;
  color: #1bc7ed;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #1bc7ed;
  background-color: transparent;
  -webkit-transform: skew(20deg);
  -khtml-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
  z-index: -1;
}
.btn_tilt_arrow:hover {
  color: #fff;
}
.btn_tilt_arrow:hover:after {
  border-color: transparent;
  background-color: #1bc7ed;
}
.btn_tilt_arrow:hover:before {
  color: #fff;
}

/* Button Action */
.btn_action {
  display: inline-block;
  padding: 3px 5px;
  margin: 2px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1em;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  border: 1px solid #1bc7ed;
  background-color: #1bc7ed;
}
.btn_action:hover, .btn_action:focus {
  background-color: #10a5c5;
  border-color: #10a5c5;
}
.btn_action:hover, .btn_action:focus {
  color: #fff;
}
.btn_action.full {
  border: 1px solid #1bc7ed;
  background-color: #1bc7ed;
}
.btn_action.full:hover, .btn_action.full:focus {
  background-color: #10a5c5;
  border-color: #10a5c5;
}
.btn_action i {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.btn_action.warning {
  border: 1px solid rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.btn_action.warning:hover, .btn_action.warning:focus {
  background-color: rgba(160, 114, 0, 0.65);
  border-color: rgba(160, 114, 0, 0.65);
}
.btn_action.danger {
  border: 1px solid rgba(245, 105, 84, 0.5);
  background-color: rgba(245, 105, 84, 0.5);
}
.btn_action.danger:hover, .btn_action.danger:focus {
  background-color: rgba(242, 63, 36, 0.5);
  border-color: rgba(242, 63, 36, 0.5);
}
.btn_action.outline {
  border: 1px solid #1bc7ed;
  background-color: transparent;
  color: #1bc7ed;
}
.btn_action.outline:hover {
  background-color: #1bc7ed;
  color: white;
}

/* --------------------------
2018.10.03 - Add _lang
2018.11.07 - Edit _scrollbar
           - Add _fonts
           - Edit _custom
2018.11.08 - Edit _custom
2018.11.09 - Edit _custom
           - Add _buttons
2018.11.29 - Add _gridSystem

-------------------------- */
/* ==========================
 Middle Part
========================== */
/* Setting
=============== */
body {
  -webkit-font-smoothing: antialiased;
  color: #4d4d4d;
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
}
body.lang-2nd {
  font-family: "Microsoft Jhenghei", sans-serif;
}

button {
  line-height: 1em;
  background-color: transparent;
  border: 0;
  padding: 0;
}

button:hover,
button:active,
button:focus {
  outline: unset;
}

img {
  -webkit-backface-visibility: hidden;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

input[type=submit] {
  width: auto;
}

input[type=button],
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea,
input[type=submit] {
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

iframe {
  border: 0;
}

.sound iframe {
  width: 100%;
}

a, a:before, a:after,
a *, a *:before, a *:after {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/* Highlight
------------------------ */
::selection {
  color: #1bc7ed;
  background: rgba(0, 0, 0, 0.05);
}

::-moz-selection {
  color: #1bc7ed;
  background: rgba(0, 0, 0, 0.05);
}

body {
  line-height: 1.5em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  text-transform: unset;
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

h1, .h1,
h2, .h2 {
  font-weight: 500;
}
@media (max-width: 767px ) {
  h1, .h1,
h2, .h2 {
    font-weight: 500;
  }
}

p, .p {
  margin: 0em 0;
  line-height: 1.8em;
}

code, kbd, pre, samp {
  font-family: inherit;
}

/* Desktop Font Size
--------------------- */
body {
  font-size: 14px;
  line-height: 1.5em;
}

h1, .h1 {
  font-size: 24.5px;
}

h2, .h2 {
  font-size: 22.96875px;
  letter-spacing: 2px;
}

h3, .h3 {
  font-size: 21px;
  letter-spacing: 2px;
}

h4, .h4 {
  font-size: 17.5px;
}

h5, .h5 {
  font-size: 15.75px;
}

h6, .h6 {
  font-size: 14px;
}

p, .p {
  font-size: 14px;
  letter-spacing: 2px;
}

a {
  font-size: inherit;
  letter-spacing: 1px;
}

li {
  font-size: 14px;
  letter-spacing: 2px;
}

span {
  letter-spacing: 2px;
}

code, kbd, pre, samp {
  font-size: 14px;
}

input,
textarea,
select,
option,
.btn {
  font-size: 14px;
}

/* Input
------------ */
/* Mobile Font Size
--------------------- */
@media (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.5em;
  }

  h1, .h1 {
    font-size: 21.125px;
  }

  h2, .h2 {
    font-size: 19.8046875px;
    letter-spacing: 2px;
  }

  h3, .h3 {
    font-size: 19.5px;
    letter-spacing: 2px;
  }

  h4, .h4 {
    font-size: 16.25px;
  }

  h5, .h5 {
    font-size: 14.625px;
  }

  h6, .h6 {
    font-size: 13px;
  }

  p, .p {
    font-size: 13px;
    letter-spacing: 2px;
  }

  a {
    font-size: inherit;
    letter-spacing: 1px;
  }

  li {
    font-size: 13px;
    letter-spacing: 2px;
  }

  span {
    letter-spacing: 2px;
  }

  code, kbd, pre, samp {
    font-size: 13px;
  }

  input,
textarea,
select,
option,
.btn {
    font-size: 13px;
  }

  /* Input
  ------------ */
}
/* Plugin Fix
=============== */
a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* Grid System
----------------- */
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.container {
  padding: 0 8px;
}
.container.wide {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1199px ) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px ) {
  .container {
    width: 1200px;
  }
  .container.wide {
    width: 1400px;
  }
}

[class*=col-lg], [class*=col-md], [class*=col-sm], [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}

.row {
  margin: 0;
}

/* Components
-------------------- */
/* nav-tabs
------------- */
.nav-tabs > li > a {
  line-height: 1em;
  padding: 12px;
}

/* breadcrumb
------------- */
.breadcrumb {
  background-color: transparent;
  padding: 6px 0;
  margin: 0;
}
.breadcrumb:after, .breadcrumb:before {
  content: "";
  display: block;
  clear: both;
}
.breadcrumb li, .breadcrumb a {
  line-height: 1em;
}
.breadcrumb li {
  font-size: 0.8em;
  display: block;
  float: left;
  position: relative;
}
.breadcrumb > li + li {
  padding-left: 20px;
}
.breadcrumb > li + li:before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.breadcrumb a {
  display: block;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* alert
------------- */
.alert {
  padding: 5px;
  margin-bottom: 10px;
}

/* Button
------------- */
.btn:hover, .btn:hover:hover, .btn:active, .btn:active:hover, .btn:focus, .btn:focus:hover {
  outline: none;
}

/* Custom Float Class
-------------------- */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

@media (max-width: 767px) {
  .xs-pull-right {
    float: right;
  }

  .xs-pull-left {
    float: left;
  }

  .xs-pull-none {
    float: none !important;
  }
}
@media (max-width: 575px) {
  .xxs-pull-right {
    float: right;
  }

  .xxs-pull-left {
    float: left;
  }

  .xxs-pull-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .sm-pull-right {
    float: right;
  }

  .sm-pull-left {
    float: left;
  }

  .sm-float-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .md-pull-right {
    float: right;
  }

  .md-pull-left {
    float: left;
  }

  .md-float-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .lg-pull-right {
    float: right;
  }

  .lg-pull-left {
    float: left;
  }

  .lg-float-none {
    float: none !important;
  }
}
/* Custom Column Width
------------------- */
@media (max-width: 575px ) {
  .col-xxs-3 {
    width: 25%;
  }

  .col-xxs-4 {
    width: 33.3333333333%;
  }

  .col-xxs-6 {
    width: 50%;
  }

  .col-xxs-9 {
    width: 75%;
  }

  .col-xxs-12 {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-only-w-100 {
    width: 100%;
  }
}
.tab:after, .tab:before {
  content: "";
  display: block;
  clear: both;
}
.tab > li {
  float: left;
  display: block;
}
.tab > li.active a {
  background-color: #eee;
}
.tab a {
  display: block;
  line-height: 1em;
}

/*-- Responsive Robot --*/
@media screen and (max-height: 575px) {
  #rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
.fb-page blockquote {
  border: 0;
  display: none;
}

.wow {
  visibility: hidden;
}

.no-animation {
  visibility: visible;
}

/* ---------------------
Multiple
--------------------- */
.select2-multiple-skin .select2-selection--multiple {
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .select2-multiple-skin .select2-selection--multiple {
    min-height: calc(1.8em + 20px);
  }
}
.select2-multiple-skin .select2-selection--multiple ul.select2-selection__rendered {
  display: block;
  padding: 5px 2px;
  padding-right: 30px;
}
.select2-multiple-skin .select2-selection--multiple ul.select2-selection__rendered li {
  height: 22px;
}
.select2-multiple-skin .select2-selection--multiple .select2-selection__choice {
  margin: 1px;
}
@media (max-width: 767px) {
  .select2-multiple-skin .select2-selection--multiple .select2-selection__choice {
    margin: 3px 2px;
  }
}
.select2-multiple-skin .select2-container {
  width: 100% !important;
}
.select2-multiple-skin .select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.modal-dialog.custom {
  max-width: 400px;
  margin: 30px auto;
}
@media (max-width: 575px) {
  .modal-dialog.custom {
    max-width: unset;
  }
}

.modal-body .row {
  margin: 0;
}
.modal-body [class*=col-lg],
.modal-body [class*=col-md],
.modal-body [class*=col-sm],
.modal-body [class*=col-xs] {
  padding: 8px;
}

/* Components
=============== */
/* Owl Carousel Default */
.owl-carousel .owl-item:hover {
  z-index: 2;
}
.owl-carousel .content {
  display: block;
  text-align: left;
  position: relative;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #1bc7ed;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #1bc7ed;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.owl-carousel .owl-nav [class*=owl-] {
  position: relative;
  color: #fff;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 50px;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 1;
}
.owl-carousel .owl-nav [class*=owl-] i {
  line-height: 50px;
}
.owl-carousel .owl-nav [class*=owl-].disabled, .owl-carousel .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.owl-carousel .owl-prev {
  left: 10px;
}
.owl-carousel .owl-prev i {
  margin-right: 5px;
}
.owl-carousel .owl-next {
  right: 10px;
}
.owl-carousel .owl-next i {
  margin-left: 5px;
}
.owl-carousel .owl-nav {
  opacity: 0;
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-dots {
  position: absolute;
}

.big-images {
  margin-bottom: 4px;
}

/* Row Wrapper
------------------- */
.row_wrapper {
  overflow: hidden;
}

/* tag */
/* tag */
.tag {
  display: inline-block;
  padding: 5px;
  margin: 2px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  border-radius: 4px;
  border: 1px;
  border-style: solid;
  color: #fff !important;
  text-align: center;
  white-space: nowrap;
  text-indent: 0;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
.tag {
  border-color: #ffae32;
  background-color: #ffae32;
}
.tag.success {
  border-color: rgba(110, 196, 80, 0.65);
  background-color: rgba(110, 196, 80, 0.65);
}
.tag.info {
  border-color: rgba(42, 178, 183, 0.65);
  background-color: rgba(42, 178, 183, 0.65);
}
.tag.warning {
  border-color: rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.tag.danger {
  border-color: rgba(242, 63, 36, 0.6);
  background-color: rgba(242, 63, 36, 0.6);
}
.tag[disabled=true] {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.disabled {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.outline.white {
  border-color: white;
  background-color: transparent;
  color: white;
}

a.tag:hover, button.tag:hover {
  opacity: 0.6;
  color: #fff;
}

.tag_icon {
  margin: 0;
  padding: 0;
  font-size: 11px;
  display: inline-block;
  padding-right: 8px;
  text-align: left;
  color: #727272;
}
.tag_icon:before {
  content: "";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  color: #1bc7ed;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 8px;
}
.tag_icon:hover {
  text-decoration: underline;
  color: #727272;
}

/* pagination */
/*--- pagination ---*/
.pagination {
  margin: 10px 0;
}
.pagination li {
  text-align: center;
}
.pagination li a {
  font-size: 16px;
  padding: 4px 8px;
  min-width: 29px;
  display: inline-block;
  border: none;
  margin: 0 2px;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  background-color: transparent;
  color: #001a29;
}
.pagination li a:hover, .pagination li a:focus {
  background-color: rgba(27, 199, 237, 0.05);
  color: inherit;
  border-bottom: 3px solid #001a29;
}
.pagination li.active a, .pagination li.active a:hover, .pagination li.active a:focus, .pagination li.active a.active {
  background-color: transparent;
  color: inherit;
  border-bottom: 3px solid #001a29;
}

/* Button */
a {
  color: #0275d8;
}

a:hover, a:focus {
  color: #0275d8;
}

.underline,
.hover_underline,
.underline_blue,
.hover_underline_blue,
.underline_highlight,
.underline_highlight,
.hover_underline_highlight {
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.underline {
  color: #1bc7ed;
}
.underline:hover {
  color: #0275d8;
  text-decoration: underline;
  opacity: 1;
}

.hover_underline {
  color: inherit;
  text-decoration: none;
}
.hover_underline:hover {
  color: inherit;
  text-decoration: underline;
}

.underline_blue {
  color: #0275d8;
}
.underline_blue:hover {
  color: inherit;
  text-decoration: underline;
}

.hover_underline_blue {
  text-decoration: none;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
.hover_underline_blue:hover {
  color: #0275d8;
  text-decoration: underline;
}

.underline_highlight {
  color: #0275d8;
}
.underline_highlight:hover {
  color: inherit;
  text-decoration: underline;
}

.hover_underline_highlight {
  text-decoration: none;
}
.hover_underline_highlight:hover {
  color: #0275d8;
  text-decoration: underline;
}

/* Bootstrap Button
-------------- */
.btn-theme {
  background-color: #1bc7ed;
  border-color: #11b8dd;
  color: white;
}
.btn-theme:hover, .btn-theme:hover:hover, .btn-theme:hover:active, .btn-theme:hover:focus, .btn-theme:active, .btn-theme:active:hover, .btn-theme:active:active, .btn-theme:active:focus, .btn-theme:focus, .btn-theme:focus:hover, .btn-theme:focus:active, .btn-theme:focus:focus {
  color: white;
  background-color: #11b8dd;
  border-color: #10a5c5;
}

/* Button Main */
.btn_main {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #1bc7ed;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-radius: 0;
  background-color: transparent;
}
.btn_main:hover, .btn_main:focus {
  color: white;
  background-color: #11b8dd;
}
.btn_main.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_main.radius {
  border-radius: 30px;
}
.btn_main.reverse {
  background-color: white;
  color: #1bc7ed;
}

.btn_main, .btn_special {
  white-space: nowrap;
}

/* Btn Wrapper
-------------- */
.btn_wr .btn_main, .btn_wr .btn_special {
  display: inline-block;
}

/* 2018.10.01 */
/* Marquee */
.abgne_marquee_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-color: #1bc7ed;
}

#abgne_marquee {
  height: 31px;
  position: relative;
  overflow: hidden;
  /* RWD */
}
#abgne_marquee ul {
  position: absolute;
  width: 100%;
  height: 100%;
}
#abgne_marquee ul li {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
  color: #fff;
}
#abgne_marquee ul .td {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  width: 100%;
  padding: 0 12px;
}
#abgne_marquee a {
  color: inherit;
}
#abgne_marquee a:hover, #abgne_marquee a:focus {
  text-decoration: underline;
}
/* Blocky */
/* 2018.10.11 */
.blocky_container {
  padding: 8px;
}
.blocky_container > [class*=col-lg], .blocky_container > [class*=col-md], .blocky_container > [class*=col-sm], .blocky_container > [class*=col-xs] {
  padding: 8px;
}

.blocky {
  border-radius: 4px;
  background-color: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
}
.blocky.highlight {
  border: 2px dotted #1bc7ed;
}
.blocky .blocky_body {
  padding: 8px;
}
.blocky .blocky_body:after, .blocky .blocky_body:before {
  content: "";
  display: block;
  clear: both;
}
.blocky .blocky_body.article {
  padding: 8px 16px 16px;
}
.blocky .blocky_body.min-medium {
  min-height: 300px;
}
.blocky .blocky_body.padding-large {
  padding: 16px;
}
.blocky .blocky_footer {
  padding: 16px;
  text-align: right;
  border-top: 1px solid #e1e1e1;
}
.blocky .blocky_footer.padding-small {
  padding: 8px;
}
.blocky .date {
  margin: 0;
  line-height: 24px;
}
.blocky .thumb {
  width: 80px;
}
.blocky .dv_line {
  position: relative;
  border-top: 1px solid #e1e1e1;
}
.blocky .dv_line.m-tb {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* margin */
.blocky {
  margin-bottom: 15px;
}

/* no border */
.blocky.no-border {
  border: 0;
}

.blocky .blocky_body.form_table {
  padding: 0;
}

/* blocky_header */
.blocky_header {
  padding: 8px 8px;
  border-bottom: 1px solid #001a29;
  color: white;
  background-color: #001a29;
}

.blocky_header {
  border-top: 1px solid #e1e1e1;
}
.blocky_header:nth-child(1) {
  border-top: 0;
}

/* blocky_header Component */
.blocky_header:after, .blocky_header:before {
  content: "";
  display: block;
  clear: both;
}
.blocky_header h1, .blocky_header h2, .blocky_header h3, .blocky_header h4, .blocky_header .title {
  float: left;
}
.blocky_header .align-center {
  width: 100%;
}
.blocky_header .title ~ .input_simple {
  margin: -6px 0;
}
.blocky_header .title + .input_simple {
  margin-right: -14px;
}
.blocky_header .input-daterange {
  float: right;
  max-width: 300px;
  margin: -3px 0;
  margin-right: -5px;
}
@media (max-width: 575px) {
  .blocky_header .input-daterange {
    width: calc(100% + 8px);
    max-width: none;
    margin: 5px -5px -3px;
  }
}
.blocky_header .nav-tabs {
  border-bottom: 0px;
  margin-bottom: -10px;
  margin-top: -3px;
  margin-left: -7px;
  margin-right: -7px;
}
.blocky_header .nav-tabs.justify {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blocky_header .nav-tabs.justify li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blocky_header .nav-tabs li a {
  color: #1bc7ed;
  background-color: transparent;
  border: 1px solid #1bc7ed;
  border-bottom-color: transparent;
  text-align: center;
}
.blocky_header .nav-tabs li a:hover, .blocky_header .nav-tabs li a:focus {
  color: #fff;
  background-color: #1bc7ed;
  border: 1px solid #1bc7ed;
}
.blocky_header .nav-tabs li.active a, .blocky_header .nav-tabs li.active a:hover, .blocky_header .nav-tabs li.active a:focus {
  color: #fff;
  background-color: #1bc7ed;
  border: 1px solid #1bc7ed;
}

/* Block Border Top
-------------- */
.blocky > .blocky_body + .blocky_body {
  border-top: 1px solid #e1e1e1;
}

.action_bar .alert {
  padding: 8px;
}
.action_bar .alert, .action_bar .btn_action {
  margin-bottom: 8px;
}
.action_bar .alert:nth-last-child(1), .action_bar .btn_action:nth-last-child(1) {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

.blocky .row {
  margin: 0;
}
.blocky .row > [class*=col-lg],
.blocky .row > [class*=col-md],
.blocky .row > [class*=col-sm],
.blocky .row > [class*=col-xs] {
  padding: 0 8px;
}

/* Narrow */
.blocky.narrow .blocky_footer, .blocky .blocky_footer.narrow {
  padding: 4px;
}

/* Pagination */
.blocky .pagination {
  margin: 0;
  width: 100%;
  text-align: center;
}
.blocky .pagination li {
  display: inline-block;
}

/* Stepper */
.stepper {
  padding: 4px;
  margin-bottom: 16px;
  background-color: #f9f9f9;
}
.stepper > li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
}
.stepper > li:nth-last-child(1) {
  border-right: 0px;
}
.stepper > li p {
  margin: 0;
}
.stepper > li p.step {
  font-size: 11px;
  font-weight: 500;
}
.stepper > li p {
  color: #4d4d4d;
}
.stepper > li p.step {
  color: #4d4d4d;
}
.stepper > li.active {
  background-color: #1bc7ed;
  border: 0;
}
.stepper > li.active p {
  color: white;
}
.stepper > li.active .step {
  color: white;
}

/* Tab */
.blocky_tab a {
  padding: 10px 15px;
  border-radius: 4px 4px 0 0;
  color: #4d4d4d;
  background-color: transparent;
}
.blocky_tab a:hover {
  background-color: #e2e2e2;
}
.blocky_tab > li.active a {
  background-color: #001a29;
  color: white;
}
@media (min-width: 768px ) {
  .blocky_tab {
    border-bottom: 2px solid #001a29;
    background-color: #efefef;
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 767px ) {
  .blocky_tab {
    border-bottom: 2px solid #001a29;
  }
  .blocky_tab a {
    padding: 10px;
    background-color: #efefef;
  }
}

/* Form
-------------------- */
.form_table {
  width: 100%;
}
.form_table tr th, .form_table tr td {
  padding: 8px;
}
.form_table thead th, .form_table thead td, .form_table tfoot th, .form_table tfoot td {
  padding: 4px 8px;
  font-size: 14px;
}
.form_table p {
  margin: 0px;
}
@media (min-width: 576px ) {
  .form_table.xxs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xxs-responsive th, .form_table.xxs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xxs-responsive th.w-1, .form_table.xxs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xxs-responsive th.w-2, .form_table.xxs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xxs-responsive th.w-3, .form_table.xxs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xxs-responsive th.w-4, .form_table.xxs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xxs-responsive th.w-5, .form_table.xxs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xxs-responsive th.w-6, .form_table.xxs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xxs-responsive th.w-7, .form_table.xxs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xxs-responsive th.w-8, .form_table.xxs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xxs-responsive th.w-9, .form_table.xxs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xxs-responsive th.w-f-1, .form_table.xxs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xxs-responsive th.w-f-2, .form_table.xxs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xxs-responsive th.w-f-3, .form_table.xxs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xxs-responsive th.w-f-4, .form_table.xxs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xxs-responsive th.w-f-5, .form_table.xxs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xxs-responsive tbody tr:nth-last-child(1) th, .form_table.xxs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td, .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-middle th, .form_table.xxs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-top th, .form_table.xxs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xxs-responsive.vertical-bottom th, .form_table.xxs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xxs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xxs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xxs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xxs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xxs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xxs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xxs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xxs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xxs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xxs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xxs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xxs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xxs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xxs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xxs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xxs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xxs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xxs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xxs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xxs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 575px ) {
  .form_table.xxs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xxs-responsive {
    table-layout: fixed;
  }
  .form_table.xxs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xxs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive tr th, .form_table.xxs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xxs-responsive tr th {
    display: none;
  }
  .form_table.xxs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xxs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #4d4d4d;
  }
  .form_table.xxs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xxs-responsive thead {
    display: none;
  }
  .form_table.xxs-responsive .align-left, .form_table.xxs-responsive .align-center, .form_table.xxs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 768px ) {
  .form_table.xs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xs-responsive th, .form_table.xs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xs-responsive th.w-1, .form_table.xs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xs-responsive th.w-2, .form_table.xs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xs-responsive th.w-3, .form_table.xs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xs-responsive th.w-4, .form_table.xs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xs-responsive th.w-5, .form_table.xs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xs-responsive th.w-6, .form_table.xs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xs-responsive th.w-7, .form_table.xs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xs-responsive th.w-8, .form_table.xs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xs-responsive th.w-9, .form_table.xs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xs-responsive th.w-f-1, .form_table.xs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xs-responsive th.w-f-2, .form_table.xs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xs-responsive th.w-f-3, .form_table.xs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xs-responsive th.w-f-4, .form_table.xs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xs-responsive th.w-f-5, .form_table.xs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xs-responsive tbody tr:nth-last-child(1) th, .form_table.xs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td, .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-middle th, .form_table.xs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-top th, .form_table.xs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xs-responsive.vertical-bottom th, .form_table.xs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 767px ) {
  .form_table.xs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xs-responsive {
    table-layout: fixed;
  }
  .form_table.xs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xs-responsive tr th, .form_table.xs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xs-responsive tr th {
    display: none;
  }
  .form_table.xs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #4d4d4d;
  }
  .form_table.xs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xs-responsive thead {
    display: none;
  }
  .form_table.xs-responsive .align-left, .form_table.xs-responsive .align-center, .form_table.xs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 992px ) {
  .form_table.sm-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.sm-responsive th, .form_table.sm-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.sm-responsive th.w-1, .form_table.sm-responsive td.w-1 {
    width: 10%;
  }
  .form_table.sm-responsive th.w-2, .form_table.sm-responsive td.w-2 {
    width: 20%;
  }
  .form_table.sm-responsive th.w-3, .form_table.sm-responsive td.w-3 {
    width: 30%;
  }
  .form_table.sm-responsive th.w-4, .form_table.sm-responsive td.w-4 {
    width: 40%;
  }
  .form_table.sm-responsive th.w-5, .form_table.sm-responsive td.w-5 {
    width: 50%;
  }
  .form_table.sm-responsive th.w-6, .form_table.sm-responsive td.w-6 {
    width: 60%;
  }
  .form_table.sm-responsive th.w-7, .form_table.sm-responsive td.w-7 {
    width: 70%;
  }
  .form_table.sm-responsive th.w-8, .form_table.sm-responsive td.w-8 {
    width: 80%;
  }
  .form_table.sm-responsive th.w-9, .form_table.sm-responsive td.w-9 {
    width: 90%;
  }
  .form_table.sm-responsive th.w-f-1, .form_table.sm-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.sm-responsive th.w-f-2, .form_table.sm-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.sm-responsive th.w-f-3, .form_table.sm-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.sm-responsive th.w-f-4, .form_table.sm-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.sm-responsive th.w-f-5, .form_table.sm-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.sm-responsive tbody tr:nth-last-child(1) th, .form_table.sm-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td, .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-middle th, .form_table.sm-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-top th, .form_table.sm-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.sm-responsive.vertical-bottom th, .form_table.sm-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.sm-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.sm-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.sm-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.sm-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.sm-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.sm-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.sm-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.sm-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.sm-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.sm-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.sm-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.sm-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.sm-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.sm-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.sm-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.sm-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.sm-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.sm-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.sm-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.sm-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 991px ) {
  .form_table.sm-responsive {
    /* 2018.10.09 */
  }
  .form_table.sm-responsive {
    table-layout: fixed;
  }
  .form_table.sm-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.sm-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.sm-responsive tr th, .form_table.sm-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.sm-responsive tr th {
    display: none;
  }
  .form_table.sm-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.sm-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #4d4d4d;
  }
  .form_table.sm-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.sm-responsive thead {
    display: none;
  }
  .form_table.sm-responsive .align-left, .form_table.sm-responsive .align-center, .form_table.sm-responsive .align-right {
    text-align: left !important;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: top;
  }
}
.form_table.no-responsive {
  /* Desktop */
  /* 2018.10.04 */
  /* Vertical Align
  ----------------- */
  /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
  ------------- */
}
.form_table.no-responsive th, .form_table.no-responsive td {
  border-bottom: 1px solid #e1e1e1;
}
.form_table.no-responsive th.w-1, .form_table.no-responsive td.w-1 {
  width: 10%;
}
.form_table.no-responsive th.w-2, .form_table.no-responsive td.w-2 {
  width: 20%;
}
.form_table.no-responsive th.w-3, .form_table.no-responsive td.w-3 {
  width: 30%;
}
.form_table.no-responsive th.w-4, .form_table.no-responsive td.w-4 {
  width: 40%;
}
.form_table.no-responsive th.w-5, .form_table.no-responsive td.w-5 {
  width: 50%;
}
.form_table.no-responsive th.w-6, .form_table.no-responsive td.w-6 {
  width: 60%;
}
.form_table.no-responsive th.w-7, .form_table.no-responsive td.w-7 {
  width: 70%;
}
.form_table.no-responsive th.w-8, .form_table.no-responsive td.w-8 {
  width: 80%;
}
.form_table.no-responsive th.w-9, .form_table.no-responsive td.w-9 {
  width: 90%;
}
.form_table.no-responsive th.w-f-1, .form_table.no-responsive td.w-f-1 {
  width: 45px;
}
.form_table.no-responsive th.w-f-2, .form_table.no-responsive td.w-f-2 {
  width: 90px;
}
.form_table.no-responsive th.w-f-3, .form_table.no-responsive td.w-f-3 {
  width: 135px;
}
.form_table.no-responsive th.w-f-4, .form_table.no-responsive td.w-f-4 {
  width: 180px;
}
.form_table.no-responsive th.w-f-5, .form_table.no-responsive td.w-f-5 {
  width: 225px;
}
.form_table.no-responsive tbody tr:nth-last-child(1) th, .form_table.no-responsive tbody tr:nth-last-child(1) td {
  border-bottom: 0px;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td, .form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  background-color: #fcfcfc;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0;
  margin: 0;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td {
  border-bottom-width: 1px;
}
.form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  border-top-width: 1px;
}
.form_table.no-responsive tbody, .form_table.no-responsive tfoot, .form_table.no-responsive thead, .form_table.no-responsive tr {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-middle th, .form_table.no-responsive.vertical-middle td {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-top th, .form_table.no-responsive.vertical-top td {
  vertical-align: top;
}
.form_table.no-responsive.vertical-bottom th, .form_table.no-responsive.vertical-bottom td {
  vertical-align: bottom;
}
.form_table.no-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.no-responsive tr:nth-last-child(2) th[rowspan="2"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.no-responsive tr:nth-last-child(3) th[rowspan="3"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.no-responsive tr:nth-last-child(4) th[rowspan="4"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.no-responsive tr:nth-last-child(5) th[rowspan="5"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.no-responsive tr:nth-last-child(6) th[rowspan="6"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.no-responsive tr:nth-last-child(7) th[rowspan="7"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.no-responsive tr:nth-last-child(8) th[rowspan="8"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.no-responsive tr:nth-last-child(9) th[rowspan="9"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.no-responsive tr:nth-last-child(10) th[rowspan="10"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.no-responsive tr:nth-last-child(11) th[rowspan="11"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.no-responsive tr:nth-last-child(12) th[rowspan="12"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.no-responsive tr:nth-last-child(13) th[rowspan="13"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.no-responsive tr:nth-last-child(14) th[rowspan="14"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.no-responsive tr:nth-last-child(15) th[rowspan="15"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.no-responsive tr:nth-last-child(16) th[rowspan="16"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.no-responsive tr:nth-last-child(17) th[rowspan="17"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.no-responsive tr:nth-last-child(18) th[rowspan="18"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.no-responsive tr:nth-last-child(19) th[rowspan="19"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.no-responsive tr:nth-last-child(20) th[rowspan="20"] {
  border-bottom: 0;
}

table.form_table {
  border-top: 1px solid #e1e1e1;
}
.blocky_header + table.form_table {
  border-top: 0;
}
table.form_table:nth-child(1) {
  border: 0;
}

/* Attachment List
------------------ */
.attach_list {
  text-align: left !important;
  padding: 8px/2 !important;
}
.attach_list .item {
  padding: 4px 8px;
  border-top-style: solid;
  border-top-color: #e1e1e1;
}
.attach_list .item + .item {
  border-top-width: 1px;
}

.attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
  position: relative;
  text-align: left;
  display: inline-block;
  padding: 4px 0;
  padding-left: 40px;
}
.attach_other:before,
.attach_doc:before,
.attach_pdf:before,
.attach_ppt:before,
.attach_img:before {
  content: "";
  width: 24px;
  height: 30px;
  background-size: contain;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-image: url(../images/common/ic/ic_file_other.png);
  position: absolute;
  left: 8px;
  top: calc(50% - 15px);
}
@media (max-width: 767px ) {
  .attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
    padding-left: 30px;
  }
  .attach_other:before,
.attach_doc:before,
.attach_pdf:before,
.attach_ppt:before,
.attach_img:before {
    width: 18px;
    height: 22.5px;
    left: 4px;
    top: 3px;
  }
}

.attach_doc:before {
  background-image: url(../images/common/ic/ic_file_doc.png);
}

.attach_pdf:before {
  background-image: url(../images/common/ic/ic_file_pdf.png);
}

.attach_ppt:before {
  background-image: url(../images/common/ic/ic_file_ppt.png);
}

.attach_img:before {
  background-image: url(../images/common/ic/ic_file_img.png);
}

/* Form Column, List in Basic Block */
.blocky .form_column > .item {
  padding: 8px 0;
}
.blocky .form_column {
  padding: 8px 16px;
}
.blocky .form_column > .item > .title {
  vertical-align: top;
}
@media (max-width: 991px) {
  .blocky .form_column.sm_style {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item .title {
    padding-bottom: 0;
  }
  .blocky .form_column.sm_style > .item .content {
    padding: 8px;
  }
  .blocky .form_column.sm_style > .item + .item {
    border-top: 3px double #e1e1e1;
  }
}

/* Cols in Basic Block
Use or Not?
------------------------- */
/* 2018.10.11 */
.cube-row {
  margin: 0 0px !important;
  padding: 8px;
}
.cube-row:after, .cube-row:before {
  content: "";
  display: block;
  clear: both;
}
.cube-row [class*=col-lg], .cube-row [class*=col-md], .cube-row [class*=col-sm], .cube-row [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}
.cube-row .cube {
  float: left;
  width: 100%;
}
@media (min-width: 768px ) {
  .cube-row .cube.w-50 {
    width: 50%;
  }
}

/* Cube
------------------ */
.cube {
  padding: 8px 8px;
}
.cube.shadow:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cube-header {
  padding: 4px 8px;
  background: #eee;
  border-radius: 4px;
}

.cube-body {
  padding: 2px 0;
}

/* Form in Cube
--------------- */
.cube input, .cube textarea, .cube select {
  display: block;
  width: 100%;
}
.cube .caret_select {
  display: block;
}
.cube input, .cube textarea, .cube .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.cube .checkbox-inline, .cube .radio-inline {
  margin-top: 2px;
}
.cube .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.cube .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* 

Modify: 
. basic_container        > . blocky_container
. basic_block            > . blocky
. basic_block . header   > . blocky_header
. basic_block . block    > . blocky_body
. basic_block . footer   > . blocky_footer

. basic_block_tab        > . blocky_tab

 */
/* Sidebar */
/* -----------------------
Compatible with Basic Block
----------------------- */
/* 2018.10.11 */
/*--- nav_side_solid ---*/
.nav_side_solid {
  padding-right: 0px;
  /* active */
}
.nav_side_solid > li + li {
  margin-top: 0;
}
.nav_side_solid > li a, .nav_side_solid > li .layor_title {
  display: block;
  position: relative;
  line-height: 1em;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  padding: 8px;
  background-color: transparent;
  color: #4d4d4d;
  border-left: 2px solid transparent;
  font-size: 14px;
}
.nav_side_solid > li a:hover, .nav_side_solid > li a:focus, .nav_side_solid > li .layor_title:hover, .nav_side_solid > li .layor_title:focus {
  background-color: rgba(0, 0, 0, 0.02);
}
.nav_side_solid > li h1, .nav_side_solid > li h2, .nav_side_solid > li h3, .nav_side_solid > li h4 {
  margin: 0;
  padding-left: 0px;
}
.nav_side_solid > li a i {
  width: 1.2em;
  text-align: center;
}
.nav_side_solid li.active > a, .nav_side_solid li.active > a:hover, .nav_side_solid li.active > a:focus {
  font-weight: 500;
  color: #1bc7ed;
}
.nav_side_solid ul.layer_1st > li > a {
  padding-left: 34px;
}
.nav_side_solid ul.layer_1st > li > a:before {
  content: "";
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  left: 20px;
  top: calc(50% - 7px);
  width: 14px;
  text-align: center;
  color: #1bc7ed;
}
.nav_side_solid ul.layer_2nd > li > a {
  padding-left: 54px;
}

/* Border inset */
.nav_side_solid > li + li {
  border-top: 1px solid #ccc;
}
.nav_side_solid ul.layer_1st > li > a {
  border-top: 1px solid #ccc;
}
.nav_side_solid ul.layer_2nd > li > a {
  border-top: 0px solid #ccc;
}

/* Selected Show */
.nav_side_solid > li > ul.layer_1st, .sidebar_body > li > ul.layer_1st {
  display: none;
}
.nav_side_solid > li.selected > ul.layer_1st, .sidebar_body > li.selected > ul.layer_1st {
  display: block;
}
.nav_side_solid > li > ul.layer_1st > li > ul.layer_2nd, .sidebar_body > li > ul.layer_1st > li > ul.layer_2nd {
  display: none;
}
.nav_side_solid > li > ul.layer_1st > li.selected > a:before, .sidebar_body > li > ul.layer_1st > li.selected > a:before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
}
.nav_side_solid > li > ul.layer_1st > li.selected > ul.layer_2nd, .sidebar_body > li > ul.layer_1st > li.selected > ul.layer_2nd {
  display: block;
}

/* sidebar_body */
.sidebar_body a {
  display: inline-block;
  line-height: 1em;
}

/* Parchment */
.parchment_header {
  position: relative;
  padding: 4px 0 6px;
  border-bottom: 3px double #dfdfdf;
  margin-bottom: 8px;
}
.parchment_header:after, .parchment_header:before {
  content: "";
  display: block;
  clear: both;
}
.parchment_header .title {
  position: relative;
  display: inline-block;
  color: #1bc7ed;
}
.parchment_header .date {
  float: right;
  display: inline-block;
  font-size: 85%;
  color: #999;
}

.parchment_body {
  padding: 8px;
  background-color: #fffdf3;
  border: 1px solid #f6eedd;
  border-radius: 4px;
  margin-bottom: 15px;
  /* form_column */
}
.parchment_body .form_column.border > .item + .item {
  border-color: #f6eedd;
}
.parchment_body .divide_text:before {
  border-top-color: #f6eedd;
}
.parchment_body hr {
  border-color: #f6eedd;
  margin: 8px 0;
}

.parchment_banner img {
  width: 100%;
  display: block;
  margin: 0 auto 0px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.parchment_banner + .parchment_body {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* img */
.article_img {
  display: block;
  margin: 0px auto 15px;
  border-radius: 4px;
}

/* List Second */
.list_second {
  display: block;
  width: 100%;
  background-color: white;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 3px double #dfdfdf;
}
.list_second:after, .list_second:before {
  content: "";
  display: block;
  clear: both;
}
.list_second .item {
  padding: 8px;
}
.list_second .item:after, .list_second .item:before {
  content: "";
  display: block;
  clear: both;
}
.list_second a {
  color: inherit;
}
.list_second a:hover {
  text-decoration: underline;
}
.list_second .item + .item {
  border-top: 1px solid #e1e1e1;
}
.list_second .title, .list_second .date {
  display: block;
}
.list_second .title {
  color: #1bc7ed;
  float: left;
}
.list_second .date {
  float: right;
  font-size: 85%;
  color: #727272;
}
@media (max-width: 767px ) {
  .list_second .title, .list_second .date {
    width: 100%;
  }
}

.list_col_1 .item:nth-child(2n+1) {
  background-color: #fff8f3;
}
.list_col_1 .item:nth-child(2n+2) {
  background-color: white;
}

/* Statictics */
.blocky .list_second {
  padding-bottom: 0;
}

.list_year, .list_month {
  border-bottom: 3px double #dfdfdf;
  margin-bottom: 0px;
}

.list_year .item {
  float: left;
  width: 16.6666666667%;
  float: left;
}
@media (max-width: 575px ) {
  .list_year .item {
    width: 25%;
  }
}
@media (min-width: 576px ) {
  .list_year .item:nth-child(6n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_year .item:nth-child(6n+2):nth-last-child(1) {
    width: 83.3333333333%;
  }
  .list_year .item:nth-child(6n+3):nth-last-child(1) {
    width: 66.6666666667%;
  }
  .list_year .item:nth-child(6n+4):nth-last-child(1) {
    width: 50%;
  }
  .list_year .item:nth-child(6n+5):nth-last-child(1) {
    width: 33.3333333333%;
  }
  .list_year .item:nth-child(12n+1) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+2) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+3) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+4) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+5) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+6) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+7) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+8) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+9) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+10) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+11) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+12) {
    background-color: white;
  }
}
@media (max-width: 575px ) {
  .list_year .item:nth-child(4n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_year .item:nth-child(4n+2):nth-last-child(1) {
    width: 75%;
  }
  .list_year .item:nth-child(4n+3):nth-last-child(1) {
    width: 50%;
  }
  .list_year .item:nth-child(8n+1) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+2) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+3) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+4) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+5) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+6) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+7) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+8) {
    background-color: white;
  }
}

.list_month .inner_title {
  float: left;
  width: 8.3333333333%;
  float: left;
}
@media (max-width: 575px ) {
  .list_month .inner_title {
    width: 100%;
  }
}
.list_month .inner_content {
  float: left;
  width: 91.6666666667%;
  float: left;
}
@media (max-width: 575px ) {
  .list_month .inner_content {
    width: 100%;
  }
}
.list_month .inner_content_item {
  float: left;
  width: 16.6666666667%;
  float: left;
  float: left;
}
@media (max-width: 575px ) {
  .list_month .inner_content_item {
    width: 25%;
  }
}
@media (min-width: 992px ) {
  .list_month .inner_content_item {
    width: 8.3333333333%;
  }
}
@media (min-width: 576px ) {
  .list_month .inner_content_item:nth-child(12n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_month .inner_content_item:nth-child(12n+2):nth-last-child(1) {
    width: 91.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+3):nth-last-child(1) {
    width: 83.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+4):nth-last-child(1) {
    width: 75%;
  }
  .list_month .inner_content_item:nth-child(12n+5):nth-last-child(1) {
    width: 66.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+6):nth-last-child(1) {
    width: 58.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+7):nth-last-child(1) {
    width: 50%;
  }
  .list_month .inner_content_item:nth-child(12n+8):nth-last-child(1) {
    width: 41.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+9):nth-last-child(1) {
    width: 33.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+10):nth-last-child(1) {
    width: 25%;
  }
  .list_month .inner_content_item:nth-child(12n+11):nth-last-child(1) {
    width: 16.6666666667%;
  }
}
@media (max-width: 575px ) {
  .list_month .inner_content_item:nth-child(4n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_month .inner_content_item:nth-child(4n+2):nth-last-child(1) {
    width: 75%;
  }
  .list_month .inner_content_item:nth-child(4n+3):nth-last-child(1) {
    width: 50%;
  }
}
.list_month .inner_title, .list_month .title {
  text-align: center;
}
.list_month .title {
  width: 100%;
}
@media (max-width: 575px ) {
  .list_month .item {
    padding-top: 0;
  }
  .list_month .inner_title {
    border-bottom: 3px double #e1e1e1;
  }
}

/* Column */
/* Form Column
--------------- */
/* 2018.10.05 */
.form_column {
  padding: 4px 0;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column > .item, .form_column > .divide_text {
  float: left;
  width: 100%;
}
.form_column > .item {
  padding-top: 4px;
  padding-bottom: 4px;
}

.form_column {
  font-size: 14px;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column .title, .form_column .content {
  display: block;
  float: left;
}
.form_column .title {
  vertical-align: top;
  text-align: left;
}
.form_column .title .title_text {
  font-size: inherit;
}
.form_column .content {
  vertical-align: middle;
}
.form_column p {
  margin: 0;
}
@media (max-width: 767px) {
  .form_column .title {
    text-align: left;
  }
}

/* Content: Pure Txt
----------------- */
.pure_text {
  padding: 8px 0px 8px 0px;
}

/* Input in Form Column */
.form_column input, .form_column textarea, .form_column select {
  display: block;
  width: 100%;
}
.form_column .caret_select {
  display: block;
}
.form_column input, .form_column textarea, .form_column .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.form_column .checkbox-inline, .form_column .radio-inline {
  margin-top: 2px;
}
.form_column .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.form_column .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* Style
------------- */
.form_column.narrow {
  padding: 4px;
}
.form_column.narrow > .item {
  padding: 0px 0;
}

/* RWD
------------------ */
.form_column .divide_text {
  text-align: left;
}
@media (min-width: 768px) {
  .form_column {
    /* Column Desktop */
    /* Item Width */
  }
  .form_column .title {
    width: calc((6em + 8px * 2));
    padding: 8px 8px 0;
  }
  .form_column .content {
    width: calc(100% - (6em + 8px * 2));
  }
  .form_column .divide_text {
    padding-left: "(6em + 8px * 2)";
  }
  .form_column .item.title-w-2 .title {
    width: calc(1em * 2 + 16px);
  }
  .form_column .item.title-w-2 .content {
    width: calc(100% - (1em * 2 + 16px));
  }
  .form_column .item.title-w-3 .title {
    width: calc(1em * 3 + 16px);
  }
  .form_column .item.title-w-3 .content {
    width: calc(100% - (1em * 3 + 16px));
  }
  .form_column .item.title-w-4 .title {
    width: calc(1em * 4 + 16px);
  }
  .form_column .item.title-w-4 .content {
    width: calc(100% - (1em * 4 + 16px));
  }
  .form_column .item.title-w-5 .title {
    width: calc(1em * 5 + 16px);
  }
  .form_column .item.title-w-5 .content {
    width: calc(100% - (1em * 5 + 16px));
  }
  .form_column .item.title-w-6 .title {
    width: calc(1em * 6 + 16px);
  }
  .form_column .item.title-w-6 .content {
    width: calc(100% - (1em * 6 + 16px));
  }
  .form_column .item.title-w-7 .title {
    width: calc(1em * 7 + 16px);
  }
  .form_column .item.title-w-7 .content {
    width: calc(100% - (1em * 7 + 16px));
  }
  .form_column .item.title-w-8 .title {
    width: calc(1em * 8 + 16px);
  }
  .form_column .item.title-w-8 .content {
    width: calc(100% - (1em * 8 + 16px));
  }
  .form_column .item.title-w-9 .title {
    width: calc(1em * 9 + 16px);
  }
  .form_column .item.title-w-9 .content {
    width: calc(100% - (1em * 9 + 16px));
  }
  .form_column .item.title-w-10 .title {
    width: calc(1em * 10 + 16px);
  }
  .form_column .item.title-w-10 .content {
    width: calc(100% - (1em * 10 + 16px));
  }
  .form_column > .item.w-50 {
    width: 50%;
  }
  .form_column.border > .item + .item {
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #e1e1e1;
  }
  .form_column.border > .item.w-50 + .item.w-50:nth-child(2) {
    border-top-width: 0;
  }
}
@media (max-width: 767px) {
  .form_column {
    /* Column Mobile
    ----------------- */
  }
  .form_column .title, .form_column .content, .form_column .item.w-50 {
    width: 100%;
  }
  .form_column .title {
    padding: 4px 0px 4px;
  }
  .form_column .pure_text {
    padding: 8px 0px 8px 0px;
  }
  .form_column.narrow {
    padding: 8px 8px;
  }
  .form_column.border > .item + .item {
    border-top: 1px solid #e1e1e1;
  }
}
.form_column.no-responsive {
  /* Column Desktop */
  /* Item Width */
}
.form_column.no-responsive .title {
  width: calc((6em + 8px * 2));
  padding: 8px 8px 0;
}
.form_column.no-responsive .content {
  width: calc(100% - (6em + 8px * 2));
}
.form_column.no-responsive .divide_text {
  padding-left: "(6em + 8px * 2)";
}
.form_column.no-responsive .item.title-w-2 .title {
  width: calc(1em * 2 + 16px);
}
.form_column.no-responsive .item.title-w-2 .content {
  width: calc(100% - (1em * 2 + 16px));
}
.form_column.no-responsive .item.title-w-3 .title {
  width: calc(1em * 3 + 16px);
}
.form_column.no-responsive .item.title-w-3 .content {
  width: calc(100% - (1em * 3 + 16px));
}
.form_column.no-responsive .item.title-w-4 .title {
  width: calc(1em * 4 + 16px);
}
.form_column.no-responsive .item.title-w-4 .content {
  width: calc(100% - (1em * 4 + 16px));
}
.form_column.no-responsive .item.title-w-5 .title {
  width: calc(1em * 5 + 16px);
}
.form_column.no-responsive .item.title-w-5 .content {
  width: calc(100% - (1em * 5 + 16px));
}
.form_column.no-responsive .item.title-w-6 .title {
  width: calc(1em * 6 + 16px);
}
.form_column.no-responsive .item.title-w-6 .content {
  width: calc(100% - (1em * 6 + 16px));
}
.form_column.no-responsive .item.title-w-7 .title {
  width: calc(1em * 7 + 16px);
}
.form_column.no-responsive .item.title-w-7 .content {
  width: calc(100% - (1em * 7 + 16px));
}
.form_column.no-responsive .item.title-w-8 .title {
  width: calc(1em * 8 + 16px);
}
.form_column.no-responsive .item.title-w-8 .content {
  width: calc(100% - (1em * 8 + 16px));
}
.form_column.no-responsive .item.title-w-9 .title {
  width: calc(1em * 9 + 16px);
}
.form_column.no-responsive .item.title-w-9 .content {
  width: calc(100% - (1em * 9 + 16px));
}
.form_column.no-responsive .item.title-w-10 .title {
  width: calc(1em * 10 + 16px);
}
.form_column.no-responsive .item.title-w-10 .content {
  width: calc(100% - (1em * 10 + 16px));
}
.form_column.no-responsive > .item.w-50 {
  width: 50%;
}
.form_column.no-responsive.border > .item + .item {
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #e1e1e1;
}
.form_column.no-responsive.border > .item.w-50 + .item.w-50:nth-child(2) {
  border-top-width: 0;
}

/* Q & A 
---------------------*/
@media (min-width: 992px) {
  .form_column.column_qa > .item.item_border + .item,
.form_column.column_qa .item.item_border {
    border-top: 0;
  }
  .form_column.column_qa > .item.item_border {
    padding: 4px;
    border: 1px dotted #e1e1e1;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 0 0;
  }
  .form_column.column_qa > .item.item_border:nth-child(1) {
    margin-top: 0;
    border-top-width: 1px;
  }
}

/* Forms */
/* 2018.10.09 */
input,
textarea,
select {
  display: inline-block;
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  input,
textarea,
select {
    height: calc(1.8em + 20px);
  }
}

input,
textarea,
select,
.btn-input,
.input-group .btn {
  padding: 6px 8px;
  margin: 0px 0;
  border-radius: 2px;
  line-height: 1.5em;
  height: calc(1.5em + 18px);
}
@media (max-width: 767px) {
  input,
textarea,
select,
.btn-input,
.input-group .btn {
    padding: 10px 8px;
    height: calc(1.8em + 20px);
  }
}

select {
  background-color: white;
}

option {
  color: #4d4d4d;
  background-color: white;
  border-width: 1px;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgba(27, 199, 237, 0.5);
  outline: none;
}

textarea {
  height: unset;
}

/* Placeholder
------------------------ */
::-webkit-input-placeholder {
  color: #bbb;
  text-overflow: ellipsis;
}

:-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

::-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

/* caret
----------------------- */
.caret_select {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.caret_select::after {
  content: "";
  display: block;
  position: absolute;
  font-family: "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  z-index: 0;
  pointer-events: none;
  right: 12px;
  top: calc(50% - 10px);
  line-height: 20px;
}
.caret_select select {
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.caret_select select[disabled=disabled] {
  cursor: auto;
}

.language-selector {
  position: relative;
  width: 80px;
}
.language-selector:after {
  content: "";
  float: right;
  position: absolute;
  top: 13px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: white transparent transparent transparent;
}
.language-selector ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.language-selector li {
  padding: 5px;
  margin: 0 5px;
  position: relative;
  z-index: 9999;
  color: #fff;
  font-size: 16px;
}
.language-selector li a {
  color: white;
}
.language-selector .sel-two {
  color: #9fabb3;
  box-sizing: border-box;
  background-color: #001b2b;
  width: 100%;
  top: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.2s;
}

.nav.language-selector ul ul li {
  position: relative;
}

nav.language-selector ul ul li:hover {
  color: white;
  transition: all 0.4s;
}
nav.language-selector ul ul li:hover:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  bottom: 0;
  background: #1bc7ed;
}

nav.language-selector:hover ul ul {
  height: 68px;
  width: 80px;
}

.lang_mob {
  display: none;
}

@media(max-width: 767px ) {
  .lang_mob {
    display: block;
    padding: 6px 15px 12px;
    color: #1bc7ed;
  }
  .lang_mob li {
    display: inline-block;
    padding-right: 5px;
    border-right: 1px solid #fff;
    font-size: 14px;
  }
  .lang_mob li a {
    color: white;
  }
  .lang_mob li:last-child {
    border-right: 0;
  }
}
/* Datepicker Range */
.input-daterange {
  float: right;
  width: 100%;
  max-width: 300px;
  margin: 2px;
}
.input-daterange .form-control, .input-daterange .input-group-addon, .input-daterange .btn {
  float: left;
}
.input-daterange .input-group-addon {
  width: 40px;
  border-width: 1px;
  margin: 0 -1px;
}
.input-daterange .btn {
  width: 60px;
  height: 30px;
  padding: 2px;
  border-radius: 0 2px 2px 0;
}
.input-daterange .form-control {
  width: calc( (100% - 40px - 60px)/2) !important;
  padding: 0;
}
.input-daterange .form-control:nth-last-child(2) {
  border-radius: 0;
}
@media (max-width: 767px) {
  .input-daterange {
    max-width: 280px;
  }
}

/* 2018.10.04 */
/*--- Custom Checkbox ---*/
.checkbox-primary, .radio-primary {
  display: block;
  position: relative;
  min-width: 33px;
  min-height: 33px;
  padding-left: 33px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px 0;
  /* Hover
  -------------- */
  /* Checked
  ----------------- */
}
.checkbox-primary .checkmark, .radio-primary .checkmark {
  position: absolute;
  top: calc(33px / 2 - 20px / 2);
  left: 6.5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
}
.checkbox-primary .checkmark:after, .radio-primary .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-primary input[type=checkbox], .checkbox-primary input[type=radio], .radio-primary input[type=checkbox], .radio-primary input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  height: 0;
  width: 0;
  /* Disabled
  ----------------- */
}
.checkbox-primary input[type=checkbox]:disabled ~ .checkmark, .checkbox-primary input[type=radio]:disabled ~ .checkmark, .radio-primary input[type=checkbox]:disabled ~ .checkmark, .radio-primary input[type=radio]:disabled ~ .checkmark {
  cursor: not-allowed;
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark, .radio-primary input[type=radio]:disabled:checked ~ .checkmark {
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .radio-primary input[type=radio]:disabled:checked ~ .checkmark:after {
  display: block;
  background-color: #ccc;
}
.checkbox-primary:hover input[type=checkbox] ~ .checkmark, .checkbox-primary:hover input[type=radio] ~ .checkmark, .radio-primary:hover input[type=checkbox] ~ .checkmark, .radio-primary:hover input[type=radio] ~ .checkmark {
  background-color: #fcfcfc;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark, .checkbox-primary input[type=radio]:checked ~ .checkmark, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark, .radio-primary input[type=checkbox]:checked ~ .checkmark, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark, .radio-primary input[type=radio]:checked ~ .checkmark, .radio-primary input[type=radio]:checked:hover ~ .checkmark {
  background-color: #1bc7ed;
  border-color: #1bc7ed;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark:after, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .checkbox-primary input[type=radio]:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark:after, .radio-primary input[type=checkbox]:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .radio-primary input[type=radio]:checked ~ .checkmark:after, .radio-primary input[type=radio]:checked:hover ~ .checkmark:after {
  display: block;
}

/* radio */
.radio-primary .checkmark {
  border-radius: 20px;
}
.radio-primary .checkmark:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #1bc7ed;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

/*--- Checkbox inline item ---*/
.checkbox-inline, .radio-inline {
  max-height: 80vh;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding-left: 0;
  margin-left: 0 !important;
  /* a tag */
}
.checkbox-inline.no-border, .radio-inline.no-border {
  border: 0px;
}
.checkbox-inline > .item, .radio-inline > .item {
  display: inline-block;
}
.checkbox-inline > .item > label, .radio-inline > .item > label {
  display: block;
  width: auto;
  line-height: 1.5em;
  padding: calc((33px - 1.5em) / 2) 8px;
  border-radius: 4px;
}
.checkbox-inline a, .radio-inline a {
  font-size: inherit;
  color: #0275d8;
}
.checkbox-inline a:hover, .radio-inline a:hover {
  color: #0275d8;
  text-decoration: underline;
}
.checkbox-inline > .item:hover > label, .radio-inline > .item:hover > label {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Width */
.checkbox-inline > .item.w-100, .radio-inline > .item.w-100 {
  width: 100%;
}

/*--- Checkbox list ---*/
/* checkbox in table
--------------------- */
table td > .checkbox-primary, table td > .radio-primary, table th > .checkbox-primary, table th > .radio-primary {
  display: inline;
}
table td > .checkbox-primary .checkmark, table td > .radio-primary .checkmark, table th > .checkbox-primary .checkmark, table th > .radio-primary .checkmark {
  top: calc(50% - 20px / 2);
}

/* Unit Input
------------- */
.unit_input {
  position: relative;
}
.unit_input > input {
  padding-right: 18px;
}
.unit_input > span {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
}

.unit_input_left {
  position: relative;
}
.unit_input_left > span {
  position: absolute;
  left: 10px;
  top: calc(50% - 12px);
}

span.required {
  position: relative;
}
span.required:before {
  content: "*";
  color: #f56954;
  position: absolute;
  right: -10px;
  top: calc(50% - 5px);
  width: 10px;
  line-height: 10px;
  font-weight: 500;
}

/* Search Group
-------------- */
.search_group:after, .search_group:before {
  content: "";
  display: block;
  clear: both;
}
.search_group > input, .search_group > button {
  float: left;
}
.search_group > input {
  width: calc(100% - 50px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search_group > button {
  width: 51px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

/* divide text */
.divide_text {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}
.divide_text span {
  color: #666;
  padding: 0 8px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  display: inline-block;
  background: #eee;
  border-radius: 520px;
}
.divide_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  border-top: 1px solid #e1e1e1;
}
.divide_text + .item {
  border-top: 0;
}
@media (max-width: 991px) {
  .divide_text {
    padding-left: 0 !important;
    text-align: center !important;
  }
}

/* Width 100
-------------- */
.form_column .divide_text.dt-100 {
  padding-left: 0;
}
.form_column .divide_text.dt-100 span {
  width: 100%;
}

/* 
inline input (maybe filter bar)
------------------ */
.input_inline:after, .input_inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_inline li {
  display: inline-block;
  margin: 2px 0;
  padding-left: 8px;
  vertical-align: middle;
}
.input_inline li > .input_label,
.input_inline li > .search_group {
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 575px ) {
  .input_inline.xxs-responsive li {
    display: block;
  }
  .input_inline.xxs-responsive li:after, .input_inline.xxs-responsive li:before {
    content: "";
    display: block;
    clear: both;
  }
  .input_inline.xxs-responsive li > .input_label {
    width: 80px;
    text-align: right;
    padding-right: 8px;
    margin-top: calc(1em);
  }
  .input_inline.xxs-responsive li > input,
.input_inline.xxs-responsive li > textarea,
.input_inline.xxs-responsive li > .caret_select,
.input_inline.xxs-responsive li > .search_group {
    width: calc(100% - 80px - 5px);
    float: right;
  }
  .input_inline.xxs-responsive li .caret_select select {
    width: 100%;
  }
}

.input_simple {
  position: relative;
  padding: 1px !important;
}
.input_simple > label {
  height: 24px;
  width: 100%;
}
.input_simple > label:only-child {
  margin-top: 8px;
}
.input_simple > label .lock {
  color: #539c49;
  font-size: 12px;
  font-weight: 400;
}
.input_simple > label, .input_simple > p {
  margin: 4px 0;
}
.input_simple.closet {
  padding: 0 !important;
}
.input_simple.inline {
  padding: 6px 0 !important;
}
.input_simple.inline > label, .input_simple.inline > input, .input_simple.inline > p {
  float: left;
  margin: 0;
}
.input_simple.inline > label {
  width: 80px;
  height: unset;
}
.input_simple.inline > input, .input_simple.inline > p {
  width: calc(100% - 80px);
  padding-left: 8px;
}
.input_simple.inline:after, .input_simple.inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_simple.notation {
  padding-top: 10px;
}

/* ====== Input in... input_row ====== */
.input_row {
  margin: 0 -2px !important;
}
.input_row > [class*=col],
.input_row > [class*=col-lg],
.input_row > [class*=col-md],
.input_row > [class*=col-sm],
.input_row > [class*=col-xs] {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.input_row input,
.input_row textarea,
.input_row select {
  width: 100%;
}
.input_row .caret_select {
  display: block;
}

/* Line */
hr {
  width: 100%;
  margin: 15px 0;
  border-color: #eee;
}

/* Video */
/* video */
.item_video_wrapper .img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.item_video_wrapper:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.artc_video_wrapper, .item_video_wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}
.artc_video_wrapper iframe, .item_video_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
}

.video_frame {
  padding-top: 56.25%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.video_frame > iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.img_preview {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.img_preview.border {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.img_preview .imageWrapper {
  overflow: hidden;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  margin-right: 15px;
}
.img_preview .imageWrapper .image {
  height: 105%;
  width: initial;
  max-height: 100%;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_preview .file-upload {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
  max-width: 150px;
  text-align: center;
}
.img_preview .file-upload input.file-input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 100%;
}

/* ======================== 
Custom Classes
======================== */
.section_complete_form {
  position: relative;
  min-height: calc(100vh - 220px);
  border-top: 1px solid transparent !important;
  text-align: center;
}
.section_complete_form .container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 60px 30px;
}
.section_complete_form .container, .section_complete_form h2, .section_complete_form p, .section_complete_form a {
  text-align: center;
  max-width: 100%;
}
.section_complete_form h2 {
  color: #999;
}
.section_complete_form .check {
  font-size: 120px;
  color: #999;
  margin-bottom: 10px;
}
.section_complete_form .btn_main {
  margin-top: 20px;
}
.section_complete_form.min-height-none {
  min-height: unset;
}
.editor {
  padding: 8px;
  position: relative;
  /* ul */
  /* ol */
  /* table */
  /* RWD Table */
  /* blockquote */
  /* a */
  /* buton */
  /* RED */
}
.editor * {
  max-width: 100% !important;
}
.editor img {
  height: auto !important;
}
.editor h1, .editor h2, .editor h3, .editor h4 {
  color: #1bc7ed;
  margin-top: 10px;
  line-height: 1.8em;
  font-weight: 500;
}
.editor h1:nth-child(1), .editor h2:nth-child(1), .editor h3:nth-child(1), .editor h4:nth-child(1) {
  margin-top: 0;
}
.editor h1, .editor .h1 {
  font-size: 30px;
}
.editor h2, .editor .h2 {
  font-size: 24px;
}
.editor h3, .editor .h3 {
  font-size: 20px;
}
.editor h4, .editor .h4 {
  font-size: 18px;
  font-weight: 500;
}
.editor ul, .editor ol {
  margin: 8px 0;
  padding: 0;
}
.editor ul > li, .editor ol > li {
  line-height: 1.6em;
  position: relative;
  margin-bottom: 5px;
}
.editor ul {
  margin: 8px 0;
  font-size: inherit;
  list-style: none;
}
.editor ul > li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.4em;
  font-size: inherit;
}
.editor ul > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #1bc7ed;
  left: 0.7em;
  top: 0.6em;
  border-radius: 0.2em;
}
.editor ol {
  padding: 0 20px;
  list-style-type: decimal;
  padding-left: 1.8em;
}
.editor ol > li {
  position: relative;
}
.editor table {
  border-spacing: 0;
  border-collapse: collapse;
  border-color: #e1e1e1;
  border-style: solid;
  overflow: auto;
  width: 100%;
}
.editor table th, .editor table td {
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  padding: 8px;
}
.editor table th {
  background-color: rgba(27, 199, 237, 0.1);
  color: #1bc7ed;
}
.editor table h1,
.editor table h2,
.editor table h3,
.editor table h4 {
  margin: 0;
}
.editor .tbl_wrapper {
  overflow-x: auto;
}
.editor .tbl_wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
@media (max-width: 767px ) {
  .editor .tbl_shadow {
    position: relative;
  }
  .editor .tbl_shadow:before, .editor .tbl_shadow:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 5px;
  }
  .editor .tbl_shadow:before {
    left: 0;
    box-shadow: inset 6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
  .editor .tbl_shadow:after {
    right: 0;
    box-shadow: inset -6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
}
.editor blockquote p {
  margin: 0;
}
.editor a {
  color: #3C37C7;
}
.editor a:hover {
  color: #3C37C7;
  text-decoration: underline;
}
.editor input[type=button] {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #1bc7ed;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-color: transparent;
  width: auto;
  padding: 8px 16px;
  height: auto;
}
.editor input[type=button]:hover, .editor input[type=button]:focus {
  color: white;
  background-color: #11b8dd;
}
.editor input[type=button].large {
  font-size: 20px;
  padding: 18px 24px;
}
.editor input[type=button].radius {
  border-radius: 30px;
}
.editor input[type=button].reverse {
  background-color: white;
  color: #1bc7ed;
}
@media (max-width: 767px) {
  .editor h1 {
    font-size: 26px;
  }
  .editor h2 {
    font-size: 20px;
  }
  .editor h3 {
    font-size: 18px;
  }
  .editor h4 {
    font-size: 16px;
    font-weight: 500;
  }
}

.editor:empty {
  display: none;
}

/* Recover Bootstrap
-------------------- */
.editor {
  /* blockquote */
  /* hr */
}
.editor blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
.editor hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eee;
}
.editor .container.section_simple > .editor {
  padding-left: 20px;
  padding-right: 20px;
}

body {
  padding-top: 1px;
  margin-top: -1px;
  position: relative;
}

.section_main {
  padding: 30px 0;
}
@media (max-width: 767px ) {
  .section_main {
    padding: 20px 0;
  }
}

/* Title */
.title_main:empty, .title_special:empty {
  display: none !important;
}

.title_special {
  display: inline-block;
  position: relative;
  text-align: left;
  z-index: 1;
  line-height: 1;
  margin: 10px 0;
}

.tt_wr > .title_special, .tt_wr .title_main {
  display: inline-block;
}

/* Contact Info List */
ul.ci_list {
  padding: 0 15px 10px;
  padding-left: 0;
  position: relative;
  text-align: left;
}
ul.ci_list li {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  padding-left: 32px;
  line-height: 1.5em;
}
ul.ci_list li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  color: inherit;
  font-size: 1em;
  line-height: inherit;
  width: 1.5em;
  text-align: center;
  left: 0;
}
ul.ci_list li.map-marker:before {
  content: "\f041";
  background-image: none;
}
ul.ci_list li.phone:before {
  content: "\f095";
  background-image: none;
}
ul.ci_list li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
ul.ci_list li.fax:before {
  content: "\f1ac";
  background-image: none;
}
ul.ci_list li.envelope:before {
  content: "\f003";
  background-image: none;
}
ul.ci_list li.link:before {
  content: "\f0c1";
  background-image: none;
}
ul.ci_list li.calendar:before {
  content: "\f274";
  background-image: none;
}
ul.ci_list li.line:before {
  content: "";
  background-image: url(../images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
ul.ci_list li:empty {
  display: none;
}
ul.ci_list li:before {
  left: 0;
  top: 0;
}
ul.ci_list a:hover {
  text-decoration: underline;
}

/* Not Use
-------------- */
/* Footer Common
------------------ */
footer a {
  color: inherit;
}
footer [class*=col-lg], footer [class*=col-md], footer [class*=col-sm], footer [class*=col-xs] {
  padding-right: 0;
  padding-left: 0;
}

/* Footer Logo
------------------ */
.f_logo {
  position: relative;
  overflow: hidden;
}
.f_logo img {
  position: relative;
  display: block;
  z-index: 1;
  padding: 0;
}

/* Footer Info
------------------ */
.f_info_ul {
  position: relative;
  text-align: left;
  padding: 0;
  font-size: 14px;
}
.f_info_ul li {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5em;
}
.f_info_ul li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  color: inherit;
  font-size: 1em;
  line-height: inherit;
  width: 1.5em;
  text-align: center;
  left: 0;
}
.f_info_ul li.map-marker:before {
  content: "\f041";
  background-image: none;
}
.f_info_ul li.phone:before {
  content: "\f095";
  background-image: none;
}
.f_info_ul li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
.f_info_ul li.fax:before {
  content: "\f1ac";
  background-image: none;
}
.f_info_ul li.envelope:before {
  content: "\f003";
  background-image: none;
}
.f_info_ul li.link:before {
  content: "\f0c1";
  background-image: none;
}
.f_info_ul li.calendar:before {
  content: "\f274";
  background-image: none;
}
.f_info_ul li.line:before {
  content: "";
  background-image: url(../images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
.f_info_ul li:empty {
  display: none;
}

/* Footer Copyright
------------------ */
.f_copyright {
  position: relative;
  overflow: hidden;
}
.f_copyright p {
  display: block;
  z-index: 1;
  position: relative;
  line-height: 1.8em;
  margin: 0;
}

/* Footer Fix
------------------ */
.footer_fix {
  border-top: 1px solid transparent;
  border-style: inset;
}

/* Shop Basic Style
--------------------- */
/* ======================== 
Mixin
======================== */
/* ======================== 
  Common
======================== */
/* Pure Cover */
/* a - z */
/* Editor (cover global)
-------------------------- */
.editor {
  font-size: 14px;
  /* table */
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  color: #4d4d4d;
  font-weight: 500;
}
.editor ul > li:before {
  background-color: #001a29;
}
.editor table {
  min-width: 500px;
  /* th, td */
}
.editor table th, .editor table td {
  padding: 4px 8px;
}
.editor table {
  border-color: #e1e1e1;
}
.editor table th, .editor table td {
  border-color: #e1e1e1;
}
.editor table th {
  background-color: rgba(27, 199, 237, 0.1);
  color: #4d4d4d;
}
.editor a, .editor a:hover {
  color: #001a29;
}

/* Marquee (Cover Global)
----------------- */
/* Height */
#abgne_marquee {
  height: 40px;
}

/* style */
.marquee .date {
  padding-right: 10px;
}
.marquee .category {
  position: relative;
  padding: 0 15px;
  margin: 0 10px;
  line-height: 40px;
  display: inline-block;
}
.marquee .category:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #33cdef;
  top: 0px;
  -webkit-transform: skewX(-10deg);
  -khtml-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  transform: skewX(-10deg);
}

/* Independent Comp */
/* a - z */
/* Action Bar
============ */
.prd_actionbar {
  /* breadcrumb */
  /* RWD */
}
.prd_actionbar .breadcrumb_wrapper {
  float: right;
}
.prd_actionbar .breadcrumb {
  padding: 10px 8px;
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .prd_actionbar .breadcrumb {
    padding: 15px 8px;
  }
}
@media (max-width: 575px ) {
  .prd_actionbar.xxs-responsive {
    /* breadcrumb */
  }
  .prd_actionbar.xxs-responsive .caret_select, .prd_actionbar.xxs-responsive select {
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .caret_select {
    margin-bottom: 2px;
  }
  .prd_actionbar.xxs-responsive .breadcrumb_wrapper {
    float: left;
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .breadcrumb {
    padding-bottom: 5px;
  }
}

/* Album Date Note
---------------- */
.divide_note {
  margin: 0 0 5px;
  text-align: left;
  font-size: 11px;
  color: #999;
}
.divide_note > li {
  display: inline-block;
}
.divide_note > span, .divide_note > li + li, .divide_note.display-block > li {
  padding-left: 20px;
  position: relative;
}
.divide_note > span:before, .divide_note > li + li:before, .divide_note.display-block > li:before {
  content: "";
  position: absolute;
  background-color: #999;
  width: 4px;
  height: 4px;
  left: calc((20px - 4px) / 2);
  top: calc(50% - 4px / 2);
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.divide_note.display-block > li {
  display: block;
}

/* Title Main 
--------------------*/
.title_main {
  color: #1bc7ed;
}

/* Title special 
--------------------*/
.title_special {
  position: relative;
  display: inline-block;
  float: none;
  color: #1bc7ed;
  font-weight: 400;
  margin: 0.5em 0;
}
.title_special:before, .title_special:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 3em;
  max-width: 400px;
  height: 0px;
  border-top: 3px double #e1e1e1;
}
.title_special:after {
  left: calc(100% + 30px);
}
.title_special:before {
  right: calc(100% + 30px);
}

/* Wrapper
-------------- */
.tt_wr {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Comp Basic Setting */
/* a - z */
.artc_basic > [class*=col-lg], .artc_basic > [class*=col-md], .artc_basic > [class*=col-sm], .artc_basic > [class*=col-xs] {
  padding: 0 16px;
}
.artc_basic .img {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 8px;
  margin-bottom: 10px;
}

.artc_header {
  padding: 8px;
}
.artc_header .date {
  margin: 0;
}

.crsl_basic {
  /* inner */
  /* IMG */
  /* Content */
  /* Transition */
  /* Hover */
  /* Owl Nav, Dots */
  /* RWD */
}
.crsl_basic .item {
  display: block;
  padding: 0;
}
.crsl_basic .item:after, .crsl_basic .item:before {
  content: "";
  display: block;
  clear: both;
}
.crsl_basic [class*=col-lg], .crsl_basic [class*=col-md], .crsl_basic [class*=col-sm], .crsl_basic [class*=col-xs] {
  padding: 0;
}
.crsl_basic .inner {
  display: block;
  overflow: hidden;
  border-radius: 0px;
}
.crsl_basic .img_wrapper {
  position: relative;
  overflow: hidden;
}
.crsl_basic .img {
  width: 100%;
  padding: 0;
  padding-top: 75%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_basic .content {
  padding: 8px 15px;
  color: #4d4d4d;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.crsl_basic .title {
  font-weight: 400;
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
}
.crsl_basic .dsc {
  color: #727272;
}
.crsl_basic .date {
  position: relative;
  color: #999;
  font-size: 0.6em;
}
.crsl_basic .item, .crsl_basic .img_wrapper, .crsl_basic img {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.crsl_basic .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.crsl_basic .owl-nav [class*=owl-] {
  position: relative;
  color: white;
  background-color: transparent;
  font-size: 32px;
  margin: 0px;
  padding: 0;
  width: 40px;
  text-align: center;
  position: absolute;
  border-radius: 20px;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  opacity: 1;
}
.crsl_basic .owl-nav [class*=owl-] i {
  line-height: 40px;
}
.crsl_basic .owl-nav [class*=owl-].disabled, .crsl_basic .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.crsl_basic .owl-prev {
  left: 30px;
}
.crsl_basic .owl-prev i {
  margin-right: 5px;
}
.crsl_basic .owl-next {
  right: 30px;
}
.crsl_basic .owl-next i {
  margin-left: 5px;
}
.crsl_basic .owl-nav {
  opacity: 0;
}
.crsl_basic:hover .owl-nav {
  opacity: 1;
}
.crsl_basic .owl-dots {
  position: relative;
}
.grid_basic:after, .grid_basic:before {
  content: "";
  display: block;
  clear: both;
}
.grid_basic .item {
  display: block;
  position: relative;
  padding: 8px;
}
@media (max-width: 575px ) {
  .grid_basic .item.col-xxs-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .grid_basic .item.col-xs-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .grid_basic .item.col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .grid_basic .item.col-md-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-2:nth-child(6n+1) {
    clear: left;
  }
}
.grid_basic .img_wrapper {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
.grid_basic .img, .grid_basic img {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.grid_basic .img {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.grid_basic .img_tag_wrapper {
  position: absolute;
  left: 0px;
  top: 10px;
  color: white;
  z-index: 2;
}
.grid_basic .img_tag_wrapper > .img_tag {
  display: block;
  padding: 4px 10px;
  margin-bottom: 4px;
  border-radius: 0 4px 4px 0;
}
.grid_basic .img_tag_wrapper > .img_tag {
  background-color: #f56954;
}
.grid_basic .img_tag_wrapper > .img_tag.success {
  background-color: #6ec450;
}
.grid_basic .img_tag_wrapper > .img_tag.info {
  background-color: #2fc6cc;
}
.grid_basic .img_tag_wrapper > .img_tag.warning {
  background-color: #ffb807;
}
.grid_basic .content {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 8px;
}
.grid_basic .title {
  margin: 0;
  font-weight: 500;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  white-space: normal;
  text-overflow: initial;
}
.grid_basic .dsc {
  overflow: hidden;
  line-height: 1.8em;
  max-height: 5.4em;
  white-space: normal;
  text-overflow: initial;
  height: auto;
  max-height: 5.4em;
}
.grid_basic .item:hover .img, .grid_basic .item:hover img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 767px ) {
  .grid_basic .item {
    padding: 4px;
  }
}

.modal-body h4 {
  color: #1bc7ed;
  margin-bottom: 10px;
}
.modal-body .warning, .modal-body .note {
  padding: 4px 0;
  text-align: center;
  font-size: 12px;
  margin: 0;
}
.modal-body .warning {
  color: #d9534f;
}
.modal-body .warning a {
  text-decoration: underline;
}
.modal-body .warning a:hover {
  text-decoration: none;
}
.modal-body .note {
  margin: 0;
}
.modal-body a {
  text-decoration: underline;
}
.modal-body a:hover {
  text-decoration: none;
}

.section_main {
  margin-top: -1px;
  margin-bottom: -1px;
  padding: 30px 0 60px;
}
@media (max-width: 991px ) {
  .section_main {
    padding: 15px 0;
  }
}

/* 
Table Basic
-------------- */
.form_table .date {
  color: #727272;
  font-size: 11px;
  line-height: 1.4em;
}
.form_table p {
  line-height: 1.5em;
}
/* ======================== 
Pages Layout
======================== */
/* Global Pages
----------------- */
/* Home
----------------- */
/* Prd
---------------- */
/* Cart
---------------- */
/* Member
---------------- */
/* Pages
----------------- */
/* Member
----------------- */
/* common */
/* global 
------------------------ */
/* Animation */
@-webkit-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-moz-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-ms-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-o-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
ul.navbar-nav > li.jump.jump > a > span {
  position: relative;
  top: -6px;
  display: inline-block;
  -webkit-animation: jump-animation 0.4s ease infinite alternate;
  -khtml-animation: jump-animation 0.4s ease infinite alternate;
  -moz-animation: jump-animation 0.4s ease infinite alternate;
  -ms-animation: jump-animation 0.4s ease infinite alternate;
  -o-animation: jump-animation 0.4s ease infinite alternate;
  animation: jump-animation 0.4s ease infinite alternate;
  color: #1bc7ed;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+2) {
  -webkit-animation-delay: 0.1s;
  -khtml-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+3) {
  -webkit-animation-delay: 0.2s;
  -khtml-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+4) {
  -webkit-animation-delay: 0.3s;
  -khtml-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+5) {
  -webkit-animation-delay: 0.4s;
  -khtml-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+6) {
  -webkit-animation-delay: 0.5s;
  -khtml-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+7) {
  -webkit-animation-delay: 0.6s;
  -khtml-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+8) {
  -webkit-animation-delay: 0.7s;
  -khtml-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -ms-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n+9) {
  -webkit-animation-delay: 0.8s;
  -khtml-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
ul.navbar-nav > li.jump.jump > a > span:nth-child(10n) {
  -webkit-animation-delay: 0.9s;
  -khtml-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
ul.navbar-nav > li.jump.jump.active > a {
  color: #fff;
}
ul.navbar-nav > li.jump.jump.active > a > span {
  color: inherit;
  text-shadow: 0 6px 4px rgba(0, 0, 0, 0.2);
}
ul.navbar-nav > li.jump a {
  font-weight: 500;
}

.navbar {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar [class*=col-lg],
.navbar [class*=col-md],
.navbar [class*=col-sm],
.navbar [class*=col-xs] {
  padding: 0;
}
.navbar .container-fluid {
  padding: 0;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .container {
    width: 100%;
  }
}

.navbar-collapse {
  padding: 0;
}
@media (max-width: 767px ) {
  .navbar-collapse {
    padding: 0;
    margin: 0 !important;
    max-height: calc(100vh - 120px);
  }
}

.navbar {
  border-bottom: 0;
  padding: 0px 0;
}
.navbar.add_class {
  padding: 0;
}
.navbar > .container-fluid, .navbar .container {
  padding: 0;
}
.navbar .navbar-header {
  margin: 0;
}
.navbar .navbar-nav {
  padding: 0;
}

.navbar,
.dsk_menu {
  z-index: 1030;
  width: 100%;
  position: relative;
}

.navbar {
  z-index: 1030;
}
@media (max-width: 767px ) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

.navbar-header {
  float: unset;
}

@media (max-width: 767px ) {
  .navbar-collapse {
    z-index: 1030;
    position: fixed;
    left: 0;
    top: 49px !important;
    width: 100%;
  }
}

@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .navbar-nav {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-header {
    border-bottom: 0px;
  }
}
/* Mobile Nav Scroll Bar
----------------------- */
.navbar-collapse::-webkit-scrollbar,
.js-offcanvas::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Nav Brand Header Layout
---------------- */
.navbar-header {
  text-align: center;
}
.navbar-header .brand {
  display: inline-block;
  vertical-align: bottom;
}
@media (min-width: 768px ) {
  .navbar-header .brand {
    padding: 10px 12px;
  }
}
@media (max-width: 767px ) {
  .navbar-header .brand {
    padding: 12px 12px;
  }
}
.navbar-header .brand .brand_logo {
  width: auto;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 168px;
  height: 40px;
  background-position: 0 0px;
  background-size: 480px auto;
}
.navbar-header .brand .brand_logo.en {
  width: 168px;
  height: 40px;
  background-position: 0 0px;
  background-size: 480px auto;
}
@media (max-width: 767px ) {
  .navbar-header .brand .brand_logo {
    width: 126px;
    height: 30px;
    background-position: 0 0px;
    background-size: 360px auto;
  }
  .navbar-header .brand .brand_logo.en {
    width: 126px;
    height: 30px;
    background-position: 0 0px;
    background-size: 360px auto;
  }
}
.navbar_theme .navbar-header .brand .brand_logo {
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 168px;
  height: 40px;
  background-position: 0 0px;
  background-size: 480px auto;
}
.navbar_theme .navbar-header .brand .brand_logo.en {
  width: 168px;
  height: 40px;
  background-position: 0 0px;
  background-size: 480px auto;
}
@media (max-width: 767px ) {
  .navbar_theme .navbar-header .brand .brand_logo {
    width: 126px;
    height: 30px;
    background-position: 0 0px;
    background-size: 360px auto;
  }
  .navbar_theme .navbar-header .brand .brand_logo.en {
    width: 126px;
    height: 30px;
    background-position: 0 0px;
    background-size: 360px auto;
  }
}

.navbar-header .brand .bread_logo.home_logo_frist_none {
  opacity: 0;
  display: none;
}
.navbar-header .brand h3 {
  padding-left: 8px;
}

.navbar_theme .navbar-header .brand .brand_logo.home_logo_none {
  opacity: 0;
}
@media (max-width: 767px ) {
  .navbar_theme .navbar-header .brand .brand_logo.home_logo_none {
    opacity: 1;
  }
}

.navbar_theme.add_class .navbar-header .brand_logo.home_logo_none {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.add_class .navbar-header .brand_logo {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

@media (max-width: 767px ) {
  .navbar-header {
    text-align: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 1200px ) {
  .navbar-header {
    text-align: center;
  }
}

/* Nav Layout
---------------- */
@media (min-width: 768px ) {
  .navbar-nav {
    display: inline-block;
    float: none !important;
    vertical-align: bottom;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .navbar-collapse {
    text-align: center;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .navbar-collapse {
    text-align: center;
  }
}
@media (min-width: 1200px ) {
  .navbar-collapse {
    text-align: center;
  }
}
/* --------------------------------------------
Desktop Menu & Mobile Bootstrap Menu Style
--------------------------------------------
import files:
- _menuColor


-------------------------------------------- */
/* Desktop Navbar
----------------------- */
/* Layout */
@media (min-width: 768px) {
  .navbar-nav {
    /* Hover Dropdown */
  }
  .navbar-nav > li {
    font-size: 16px;
  }
  .navbar-nav > li:hover > a:before {
    content: "";
    position: absolute;
    width: 73%;
    height: 1px;
    background: #1bc7ed;
    bottom: 16px;
    left: 10px;
  }
  .navbar-nav > li > a {
    text-align: center;
    z-index: 1001;
    white-space: nowrap;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
  .navbar-nav .dropdown {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-nav .dropdown > a {
    position: relative;
    padding-right: 24px;
  }
  .navbar-nav .dropdown > a:after {
    display: block;
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: calc(50% - 2px);
    border-color: transparent;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    height: 1px;
  }
  .navbar-nav .dropdown-menu {
    top: calc(100% + 0px);
    left: 0;
    border-width: 0px;
    border-radius: 0;
    min-width: 160px;
    z-index: 1001;
  }
  .navbar-nav .dropdown-menu > li > a {
    padding: 10px 15px;
    font-size: 16px;
    background-color: transparent;
  }
  .navbar-nav .dropdown-submenu > .dropdown-menu {
    top: 0px;
    margin-top: 0;
    left: 100%;
    min-height: calc(100%);
  }
  .navbar-nav .dropdown-submenu > a {
    padding-right: 30px;
    position: relative;
  }
  .navbar-nav .dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: calc(50% - 5px);
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
/* Style */
@media (min-width: 768px) {
  ul.navbar-nav > li > a {
    border-color: transparent;
    position: relative;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus {
    background-color: rgba(0, 0, 0, 0.1);
    color: #4d4d4d;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus, ul.navbar-nav > li > a.mPS2id-highlight {
    background-color: transparent;
    color: #4d4d4d;
  }
  ul.navbar-nav > li.active > a, ul.navbar-nav > li.active > a:hover, ul.navbar-nav > li.active > a:focus {
    color: #4d4d4d;
    background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
  }
  ul.navbar-nav > .dropdown:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 16px;
    left: 10px;
  }
  ul.navbar-nav .dropdown > a:after {
    border-top-color: #4d4d4d;
  }
  ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: #4d4d4d;
  }
  ul.navbar-nav .dropdown-menu {
    background-color: #001b2b;
  }
  ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
    position: relative;
  }
  ul.navbar-nav .dropdown-menu > li > a:hover, ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  ul.navbar-nav .dropdown-menu > li:hover > a:before {
    content: "";
    position: absolute;
    width: 81%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  ul.navbar-nav .dropdown-menu > li.lineshort:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid white;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #1bc7ed;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #1bc7ed;
  }
  ul.navbar-nav a {
    color: #4d4d4d;
  }
  ul.navbar-nav .dropdown-menu a {
    color: #4d4d4d;
  }
  ul.navbar-nav .dropdown-menu a:hover, ul.navbar-nav .dropdown-menu a:focus {
    color: #4d4d4d;
  }

  .add_class ul.navbar-nav > li > a {
    border-color: transparent;
    position: relative;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus {
    background-color: rgba(0, 0, 0, 0.1);
    color: #4d4d4d;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus, .add_class ul.navbar-nav > li > a.mPS2id-highlight {
    background-color: transparent;
    color: #4d4d4d;
  }
  .add_class ul.navbar-nav > li.active > a, .add_class ul.navbar-nav > li.active > a:hover, .add_class ul.navbar-nav > li.active > a:focus {
    color: #4d4d4d;
    background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
  }
  .add_class ul.navbar-nav > .dropdown:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 16px;
    left: 10px;
  }
  .add_class ul.navbar-nav .dropdown > a:after {
    border-top-color: #4d4d4d;
  }
  .add_class ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: #4d4d4d;
  }
  .add_class ul.navbar-nav .dropdown-menu {
    background-color: #001b2b;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
    position: relative;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a:hover, .add_class ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .add_class ul.navbar-nav .dropdown-menu > li:hover > a:before {
    content: "";
    position: absolute;
    width: 81%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .add_class ul.navbar-nav .dropdown-menu > li.lineshort:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid white;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #1bc7ed;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #1bc7ed;
  }
  .add_class ul.navbar-nav a {
    color: #4d4d4d;
  }
  .add_class ul.navbar-nav .dropdown-menu a {
    color: #4d4d4d;
  }
  .add_class ul.navbar-nav .dropdown-menu a:hover, .add_class ul.navbar-nav .dropdown-menu a:focus {
    color: #4d4d4d;
  }

  .navbar {
    background-color: white;
  }
  .navbar.add_class {
    background-color: white;
  }

  .dsk_menu {
    background-color: white;
    border-bottom: 1px solid #e1e1e1;
  }
  .dsk_menu.add_class {
    background-color: white;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .navbar-collapse {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    padding: 0 10px;
    background: #001b2b;
  }

  ul.navbar-nav {
    border-top: 0px solid #e1e1e1;
    margin: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  ul.navbar-nav ul {
    padding: 0;
  }
  ul.navbar-nav a, ul.navbar-nav li.dropdown ul.dropdown-menu a {
    padding: 10px 15px;
    color: #1bc7ed;
    font-weight: 700;
    font-size: 16px;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu a {
    padding: 8px 12px !important;
  }
  ul.navbar-nav a, ul.navbar-nav a:hover, ul.navbar-nav a:focus, ul.navbar-nav .open a, ul.navbar-nav .open a:hover, ul.navbar-nav .open a:focus {
    color: #1bc7ed;
    background-color: #001b2b;
  }
  ul.navbar-nav li.dropdown > a, ul.navbar-nav li.dropdown-submenu > a {
    position: relative;
  }
  ul.navbar-nav li.dropdown > a:after, ul.navbar-nav li.dropdown-submenu > a:after {
    display: block;
    content: "＋";
    position: absolute;
    width: 0;
    height: 0;
    color: #fff;
    left: 48px;
    top: calc(50% - 11px);
    font-size: 20px;
  }
  ul.navbar-nav li.dropdown .ic_add_jp:after, ul.navbar-nav li.dropdown-submenu .ic_add_jp:after {
    left: 85px;
  }
  ul.navbar-nav li.dropdown .ic_add_en:after, ul.navbar-nav li.dropdown-submenu .ic_add_en:after {
    left: 90px;
  }
  ul.navbar-nav li.dropdown.open > a:after, ul.navbar-nav li.dropdown-submenu.open > a:after {
    content: "－";
  }
  ul.navbar-nav > li.dropdown.open > a {
    background: #001b2b;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu {
    width: 100%;
    position: relative;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li > a {
    border-left: 2px solid #1bc7ed;
    background: #001b2b;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li.open > a {
    background-color: #f7f7f7;
    background: #001b2b;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu > li > a {
    border-left: 4px solid #0c7d96;
    background-color: #f2f2f2;
  }

  .navbar, .dsk_menu {
    background-color: white;
  }
  .navbar.add_class, .dsk_menu.add_class {
    background-color: white;
  }
}
/* Toggle Button */
.navbar-toggle {
  float: right;
  border: 0px;
  padding: 14px 14px;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
}
.navbar-toggle .icon-bar {
  background-color: #1bc7ed;
  margin: 4px 0;
}
.navbar-toggle:hover, .navbar-toggle:focus {
  background-color: transparent;
}
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
  background: #1bc7ed;
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -khtml-transform: translateY(6px) rotate(45deg);
  -moz-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3) {
  -webkit-transform: scaleX(0.01);
  -khtml-transform: scaleX(0.01);
  -moz-transform: scaleX(0.01);
  -ms-transform: scaleX(0.01);
  -o-transform: scaleX(0.01);
  transform: scaleX(0.01);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(4) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -khtml-transform: translateY(-6px) rotate(-45deg);
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -o-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

/* nav components */
/* Mobile - Menu */
.js-offcanvas {
  padding: 0;
  padding-top: 50px;
  left: 0;
  overflow-x: none;
  overflow-y: auto;
  background-color: #fff;
}
.js-offcanvas ul.navbar-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav, .js-offcanvas .list-unstyled {
  margin: 0;
}
.js-offcanvas ul.navbar-nav li a, .js-offcanvas .list-unstyled li a {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav li.open a, .js-offcanvas ul.navbar-nav li a:hover, .js-offcanvas ul.navbar-nav li a:focus, .js-offcanvas .list-unstyled li.open a, .js-offcanvas .list-unstyled li a:hover, .js-offcanvas .list-unstyled li a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > li, .js-offcanvas .list-unstyled > li {
  margin: 0;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas .list-unstyled > li > a {
  color: #4d4d4d;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas ul.navbar-nav > li > a:active, .js-offcanvas ul.navbar-nav > li > a:focus, .js-offcanvas ul.navbar-nav > li.active > a, .js-offcanvas ul.navbar-nav > li.active > a:active, .js-offcanvas ul.navbar-nav > li.active > a:focus, .js-offcanvas ul.navbar-nav > li.open > a, .js-offcanvas ul.navbar-nav > li.open > a:active, .js-offcanvas ul.navbar-nav > li.open > a:focus, .js-offcanvas .list-unstyled > li > a, .js-offcanvas .list-unstyled > li > a:active, .js-offcanvas .list-unstyled > li > a:focus, .js-offcanvas .list-unstyled > li.active > a, .js-offcanvas .list-unstyled > li.active > a:active, .js-offcanvas .list-unstyled > li.active > a:focus, .js-offcanvas .list-unstyled > li.open > a, .js-offcanvas .list-unstyled > li.open > a:active, .js-offcanvas .list-unstyled > li.open > a:focus {
  background: white;
}
.js-offcanvas ul.navbar-nav > .dropdown > a:after, .js-offcanvas .list-unstyled > .dropdown > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #1bc7ed;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a:after, .js-offcanvas .list-unstyled > .dropdown.open > a:after {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu {
  margin-left: 0px;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  background: #f2f2f2;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu *, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu * {
  background: unset;
  transition-duration: 0s;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu > li > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu > li > a {
  color: #4d4d4d !important;
  padding: 12px !important;
  border-left: 4px solid #1bc7ed;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 0px;
  margin-top: 0;
  background: rgba(27, 199, 237, 0.04);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a {
  border-left-color: #0c7d96;
  padding: 8px 12px !important;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a {
  padding-right: 30px;
  position: relative;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #1bc7ed;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu.open > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu.open > a:after {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown.open > .dropdown-menu {
  display: block;
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a, .js-offcanvas ul.navbar-nav > .dropdown.open > a:hover, .js-offcanvas ul.navbar-nav > .dropdown.open > a:focus, .js-offcanvas .list-unstyled > .dropdown.open > a, .js-offcanvas .list-unstyled > .dropdown.open > a:hover, .js-offcanvas .list-unstyled > .dropdown.open > a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > .dropdown .caret:after, .js-offcanvas .list-unstyled > .dropdown .caret:after {
  color: #117ad5;
}
@media (min-width: 768px) {
  .js-offcanvas {
    display: none;
  }
}
.js-offcanvas.is-closed a {
  display: none;
}

.cart_btn_wrapper {
  float: right;
  padding: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .cart_btn_wrapper {
    display: none;
  }
}

/* Cart Button */
.cart_btn {
  display: block;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: #1bc7ed;
}
.cart_btn > i {
  color: #fff;
  font-size: 24px;
  line-height: 44px;
}

/* Small Number (Web & Mobile)*/
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  position: absolute;
  line-height: 1em;
  border-radius: 100px;
  padding: 2px 5px;
  background-color: #fff;
  border: 2px solid #1bc7ed;
  color: #1bc7ed;
  top: 10%;
  right: 10%;
  font-size: 12px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #444;
  background-color: #4ad3f1;
  color: #444;
  top: 12%;
  right: 12%;
}

/* Cart Popup */
.cart_popup_wrapper {
  height: 0;
  z-index: 1010;
}

.cart_popup {
  margin: 0;
  position: absolute;
  border-radius: 3px;
  padding: 0;
  display: none;
  background: #fff;
  width: 480px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  top: 60px;
  right: 0;
}
.cart_popup.active {
  display: block;
}
.cart_popup .cart_itms {
  padding: 0 4px;
}
.cart_popup .cart_itms {
  max-height: 307px;
  overflow-x: hidden;
  overflow-y: auto;
}
.cart_popup .cart_itms::-webkit-scrollbar {
  width: 4px;
}
.cart_popup .cart_itms::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.cart_popup .cart_itms::-webkit-scrollbar-thumb {
  background-color: rgba(27, 199, 237, 0.5);
  outline: 0px solid;
}
.cart_popup li {
  padding: 4px 0;
}
.cart_popup li:after, .cart_popup li:before {
  content: "";
  display: block;
  clear: both;
}
.cart_popup li + li {
  border-top: 1px solid #e1e1e1;
}
.cart_popup li p {
  margin: 0;
}
.cart_popup .img_wrapper, .cart_popup .title, .cart_popup .price_col {
  display: block;
  margin: 0;
  float: left;
}
.cart_popup .img_wrapper {
  width: 60px;
  height: 60px;
}
.cart_popup .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.cart_popup .price_col {
  position: relative;
  width: 100px;
  padding-left: 40px;
}
.cart_popup .price_col .num_title {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 80%;
}
.cart_popup .price_col .price {
  line-height: 1.5em;
}
.cart_popup .price_col p {
  white-space: nowrap;
}
.cart_popup .title {
  width: calc(100% - 60px - 100px);
  padding: 0 4px;
  overflow: hidden;
}
.cart_popup .prd_title {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  white-space: normal;
  text-overflow: initial;
}
.cart_popup .footer {
  padding: 4px;
  border-top: 1px solid #e1e1e1;
}
.cart_popup .footer p {
  float: right;
  margin-left: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.cart_popup:after {
  bottom: 100%;
  right: 22px;
  top: -8px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #1bc7ed;
  border-width: 8px;
}

.nav_social_wrapper {
  padding: 8px 0;
}
.nav_social_wrapper ul:after, .nav_social_wrapper ul:before {
  content: "";
  display: block;
  clear: both;
}
.nav_social_wrapper ul > li {
  display: block;
  float: left;
  margin-right: 8px;
}
.nav_social_wrapper a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: #1bc7ed;
  background-size: cover;
  background-repeat: no-repeat;
}
.nav_social_wrapper a:before {
  font-family: "FontAwesome";
  position: absolute;
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  text-align: center;
  left: 0;
  top: 0;
}
.nav_social_wrapper a.line {
  background-color: #00bb00;
  background-image: none;
}
.nav_social_wrapper a.line:before {
  content: "\ ";
  background-image: none;
}
.nav_social_wrapper a.line:hover {
  background-color: #008800;
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}
.nav_social_wrapper a.facebook {
  background-color: #2c6ac4;
  background-image: none;
}
.nav_social_wrapper a.facebook:before {
  content: "\f09a";
  background-image: none;
}
.nav_social_wrapper a.facebook:hover {
  background-color: #23539a;
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}
.nav_social_wrapper a.instagram {
  background-color: transparent;
  background-image: url(../images/common/bg_social_ig.jpg);
}
.nav_social_wrapper a.instagram:before {
  content: "\f16d";
  background-image: none;
}
.nav_social_wrapper a.instagram:hover {
  background-color: rgba(0, 0, 0, 0);
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}

.js-offcanvas .nav_social_wrapper {
  padding: 8px;
}
.js-offcanvas .nav_social_wrapper ul {
  text-align: center;
}
.js-offcanvas .nav_social_wrapper li {
  clear: none;
  display: inline-block;
  float: none;
}

@media (max-width: 767px ) {
  .nav_right_group .nav_social_wrapper {
    display: none;
  }
}

/* Search Collaspe
------------------- */
.s_f_wrapper {
  max-width: 240px;
  float: right;
  padding: 8px 0 8px;
}
.s_f_wrapper input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.s_f_wrapper #s_form {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px 20px;
  text-indent: 1em;
  display: inline-block;
  border: 0 none;
  width: 0;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  padding: 12px 19px;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  vertical-align: baseline;
  margin: 0;
  background-image: url(../images/common/ic_search.svg);
}
.s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
  background-image: url(../images/common/ic_search_hover.svg);
}
.s_f_wrapper #s_form:focus {
  width: 240px;
  cursor: text;
}
@media (max-width: 767px ) {
  .s_f_wrapper {
    position: fixed;
    right: 0px;
    top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    max-width: unset;
    color: #4d4d4d;
  }
  .s_f_wrapper:hover, .s_f_wrapper:focus {
    width: 100%;
  }
  .s_f_wrapper #s_form {
    background-position: calc(56px / 2 - 12px) center;
    width: 56px;
    height: 56px;
    padding: calc(56px / 2 - 12px) calc(56px / 2 - 5px);
    border-radius: calc(56px / 2);
    float: right;
    box-shadow: 0 3.2px 10px rgba(0, 0, 0, 0.32);
    background-color: #1bc7ed;
  }
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    width: 100%;
    background-color: #efefef;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}
@media (min-width: 768px ) {
  .s_f_wrapper #s_form {
    color: #4d4d4d;
    border: 0px solid #1bc7ed;
    background-color: #1bc7ed;
    background-position: calc(44px / 2 - 12px) center;
    width: 44px;
    height: 44px;
    padding: calc(44px / 2 - 12px) calc(44px / 2 - 5px);
  }
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    background-color: transparent;
    border: 1px solid #e1e1e1;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}

/* no desktop */
/* Search Desktop (Normal)
---------------------- */
.s_desktop {
  float: right;
  width: 300px;
  padding: 4px 0 4px;
  position: relative;
}
.s_desktop .search_input {
  float: left;
  outline: none;
  padding: 0;
  padding-left: 20px;
  width: 100%;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  color: #4d4d4d;
  border: 0px solid #1bc7ed;
  background-color: #f1f1f1;
}
.s_desktop .search_button {
  position: absolute;
  right: 0px;
  width: 28px;
  height: 28px;
  border-radius: 0 14px 14px 0;
  border: 0px solid #1bc7ed;
  background-color: #f1f1f1;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.s_desktop .search_button i {
  height: 28px;
  line-height: 27px;
}
.s_desktop .search_button i:before {
  color: rgba(77, 77, 77, 0.7);
}
.s_desktop .search_button:hover {
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  .s_desktop {
    display: none;
  }
}

/* Top Nav
------------------ */
.top_nav {
  background-color: #001a29;
}
.top_nav:after, .top_nav:before {
  content: "";
  display: block;
  clear: both;
}

/* 
  Nav Mobile Button
----------------- */
.nav_m_btns {
  display: block;
  position: absolute;
  height: 50px;
  right: 50px;
  top: 0;
  z-index: 1031;
}
.nav_m_btns > li {
  display: block;
  float: right;
}
.nav_m_btns > li a {
  display: block;
  width: 40px;
  text-align: center;
  color: #1bc7ed;
}
.nav_m_btns > li a i {
  font-size: 20px;
  line-height: 50px;
}
@media (min-width: 768px ) {
  .nav_m_btns {
    display: none;
  }
}

/* Inner Number */
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  background-color: #fff;
  border: 2px solid #1bc7ed;
  color: #1bc7ed;
  position: absolute;
  padding: 2px 5px;
  top: 20%;
  right: 15%;
  font-size: 12px;
  line-height: 1em;
  border-radius: 100px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #fff;
  background-color: #1bc7ed;
  color: #fff;
  top: 12%;
  right: 0%;
}

.menu_s {
  padding: 8px 0;
}
.menu_s:after, .menu_s:before {
  content: "";
  display: block;
  clear: both;
}
.menu_s > li {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1em;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.menu_s > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.menu_s > li > a:hover {
  text-decoration: underline;
}
.menu_s > li:nth-last-child(1) {
  border-right: 0px;
}

/* Nav Member
------------------ */
@media (max-width: 767px ) {
  .nav_member .menu_s {
    display: none;
  }
}
/* shop */
.nav_fix {
  margin-top: 90px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix {
    margin-top: 150px;
  }
}
@media (max-width: 767px ) {
  .nav_fix {
    margin-top: 50px;
  }
}

/* Nav Li Style 
----------------*/
/* Desktop Menu
--------------- */
@media (min-width: 768px ) {
  .navbar-header {
    float: left;
  }

  .navbar-collapse {
    float: left;
  }

  ul.navbar-nav > li > a {
    padding: 20px 15px;
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar-header {
    width: 100%;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  }
}
/* tablet
--------------- */
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar-collapse {
    padding-left: 15px;
  }

  ul.navbar-nav > li > a {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* Mobile Menu
--------------- */
@media (max-width: 767px ) {
  .nav_top_menu {
    display: none;
  }
}
/* Layout - Right Group
------------- */
.nav_right_group {
  float: right;
}
.nav_right_group > div {
  float: right;
}

/* Nav Add Class 
----------------*/
.navbar {
  border-radius: 0;
  border-width: 0 0 1px;
}
.navbar.add_class {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* IE Fix
---------------- */
/* header Member login */
.navbar-header {
  position: relative;
  z-index: 1031;
}

/* middle */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
}

/* nav Theme */
.nav_fix {
  margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix {
    margin-top: 0px;
  }
}
@media (max-width: 767px ) {
  .nav_fix {
    margin-top: 50px;
  }
}

.nav_fix_home {
  margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_home {
    margin-top: 0px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_home {
    margin-top: 0px;
  }
}

.nav_fix_partner {
  margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_partner {
    margin-top: 0px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_partner {
    margin-top: 50px;
  }
}

.nav_fix_blogIn {
  margin-top: 20px;
}
@media (min-width: 768px ) and (max-width: 1499px ) {
  .nav_fix_blogIn {
    margin-top: 65px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_blogIn {
    margin-top: 50px;
  }
}

.nav_fix_prd {
  margin-top: 65px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_prd {
    margin-top: 80px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_prd {
    margin-top: 50px;
  }
}

/* Desktop
------------------ */
.nl_d_wrapper {
  z-index: 1032;
  float: right;
}

.navbar_shop .n_lang_list li {
  padding: 8px;
  padding-left: 0;
}
.navbar_shop .n_lang_list a {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 4px;
  background-color: #1bc7ed;
  text-align: center;
  font-size: 16px;
}
.navbar_shop .n_lang_list a, .navbar_shop .n_lang_list a:hover, .navbar_shop .n_lang_list a:focus {
  color: white;
}

/* Mobile
--------------- */
.nl_m_wrapper {
  position: fixed;
  display: none;
  z-index: 1032;
  right: 10px;
  top: 10px;
}
.navbar_shop .nl_m_wrapper {
  right: 130px;
}

.n_lang_caret select {
  background-color: white;
  color: #4d4d4d;
  padding: 0.4em;
  padding-right: 2em;
  line-height: 1em;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  height: 2em;
  border: 1px solid #e1e1e1;
}
.n_lang_caret:after {
  color: #4d4d4d;
}
@media (max-width: 575px ) {
  .n_lang_caret select {
    width: 2.5em;
    overflow: hidden;
    padding: 0px 5px;
    line-height: 28px;
    white-space: inherit;
  }
  .n_lang_caret:after {
    display: none;
  }
}

/* RWD
------------ */
@media (max-width: 767px ) {
  .nl_d_wrapper {
    display: none;
  }

  .nl_m_wrapper {
    display: block;
  }
}
/* Desktop
--------------- */
@media (min-width: 992px ) {
  .navbar-collapse {
    float: left;
    padding-left: 0px;
  }
}
/* tablet
--------------- */
/* Mobile
--------------- */
@media (max-width: 767px ) {
  .navbar-header {
    background-color: #001a29;
  }

  .navbar-header .brand {
    padding: 10px 12px;
  }
}
/* small screen
--------------- */
@media (max-width: 575px ) {
  .navbar_shop .navbar-header .brand {
    padding: 5px 5px;
  }
  .navbar_shop .navbar-toggle {
    padding: 14px 8px;
  }
  .navbar_shop .nav_m_btns {
    right: 38px;
  }
  .navbar_shop .nl_m_wrapper {
    right: 118px;
  }
}
/* Nav Add Class 
----------------*/
.navbar {
  border-radius: 0;
  border-width: 0 0 1px;
}
@media (max-width: 767px ) {
  .navbar.add_class {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
}

/* IE Fix
---------------- */
/* header Member login */
.navbar-header {
  position: relative;
  z-index: 1031;
}

/* Home Nav
--------------- */
/* color */
@media (min-width: 768px) {
  .navbar_theme ul.navbar-nav > li > a {
    border-color: transparent;
    position: relative;
  }
  .navbar_theme ul.navbar-nav > li > a:hover, .navbar_theme ul.navbar-nav > li > a:focus {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
  }
  .navbar_theme ul.navbar-nav > li > a:hover, .navbar_theme ul.navbar-nav > li > a:focus, .navbar_theme ul.navbar-nav > li > a.mPS2id-highlight {
    background-color: transparent;
    color: white;
  }
  .navbar_theme ul.navbar-nav > li.active > a, .navbar_theme ul.navbar-nav > li.active > a:hover, .navbar_theme ul.navbar-nav > li.active > a:focus {
    color: #1bc7ed;
    background-color: transparent;
    border-color: white;
  }
  .navbar_theme ul.navbar-nav > .dropdown:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 16px;
    left: 10px;
  }
  .navbar_theme ul.navbar-nav .dropdown > a:after {
    border-top-color: white;
  }
  .navbar_theme ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: white;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu {
    background-color: #001b2b;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
    position: relative;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu > li > a:hover, .navbar_theme ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .navbar_theme ul.navbar-nav .dropdown-menu > li:hover > a:before {
    content: "";
    position: absolute;
    width: 81%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu > li.lineshort:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar_theme ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #1bc7ed;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #1bc7ed;
  }
  .navbar_theme ul.navbar-nav a {
    color: white;
  }
  .navbar_theme ul.navbar-nav .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
  }
  .navbar_theme ul.navbar-nav .dropdown-menu a:hover, .navbar_theme ul.navbar-nav .dropdown-menu a:focus {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar_theme.add_class ul.navbar-nav > li > a {
    border-color: transparent;
    position: relative;
  }
  .navbar_theme.add_class ul.navbar-nav > li > a:hover, .navbar_theme.add_class ul.navbar-nav > li > a:focus {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
  }
  .navbar_theme.add_class ul.navbar-nav > li > a:hover, .navbar_theme.add_class ul.navbar-nav > li > a:focus, .navbar_theme.add_class ul.navbar-nav > li > a.mPS2id-highlight {
    background-color: transparent;
    color: white;
  }
  .navbar_theme.add_class ul.navbar-nav > li.active > a, .navbar_theme.add_class ul.navbar-nav > li.active > a:hover, .navbar_theme.add_class ul.navbar-nav > li.active > a:focus {
    color: #1bc7ed;
    background-color: transparent;
    border-color: white;
  }
  .navbar_theme.add_class ul.navbar-nav > .dropdown:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 16px;
    left: 10px;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown > a:after {
    border-top-color: white;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: white;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu {
    background-color: #001b2b;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
    position: relative;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu > li > a:hover, .navbar_theme.add_class ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu > li:hover > a:before {
    content: "";
    position: absolute;
    width: 81%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu > li.lineshort:hover > a:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #1bc7ed;
    bottom: 8px;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #1bc7ed;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #1bc7ed;
  }
  .navbar_theme.add_class ul.navbar-nav a {
    color: white;
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
  }
  .navbar_theme.add_class ul.navbar-nav .dropdown-menu a:hover, .navbar_theme.add_class ul.navbar-nav .dropdown-menu a:focus {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar_theme {
    background-color: transparent;
  }
  .navbar_theme.add_class {
    background-color: transparent;
  }

  .navbar_theme .dsk_menu {
    background-color: transparent;
    border: 0;
  }
  .navbar_theme .dsk_menu.add_class {
    background-color: transparent;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .navbar_theme .navbar-collapse {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    padding: 0 10px;
    background: #001b2b;
  }
  .navbar_theme ul.navbar-nav {
    border-top: 0px solid #e1e1e1;
    margin: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .navbar_theme ul.navbar-nav ul {
    padding: 0;
  }
  .navbar_theme ul.navbar-nav a, .navbar_theme ul.navbar-nav li.dropdown ul.dropdown-menu a {
    padding: 10px 15px;
    color: #1bc7ed;
    font-weight: 700;
    font-size: 16px;
  }
  .navbar_theme ul.navbar-nav li.dropdown-submenu ul.dropdown-menu a {
    padding: 8px 12px !important;
  }
  .navbar_theme ul.navbar-nav a, .navbar_theme ul.navbar-nav a:hover, .navbar_theme ul.navbar-nav a:focus, .navbar_theme ul.navbar-nav .open a, .navbar_theme ul.navbar-nav .open a:hover, .navbar_theme ul.navbar-nav .open a:focus {
    color: #1bc7ed;
    background-color: #001b2b;
  }
  .navbar_theme ul.navbar-nav li.dropdown > a, .navbar_theme ul.navbar-nav li.dropdown-submenu > a {
    position: relative;
  }
  .navbar_theme ul.navbar-nav li.dropdown > a:after, .navbar_theme ul.navbar-nav li.dropdown-submenu > a:after {
    display: block;
    content: "＋";
    position: absolute;
    width: 0;
    height: 0;
    color: #fff;
    left: 48px;
    top: calc(50% - 11px);
    font-size: 20px;
  }
  .navbar_theme ul.navbar-nav li.dropdown .ic_add_jp:after, .navbar_theme ul.navbar-nav li.dropdown-submenu .ic_add_jp:after {
    left: 85px;
  }
  .navbar_theme ul.navbar-nav li.dropdown .ic_add_en:after, .navbar_theme ul.navbar-nav li.dropdown-submenu .ic_add_en:after {
    left: 90px;
  }
  .navbar_theme ul.navbar-nav li.dropdown.open > a:after, .navbar_theme ul.navbar-nav li.dropdown-submenu.open > a:after {
    content: "－";
  }
  .navbar_theme ul.navbar-nav > li.dropdown.open > a {
    background: #001b2b;
  }
  .navbar_theme ul.navbar-nav > li.dropdown > ul.dropdown-menu {
    width: 100%;
    position: relative;
  }
  .navbar_theme ul.navbar-nav > li.dropdown > ul.dropdown-menu > li > a {
    border-left: 2px solid #1bc7ed;
    background: #001b2b;
  }
  .navbar_theme ul.navbar-nav > li.dropdown > ul.dropdown-menu > li.open > a {
    background-color: #f7f7f7;
    background: #001b2b;
  }
  .navbar_theme ul.navbar-nav li.dropdown-submenu ul.dropdown-menu > li > a {
    border-left: 4px solid #0c7d96;
    background-color: #f2f2f2;
  }
  .navbar_theme .navbar, .navbar_theme .dsk_menu {
    background-color: black;
  }
  .navbar_theme .navbar.add_class, .navbar_theme .dsk_menu.add_class {
    background-color: white;
  }
}

/* nav top */
.navbar_theme .top_nav {
  display: none;
}

/* Nav Add Class */
@media (min-width: 768px ) {
  .navbar.navbar_theme.add_class {
    box-shadow: none;
    background-color: rgba(0, 26, 41, 0.8);
  }
}
/* Desktop
--------------- */
@media (min-width: 992px ) {
  .navbar_theme .navbar-collapse {
    float: right;
    padding-right: 0px;
  }
  .navbar_theme .dsk_menu {
    padding-top: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
/* tablet
--------------- */
@media (min-width: 768px ) and (max-width: 1350px) {
  .navbar_theme .navbar-header {
    width: auto;
  }
  .navbar_theme .navbar-collapse {
    float: left;
    width: auto;
    padding-right: 0px;
  }
  .navbar_theme .dsk_menu {
    padding-top: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
/* Lang
-------------- */
.navbar_theme {
  /* desktop */
  /* mobile */
}
.navbar_theme .nl_d_wrapper {
  position: fixed;
  right: 10px;
  top: 28px;
  float: none;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar_theme .nl_d_wrapper .n_lang_caret select {
  border: 0;
}
.navbar_theme .nl_d_wrapper .n_lang_caret:after {
  content: "";
  right: 12px;
  top: calc(50% - 14px);
}
.navbar_theme .nl_d_wrapper .n_lang_caret option {
  border: 0;
  background-color: #000;
  color: #fff;
}
.navbar_theme .n_lang_list a {
  display: block;
  padding: 20px 15px;
  font-size: 16px;
  line-height: 1em;
}
.navbar_theme .n_lang_list a, .navbar_theme .n_lang_list a:hover, .navbar_theme .n_lang_list a:focus {
  color: white;
}
.navbar_theme .n_lang_list a:after {
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 8px;
  opacity: 0.7;
}
.navbar_theme .n_lang_caret select {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.navbar_theme .n_lang_caret:after {
  color: rgba(255, 255, 255, 0.7);
}

/* 022.thingspki
--------------------- */
/* ======================== 
Setting
======================== */
body {
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
}

a {
  color: #4d4d4d;
}

a:hover,
a:focus {
  color: #4d4d4d;
}

select:focus,
input:focus,
textarea:focus {
  border: 1px solid rgba(27, 199, 237, 0.5);
}

::selection {
  color: #1bc7ed;
  background: #eee;
}

::-moz-selection {
  color: #1bc7ed;
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #999999;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* --- fade --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-30%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* Flip */
@-webkit-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-moz-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-ms-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-o-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
.flipIn {
  animation-name: flipIn;
}

/* typing */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}
.typing {
  -webkit-animation: typing 5s steps(30, end) 1;
  animation: typing 3.5s steps(30, end) 1;
}

/* blink-caret */
@keyframes blink-caret {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: currentColor;
  }
  100% {
    border-color: transparent;
  }
}
.blink-caret {
  -webkit-animation: blink-caret 0.75s steps(1, end) 1;
  animation: blink-caret 0.75s steps(1, end) 1;
}

/* ======================== 
Mixin
======================== */
/* ======================== 
  Common
======================== */
/* Cover */
/* Common Default */
.crsl_basic:after, .crsl_basic:before,
.grid_basic:after,
.grid_basic:before,
.list_basic:after,
.list_basic:before {
  content: "";
  display: block;
  clear: both;
}
.crsl_basic .item,
.grid_basic .item,
.list_basic .item {
  display: block;
  position: relative;
  overflow: hidden;
}
.crsl_basic .inner, .crsl_basic .img_wrapper,
.grid_basic .inner,
.grid_basic .img_wrapper,
.list_basic .inner,
.list_basic .img_wrapper {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
.crsl_basic .img,
.grid_basic .img,
.list_basic .img {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_basic .content_wrapper,
.grid_basic .content_wrapper,
.list_basic .content_wrapper {
  position: relative;
}
.crsl_basic .content,
.grid_basic .content,
.list_basic .content {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.crsl_basic .title,
.grid_basic .title,
.list_basic .title {
  margin: 0;
}
/* Home Section
-------------- */
.home_section {
  position: relative;
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  padding: 60px 0px;
}
.home_section:after, .home_section:before {
  content: "";
  display: block;
  clear: both;
}
.home_section .tt_wr {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px ) {
  .home_section {
    padding: 80px 20px 60px;
  }
  .home_section .tt_wr {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.section_main {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.section_main:after, .section_main:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1230px) {
  .section_main {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section_right {
  float: left;
  width: 100%;
  float: left;
}
@media (min-width: 768px ) {
  .section_right {
    width: 83.3333333333%;
  }
}

/* Comps */
.header_main {
  padding-top: 15px;
  margin-bottom: 15px;
}
.header_main:after, .header_main:before {
  content: "";
  display: block;
  clear: both;
}
.header_main .title {
  float: left;
  color: #1bc7ed;
  font-weight: 500;
  padding-bottom: 6px;
}
.header_main .btn_action {
  float: right;
}

.sidebar_wrapper {
  position: relative;
  margin-bottom: 15px;
  border-radius: 4px;
  float: left;
  width: 100%;
  float: left;
  min-height: 10px;
}
@media (min-width: 768px ) {
  .sidebar_wrapper {
    width: 16.6666666667%;
  }
}
@media (min-width: 768px ) {
  .sidebar_wrapper {
    padding-right: 15px;
  }
}

.sidebar_header {
  padding: 5px 8px;
  line-height: 1.5em;
  border-bottom: 1px solid #1bc7ed;
  color: #1bc7ed;
}
.sidebar_header .title {
  font-weight: 500;
}

.sidebar_body {
  /* active */
}
.sidebar_body a {
  display: block;
  padding: 8px 8px;
}
.sidebar_body li + li {
  border-top: 1px solid #e1e1e1;
}
.sidebar_body a.active, .sidebar_body a:hover {
  color: #1bc7ed;
  font-weight: 500;
}

.sidebar_fix {
  position: fixed;
}

/* ======================== 
Pages Layout
======================== */
/* Global Pages
----------------- */
/* ========================= 
Style
========================= */
footer.footer {
  background-color: #001a29;
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(0, 26, 41, 0.1);
}
footer.footer a {
  color: #b5b5b6;
}
footer.footer a, footer.footer ul, footer.footer li {
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 4px 0;
}
@media (max-width: 1499px ) {
  footer.footer {
    font-size: 16px;
  }
}
@media (max-width: 767px ) {
  footer.footer {
    font-size: 12px;
  }
}

.footer_inner {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 30px 0;
}
.footer_inner:after, .footer_inner:before {
  content: "";
  display: block;
  clear: both;
}
.footer_inner .logo img {
  height: 40px;
}
@media (max-width: 1199px ) {
  .footer_inner .logo img {
    height: 40px;
  }
}
@media (max-width: 767px ) {
  .footer_inner .logo img {
    height: 30px;
    margin-bottom: 10px;
  }
}

.f_menu a:hover {
  text-decoration: underline;
}

/* Left & Right
-------------- */
.f_left, .f_right {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px ) {
  .f_left, .f_right {
    width: 300px;
    max-width: 100%;
    margin: 0 auto 15px;
  }
}

@media (min-width: 768px ) {
  .f_left {
    float: left;
  }
}

.f_right {
  border-top: 1px solid #b5b5b6;
  padding-top: 15px;
  float: right;
  width: 75%;
  text-align: right;
}
@media (max-width: 1199px ) {
  .f_right {
    width: 69%;
  }
}
@media (max-width: 767px ) {
  .f_right {
    width: 100%;
    float: none;
    text-align: left;
    padding-top: 6px;
  }
}
.f_right .f_menu {
  float: right;
  width: 85%;
}
@media (max-width: 767px ) {
  .f_right .f_menu {
    width: 100%;
    float: none;
  }
}

/* Footer Menu
------------------ */
.f_menu {
  display: table;
  width: 100%;
}
@media (max-width: 767px ) {
  .f_menu {
    display: block;
  }
}
.f_menu .title {
  color: #1bc7ed;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px ) {
  .f_menu .title {
    font-size: 16px;
  }
}
.f_menu .title:hover {
  text-decoration: none;
}
.f_menu .frist_li {
  width: 15%;
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 767px ) {
  .f_menu .frist_li {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}
.f_menu a {
  color: inherit;
  font-size: 120%;
}

.f_content {
  color: #b5b5b6;
  position: relative;
  margin: 1em 0 2em 0;
}
.f_content:after, .f_content:before {
  content: "";
  display: block;
  clear: both;
}

.f_info {
  float: left;
  position: absolute;
  bottom: 0;
  width: calc(100% - 240px);
}
@media (max-width: 767px ) {
  .f_info {
    float: none;
    position: relative;
    margin: 30px 0;
    width: 100%;
  }
  .f_info .mob_br {
    display: block;
  }
}

.f_social {
  float: right;
}
@media (max-width: 767px ) {
  .f_social {
    float: none;
  }
}
.f_social .ic_h, .f_social .ic_w {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 50px;
}
@media (max-width: 767px ) {
  .f_social .ic_h, .f_social .ic_w {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.f_social .ic_h {
  margin-right: 8px;
}
.f_social .ic_h img {
  height: 25px;
}
@media (max-width: 767px ) {
  .f_social .ic_h img {
    height: 22px;
  }
}
.f_social .ic_w img {
  width: 33px;
}
@media (max-width: 767px ) {
  .f_social .ic_w img {
    width: 32px;
  }
}

/* Footer copyright
-------------- */
.f_copyright {
  background-color: transparent;
  border-top: 1px solid #fff;
  text-align: center;
  padding-bottom: 15px;
}
.f_copyright p, .f_copyright a {
  color: inherit;
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
}
@media (max-width: 767px ) {
  .f_copyright {
    text-align: center;
  }
}

/* Footer Fix */
.footer_fix {
  min-height: calc(100vh - 368px);
}

.banner {
  position: relative;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.banner:after, .banner:before {
  content: "";
  display: block;
  clear: both;
}
.banner .img {
  width: 100%;
  padding: 0;
  padding-top: 25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
}
.banner .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.banner .owl-dots .owl-dot {
  display: inline-block;
}
.banner .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid white;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.banner .owl-dots .owl-dot.active span, .banner .owl-dots .owl-dot:hover span {
  background-color: white;
}
.banner .owl-dots {
  bottom: 0;
}
@media (min-width: 768px ) and (max-width: 1230px) {
  .banner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px ) {
  .banner {
    padding-top: 15px;
  }
  .banner .img {
    border-radius: 4px;
  }
}
@media (max-width: 767px ) {
  .banner .img {
    width: 100%;
    padding: 0;
    padding-top: 56.25%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
}

/* shareClass
----------------- */
.title_block {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1499px ) {
  .title_block {
    margin-top: 0;
    margin-bottom: 8em;
  }
}
@media (max-width: 767px ) {
  .title_block {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.title_block .h_title {
  margin-bottom: 0;
  color: #1bc7ed;
}
@media (max-width: 767px ) {
  .title_block .h_title {
    margin-top: 0;
  }
}
.title_block .h_title span {
  letter-spacing: 5px;
}
.title_block .h_title.lang_title span {
  letter-spacing: 1px;
}
.title_block .sub_title {
  text-align: center;
  color: #1bc7ed;
  font-size: 16.5px;
}
@media (max-width: 767px ) {
  .title_block .sub_title {
    padding: 0 15px;
    text-align: left;
    font-size: 15px;
  }
}

.doWrapper .ami_line {
  width: 70%;
  margin: 15px auto;
  position: relative;
  border-top: 1px solid transparent;
}
.doWrapper .ami_line:before {
  content: "";
  position: absolute;
  width: 50%;
  left: 50%;
  border-top: 1px solid #1bc7ed;
  animation: centerline 3s;
  -webkit-animation: centerline 2s;
}
.doWrapper .ami_line:after {
  content: "";
  position: absolute;
  width: 50%;
  border-top: 1px solid #1bc7ed;
  right: 50%;
  animation-name: centerline;
  animation-duration: 3s;
  -webkit-animation: centerline 2s;
}
@media (max-width: 767px ) {
  .doWrapper .ami_line {
    width: 95%;
  }
}

.ami_line {
  width: 70%;
  margin: 15px auto;
  position: relative;
  border-top: 1px solid transparent;
}
.ami_line:before {
  content: "";
  position: absolute;
  width: 50%;
  left: 50%;
  border-top: 1px solid #1bc7ed;
}
.ami_line:after {
  content: "";
  position: absolute;
  width: 50%;
  border-top: 1px solid #1bc7ed;
  right: 50%;
}
@media (max-width: 767px ) {
  .ami_line {
    width: 95%;
  }
}

.h_title .text-wrapper, .title .text-wrapper {
  position: relative;
  display: inline-block;
}
.h_title .line, .title .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 1px;
  width: 20px;
  background-color: #1bc7ed;
  transform-origin: 0 50%;
}
.h_title .line1, .title .line1 {
  bottom: 0;
  left: 0;
}
.h_title .title .letter, .title .title .letter {
  display: inline-block;
  line-height: 1em;
  color: #1bc7ed;
}

.main_color {
  color: #1bc7ed;
}

.part_ami_line {
  width: 70%;
  margin: 15px auto;
  position: relative;
  border-top: 1px solid transparent;
}
.part_ami_line:before {
  content: "";
  position: absolute;
  width: 50%;
  left: 50%;
  border-top: 1px solid #1bc7ed;
  animation: centerline 2s;
}
.part_ami_line:after {
  content: "";
  position: absolute;
  width: 50%;
  border-top: 1px solid #1bc7ed;
  right: 50%;
  animation: centerline 2s;
}
@media (max-width: 767px ) {
  .part_ami_line {
    width: 82%;
  }
}

@keyframes centerline {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes centerline {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
.scene {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 0;
}
.scene:after, .scene:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .scene {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

.h_item_warp {
  max-width: 1000px;
  margin: 0 auto;
}
.h_item_warp:after, .h_item_warp:before {
  content: "";
  display: block;
  clear: both;
}
.h_item_warp .hadv_item {
  float: left;
  float: left;
  width: 100%;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px ) {
  .h_item_warp .hadv_item {
    width: 25%;
  }
}
@media (max-width: 767px ) {
  .h_item_warp .hadv_item {
    padding-bottom: 15px;
  }
}
.h_item_warp .hadv_item img {
  display: inline-block;
  width: 110px;
}
.h_item_warp .hadv_item .h_item_title {
  margin-top: 30px;
}
@media (max-width: 767px ) {
  .h_item_warp .hadv_item .h_item_title .h_item_title {
    margin-top: 15px;
    margin-bottom: 0px;
  }
}

/* Home-109.04.16
----------------- */
.h_title {
  text-align: center;
  color: white;
  margin-bottom: 60px;
  font-weight: 700;
}
@media (min-width: 768px ) {
  .h_title {
    font-size: 230%;
  }
}
@media (max-width: 1499px ) {
  .h_title {
    font-size: 190%;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px ) {
  .h_title {
    font-size: 180%;
    margin-bottom: 20px;
  }
}

.h_item_title {
  text-align: center;
  font-weight: 400;
}
.h_item_title, .h_item_title:hover, .h_item_title:focus {
  color: white;
}
@media (min-width: 768px ) {
  .h_item_title {
    font-size: 135%;
  }
}
@media (max-width: 1499px ) {
  .h_item_title {
    font-size: 115%;
  }
}
@media (max-width: 767px ) {
  .h_item_title {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    font-size: 100%;
  }
}
@media (min-width: 768px ) {
  .h_item_title {
    font-weight: 400;
  }
}
@media (max-width: 1499px ) {
  .h_item_title {
    font-size: 130%;
  }
}
@media (max-width: 767px ) {
  .h_item_title {
    font-size: 130%;
    color: white;
    margin-bottom: 15px;
  }
}

/* Home Background */
.h_background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../images/common/bg_001.jpg);
  background-size: cover;
  text-align: center;
  background-position: right top;
}

.h_background2 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../images/common/home_001.jpg);
  background-size: cover;
  text-align: center;
  background-position: right top;
}
@media (max-width: 767px ) {
  .h_background2 {
    display: none;
  }
}

.hide_scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.perspective {
  -webkit-perspective: 100px;
  -khtml-perspective: 100px;
  -moz-perspective: 100px;
  -ms-perspective: 100px;
  -o-perspective: 100px;
  perspective: 100px;
}

#h_right_nav {
  position: fixed;
  right: 20px;
  top: calc(50% - 8px);
  z-index: 100;
}
#h_right_nav span {
  display: none;
  color: #1bc7ed;
  font-size: 13px;
}
#h_right_nav .active {
  background-color: #1bc7ed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 6px;
}
#h_right_nav li {
  position: relative;
  height: 16px;
}
#h_right_nav li:hover span {
  display: block;
  position: absolute;
  top: -6px;
  font-weight: bold;
  left: -60px;
  border-bottom: 1px solid #1bc7ed;
}
#h_right_nav li:hover span.frist {
  display: block;
  position: absolute;
  top: -6px;
  font-weight: bold;
  left: -70px;
  border-bottom: 1px solid #1bc7ed;
}
#h_right_nav li a {
  color: #1bc7ed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #1bc7ed;
  margin-bottom: 6px;
}
#h_right_nav li a:hover {
  background-color: #1bc7ed;
}
@media (max-width: 991px ) {
  #h_right_nav {
    display: none;
  }
}

.home_html .fp-viewing-Page1 #h_right_nav {
  opacity: 0;
}

.home_html .fp-viewing-Page1 .h_background, .fp-viewing-Page2 .h_background {
  z-index: -2;
  transition: all 0.8s ease-in-out;
}

/* Home Service Content */
.h_service {
  position: relative;
}
@media (max-width: 767px ) {
  .h_service {
    height: 850px;
  }
}
@media (max-width: 575px ) {
  .h_service .h_title {
    margin-top: 50px;
  }
}

.has-active-item:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -webkit-animation: has-active-item 0.2s linear forwards;
  -khtml-animation: has-active-item 0.2s linear forwards;
  -moz-animation: has-active-item 0.2s linear forwards;
  -ms-animation: has-active-item 0.2s linear forwards;
  -o-animation: has-active-item 0.2s linear forwards;
  animation: has-active-item 0.2s linear forwards;
  z-index: 1040;
}

@-webkit-keyframes has-active-item {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@-moz-keyframes has-active-item {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@-ms-keyframes has-active-item {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@-o-keyframes has-active-item {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@keyframes has-active-item {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
/* position */
#hService {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#hService.active {
  opacity: 1;
}
@media (max-width: 767px ) {
  #hService {
    opacity: 1;
    overflow: hidden;
  }
}

.fp-tableCell, .h_service_link_group, .h_constellation {
  opacity: inherit;
}

.h_constellation, .h_service_link_group {
  display: block;
  position: fixed;
}
@media (min-width: 768px ) {
  .h_constellation, .h_service_link_group {
    top: calc(50vh - 1080px / 2);
    left: calc(50vw - 1600px / 2);
    width: 1600px;
    height: 1080px;
  }
}
@media (max-width: 1499px ) and (min-width: 768px ) {
  .h_constellation, .h_service_link_group {
    top: calc(50vh - 720px / 2);
    left: calc(50vw - 1400px / 2);
    width: 720px;
    height: 1400px;
  }
}
@media (max-width: 767px ) {
  .h_constellation, .h_service_link_group {
    position: absolute;
    top: calc(50% - 850px / 2);
    left: calc(50% - 780px / 2);
    width: 850px;
    height: 780px;
  }
}

.h_constellation {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 0;
  background-image: url(../images/common/bg_constellation.png);
}
@media (min-width: 768px ) {
  .h_constellation {
    width: 1600px;
    height: 1080px;
    background-position: 0 0;
    background-size: 2180px auto;
  }
}
@media (max-width: 1499px ) and (min-width: 768px ) {
  .h_constellation {
    width: 1400px;
    height: 720px;
    background-position: 0 -1080px;
    background-size: 2180px auto;
  }
}
@media (max-width: 767px ) {
  .h_constellation {
    width: 780px;
    height: 850px;
    background-position: -1400px -1080px;
    background-size: 2180px auto;
  }
}
@media (max-width: 575px ) {
  .h_constellation {
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* background (related to Fullpage)  */
#hService .fp-tableCell {
  padding-bottom: 50vh;
}

#hConstellationBg {
  opacity: 0.6;
}
.fp-viewing-2 #hConstellationBg {
  opacity: 0;
}

@media (max-width: 767px ) {
  #hConstellationBg {
    opacity: 0;
  }
}

/* Link */
.h_service_link_group {
  z-index: 0;
}

.h_service_link {
  display: block;
  position: absolute;
  cursor: pointer;
}
.h_service_link title {
  display: block;
  width: 180px;
  text-align: left;
  padding-left: 20px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -khtml-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.h_service_link:before, .h_service_link:after {
  content: "";
  position: absolute;
  left: 0;
}
.h_service_link:before {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  top: calc(50% - 10px / 2);
  left: -5px;
  background-color: white;
}
.h_service_link:after {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  top: calc(50% - 30px / 2);
  left: -15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: transparent;
}
.h_service_link:hover title {
  -webkit-transform: translate(8px, -2px);
  -khtml-transform: translate(8px, -2px);
  -moz-transform: translate(8px, -2px);
  -ms-transform: translate(8px, -2px);
  -o-transform: translate(8px, -2px);
  transform: translate(8px, -2px);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -khtml-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.h_service_link:nth-child(3n+1):before {
  -webkit-animation: circle 5s ease-in-out infinite 0s;
  -khtml-animation: circle 5s ease-in-out infinite 0s;
  -moz-animation: circle 5s ease-in-out infinite 0s;
  -ms-animation: circle 5s ease-in-out infinite 0s;
  -o-animation: circle 5s ease-in-out infinite 0s;
  animation: circle 5s ease-in-out infinite 0s;
}
.h_service_link:nth-child(3n+1):after {
  -webkit-animation: circle 5s ease-in-out infinite 1s;
  -khtml-animation: circle 5s ease-in-out infinite 1s;
  -moz-animation: circle 5s ease-in-out infinite 1s;
  -ms-animation: circle 5s ease-in-out infinite 1s;
  -o-animation: circle 5s ease-in-out infinite 1s;
  animation: circle 5s ease-in-out infinite 1s;
}

.h_service_link:nth-child(3n+2):before {
  -webkit-animation: circle 5s ease-in-out infinite -0.5s;
  -khtml-animation: circle 5s ease-in-out infinite -0.5s;
  -moz-animation: circle 5s ease-in-out infinite -0.5s;
  -ms-animation: circle 5s ease-in-out infinite -0.5s;
  -o-animation: circle 5s ease-in-out infinite -0.5s;
  animation: circle 5s ease-in-out infinite -0.5s;
}
.h_service_link:nth-child(3n+2):after {
  -webkit-animation: circle 5s ease-in-out infinite 0.5s;
  -khtml-animation: circle 5s ease-in-out infinite 0.5s;
  -moz-animation: circle 5s ease-in-out infinite 0.5s;
  -ms-animation: circle 5s ease-in-out infinite 0.5s;
  -o-animation: circle 5s ease-in-out infinite 0.5s;
  animation: circle 5s ease-in-out infinite 0.5s;
}

.h_service_link:nth-child(3n+3):before {
  -webkit-animation: circle 5s ease-in-out infinite -1s;
  -khtml-animation: circle 5s ease-in-out infinite -1s;
  -moz-animation: circle 5s ease-in-out infinite -1s;
  -ms-animation: circle 5s ease-in-out infinite -1s;
  -o-animation: circle 5s ease-in-out infinite -1s;
  animation: circle 5s ease-in-out infinite -1s;
}
.h_service_link:nth-child(3n+3):after {
  -webkit-animation: circle 5s ease-in-out infinite 0s;
  -khtml-animation: circle 5s ease-in-out infinite 0s;
  -moz-animation: circle 5s ease-in-out infinite 0s;
  -ms-animation: circle 5s ease-in-out infinite 0s;
  -o-animation: circle 5s ease-in-out infinite 0s;
  animation: circle 5s ease-in-out infinite 0s;
}

@-webkit-keyframes circle {
  from {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
}
@-moz-keyframes circle {
  from {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
}
@-ms-keyframes circle {
  from {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
}
@-o-keyframes circle {
  from {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
}
@keyframes circle {
  from {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(0.6);
    -khtml-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
}
/* Modal */
.h_service_item {
  position: absolute;
  background-color: white;
  padding: 20px;
  padding-right: 10px;
  color: #4d4d4d;
  width: 340px;
  max-width: calc(100vw - 40px);
  top: 20vh;
  left: 50vw;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -khtml-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-transform: scale(0.95) translateX(-30px);
  -khtml-transform: scale(0.95) translateX(-30px);
  -moz-transform: scale(0.95) translateX(-30px);
  -ms-transform: scale(0.95) translateX(-30px);
  -o-transform: scale(0.95) translateX(-30px);
  transform: scale(0.95) translateX(-30px);
  z-index: 1041;
}
.h_service_item.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.h_service_item .overflow-scroll {
  max-height: calc(100vh - 400px);
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-height: 600px) {
  .h_service_item {
    top: 80px;
    max-height: calc(100vh - 160px);
  }
  .h_service_item .overflow-scroll {
    max-height: calc(100vh - 260px);
  }
}
@media (max-width: 767px ) {
  .h_service_item {
    position: fixed;
    left: 30px;
    top: calc(50vh - 400px / 2 );
    height: 400px;
    width: calc(100vw - 30px * 2 );
    -webkit-transform: scale(0.95);
    -khtml-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  .h_service_item .overflow-scroll {
    max-height: calc(100% - 40px);
  }
}
.h_service_item .img {
  width: 40px;
  padding: 0;
  padding-top: 40px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.h_service_item .title {
  padding-right: 45px;
  font-size: 200%;
  margin-bottom: 20px;
  margin-top: -40px;
  padding-left: 50px;
}
@media (max-width: 1499px ) {
  .h_service_item .img {
    width: 34px;
    padding: 0;
    padding-top: 34px;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
  .h_service_item .title {
    font-size: 165%;
    margin-bottom: 10px;
    margin-top: -34px;
    padding-left: 44px;
  }
}
@media (max-width: 767px ) {
  .h_service_item .img {
    width: 27px;
    padding: 0;
    padding-top: 27px;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
  .h_service_item .title {
    font-size: 140%;
    margin-bottom: 10px;
    margin-top: -27px;
    padding-left: 37px;
  }
}
.h_service_item .btn_close {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  content: "";
  background-image: url(../images/common/icons.png);
  background-size: 600px auto;
  width: 40px;
  height: 40px;
  background-position: -252px 0px;
  background-size: 600px auto;
  background-color: #1bc7ed;
  cursor: pointer;
}
@media (max-width: 1499px ) {
  .h_service_item .btn_close {
    width: 30px;
    height: 30px;
    background-position: -189px 0px;
    background-size: 450px auto;
  }
}
@media (max-width: 767px ) {
  .h_service_item .btn_close {
    width: 24px;
    height: 24px;
    background-position: -151.2px 0px;
    background-size: 360px auto;
  }
}

.h_about {
  height: 100vh;
  overflow: hidden;
  padding: 0;
}
.img_animate {
  -webkit-animation: 30s home_video_img infinite;
  -khtml-animation: 30s home_video_img infinite;
  -moz-animation: 30s home_video_img infinite;
  -ms-animation: 30s home_video_img infinite;
  -o-animation: 30s home_video_img infinite;
  animation: 30s home_video_img infinite;
}

@-webkit-keyframes home_video_img {
  from {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes home_video_img {
  from {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes home_video_img {
  from {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes home_video_img {
  from {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes home_video_img {
  from {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.about_img {
  display: block;
  min-height: 100%;
  min-width: 100%;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px ) {
  .about_img {
    display: none;
  }
}

.about_img_s {
  display: none;
  background-size: contain;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .about_img_s {
    display: block;
  }
}

.h_about_content {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px ) {
  .h_about_content {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
  }
}
.h_about_content .title, .h_about_content .h_title {
  margin-top: 1%;
  color: white;
  letter-spacing: 4px;
  font-size: 26px;
}
@media (max-width: 767px ) {
  .h_about_content .title, .h_about_content .h_title {
    text-align: center;
    font-size: 25px;
  }
}
.h_about_content .title.lang_title, .h_about_content .h_title.lang_title {
  letter-spacing: 1px;
}
.h_about_content .pos_abs {
  position: absolute;
  top: 32%;
  right: calc(13% - 10px);
  color: #fff;
}
@media (min-width: 1500px ) {
  .h_about_content .pos_abs {
    right: 15%;
  }
}
@media (min-width: 1800px) {
  .h_about_content .pos_abs {
    right: calc(22% - 15px);
  }
}
@media (max-width: 767px ) {
  .h_about_content .pos_abs {
    right: 0;
    top: 15px;
    padding: 20px 0;
    position: relative;
  }
  .h_about_content .pos_abs img {
    display: block;
    margin: 0 auto;
    width: 200px;
  }
}
.h_about_content .pos_abs .sub_title {
  font-size: 16.5px;
  margin: 20px 0 10px;
  letter-spacing: 1px;
}
@media (max-width: 767px ) {
  .h_about_content .pos_abs .sub_title {
    text-align: center;
    font-size: 16px;
    margin: 15px 0;
  }
}
.h_about_content .pos_abs .btn_main {
  border: 1px solid #fff;
  margin: 20px 0;
  padding: 10px 28px;
  font-size: 18px;
  letter-spacing: 2px;
}
.h_about_content .pos_abs .btn_main a {
  color: #fff;
}
.h_about_content .pos_abs .btn_main:hover, .h_about_content .pos_abs .btn_main:focus {
  background-color: #fff;
}
.h_about_content .pos_abs .btn_main:hover a, .h_about_content .pos_abs .btn_main:focus a {
  color: #000;
  font-weight: 700;
}
@media (max-width: 767px ) {
  .h_about_content .pos_abs .btn_main {
    display: block;
    margin: 20px auto;
  }
}
@media (max-width: 767px ) {
  .h_about_content .btn_wrapper {
    position: relative;
    height: 30px;
  }
}

.hv_btn {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 21px;
  height: 32.2px;
  background-position: 0px -28px;
  background-size: 420px auto;
  right: calc(30% - 22px);
  bottom: 40px;
  margin-top: 40px;
  -webkit-animation: arrowBtm 1s both infinite;
  -khtml-animation: arrowBtm 1s both infinite;
  -moz-animation: arrowBtm 1s both infinite;
  -ms-animation: arrowBtm 1s both infinite;
  -o-animation: arrowBtm 1s both infinite;
  animation: arrowBtm 1s both infinite;
}
@media (max-width: 1499px ) {
  .hv_btn {
    width: 15px;
    height: 23px;
    background-position: 0px -20px;
    background-size: 300px auto;
  }
}
@media (max-width: 767px ) {
  .hv_btn {
    width: 13.5px;
    height: 20.7px;
    background-position: 0px -18px;
    background-size: 270px auto;
  }
}
@media (min-width: 1500px ) {
  .hv_btn {
    right: calc(31% - 22px);
  }
}
@media (min-width: 1800px) {
  .hv_btn {
    right: calc(35% - 22px);
  }
}
@media (max-width: 767px ) {
  .hv_btn {
    bottom: 0px;
    right: calc(50% - 10px);
  }
}
@media (max-width: 575px ) {
  .hv_btn {
    bottom: 12px;
  }
}

.disable-scroll {
  overflow: hidden !important;
}

@media (max-width: 767px ) {
  .h_advan {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.h_advan .hv_btn {
  right: calc(50% - 18px);
}
@media (max-width: 1499px ) {
  .h_advan .hv_btn {
    left: calc(50% - 10px);
  }
}
@media (max-width: 767px ) {
  .h_advan .btn_wrapper {
    display: none;
  }
}
.h_advan .h_item_warp .hadv_item {
  float: left;
  float: left;
  width: 100%;
}
@media (min-width: 768px ) {
  .h_advan .h_item_warp .hadv_item {
    width: 33.3333333333%;
  }
}

.h_problem {
  height: 100vh;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 767px ) {
  .h_problem {
    height: auto;
    padding-bottom: 10px;
  }
}
.h_problem .problem_img {
  display: block;
  min-height: 100%;
  min-width: 100%;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px ) {
  .h_problem .problem_img {
    display: none;
  }
}
.h_problem .hv_btn {
  right: calc(33% - 12px);
}
@media (min-width: 1500px ) {
  .h_problem .hv_btn {
    right: calc(35% - 30px);
  }
}
@media (min-width: 1800px) {
  .h_problem .hv_btn {
    right: calc(37% - 22px);
  }
}
@media (max-width: 767px ) {
  .h_problem .hv_btn {
    right: calc(50%);
    bottom: 60px;
  }
}
.h_problem_content {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px ) {
  .h_problem_content {
    position: relative;
    height: 667px;
  }
}
.h_problem_content .pos_abs {
  position: absolute;
  top: 20%;
  right: calc(9% - 8px);
  color: #fff;
}
@media (min-width: 1500px ) {
  .h_problem_content .pos_abs {
    right: 12%;
  }
}
@media (min-width: 1800px) {
  .h_problem_content .pos_abs {
    right: 18.5%;
  }
}
@media (max-width: 767px ) {
  .h_problem_content .pos_abs {
    position: relative;
    top: 60px;
    right: 0;
    padding: 20px 30px 0;
  }
}
.h_problem_content .pos_abs .prob_item .title, .h_problem_content .pos_abs .prob_item .h_title {
  color: #1bc7ed;
  font-weight: 700;
  display: inline;
  border-left: 2px solid #1bc7ed;
  padding-left: 0.5em;
}
@media (max-width: 767px ) {
  .h_problem_content .pos_abs .prob_item .title, .h_problem_content .pos_abs .prob_item .h_title {
    font-size: 22px;
    padding-left: 0.5em;
  }
}
.h_problem_content .pos_abs .prob_item .title span, .h_problem_content .pos_abs .prob_item .h_title span {
  letter-spacing: 5px;
}
.h_problem_content .pos_abs .prob_item .title.lang_title span, .h_problem_content .pos_abs .prob_item .h_title.lang_title span {
  letter-spacing: 1px;
}
.h_problem_content .pos_abs .prob_item .cont {
  margin: 30px 0 40px 0;
  line-height: 2.5em;
  font-size: 16.5px;
}
@media (max-width: 767px ) {
  .h_problem_content .pos_abs .prob_item .cont {
    margin: 15px 0 20px 0;
    line-height: 1.8em;
    font-size: 15px;
  }
}

.active .typing-test {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: type 3s steps(30, end) 1;
  animation: type 3s steps(30, end) 1;
}

@-webkit-keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 767px ) {
  .hSafeQ {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.hSafeQ .hv_btn {
  right: calc(50% - 18px);
}
@media (max-width: 1499px ) {
  .hSafeQ .hv_btn {
    left: calc(50% - 10px);
  }
}
@media (max-width: 767px ) {
  .hSafeQ .btn_wrapper {
    display: none;
  }
}
.hSafeQ .h_item_warp .hadv_item {
  float: left;
  float: left;
  width: 100%;
}
@media (min-width: 768px ) {
  .hSafeQ .h_item_warp .hadv_item {
    width: 33.3333333333%;
  }
}

.hSolution .h_sol_pc {
  display: block;
}
@media (max-width: 767px ) {
  .hSolution .h_sol_pc {
    display: none;
  }
}
.hSolution .h_sol_mob {
  display: none;
}
@media (max-width: 767px ) {
  .hSolution .h_sol_mob {
    display: block;
    padding-top: 40px;
  }
}
.hSolution .sol_item_warp {
  margin: 0 auto;
  max-width: 1200px;
}
.hSolution .sol_item_warp:after, .hSolution .sol_item_warp:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1499px ) {
  .hSolution .sol_item_warp {
    max-width: 1000px;
  }
}
.hSolution .sol_item {
  float: left;
  float: left;
  width: 100%;
  float: left;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
  display: table;
}
@media (min-width: 768px ) {
  .hSolution .sol_item {
    width: 33.3333333333%;
  }
}
@media (max-width: 575px ) {
  .hSolution .sol_item {
    width: 100%;
  }
}
@media (max-width: 767px ) {
  .hSolution .sol_item {
    padding-bottom: 40px;
  }
}
.hSolution .sol_item .cel {
  width: 250px;
  height: 250px;
  border: 1px solid #1bc7ed;
  border-radius: 50%;
  display: table-cell;
  vertical-align: middle;
  transition: all 2s;
  position: relative;
}
@media (max-width: 1199px ) {
  .hSolution .sol_item .cel {
    width: 250px;
    height: 250px;
  }
}
.hSolution .sol_item .cel:hover {
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.hSolution .sol_item .cel:hover :before {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid rgba(27, 199, 237, 0.5);
  border-radius: 100%;
  animation-name: ripple2;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  z-index: -1;
}
.hSolution .sol_item img {
  width: 100px;
}
.hSolution .sol_item .title {
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
}
@media (max-width: 1499px ) {
  .hSolution .title_block {
    margin-bottom: 5em;
  }
}
.hSolution .hv_btn {
  right: calc(50% - 18px);
}
@media (max-width: 1499px ) {
  .hSolution .hv_btn {
    left: calc(50% - 10px);
  }
}
@media (max-width: 767px ) {
  .hSolution .btn_wrapper {
    display: none;
  }
}

@media (max-width: 767px ) {
  .hSolution .cel {
    width: 200px;
    height: 200px;
    border: 1px solid #1bc7ed;
    border-radius: 50%;
    display: table-cell;
    vertical-align: middle;
    transition: all 2s;
    position: relative;
  }
  .hSolution .cel:hover {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  .hSolution .cel:hover :before {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 2px solid rgba(27, 199, 237, 0.5);
    border-radius: 100%;
    animation-name: ripple2;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    z-index: -1;
  }
  .hSolution img {
    width: 100px !important;
    margin: 0 auto;
  }
  .hSolution .title {
    color: #fff;
    font-size: 16px;
    margin: 10px 8px;
  }
  .hSolution .crsl_basic .item {
    padding: 20px;
    text-align: center;
  }
  .hSolution .crsl_basic .owl-nav {
    opacity: 1;
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 199, 237, 0.1), 0 0 0 20px rgba(27, 199, 237, 0.1), 0 0 0 40px rgba(27, 199, 237, 0.1), 0 0 0 60px rgba(27, 199, 237, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(27, 199, 237, 0.1), 0 0 0 40px rgba(27, 199, 237, 0.1), 0 0 0 60px rgba(27, 199, 237, 0.1), 0 0 0 80px rgba(27, 199, 237, 0);
  }
}
@keyframes ripple2 {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1);
  }
}
.h_co {
  padding: 0;
}
.h_co .h_co_inner {
  display: table;
  background-color: #001a29;
}
@media (max-width: 767px ) {
  .h_co .h_co_inner {
    display: block;
  }
}
.h_co .h_co_left {
  width: 35%;
  display: table-cell;
  vertical-align: top;
  padding: 130px 0 0 130px;
  color: #fff;
}
@media (max-width: 1199px ) and (min-width: 768px ) {
  .h_co .h_co_left {
    padding: 115px 0 0 30px;
  }
}
@media (max-width: 767px ) {
  .h_co .h_co_left {
    width: 100%;
    display: block;
    padding: 30px;
  }
}
.h_co .h_co_left .title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px ) {
  .h_co .h_co_left .title {
    font-size: 18px;
  }
}
.h_co .h_co_left p {
  line-height: 2.5em;
  font-size: 16.5px;
}
@media (max-width: 767px ) {
  .h_co .h_co_left p {
    line-height: 1.8em;
    font-size: 15px;
  }
}
.h_co .h_co_left .btn_main {
  border: 1px solid #fff;
  margin: 20px 0;
  padding: 12px 50px;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  transition: all 1s;
}
.h_co .h_co_left .btn_main a {
  color: #fff;
}
.h_co .h_co_left .btn_main:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -15px;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 26.4px;
  height: 18px;
  background-position: 0px -120px;
  background-size: 720px auto;
  transition: all 1s;
}
@media (max-width: 767px ) {
  .h_co .h_co_left .btn_main:after {
    width: 22px;
    height: 15px;
    background-position: 0px -100px;
    background-size: 600px auto;
  }
}
.h_co .h_co_left .btn_main:hover, .h_co .h_co_left .btn_main:focus {
  background-color: #fff;
}
.h_co .h_co_left .btn_main:hover a, .h_co .h_co_left .btn_main:focus a {
  color: #000;
  font-weight: 700;
}
.h_co .h_co_left .btn_main:hover:after, .h_co .h_co_left .btn_main:focus:after {
  right: -35px;
}
.h_co .h_co_right {
  width: 65%;
  display: table-cell;
  background-color: #fff;
  -webkit-clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 767px ) {
  .h_co .h_co_right {
    width: 100%;
    display: block;
    background-color: #fff;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.h_co .h_co_right .co_pd {
  padding: 60px 0 60px 255px;
}
.h_co .h_co_right .co_pd:after, .h_co .h_co_right .co_pd:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1499px ) {
  .h_co .h_co_right .co_pd {
    padding: 60px 0 60px 200px;
  }
}
@media (max-width: 991px ) {
  .h_co .h_co_right .co_pd {
    padding: 40px 0 40px 110px;
  }
}
@media (max-width: 767px ) {
  .h_co .h_co_right .co_pd {
    padding: 0;
  }
}
.h_co .h_co_right .co_row {
  float: left;
  float: left;
  width: 100%;
  margin: 20px 0;
}
@media (min-width: 768px ) {
  .h_co .h_co_right .co_row {
    width: 100%;
  }
}
.h_co .h_co_right .co_img {
  float: left;
  float: left;
  width: 33.3333333333%;
  float: left;
}
@media (min-width: 768px ) {
  .h_co .h_co_right .co_img {
    width: 33.3333333333%;
  }
}
@media (max-width: 575px ) {
  .h_co .h_co_right .co_img {
    width: 33.3333333333%;
  }
}
.h_co .h_co_right .co_img img {
  width: 150px;
}
@media (min-width: 1500px ) {
  .h_co .h_co_right .co_img img {
    width: 180px;
  }
}
@media (max-width: 767px ) {
  .h_co .h_co_right .co_img img {
    width: 100px;
    display: block;
    margin: 0 auto;
  }
}
.h_co .h_co_right .img_ew img {
  width: 96px;
}
@media (max-width: 767px ) {
  .h_co .h_co_right .img_ew img {
    width: 60px;
  }
}

@media (min-width: 768px ) {
  .h_co footer.footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .h_co .fp-tableCell {
    padding-top: 120px;
    padding-bottom: 0;
  }
}
/* Responsive */
.large_screen_touch_device {
  /* About */
  /* Service */
  /* Advantage Animation */
}
.large_screen_touch_device .h_about {
  padding-top: 200px;
  padding-bottom: 0;
}
.large_screen_touch_device #canvas {
  position: absolute;
}
.large_screen_touch_device #canvasMuted {
  display: none;
}
.large_screen_touch_device .h_service {
  height: 100vh;
}
.large_screen_touch_device #hService {
  opacity: 1;
}
.large_screen_touch_device .scene {
  padding-top: 200px;
}

/* Fix fullpage */
/* Desktop wide screen */
@media (max-width: 1499px ) and (min-width: 768px ) and (min-aspect-ratio: 16/9) {
  #hAdvanIn .fp-tableCell {
    padding-top: 50px;
  }
}
.ad {
  position: fixed;
  right: 10px;
  bottom: 2%;
  padding: 0 8px;
  text-align: center;
  z-index: 1000;
}
.ad img {
  display: block;
  width: 45px;
  margin: 0 auto;
}
.ad p {
  color: #1bc7ed;
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 767px ) {
  .ad {
    right: 0;
    bottom: 1.5%;
  }
}

.adModal.in .modal-dialog {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
@media (max-width: 1499px ) {
  .adModal.in .modal-dialog {
    -webkit-transform: translate(0, 40%);
    -ms-transform: translate(0, 40%);
    -o-transform: translate(0, 40%);
    transform: translate(0, 40%);
  }
}
@media (max-width: 767px ) {
  .adModal.in .modal-dialog {
    -webkit-transform: translate(0, 10%);
    -ms-transform: translate(0, 10%);
    -o-transform: translate(0, 10%);
    transform: translate(0, 10%);
  }
}
.adModal .modal-dialog {
  background-color: transparent;
}
.adModal .modal-content {
  background-color: #001a29;
}
.adModal .modal-header .modal-title {
  color: #1bc7ed;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 3px;
  text-align: center;
  margin-left: 18px;
}
.adModal .modal-header .close {
  color: #1bc7ed;
}
.adModal .modal-body {
  display: flex;
}
@media (max-width: 767px ) {
  .adModal .modal-body {
    flex-direction: column;
    padding: 8px;
  }
}
.adModal .modal-body .item {
  color: #1bc7ed;
  width: 50%;
}
.adModal .modal-body .item .order_number {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: "Anton", sans-serif;
  margin-bottom: 15px;
}
.adModal .modal-body .item .order_number:after {
  content: "/";
  position: absolute;
  font-size: 24px;
  bottom: -7px;
  padding-left: 5px;
}
@media (max-width: 767px ) {
  .adModal .modal-body .item .order_number {
    font-size: 32px;
    margin-bottom: 5px;
    padding: 0 10px;
    text-align: left;
  }
  .adModal .modal-body .item .order_number:after {
    font-size: 22px;
    bottom: -5px;
  }
}
.adModal .modal-body .item .desc {
  padding: 0 20px;
  border-right: 1px solid #1bc7ed;
}
.adModal .modal-body .item h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 26px;
}
.adModal .modal-body .item .list {
  list-style: none;
}
.adModal .modal-body .item .list li {
  padding: 6px 0;
}
.adModal .modal-body .item .ic_prd {
  list-style: disc;
}
.adModal .modal-body .item .ic_prd li {
  width: 49%;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px ) {
  .adModal .modal-body .item {
    width: 100%;
  }
  .adModal .modal-body .item h3 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .adModal .modal-body .item .desc {
    padding: 0 10px;
    border-right: 0;
  }
}
.adModal .modal-body .item:last-child .desc {
  border-right: 0;
}

.adModal.lang_adModal .modal-header {
  padding: 15px 15px 0;
}
.adModal.lang_adModal .modal-header .modal-title {
  letter-spacing: 1px;
}
.adModal.lang_adModal .modal-header .close {
  margin-top: 0;
}
@media (max-width: 767px ) {
  .adModal.lang_adModal .modal-body .item h3 {
    font-size: 21px;
  }
}

/* Pages
----------------- */
/* Company Image */
.ci_section {
  color: white;
  position: relative;
  z-index: 1;
}

.ci_title {
  color: white;
  font-weight: 700;
  margin-bottom: 40px;
}
.ci_title, .ci_title:hover, .ci_title:focus {
  color: white;
}
@media (min-width: 768px ) {
  .ci_title {
    font-size: 320%;
  }
}
@media (max-width: 1499px ) {
  .ci_title {
    font-size: 220%;
  }
}
@media (max-width: 767px ) {
  .ci_title {
    font-size: 180%;
    font-weight: 600;
  }
}
@media (max-width: 767px ) {
  .ci_title {
    margin-bottom: 40px;
  }
}

.ci_sub {
  font-weight: 700;
  font-size: 200%;
}
.ci_sub, .ci_sub:hover, .ci_sub:focus {
  color: white;
}
@media (max-width: 1499px ) {
  .ci_sub {
    font-size: 140%;
    letter-spacing: 0.2em;
    font-weight: 400;
    padding-left: 0.2em;
  }
}
@media (max-width: 767px ) {
  .ci_sub {
    font-size: 140%;
  }
}

.ci_title_underline {
  position: relative;
}
.ci_title_underline:after {
  content: "";
  position: absolute;
  border-top: 2px solid white;
  width: 120px;
  left: calc(50% - 120px / 2);
  bottom: -20px;
}

.ci_dsc {
  font-weight: 400;
  color: white;
}
.ci_dsc, .ci_dsc:hover, .ci_dsc:focus {
  color: white;
}
@media (min-width: 768px ) {
  .ci_dsc {
    font-size: 135%;
  }
}
@media (max-width: 1499px ) {
  .ci_dsc {
    font-size: 115%;
  }
}
@media (max-width: 767px ) {
  .ci_dsc {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    font-size: 100%;
  }
}

.btn_ci {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 0px;
  display: inline-block;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-size: 120%;
  margin-top: 30px;
}
.btn_ci:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
@media (max-width: 767px ) {
  .btn_ci {
    font-size: 100%;
  }
}

.solution .title {
  text-align: center;
  color: #1bc7ed;
  font-weight: 700;
  margin-bottom: 2em;
  font-size: 20px;
}
@media (max-width: 767px ) {
  .solution .title {
    margin-bottom: 1em;
  }
}
.solution .sub_title {
  text-align: center;
  color: #1bc7ed;
}
@media (max-width: 767px ) {
  .solution .sub_title {
    padding: 0 30px;
    text-align: left;
  }
}
.solution .sol_item_warp {
  margin: 0 auto;
  max-width: 1200px;
}
.solution .sol_item_warp:after, .solution .sol_item_warp:before {
  content: "";
  display: block;
  clear: both;
}
.solution .soft_item {
  float: left;
  float: left;
  width: 100%;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px ) {
  .solution .soft_item {
    width: 33.3333333333%;
  }
}
.solution .soft_item img {
  display: inline-block;
  width: 100px;
  padding-bottom: 10px;
}
@media (max-width: 767px ) {
  .solution .soft_item {
    padding-bottom: 40px;
  }
  .solution .soft_item img {
    width: 90px;
  }
}
.solution .soft_item .title {
  margin-bottom: 0;
}
.solution .soft_item .desc {
  max-width: 250px;
  margin: 2em auto 0;
  border-top: 1px solid #fff;
  color: #fff;
  padding: 1em 0;
  text-align: left;
}
.solution .soft_item .desc p {
  height: 130px;
  font-size: 16px;
}
@media (max-width: 767px ) {
  .solution .soft_item .desc p {
    height: auto;
    font-size: 15px;
  }
}
.solution .soft_item .desc .fontmore {
  height: 160px;
}
@media (max-width: 767px ) {
  .solution .soft_item .desc .fontmore {
    height: auto;
  }
}
.solution .soft_item .desc .fontmore.en {
  height: 180px;
  word-break: break-all;
}
@media (max-width: 767px ) {
  .solution .soft_item .desc .fontmore.en {
    height: auto;
  }
}
.solution .title_block {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1499px ) {
  .solution .title_block {
    margin-top: 0;
    margin-bottom: 5em;
  }
}
.solution .btn_main {
  border: 1px solid #fff;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  transition: all 1s;
}
.solution .btn_main a {
  color: #fff;
}
.solution .btn_main:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -15px;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 26.4px;
  height: 18px;
  background-position: 0px -120px;
  background-size: 720px auto;
  transition: all 1s;
}
@media (max-width: 767px ) {
  .solution .btn_main:after {
    width: 22px;
    height: 15px;
    background-position: 0px -100px;
    background-size: 600px auto;
  }
}
.solution .btn_main:hover, .solution .btn_main:focus {
  background-color: #fff;
}
.solution .btn_main:hover a, .solution .btn_main:focus a {
  color: #000;
  font-weight: 700;
}
.solution .btn_main:hover:after, .solution .btn_main:focus:after {
  right: -35px;
}
@media (max-width: 767px ) {
  .solution .btn_main {
    margin: 20px auto;
    display: block;
  }
}
.solution .hv_btn {
  right: calc(50%);
}
@media (max-width: 767px ) {
  .solution .btn_wrapper {
    display: none;
  }
}

.service_banner {
  position: relative;
  padding-top: 34%;
  background-image: url("../images/common/banner_feps.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}
@media (max-width: 767px ) {
  .service_banner {
    background-attachment: scroll;
  }
}
.service_banner .title {
  position: absolute;
  top: 50%;
  left: calc(30% - 10px);
  color: #fff;
  font-size: 40px;
  border-bottom: 1px solid #dcdddd;
}
@media (min-width: 1800px) {
  .service_banner .title {
    left: calc(32% - 10px);
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .service_banner .title {
    margin-right: 15px;
    left: calc(22% - 10px);
  }
}
@media (max-width: 767px ) {
  .service_banner .title {
    top: 33%;
    left: 7%;
    font-size: 22px;
  }
}
.service_banner .title .line {
  background-color: #fff;
  height: 100%;
  width: 3px;
}
.service_banner .title .line1 {
  top: 0;
  bottom: unset;
}
.service_banner .title .letter {
  color: #fff;
}

.service_banner.sota_banner {
  background-image: url("../images/common/banner_sota.jpg");
}

.service_banner.dims_banner {
  background-image: url("../images/common/banner_dims.jpg");
}

.en_service_banner .title {
  left: calc(15% - 10px);
}
@media (min-width: 1800px) {
  .en_service_banner .title {
    left: calc(25% - 10px);
  }
}
@media (max-width: 767px ) {
  .en_service_banner .title {
    left: 4%;
  }
}

.en_feps_banner .title {
  left: calc(12% - 10px);
}
@media (min-width: 1800px) {
  .en_feps_banner .title {
    left: calc(25% - 10px);
  }
}
@media (max-width: 767px ) {
  .en_feps_banner .title {
    left: 4%;
    top: 25%;
    margin-right: 8px;
  }
}

@media (min-width: 768px ) and (max-width: 1199px ) {
  .en_service_banner .title, .en_feps_banner .title {
    font-size: 36px;
    left: calc(7% - 10px);
  }
}

.jp_service_banner .title {
  left: calc(22% - 10px);
}
@media (min-width: 1800px) {
  .jp_service_banner .title {
    left: calc(28% - 10px);
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .jp_service_banner .title {
    font-size: 36px;
    left: calc(10% - 10px);
  }
}
@media (max-width: 767px ) {
  .jp_service_banner .title {
    left: 4%;
  }
}

.service_section {
  display: table;
  height: 100%;
  height: 80vh;
  width: 100%;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px ) {
  .service_section {
    height: auto;
  }
}

.service_inner {
  display: table-row;
  height: 80vh;
  text-align: left;
}
@media (max-width: 767px ) {
  .service_inner {
    padding: 100px 60px;
  }
}
@media (max-width: 575px ) {
  .service_inner {
    padding: 0px 30px;
    height: auto;
    display: block;
  }
}
.service_inner .serv_left {
  display: table-cell;
  vertical-align: middle;
  padding-left: 17vw;
  text-align: center;
  vertical-align: baseline;
  padding-top: 25vh;
}
.service_inner .serv_left .img {
  width: 100px;
  padding-bottom: 30px;
}
.service_inner .serv_left h3 {
  font-size: 20px;
}
@media (min-width: 1800px) {
  .service_inner .serv_left {
    padding-top: 30vh;
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .service_inner .serv_left {
    padding-left: 8vw;
    padding-right: 20px;
  }
}
.service_inner .serv_left.spta_pdt {
  padding-top: 28vh;
}
@media (max-width: 767px ) {
  .service_inner .serv_left.spta_pdt {
    padding-top: 3em;
  }
}
.service_inner .serv_right {
  display: table-cell;
  vertical-align: middle;
}
.service_inner .serv_dsc {
  max-width: 800px;
  margin-right: 100px;
  padding-top: 12px;
}
.service_inner .serv_dsc .title {
  padding-bottom: 2rem;
  font-weight: 700;
}
.service_inner .serv_dsc p {
  padding-bottom: 3em;
  font-size: 16.5px;
}
.service_inner .serv_dsc .markers {
  color: #1bc7ed;
  font-weight: 700;
}
@media (max-width: 767px ) {
  .service_inner .serv_left {
    display: block;
    padding-left: 0;
    padding-top: 3em;
  }
  .service_inner .serv_left .img {
    width: 90px;
    padding-bottom: 8px;
  }
  .service_inner .serv_left h3 {
    font-size: 20px;
  }
  .service_inner .serv_right {
    display: block;
    padding: 20px 0px;
  }
  .service_inner .serv_dsc {
    margin-right: 0px;
  }
  .service_inner .serv_dsc p {
    font-size: 15px;
  }
}

.serv_menu {
  position: absolute;
  top: 40%;
  right: 2%;
  border-left: 1px solid #fff;
  padding-left: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px ) {
  .serv_menu {
    right: 1%;
  }
}
.serv_menu li {
  font-size: 18px;
}
.serv_menu li.active {
  font-size: 24px;
  padding-bottom: 4px;
}
.serv_menu li.active a {
  color: #1bc7ed;
}
.serv_menu a {
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 767px ) {
  .serv_menu {
    display: none;
  }
}
.serv_menu.st2 {
  border-left-color: #1bc7ed;
}
.serv_menu.st2 a {
  color: #001a29;
}

.more_section {
  background: white;
  color: #001a29;
}
@media (max-width: 767px ) {
  .more_section {
    text-align: center;
  }
}
.more_section .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6% 8%;
  padding-left: 20px;
}
@media (min-width: 1800px) {
  .more_section .block {
    padding: 5% 12px;
  }
}
@media (max-width: 767px ) {
  .more_section .block {
    flex-direction: column;
    padding: 6% 8% 3%;
  }
}
.more_section .block p {
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1199px ) {
  .more_section .block p {
    font-size: 24px;
  }
}
@media (max-width: 767px ) {
  .more_section .block p {
    font-size: 21px;
  }
}
@media (max-width: 575px ) {
  .more_section .block p {
    font-size: 19px;
  }
}
@media (max-width: 767px ) {
  .more_section .block .content_link {
    display: block;
  }
}
.more_section .btn_main {
  border: 1px solid #001a29;
  padding: 16px 80px;
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  transition: all 1s;
  background-color: #001a29;
}
.more_section .btn_main:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 20px;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 26.4px;
  height: 18px;
  background-position: 0px -120px;
  background-size: 720px auto;
  transition: all 0.5s;
}
@media (max-width: 767px ) {
  .more_section .btn_main:after {
    width: 22px;
    height: 15px;
    background-position: 0px -100px;
    background-size: 600px auto;
  }
}
@media (max-width: 767px ) {
  .more_section .btn_main:after {
    top: 16px;
  }
}
.more_section .btn_main:hover, .more_section .btn_main:focus {
  background-color: #002a43;
  color: white;
  font-weight: 700;
}
.more_section .btn_main:hover:after, .more_section .btn_main:focus:after {
  right: -35px;
  content: "";
  background-image: url(../images/common/icon1.png);
  background-size: 600px auto;
  width: 26.4px;
  height: 18px;
  background-position: 0px -146.4px;
  background-size: 720px auto;
}
@media (max-width: 767px ) {
  .more_section .btn_main:hover:after, .more_section .btn_main:focus:after {
    width: 22px;
    height: 15px;
    background-position: 0px -122px;
    background-size: 600px auto;
  }
}
@media (max-width: 767px ) {
  .more_section .btn_main {
    margin: 15px 0;
  }
}

/* Progress Bar */
.prg_group {
  position: absolute;
  width: 60px;
  float: left;
  margin-bottom: 30px;
  top: 140px;
  left: 20px;
}
@media (max-width: 767px ) {
  .prg_group {
    display: none;
  }
}

.prg_item {
  position: relative;
  display: block;
  padding: 1px;
}

.prg_item:before, .prg_item:after {
  content: "";
  position: absolute;
}

.prg_item:before {
  top: 30px;
  left: calc(50% - 2px / 2);
  bottom: 30px;
  width: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.prg_item:nth-child(1) {
  margin-top: calc(80px * 0.5);
  height: 210px;
}

.prg_item:nth-child(2) {
  height: 245px;
}

.prg_item span {
  line-height: 60px;
  height: 60px;
  margin-top: -30px;
  text-align: center;
  font-weight: 600;
  color: white;
  display: block;
  font-size: 30px;
}

.feps_section {
  color: #fff;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  margin-bottom: 60px;
}
.feps_section:after, .feps_section:before {
  content: "";
  display: block;
  clear: both;
}
.feps_section .main_title {
  font-size: 34px;
  margin-bottom: 2em;
}
@media (max-width: 767px ) {
  .feps_section .main_title {
    font-size: 26px;
  }
}
.feps_section .feps_block {
  max-width: 1000px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feps_section .feps_block:after, .feps_section .feps_block:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .feps_section .feps_block {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .feps_section .feps_block:last-child {
    margin-bottom: 0;
  }
}
.feps_section .feps_block .feps_left {
  text-align: center;
  width: 31%;
  padding: 0 8px;
}
.feps_section .feps_block .feps_left .img {
  width: 80px;
  padding-bottom: 12px;
}
.feps_section .feps_block .feps_left .img.no_pdt {
  padding-top: 0;
}
.feps_section .feps_block .feps_left h2 {
  font-weight: 700;
  letter-spacing: 2px;
}
.feps_section .feps_block .feps_right {
  width: calc(100% - 35%);
}
@media (max-width: 1199px ) {
  .feps_section .feps_block .feps_right {
    width: calc(100% - 48%);
  }
}
.feps_section .feps_block .feps_right .feps_dsc {
  border-bottom: 1px solid #dcdddd;
  padding: 50px 0;
  padding-left: 8px;
}
.feps_section .feps_block .feps_right .feps_dsc .title {
  font-weight: 700;
}
.feps_section .feps_block .feps_right .feps_dsc p {
  font-size: 16.5px;
}
.feps_section .feps_block .feps_right .feps_dsc.last_border_none {
  border-bottom: 0;
}
@media (max-width: 767px ) {
  .feps_section .feps_block .feps_left, .feps_section .feps_block .feps_right {
    width: 100%;
  }
  .feps_section .feps_block .feps_right {
    padding: 15px 30px;
  }
  .feps_section .feps_block .feps_right .feps_dsc {
    padding: 15px 0 30px 8px;
  }
  .feps_section .feps_block .feps_right .feps_dsc p {
    font-size: 15px;
  }
}

.dims_section .prg_item:nth-child(2) {
  height: 0;
}

.sota_section .prg_item:nth-child(2) {
  height: 215px;
}

.dims_warp .serv_logo_title, .feps_warp .serv_logo_title, .sota_warp .serv_logo_title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 2em;
}
@media (max-width: 767px ) {
  .dims_warp .serv_logo_title, .feps_warp .serv_logo_title, .sota_warp .serv_logo_title {
    font-size: 26px;
  }
}
.dims_warp .partner_ic_warp, .feps_warp .partner_ic_warp, .sota_warp .partner_ic_warp {
  padding: 20px;
}
@media (min-width: 1500px ) {
  .dims_warp .partner_ic_warp, .feps_warp .partner_ic_warp, .sota_warp .partner_ic_warp {
    padding: 20px 120px;
  }
}
@media (max-width: 767px ) {
  .dims_warp .partner_ic_warp, .feps_warp .partner_ic_warp, .sota_warp .partner_ic_warp {
    padding: 0 15px;
  }
}

.partner_section {
  display: table;
  height: 100%;
  height: 100vh;
  width: 100%;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px ) {
  .partner_section {
    height: auto;
  }
}
.partner_section .title_block {
  margin-bottom: 4em;
}
@media (max-width: 1499px ) {
  .partner_section .title_block {
    margin-top: 0;
    margin-bottom: 4em;
  }
}
@media (max-width: 767px ) {
  .partner_section .title_block {
    margin-top: 4em;
  }
}
.partner_section .features_inner {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.partner_section .features_inner:after, .partner_section .features_inner:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .partner_section .features_inner {
    padding: 100px 60px;
  }
}
@media (max-width: 575px ) {
  .partner_section .features_inner {
    padding: 30px 0;
    padding-bottom: 0;
    height: auto;
    display: block;
  }
  .partner_section .features_inner.m_pt0 {
    padding-top: 0;
  }
}
.partner_section .features_inner .features_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.partner_section .features_inner .features_wrap:after, .partner_section .features_inner .features_wrap:before {
  content: "";
  display: block;
  clear: both;
}
.partner_section .features_inner .features_wrap .intro {
  font-size: 16.5px;
  text-align: center;
  line-height: 2em;
}
@media (max-width: 767px ) {
  .partner_section .features_inner .features_wrap .intro {
    text-align: left;
    margin-bottom: 4em;
    padding: 0 25px;
    font-size: 15px;
    line-height: 1.8em;
  }
}
.partner_section .hv_btn {
  right: calc(50% - 10px);
}

.co_block {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 8px auto;
  padding: 4px 16px;
  background-color: rgba(0, 26, 41, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.co_block:hover {
  background-color: #001a29;
}
.co_block:hover .desc {
  color: #1bc7ed;
}
.co_block .img_wrapper img {
  width: 200px;
}
.co_block .desc {
  font-size: 18px;
  margin-left: 20px;
}
@media (max-width: 767px ) {
  .co_block {
    flex-direction: column;
    padding: 8px 16px;
  }
  .co_block .img_wrapper img {
    width: 150px;
  }
  .co_block .desc {
    font-size: 15px;
    margin-left: 0px;
  }
}

.info {
  display: table;
  height: 100%;
  max-width: 1200px;
  margin: 60px auto 120px;
}
@media (max-width: 767px ) {
  .info {
    display: block;
    margin: 30px;
  }
}

.partner_ic_warp {
  background-color: #fff;
  padding: 60px;
}
.partner_ic_warp:after, .partner_ic_warp:before {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 1500px ) {
  .partner_ic_warp {
    padding: 60px 120px;
  }
}
@media (max-width: 767px ) {
  .partner_ic_warp {
    padding: 0 15px;
  }
}
@media (max-width: 767px ) {
  .partner_ic_warp .grid_basic {
    padding: 20px 0;
  }
}
.partner_ic_warp .grid_basic .item {
  float: left;
  float: left;
  width: 33.3333333333%;
  float: left;
  height: 130px;
  line-height: 130px;
}
@media (min-width: 992px ) {
  .partner_ic_warp .grid_basic .item {
    width: 25%;
  }
}
@media (max-width: 575px ) {
  .partner_ic_warp .grid_basic .item {
    width: 50%;
  }
}
@media (min-width: 1500px ) {
  .partner_ic_warp .grid_basic .item {
    height: 150px;
    line-height: 150px;
  }
}
@media (max-width: 991px ) {
  .partner_ic_warp .grid_basic .item {
    padding: 10px;
  }
}
@media (max-width: 767px ) {
  .partner_ic_warp .grid_basic .item {
    padding: 8px;
    text-align: center;
    height: 100px;
    line-height: 100px;
  }
}
.partner_ic_warp .grid_basic .item img {
  width: 135px;
  display: inline-block;
  margin: 0 80px;
}
@media (min-width: 1500px ) {
  .partner_ic_warp .grid_basic .item img {
    width: 160px;
  }
}
@media (max-width: 1199px ) {
  .partner_ic_warp .grid_basic .item img {
    margin: 0 50px;
  }
}
@media (max-width: 767px ) {
  .partner_ic_warp .grid_basic .item img {
    width: 100px;
    margin: 0 auto;
  }
}
.partner_ic_warp .grid_basic .img_ew img {
  width: 85px;
  margin-left: 105px;
}
@media (min-width: 1500px ) {
  .partner_ic_warp .grid_basic .img_ew img {
    width: 105px;
  }
}
@media (max-width: 1199px ) {
  .partner_ic_warp .grid_basic .img_ew img {
    margin-left: 70px;
  }
}
@media (max-width: 767px ) {
  .partner_ic_warp .grid_basic .img_ew img {
    width: 80px;
    margin-left: 0;
  }
}
.partner_ic_warp .grid_basic .item:hover .img, .partner_ic_warp .grid_basic .item:hover img {
  transform: scale(1);
}
.partner_ic_warp .item_row {
  float: left;
  float: left;
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
@media (min-width: 768px ) {
  .partner_ic_warp .item_row {
    width: 100%;
  }
}

.contact_background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../images/common/contact_bg.jpg);
  background-size: cover;
  text-align: center;
  background-position: right top;
}

.contact_section {
  padding-top: 50px;
}
@media (max-width: 767px ) {
  .contact_section {
    padding-top: 0;
  }
}
.contact_section .title_block {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .contact_section .title_block {
    margin-top: 40px;
  }
  .contact_section .title_block .sub_title {
    padding: 0 20px;
  }
}
.contact_section .part_ami_line {
  margin: 6px auto;
  width: 70%;
}
@media (max-width: 767px ) {
  .contact_section .part_ami_line {
    width: 90%;
  }
}

.contact_wrap {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  background-color: #001a29;
  margin: 80px auto;
}
.contact_wrap:after, .contact_wrap:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .contact_wrap {
    margin: 40px auto;
  }
}
.contact_wrap .info {
  float: left;
  float: left;
  float: left;
  width: 100%;
  color: #fff;
  padding: 40px 0 40px 120px;
  margin: 60px auto 120px;
}
@media (min-width: 768px ) {
  .contact_wrap .info {
    width: 58.3333333333%;
  }
}
@media (min-width: 992px ) {
  .contact_wrap .info {
    width: 50%;
  }
}
.contact_wrap .info .f_logo {
  width: 140px;
  margin-bottom: 10px;
}
.contact_wrap .info hr {
  width: 50%;
}
.contact_wrap .info ul {
  margin-bottom: 60px;
}
.contact_wrap .info li {
  margin-bottom: 15px;
}
.contact_wrap .info li span {
  width: 75px;
  display: inline-block;
  margin-right: 8px;
  border-right: 1px solid #fff;
  vertical-align: middle;
}
.contact_wrap .info li .en_address {
  width: calc(100% - 90px);
  margin-right: 0;
  border-right: 0;
}
.contact_wrap .info .f_social {
  float: none;
}
.contact_wrap .info .f_social .ic_h, .contact_wrap .info .f_social .ic_w {
  width: 43px;
  height: 43px;
  line-height: 43px;
}
.contact_wrap .info .f_social .ic_h img {
  height: 20px;
}
.contact_wrap .info .f_social .ic_w img {
  width: 28px;
}
@media (max-width: 767px ) {
  .contact_wrap .info {
    padding: 20px;
    margin: 20px auto 0;
  }
  .contact_wrap .info hr {
    width: 95%;
  }
  .contact_wrap .info ul {
    margin-bottom: 40px;
  }
}
.contact_wrap .contact_form {
  float: left;
  float: left;
  float: left;
  width: 100%;
  padding: 40px 90px 40px 0;
  margin: 60px auto 120px;
}
@media (min-width: 768px ) {
  .contact_wrap .contact_form {
    width: 41.6666666667%;
  }
}
@media (min-width: 992px ) {
  .contact_wrap .contact_form {
    width: 50%;
  }
}
.contact_wrap .contact_form .form_column > .item {
  padding-bottom: 10px;
}
.contact_wrap .contact_form .form_column input, .contact_wrap .contact_form .form_column textarea, .contact_wrap .contact_form .form_column .caret_select {
  background-color: transparent;
  border-radius: 0;
  color: white;
}
.contact_wrap .contact_form .form_column input:hover, .contact_wrap .contact_form .form_column textarea:hover, .contact_wrap .contact_form .form_column .caret_select:hover {
  border: 1px solid #1bc7ed;
}
.contact_wrap .contact_form .form_column input:focus, .contact_wrap .contact_form .form_column textarea:focus, .contact_wrap .contact_form .form_column .caret_select:focus {
  border: 1px solid #1bc7ed;
}
.contact_wrap .contact_form .btn_main {
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 120%;
  letter-spacing: 3px;
}
@media (max-width: 767px ) {
  .contact_wrap .contact_form {
    padding: 20px;
    margin: 0;
  }
}

.about_scetion {
  color: white;
  position: relative;
  z-index: 1;
}
.about_scetion .about_inner {
  display: flex;
}
@media (max-width: 575px ) {
  .about_scetion .about_inner {
    height: auto;
    display: block;
  }
}
.about_scetion .about_img {
  background-image: url("../images/common/about_bg_002.jpg");
  overflow: hidden;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
  min-width: 50%;
}
.about_scetion .about_cont {
  padding: 100px 50px;
  z-index: 2;
  color: #fff;
  background-color: #001a29;
}
@media (min-width: 1500px ) {
  .about_scetion .about_cont {
    padding: 140px;
    padding-bottom: 250px;
  }
}
@media (max-width: 1200px) {
  .about_scetion .about_cont {
    padding: 65px;
  }
}
.about_scetion .about_cont .about_pki_pc {
  color: #fff;
}
.about_scetion .about_cont .about_pki_pc .title {
  color: #1bc7ed;
  font-size: 30px;
}
.about_scetion .about_cont .about_pki_pc .sub_title {
  color: #1bc7ed;
  font-size: 16.5px;
  border-top: 1px solid #1bc7ed;
  margin-bottom: 12px;
  padding-top: 4px;
  margin-top: 4px;
}
.about_scetion .about_cont .about_pki_pc p {
  line-height: 2em;
  font-size: 16.5px;
}
@media (max-width: 991px ) {
  .about_scetion {
    display: none;
  }
}

.about_btn.btn_wrapper {
  position: relative;
  height: 90px;
}
@media (max-width: 767px ) {
  .about_btn.btn_wrapper {
    height: 50px;
  }
}
.about_btn.btn_wrapper .hv_btn {
  right: unset;
  left: 0;
}

.about_mob_img {
  display: none;
}
@media (max-width: 991px ) {
  .about_mob_img {
    display: block;
    background-image: url("../images/common/about_bg_002m.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100%;
  }
}

.about_pki_mob {
  display: none;
}
@media (max-width: 991px ) {
  .about_pki_mob {
    display: block;
    color: #fff;
    padding: 30px;
    background-color: #001a29;
  }
  .about_pki_mob .title {
    color: #1bc7ed;
    font-size: 30px;
  }
  .about_pki_mob .sub_title {
    color: #1bc7ed;
    font-size: 15px;
    border-top: 1px solid #1bc7ed;
    padding-top: 6px;
    margin-bottom: 10px;
    margin-top: 4px;
  }
  .about_pki_mob p {
    font-size: 15px;
  }
}

.staff_section {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  display: table;
  height: 100%;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.staff_section:after, .staff_section:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1499px ) {
  .staff_section {
    margin-bottom: 80px;
  }
}
@media (max-width: 991px ) {
  .staff_section {
    margin: 60px auto;
  }
}
@media (max-width: 767px ) {
  .staff_section {
    margin: 30px auto;
  }
}
.staff_section .staff_inner {
  display: table-cell;
  vertical-align: middle;
}
.staff_section .main_title {
  text-align: center;
  color: #1bc7ed;
  font-size: 26px;
  font-weight: 700;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (min-width: 1500px ) {
  .staff_section .main_title {
    padding-top: 0;
  }
}
@media (max-width: 767px ) {
  .staff_section .main_title {
    padding-top: 0;
  }
}
.staff_section .grid_basic .item {
  width: 240px;
  margin: 30px;
  padding: 0;
  overflow: hidden;
  position: relative;
  float: left;
}
.staff_section .grid_basic .item img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.staff_section .grid_basic .item:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.staff_section .grid_basic .item .staff_info {
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: 0;
  left: 0;
  color: #1bc7ed;
  background: rgba(4, 14, 21, 0.7);
  padding-left: 15px;
  padding-top: 30px;
  opacity: 0;
  transition: all 0.35s ease;
}
.staff_section .grid_basic .item .staff_info h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
.staff_section .grid_basic .item:hover .staff_info {
  opacity: 1;
}
.staff_section .grid_basic .item:hover .img, .staff_section .grid_basic .item:hover img {
  transform: scale(1);
}
@media (max-width: 767px ) {
  .staff_section .grid_basic .item {
    width: 280px;
    margin: 30px auto;
    float: none;
    display: block;
  }
  .staff_section .grid_basic .item img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .staff_section .grid_basic .item .staff_info {
    margin: 0 auto;
    position: relative;
    height: auto;
    width: 280px;
    padding: 12px;
    top: 0;
    text-align: left;
    opacity: 1;
    background: #001a29;
  }
}

.blog_top {
  position: relative;
  padding-top: 10%;
  background-color: #001a29;
  overflow: hidden;
}
.blog_top .white_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
}
@media (max-width: 1199px ) {
  .blog_top .white_bg {
    height: 40px;
  }
}
@media (max-width: 767px ) {
  .blog_top .white_bg {
    display: none;
  }
}

.crsl_bolg {
  max-width: 1300px;
  margin: 0 auto;
}
.crsl_bolg .item {
  display: flex;
  padding: 0 15px;
}
@media (max-width: 767px ) {
  .crsl_bolg .item {
    flex-direction: column;
  }
}
.crsl_bolg .img_wp {
  width: 55%;
}
.crsl_bolg .new_tltie {
  color: #1bc7ed;
}
.crsl_bolg .content {
  width: 45%;
  color: white;
  padding: 0 30px;
}
.crsl_bolg .title {
  font-size: 220%;
  font-weight: 700;
  max-height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.crsl_bolg .date {
  text-align: right;
  color: #fff;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  font-size: 18px;
  font-style: italic;
}
.crsl_bolg .desc {
  padding: 15px;
  max-height: 10em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.crsl_bolg .more {
  position: absolute;
  bottom: 15px;
  right: 30px;
  color: #001a29;
  font-weight: bold;
  font-size: 160%;
}
.crsl_bolg .more:hover {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1199px ) {
  .crsl_bolg .img_wp, .crsl_bolg .content {
    width: 50%;
  }
  .crsl_bolg .content {
    padding: 0 15px;
  }
  .crsl_bolg .title {
    font-size: 165%;
    -webkit-line-clamp: 1;
  }
  .crsl_bolg .date {
    font-size: 16px;
  }
  .crsl_bolg .desc {
    max-height: 6em;
    -webkit-line-clamp: 3;
  }
  .crsl_bolg .more {
    font-size: 150%;
    bottom: 0;
    right: 15px;
  }
}
@media (max-width: 767px ) {
  .crsl_bolg .img_wp, .crsl_bolg .content {
    width: 100%;
  }
  .crsl_bolg .content {
    padding: 8px;
  }
  .crsl_bolg .title {
    font-size: 165%;
    -webkit-line-clamp: 1;
  }
  .crsl_bolg .date {
    font-size: 14px;
    padding-bottom: 5px;
  }
  .crsl_bolg .desc {
    padding: 8px;
  }
  .crsl_bolg .more {
    position: relative;
    right: unset;
    bottom: unset;
    color: white;
    display: block;
    margin: 10px auto;
    font-size: 140%;
    text-align: right;
  }
}
.crsl_bolg .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 0;
  z-index: 3;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.crsl_bolg .owl-nav [class*=owl-] {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  opacity: 1;
  background-color: transparent;
  border-radius: 0;
}
.crsl_bolg .owl-nav [class*=owl-] > i {
  color: transparent;
}
.crsl_bolg .owl-nav [class*=owl-].disabled {
  opacity: 0.5;
  animation-duration: 0s !important;
}
.crsl_bolg .owl-nav .owl-prev {
  /* Stage padding - width */
  left: 25px;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent #1bc7ed transparent transparent;
}
.crsl_bolg .owl-nav .owl-next {
  right: 25px;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #1bc7ed;
}
.crsl_bolg:hover .owl-prev {
  animation-name: owlPrev;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.crsl_bolg:hover .owl-next {
  animation-name: owlNext;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
@media (min-width: 1460px) {
  .crsl_bolg .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 0;
    z-index: 3;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .crsl_bolg .owl-nav [class*=owl-] {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
  }
  .crsl_bolg .owl-nav [class*=owl-] > i {
    color: transparent;
  }
  .crsl_bolg .owl-nav [class*=owl-].disabled {
    opacity: 0.5;
    animation-duration: 0s !important;
  }
  .crsl_bolg .owl-nav .owl-prev {
    /* Stage padding - width */
    left: -20px;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #1bc7ed transparent transparent;
  }
  .crsl_bolg .owl-nav .owl-next {
    right: -20px;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #1bc7ed;
  }
  .crsl_bolg:hover .owl-prev {
    animation-name: owlPrev;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
  }
  .crsl_bolg:hover .owl-next {
    animation-name: owlNext;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
  }
}

.blog_wrap {
  padding: 50px 0;
}
@media (min-width: 1399px) {
  .blog_wrap {
    padding: 50px 35px;
  }
}
@media (max-width: 767px ) {
  .blog_wrap {
    padding: 30px 0;
  }
}
.blog_wrap .blog_tab {
  display: inline-table;
  margin-left: 30px;
}
.blog_wrap .blog_tab li {
  display: table-cell;
}
.blog_wrap .blog_tab li a {
  font-size: 18px;
}
@media (max-width: 767px ) {
  .blog_wrap .blog_tab {
    margin-left: 15px;
  }
  .blog_wrap .blog_tab li a {
    font-size: 14px;
  }
}
.blog_wrap .grid_basic.grid_blog:after, .blog_wrap .grid_basic.grid_blog:before {
  content: "";
  display: block;
  clear: both;
}
.blog_wrap .grid_basic.grid_blog .item {
  float: left;
  float: left;
  float: left;
  width: 100%;
  display: block;
  position: relative;
  padding: 30px;
}
@media (min-width: 768px ) {
  .blog_wrap .grid_basic.grid_blog .item {
    width: 50%;
  }
}
@media (min-width: 992px ) {
  .blog_wrap .grid_basic.grid_blog .item {
    width: 33.3333333333%;
  }
}
@media (max-width: 575px ) {
  .blog_wrap .grid_basic.grid_blog .item.col-xxs-6:nth-child(2n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xxs-4:nth-child(3n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xxs-3:nth-child(4n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xxs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .blog_wrap .grid_basic.grid_blog .item.col-xs-6:nth-child(2n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xs-4:nth-child(3n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xs-3:nth-child(4n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-xs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .blog_wrap .grid_basic.grid_blog .item.col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-sm-4:nth-child(3n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-sm-3:nth-child(4n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-sm-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .blog_wrap .grid_basic.grid_blog .item.col-md-6:nth-child(2n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-md-4:nth-child(3n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-md-3:nth-child(4n+1) {
    clear: left;
  }
  .blog_wrap .grid_basic.grid_blog .item.col-md-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (max-width: 767px ) {
  .blog_wrap .grid_basic.grid_blog .item {
    padding: 15px;
  }
}
.blog_wrap .grid_basic.grid_blog .item .img {
  width: 100%;
  padding: 0;
  padding-top: 60%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-bottom: 8px solid transparent;
}
.blog_wrap .grid_basic.grid_blog .item .title {
  margin: 5px auto 10px auto;
  color: #001a29;
  font-weight: bold;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog_wrap .grid_basic.grid_blog .item .date {
  padding: 8px 0;
  color: #001a29;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  text-align: right;
  border-top: 1px solid #c9caca;
}
.blog_wrap .grid_basic.grid_blog .item:hover .img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 8px solid #1bc7ed;
}
.blog_wrap .pagination {
  padding-right: 30px;
}
@media (max-width: 767px ) {
  .blog_wrap .pagination {
    padding-right: 15px;
  }
}

.bolgIn_section {
  padding-top: 50px;
}
@media (max-width: 767px ) {
  .bolgIn_section {
    padding-top: 0;
  }
}
@media (max-width: 1499px ) {
  .bolgIn_section .title_block {
    margin-bottom: 4em;
  }
}
@media (max-width: 767px ) {
  .bolgIn_section .title_block {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.bolgIn_section .sub_title {
  color: #fff;
  text-align: center;
}

.blogIn_wrap {
  display: flex;
  align-items: center;
  margin-top: 30px;
  color: #001a29;
  background-color: #f7f8f8;
}
.blogIn_wrap .crsl_imgs {
  width: 50%;
}
.blogIn_wrap .crsl_imgs .img {
  width: 100%;
  padding: 0;
  padding-top: 114.3724696356%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.blogIn_wrap .crsl_imgs .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.blogIn_wrap .crsl_imgs .owl-nav [class*=owl-] {
  position: relative;
  color: white;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 25px;
  top: 0;
  background: rgba(0, 26, 41, 0.7);
  color: white;
  opacity: 1;
}
.blogIn_wrap .crsl_imgs .owl-nav [class*=owl-] i {
  line-height: 50px;
}
.blogIn_wrap .crsl_imgs .owl-nav [class*=owl-].disabled, .blogIn_wrap .crsl_imgs .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.blogIn_wrap .crsl_imgs .owl-prev {
  left: 5px;
}
.blogIn_wrap .crsl_imgs .owl-prev i {
  margin-right: 5px;
}
.blogIn_wrap .crsl_imgs .owl-next {
  right: 5px;
}
.blogIn_wrap .crsl_imgs .owl-next i {
  margin-left: 5px;
}
.blogIn_wrap .crsl_imgs .owl-nav {
  opacity: 0;
}
.blogIn_wrap .crsl_imgs:hover .owl-nav {
  opacity: 1;
}
.blogIn_wrap .content {
  width: 50%;
}
.blogIn_wrap .content .cont_scroll {
  margin: 50px;
  margin-bottom: 30px;
  padding: 0px 50px;
  max-height: 685px;
  overflow-y: scroll;
}
@media (min-width: 1635px) {
  .blogIn_wrap .content .cont_scroll {
    max-height: 800px;
  }
}
@media (max-width: 1410px) and (min-width: 1199px) {
  .blogIn_wrap .content .cont_scroll {
    max-height: 555px;
  }
}
@media (max-width: 1199px ) {
  .blogIn_wrap .content .cont_scroll {
    max-height: 400px;
    margin: 0 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px ) {
  .blogIn_wrap .content .cont_scroll {
    margin: 30px 15px;
    padding: 0 12px;
  }
}
.blogIn_wrap .content .date {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}
.blogIn_wrap .content .title {
  font-size: 32px;
  font-weight: bold;
}
.blogIn_wrap .content .desc {
  color: #001a29;
  font-size: 18px;
}
.blogIn_wrap .content .back {
  display: inline-block;
  color: #001a29;
  font-size: 170%;
  font-weight: 700;
  margin-left: 100px;
  margin-bottom: 30px;
}
@media (max-width: 1199px ) {
  .blogIn_wrap .content .back {
    margin-left: 80px;
  }
}
@media (max-width: 767px ) {
  .blogIn_wrap .content .date, .blogIn_wrap .content .desc {
    font-size: 14px;
  }
  .blogIn_wrap .content .title {
    font-size: 28px;
  }
  .blogIn_wrap .content .back {
    margin-left: 27px;
  }
}
@media (max-width: 767px ) {
  .blogIn_wrap {
    flex-direction: column;
  }
  .blogIn_wrap .crsl_imgs, .blogIn_wrap .content {
    width: 100%;
  }
}

.mnews_wrap {
  padding: 50px 80px;
  background-color: white;
}
@media (max-width: 767px ) {
  .mnews_wrap {
    padding: 30px 15px;
  }
}
.mnews_wrap .main_title {
  color: #001a29;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
}
.mnews_wrap .crsl_blogIn .item {
  padding: 30px;
}
@media (max-width: 1199px ) {
  .mnews_wrap .crsl_blogIn .item {
    padding: 15px;
  }
}
.mnews_wrap .crsl_blogIn .img {
  width: 100%;
  padding: 0;
  padding-top: 60%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-bottom: 8px solid transparent;
}
.mnews_wrap .crsl_blogIn .title {
  overflow: hidden;
  margin: 5px auto 10px auto;
  color: #001a29;
  text-align: center;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnews_wrap .crsl_blogIn .date {
  padding: 8px 0;
  color: #001a29;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  text-align: right;
  border-top: 1px solid #c9caca;
}
.mnews_wrap .crsl_blogIn .item:hover .img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 8px solid #1bc7ed;
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.mnews_wrap .crsl_blogIn .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 0;
  z-index: 3;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mnews_wrap .crsl_blogIn .owl-nav [class*=owl-] {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  opacity: 1;
  background-color: transparent;
  border-radius: 0;
}
.mnews_wrap .crsl_blogIn .owl-nav [class*=owl-] > i {
  color: transparent;
}
.mnews_wrap .crsl_blogIn .owl-nav [class*=owl-].disabled {
  opacity: 0.5;
  animation-duration: 0s !important;
}
.mnews_wrap .crsl_blogIn .owl-nav .owl-prev {
  /* Stage padding - width */
  left: -20px;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent #001a29 transparent transparent;
}
.mnews_wrap .crsl_blogIn .owl-nav .owl-next {
  right: -20px;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #001a29;
}
.mnews_wrap .crsl_blogIn:hover .owl-prev {
  animation-name: owlPrev;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.mnews_wrap .crsl_blogIn:hover .owl-next {
  animation-name: owlNext;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

#scroll_style::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #d8d8d8;
}

#scroll_style::-webkit-scrollbar {
  width: 6px;
  background-color: #d8d8d8;
}

#scroll_style::-webkit-scrollbar-thumb {
  background-color: #001a29;
}

.product_section {
  display: table;
  height: 100%;
  height: 100vh;
  width: 100%;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 1499px ) {
  .product_section .title_block {
    margin-top: 40px;
    margin-bottom: 4em;
  }
}
@media (max-width: 1199px ) {
  .product_section .title_block {
    margin-top: 20px;
  }
}
@media (max-width: 767px ) {
  .product_section .title_block {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 1499px ) {
  .product_section .part_ami_line {
    width: 82%;
  }
}
@media (max-width: 767px ) {
  .product_section {
    height: auto;
    min-height: calc(100vh - 60px);
  }
  .product_section .sub_title {
    text-align: center;
  }
}
.product_section .product_inner {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.product_section .product_inner:after, .product_section .product_inner:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .product_section .product_inner {
    padding: 100px 60px;
  }
}
@media (max-width: 575px ) {
  .product_section .product_inner {
    padding: 30px 0;
    padding-bottom: 0;
    height: auto;
    display: block;
  }
}
.product_section .prd_wrap {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
.product_section .prd_wrap:after, .product_section .prd_wrap:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1499px ) {
  .product_section .prd_wrap {
    padding: 0 60px;
  }
}
@media (max-width: 991px ) {
  .product_section .prd_wrap {
    flex-direction: column;
    padding: 15px 30px;
  }
}
.product_section .prd_wrap .left_wrap {
  width: 300px;
  z-index: 3;
}
.product_section .prd_wrap .left_wrap .prd_name {
  text-align: center;
  margin-top: 12px;
}
.product_section .prd_wrap .left_wrap .prd_name.add_bg {
  background-color: #020d13;
  line-height: 1.2em;
}
@media (max-width: 1499px ) {
  .product_section .prd_wrap .left_wrap {
    width: auto;
    padding-left: 35px;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .product_section .prd_wrap .left_wrap {
    padding-left: 30px;
  }
}
@media (max-width: 991px ) {
  .product_section .prd_wrap .left_wrap {
    padding-left: 0px;
  }
}
.product_section .prd_wrap .img_wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border: 1px solid #1bc7ed;
  border-radius: 50%;
  transition: all 2s;
  background-color: #020b12;
}
.product_section .prd_wrap .img_wrapper .img {
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 50%;
}
.product_section .prd_wrap .img_wrapper:hover {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.product_section .prd_wrap .img_wrapper:hover :before {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid rgba(27, 199, 237, 0.5);
  border-radius: 100%;
  animation-name: ripple2;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  z-index: -1;
}
.product_section .prd_wrap .content {
  width: calc(100% - 450px);
  margin-left: 100px;
}
@media (max-width: 1499px ) {
  .product_section .prd_wrap .content {
    width: calc(100% - 435px);
    margin-left: 85px;
  }
}
@media (max-width: 1280px) {
  .product_section .prd_wrap .content {
    margin-left: 45px;
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .product_section .prd_wrap .content {
    width: calc(100% - 400px);
  }
}
@media (max-width: 991px ) {
  .product_section .prd_wrap .content {
    width: auto;
    margin: 12px auto;
  }
}
@media (max-width: 767px ) {
  .product_section .prd_wrap .content {
    width: 100%;
  }
}
.product_section .prd_wrap .content .item {
  position: relative;
  border: 1px solid #1bc7ed;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 15px 30px;
}
.product_section .prd_wrap .content .item:before {
  content: "";
  position: absolute;
  z-index: -1;
}
@media (max-width: 1280px) {
  .product_section .prd_wrap .content .item:before {
    display: none;
  }
}
.product_section .prd_wrap .content .item:nth-child(1):before {
  left: -135px;
  top: 50%;
  width: 70px;
  height: 130px;
  transform: skew(-45deg);
  border-left: 2px solid #1bc7ed;
  border-top: 1px solid #1bc7ed;
}
.product_section .prd_wrap .content .item:nth-child(2):before {
  left: -105px;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: skew(-45deg);
  border-left: 2px solid #1bc7ed;
  border-top: 1px solid #1bc7ed;
}
.product_section .prd_wrap .content .item:nth-child(3):before {
  left: -105px;
  top: -10px;
  width: 70px;
  height: 70px;
  transform: skew(45deg);
  border-left: 2px solid #1bc7ed;
  border-bottom: 1px solid #1bc7ed;
}
.product_section .prd_wrap .content .item:nth-child(4):before {
  left: -152px;
  top: -70px;
  width: 90px;
  height: 125px;
  transform: skew(45deg);
  border-left: 2px solid #1bc7ed;
  border-bottom: 1px solid #1bc7ed;
}
.product_section .prd_wrap .content .item .title {
  color: #1bc7ed;
  font-weight: bold;
}
.product_section .prd_wrap .content .item .p_list {
  margin: 15px auto;
}
.product_section .prd_wrap .content .item .p_list li {
  display: inline-block;
  font-size: 16px;
  padding-right: 30px;
  line-height: 1.5em;
}
.product_section .prd_wrap .content .item .p_list li:last-child {
  padding-right: 0;
}
.product_section .prd_wrap .content .item .p_list li p {
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
}
.product_section .prd_wrap .content .item .p_list li p:nth-child(1) {
  border-bottom: 2px solid #1bc7ed;
}
.product_section .prd_wrap .content .item .p_list_m {
  display: none;
  margin-top: 10px;
}
.product_section .prd_wrap .content .item .p_list_m li {
  font-size: 15px;
  line-height: 1.5em;
}
@media (max-width: 1499px ) {
  .product_section .prd_wrap .content .item {
    padding: 15px;
  }
}
@media (max-width: 1350px) {
  .product_section .prd_wrap .content .item .title {
    font-size: 19px;
  }
}
@media (max-width: 1199px ) {
  .product_section .prd_wrap .content .item {
    padding: 20px 15px;
  }
  .product_section .prd_wrap .content .item .title {
    font-size: 17px;
  }
  .product_section .prd_wrap .content .item .p_list li {
    font-size: 15px;
    padding-right: 8px;
  }
  .product_section .prd_wrap .content .item .p_list li p {
    font-size: 15px;
  }
}
@media (max-width: 991px ) {
  .product_section .prd_wrap .content .item:before {
    display: none;
  }
}
@media (max-width: 575px ) {
  .product_section .prd_wrap .content .item .p_list {
    margin: 10px 0 0;
  }
  .product_section .prd_wrap .content .item .p_list li {
    display: block;
  }
  .product_section .prd_wrap .content .item .pc {
    display: none;
  }
  .product_section .prd_wrap .content .item .p_list_m {
    display: block;
  }
}
.product_section .prd_wrap .content .price_total {
  color: #1bc7ed;
  text-align: right;
  font-size: 26px;
}

.prd_anchor {
  display: none;
  position: fixed;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.prd_anchor a {
  font-size: 18px;
  color: #fff;
  display: block;
  margin: 6px 0;
}
.prd_anchor a.active {
  color: #1bc7ed;
}
@media (min-width: 1660px) {
  .prd_anchor {
    display: block;
  }
}

.lang_fonts_set h2, .lang_fonts_set .h2 {
  letter-spacing: 1px;
}
.lang_fonts_set h3, .lang_fonts_set .h3 {
  letter-spacing: 1px;
}
.lang_fonts_set p, .lang_fonts_set .p {
  letter-spacing: 0px;
}
.lang_fonts_set a {
  letter-spacing: 0px;
}
.lang_fonts_set li {
  letter-spacing: 1px;
}
.lang_fonts_set span {
  letter-spacing: 1px;
}

/* other pages */
.lang_fonts_set {
  /* service */
  /* contact */
  /* footer */
}
.lang_fonts_set .service_inner .serv_left h3 {
  letter-spacing: 0;
}
.lang_fonts_set .feps_section .feps_block .feps_left h2 {
  letter-spacing: 0;
}
.lang_fonts_set .more_section .btn_main {
  letter-spacing: 0;
}
.lang_fonts_set .contact_wrap .contact_form .btn_main {
  letter-spacing: 1px;
}
.lang_fonts_set .f_menu .title {
  letter-spacing: 1px;
}

/* ==========================
 Final Part
========================== */
/* Custom Classes */
/* 2018.10.04 */
/* ====== Custom Class ====== */
/* Color */
.white {
  color: #fff;
}

.red {
  color: #f56954;
}

.green {
  color: #4fc47f;
}

.blue {
  color: #0275d8;
}

.light-gray {
  color: #999;
}

.main-color {
  color: #1bc7ed;
}

/* Font Size */
.font-size-xxs, i.font-size-xxs:before {
  font-size: 12px;
}
@media (max-width: 767px ) {
  .font-size-xxs, i.font-size-xxs:before {
    font-size: 12px;
  }
}

.font-size-xs, i.font-size-xs:before {
  font-size: 14px;
}
@media (max-width: 767px ) {
  .font-size-xs, i.font-size-xs:before {
    font-size: 14px;
  }
}

.font-size-sm, i.font-size-sm:before {
  font-size: 16px;
}
@media (max-width: 767px ) {
  .font-size-sm, i.font-size-sm:before {
    font-size: 14px;
  }
}

.font-size-md, i.font-size-md:before {
  font-size: 20px;
}
@media (max-width: 767px ) {
  .font-size-md, i.font-size-md:before {
    font-size: 18px;
  }
}

.font-size-lg, i.font-size-lg:before {
  font-size: 24px;
}
@media (max-width: 767px ) {
  .font-size-lg, i.font-size-lg:before {
    font-size: 20px;
  }
}

.font-size-xl, i.font-size-xl:before {
  font-size: 40px;
}
@media (max-width: 767px ) {
  .font-size-xl, i.font-size-xl:before {
    font-size: 30px;
  }
}

/* Font Faminly */
.font-family-alt {
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
  font-weight: 500;
}
.lang-2nd .font-family-alt {
  font-family: "Rubik", "Microsoft Jhenghei", "Noto Sans TC", sans-serif;
}

/* letter spacing */
.no-letter-s {
  letter-spacing: 0px !important;
}

.letter-s1px {
  letter-spacing: 1px !important;
}

.letter-s125 {
  letter-spacing: 0.125em !important;
}

.letter-s25 {
  letter-spacing: 0.25em !important;
}

.letter-s50 {
  letter-spacing: 0.5em !important;
}

.letter-s75 {
  letter-spacing: 0.75em !important;
}

.letter-s100 {
  letter-spacing: 1em !important;
}

/* font weight */
.font-w400 {
  font-weight: 400 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

/* text property */
.text-transform-unset {
  text-transform: unset !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.word-wrap {
  word-wrap: break-word;
}

.text-transform-none {
  text-transform: none !important;
}

.text-transform-uppercase {
  text-transform: uppercase !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.align-left {
  text-align: left !important;
}

/* background */
.bg-full,
.opacity-light,
.opacity-medium,
.opacity-full {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.opacity-light {
  opacity: 0.5;
}

.opacity-medium {
  opacity: 0.7;
}

.opacity-full {
  opacity: 0.8;
}

.fix-background {
  background-size: cover !important;
}
@media (min-width: 1200px ) {
  .fix-background {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.cover-background {
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
}

/*center-col*/
.center-col {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* margin */
.no-margin {
  margin: 0 !important;
}

.no-margin-lr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.margin-bottom {
  margin-bottom: 60px;
}

.m-top5 {
  margin-top: 5px !important;
}

.m-bottom5 {
  margin-bottom: 5px !important;
}

.m-top10 {
  margin-top: 10px !important;
}

.m-bottom10 {
  margin-bottom: 10px !important;
}

.m-top15 {
  margin-top: 15px !important;
}

.m-bottom15 {
  margin-bottom: 15px !important;
}

.m-top20 {
  margin-top: 20px !important;
}

.m-bottom20 {
  margin-bottom: 20px !important;
}

.m-top30 {
  margin-top: 30px !important;
}

.m-bottom30 {
  margin-bottom: 30px !important;
}

.m-top40 {
  margin-top: 40px !important;
}

.m-bottom40 {
  margin-bottom: 40px !important;
}

.m-top50 {
  margin-top: 50px !important;
}

.m-bottom50 {
  margin-bottom: 50px !important;
}

.m-top60 {
  margin-top: 60px !important;
}

.m-bottom60 {
  margin-bottom: 60px !important;
}

.m-top70 {
  margin-top: 70px !important;
}

.m-bottom70 {
  margin-bottom: 70px !important;
}

.m-top80 {
  margin-top: 80px !important;
}

.m-bottom80 {
  margin-bottom: 80px !important;
}

.m-top90 {
  margin-top: 90px !important;
}

.m-bottom90 {
  margin-bottom: 90px !important;
}

.m-top100 {
  margin-top: 100px !important;
}

.m-bottom100 {
  margin-bottom: 100px !important;
}

.m-top110 {
  margin-top: 110px !important;
}

.m-bottom110 {
  margin-bottom: 110px !important;
}

.m-top120 {
  margin-top: 120px !important;
}

.m-bottom120 {
  margin-bottom: 120px !important;
}

.m-top130 {
  margin-top: 130px !important;
}

.m-bottom130 {
  margin-bottom: 130px !important;
}

.m-top140 {
  margin-top: 140px !important;
}

.m-bottom140 {
  margin-bottom: 140px !important;
}

.m-top150 {
  margin-top: 150px !important;
}

.m-bottom150 {
  margin-bottom: 150px !important;
}

.m-top160 {
  margin-top: 160px !important;
}

.m-bottom160 {
  margin-bottom: 160px !important;
}

.m-top170 {
  margin-top: 170px !important;
}

.m-bottom170 {
  margin-bottom: 170px !important;
}

.m-top180 {
  margin-top: 180px !important;
}

.m-bottom180 {
  margin-bottom: 180px !important;
}

.m-top190 {
  margin-top: 190px !important;
}

.m-bottom190 {
  margin-bottom: 190px !important;
}

.m-top200 {
  margin-top: 200px !important;
}

.m-bottom200 {
  margin-bottom: 200px !important;
}

/* padding-custom */
.padding-lr8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.padding-lr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.padding-lr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.padding-tb8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.padding-tb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.padding-tb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.padding-tb30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.padding-tb40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.padding-tb50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.padding-tb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.padding-tb70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.padding-tb80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.padding-left-right-px {
  padding: 0 15px;
}

.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding-section {
  padding: 0px !important;
}

.no-padding-right {
  padding-right: 0px !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0px !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-tb {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.section-padding-inner {
  padding: 140px 0;
}

/* float */
.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.no-float {
  float: none !important;
}

/* display */
.display-block {
  display: block !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-hidden-mobile {
  position: fixed !important;
  overflow: hidden !important;
}

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

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

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

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

/* position */
.position-relative {
  position: relative !important;
  z-index: 5;
}

.position-absolute {
  position: absolute !important;
}

.position-right {
  right: 0 !important;
}

.position-left {
  left: 0 !important;
}

.position-top {
  top: 0 !important;
}

/* width */
.width {
  display: inline-block;
  position: relative;
  width: 90%;
}

.width-20 {
  width: 20% !important;
}

.width-30 {
  width: 30% !important;
}

.width-40 {
  width: 40% !important;
}

.width-50 {
  width: 50% !important;
}

.width-60 {
  width: 60% !important;
}

.width-70 {
  width: 70% !important;
}

.width-80 {
  width: 80% !important;
}

.width-90 {
  width: 90% !important;
}

.width-100 {
  width: 100% !important;
}

.width-auto {
  width: auto !important;
}

/* height */
.height-100 {
  height: 100% !important;
}

.height-auto {
  height: auto !important;
}

.clear-both {
  clear: both;
}

.roundedimage {
  border-radius: 100%;
}

.vertical-align-top {
  vertical-align: top !important;
}

.vertical-align-middle {
  vertical-align: middle !important;
}

.vertical-align-bottom {
  vertical-align: bottom !important;
}

.no-box-shadow {
  box-shadow: none !important;
}

p.uppercase {
  text-transform: uppercase !important;
}

p.uppercase a {
  text-decoration: underline !important;
}

p.uppercase a:hover {
  text-decoration: none;
}

.line-break {
  display: block !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-0 {
  z-index: 0 !important;
}

/*animate & transiton*/
.animated {
  -moz-transition-duration: 0s !important;
}

/*##*/
.transition2s, .transition2s * {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.transition1s, .transition1s * {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/*no transiton*/
.no-transition, .no-transition * {
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

/* ====== //Custom Class ====== */

/*# sourceMappingURL=main.css.map */
