/*-- Basic --*/
@charset "utf-8";

:root {
  scroll-padding-top: 85px;
}

* {
  padding: 0;
  margin: 0;
  text-shadow: none;
  box-sizing: border-box;
}


img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: #0d204b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.bg-primary {
  background: #e8eaf1;
}

.bg-gray {
  background: #f5f6f9;
}

.text-danger {
  color: #f44336;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}


body {
  font-family: 'Segoe UI', 'Microsoft JhengHei', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/*-- button basic --*/
.btn {
  border: none;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline: none;
  outline-offset: none;
}

.btn-primary {
  background-image: none;
  background: #ecac00;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0d204b;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #0d204b;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: #ffde86;
}

/*-- rwd-table --*/
.rwd-table {
  margin: 0 auto;
  position: relative;
  padding: 15px;
  line-height: 1.5em;
}

.rwd-table .responsive-table {
  width: 100%;
  margin: 8px auto;
}

.rwd-table .responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.rwd-table .responsive-table thead th {
  background-color: #0d204b;
  border: 1px solid #0d204b;
  font-weight: normal;
  text-align: center;
  color: white;
  font-size: 20px;
}

.rwd-table .responsive-table thead th:first-of-type {
  text-align: left;
}

.rwd-table .responsive-table tbody,
.rwd-table .responsive-table tr,
.rwd-table .responsive-table th,
.rwd-table .responsive-table td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;
}

.rwd-table .responsive-table th,
.rwd-table .responsive-table td {
  padding: .5em;
  vertical-align: middle;
}

.rwd-table .responsive-table caption {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.rwd-table .responsive-table tfoot {
  font-size: 18px;
  font-style: italic;
}

.rwd-table .responsive-table tbody tr {
  margin-bottom: 1.5em;
  border: 2px solid #0d204b;
}

.rwd-table .responsive-table tbody tr:last-of-type {
  margin-bottom: 0;
}

.rwd-table .responsive-table tbody th[scope="row"] {
  background-color: #0d204b;
  color: white;
  text-align: center;
  font-size: 18px;
}

.rwd-table .responsive-table tbody td[data-type=currency] {
  text-align: center;
}


.rwd-table .responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: 18px;
  color: #a07d0c;
  font-weight: bold;
  margin-right: 5px;
}

.rwd-table .responsive-table tbody td {
  border-bottom: 1px solid #0d204b;
  font-size: 18px;
}

.rwd-table .responsive-table tbody td[data-type=currency]:nth-of-type(even) {
  background-color: rgba(94, 93, 82, 0.1);
}

@media (min-width: 75em) {

  .rwd-table .responsive-table th,
  .rwd-table .responsive-table td {
    padding: .75em;
  }
}

@media (min-width: 62em) {
  .rwd-table .responsive-table {
    font-size: 18px;
  }

  .rwd-table .responsive-table th,
  .rwd-table .responsive-table td {
    padding: .75em .5em;
  }

  .rwd-table .responsive-table tfoot {
    font-size: 18px;
  }
}

@media (min-width: 52em) {
  .rwd-table {
    padding: 0;
  }

  .rwd-table .responsive-table {
    font-size: 18px;
  }

  .rwd-table .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }

  .rwd-table .responsive-table tr {
    display: table-row;
  }

  .rwd-table .responsive-table th,
  .rwd-table .responsive-table td {
    display: table-cell;
    padding: .75em;
  }

  .rwd-table .responsive-table caption {
    font-size: 18px;
  }

  .rwd-table .responsive-table tbody {
    display: table-row-group;
  }

  .rwd-table .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }

  .rwd-table .responsive-table tbody tr:nth-of-type(even) {
    background-color: #fff;
  }

  .rwd-table .responsive-table tbody td[data-type=currency]:nth-of-type(even) {
    background-color: transparent;
  }

  .rwd-table .responsive-table tbody th[scope="row"] {
    background-color: transparent;
    color: #000;
    text-align: left;
    font-size: 20px;
  }

  .rwd-table .responsive-table tbody td {
    font-size: 18px;
  }

  .rwd-table .responsive-table tbody td[data-title]:before {
    content: none;
  }

  .rwd-table {
    padding: 15px;
  }
}


/*-- top --*/
.top {
  background: #fff;
  -webkit-box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, .1);
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 10%);
}

.navbar-header {
  background: #1f0477;
  color: #fff;
}

.logo {
  padding: 10px;
  text-align: center;
}

.logo img {
  width: auto;
  max-height: 65px;
}

.menu {
  float: right;
  margin-top: 20px;
  margin-right: 60px;
}

.menu a {
  color: #000;
  font-size: 18px;
}

.menu .caret {
  margin-left: 5px;
  position: relative;
  top: -2px;
}

.navbar-nav>li>a {
  padding: 10px 20px;
  text-shadow: none;
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  transition: all .1s;
}

.navbar-nav>li:hover>a,
.navbar-nav>li:focus>a {
  color: #a07d0c;
  background: #fff;
}

.navbar-nav>li:nth-child(2) .dropdown-menu {
  min-width: 380px;
}

.dropdown-menu {
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu>li {
  border-bottom: 1px dashed #e2e2e2;
}

.dropdown-menu>li:last-child {
  border-bottom: none;
}

.dropdown-menu>li>a {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
  background: #f3f3f3;
}

/*- 第3層 -*/
.dropdown-menu>li ul.dropdown-submen {
  display: flex;
  width: calc(100% - 30px);
  flex-wrap: wrap;
  margin-left: 25px;
  margin-bottom: 10px;
  flex-direction: row;
  /* gap: 5px 15px; */
  list-style: none;
}

.dropdown-menu>li ul.dropdown-submen>li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 3px 0;
}
.dropdown-menu>li ul.dropdown-submen>li:last-child {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.dropdown-menu>li ul.dropdown-submen>li a {
  font-size: 16px;
  color: #9e9e9e;
  padding: 4px 10px 4px 16px;
  background: url(../https://sober.com.tw/nav_bj3.png) left 5px top 13px no-repeat;
}

.dropdown-menu>li ul.dropdown-submen>li a:hover,
.dropdown-menu>li ul.dropdown-submen>li a:focus {
  color: #a07d0c;
}

/*-- mobile-menu --*/
@media screen and (max-width: 768px) {
  .navbar-toggle {
    display: block;
    margin: 0;
    position: absolute;
    top: 18px;
  }

  .navbar-toggle .icon-bar {
    background: #fff;
    transition: all 0.4s ease-in-out;
  }

  .navbar-toggle.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    transform: rotate(-45deg) translate(-4px, 4px);
    -moz-transform: rotate(-45deg) translate(-4px, 4px);
  }

  .navbar-toggle.change .bar2 {
    opacity: 0;
  }

  .navbar-toggle.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px, -5px);
    transform: rotate(45deg) translate(-4px, -5px);
    -moz-transform: rotate(45deg) translate(4-px, -5px);
  }

  .navbar-fixed-top .navbar-collapse {
    float: none;
    margin: 0;
    padding: 0;
    max-height: unset;
  }

  .side-collapse-container-left {
    position: relative;
    left: 0;
    transition: all .3s ease-out;
  }

  .side-collapse-container-left.out {
    left: 70%;
  }

  .side-collapse-left {
    top: 75px;
    bottom: 0;
    left: -60%;
    width: 60%;
    padding: 0;
    position: fixed;
    overflow: hidden;
    transition: all .3s ease-out;
    background: #fff;
    -webkit-box-shadow: 1px 0px 6px 0px rgba(0, 0, 0, .24);
    -moz-box-shadow: 1px 0px 6px 0px rgba(0, 0, 0, .24);
    box-shadow: 1px 0px 6px 0px rgba(0, 0, 0, .24);
  }

  .side-collapse-left.in {
    left: 0;
  }

  .side-collapse-container-right {
    position: relative;
    right: 0;
    transition: right .3s ease-out;
  }

  .side-collapse-container-right.out {
    right: 70%;
  }

  .side-collapse-right {
    top: 75px;
    bottom: 0;
    right: 0;
    width: 70%;
    padding: 0;
    position: fixed;
    overflow: hidden;
    transition: all .3s ease-out;
    background: #fff;
    -webkit-box-shadow: -1px 0px 6px 0px rgba(0, 0, 0, .24);
    -moz-box-shadow: -1px 0px 6px 0px rgba(0, 0, 0, .24);
    box-shadow: -1px 0px 6px 0px rgba(0, 0, 0, .24);
  }

  .side-collapse-right.in {
    width: 0;
  }

  .navbar-nav {
    width: 100%;
    margin: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .navbar-nav>li {
    width: 100%;
  }

  .navbar-nav>li>a {
    padding: 15px 20px;
  }

  .navbar-nav>li.dropdown .dropdown-menu {
    position: relative;
    min-width: unset;
    width: 100%;
    box-shadow: none;
    background: #bdbdbd;
  }

  .dropdown-menu>li ul.dropdown-submen>li a {
    color: #fafafa;
    background: url(../images/nav_bj2.png) left 5px top 13px no-repeat;
  }

  .overlay {
    position: relative;
  }

  .overlay::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    opacity: .7;
  }

  .unscroll {
    overflow-y: hidden;
  }
}

@media (max-width: 767px) {
  p {
    text-align: justify;
  }

  .side-collapse-left,
  .side-collapse-right {
    top: 60px;
    overflow-y: scroll;
  }

  .navbar-toggle {
    top: 13px;
  }

  .dropdown-menu>li>a,
  .navbar-nav .open .dropdown-menu>li>a {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.5;
    white-space: pre-line;
  }

  .dropdown-menu>li ul.dropdown-submen {
    width: 100%;
    margin-left: 0;
  }

  .dropdown-menu>li ul.dropdown-submen>li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .dropdown-menu>li ul.dropdown-submen>li a {
    font-size: 15px;
    padding: 5px 10px 5px 30px;
    background: url(../images/nav_bj2.png) left 18px top 13px no-repeat;
  }
}

/*-- scroll Top --*/
.scrollup {
  width: 50px;
  position: fixed;
  bottom: 80px;
  right: 28px;
  display: none;
  z-index: 999;
  line-height: 60px;
}

/*-- Right Icon --*/
.right_icon {
  position: fixed;
  right: 20px;
  bottom: 145px;
  width: 50px;
  z-index: 999;
}

.menu-btn {
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #a07d0c;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ring {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 60px;
  height: 60px;
  background: rgba(160, 125, 12, 0.5);
  border-radius: 50%;
  transform: scale(0.9);
}

.menu-btn:focus {
  outline: none;
}

.menu-btn>span {
  height: 4px;
  border-radius: 8px;
  background: #fff;
  z-index: 1;
  width: 25px;
  transform: rotate(90deg);
  position: absolute;
}

.menu-btn>span:nth-child(2) {
  transform: rotate(180deg);
}

.link {
  position: relative;
  opacity: 0;
  transform: translateY(110px);
}

.link ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.link a {
  text-decoration: none;
  margin-bottom: 5px;
}

.link img {
  width: 50px;
  height: 50px;
}

@media (max-width:1000px) {
  .scrollup {
    right: 28px;
    bottom: 60px;
  }

  .right_icon {
    right: 10px;
    bottom: 125px;
  }
}

/*-- main --*/
#main {
  margin-top: 85px;
  overflow: hidden;
}

.slider-banner .item:focus,
.slider-banner .item a:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.wrap {
  padding: 45px 12%;
}

.wrap-title {
  color: #0d204b;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

.wrap-title>span {
  color: #a07d0c;
}

.wrap-title>span.en {
  display: block;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: normal;
  font-size: 16px;
  color: #e5e5e5;
}

/*-- section-service --*/
.section-service .wrap-content {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.section-service .wrap-content .item {
  width: auto;
  color: #0d204b;
  position: relative;
}

.section-service .wrap-content .item-body {
  padding: 30px 60px;
}

.section-service .wrap-content .item-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 45px;
}

.section-service .wrap-content .item-title a {
  color: #0d204b;
}

.section-service .wrap-content .item-title a:hover,
.section-service .wrap-content .item-title a:focus {
  color: #a07d0c;
}

.section-service .wrap-content .item-text {
  font-size: 20px;
}

.section-service .wrap-content .item-1 {
  grid-area: 1 / 1 / 3 / 2;
}

.section-service .wrap-content .item-2 {
  grid-area: 1 / 2 / 2 / 3;
}

.section-service .wrap-content .item-3 {
  grid-area: 1 / 3 / 2 / 5;
}

.section-service .wrap-content .item-4 {
  grid-area: 2 / 2 / 3 / 4;
}

.section-service .wrap-content .item-5 {
  grid-area: 2 / 4 / 3 / 5;
}

.section-service .wrap-content .item-6 {
  grid-area: 3 / 1 / 4 / 2;
}

.section-service .wrap-content .item-7 {
  grid-area: 3 / 2 / 4 / 4;
}

.section-service .wrap-content .item-8 {
  grid-area: 3 / 4 / 5 / 5;
}

.section-service .wrap-content .item-9 {
  grid-area: 4 / 1 / 5 / 3;
}

.section-service .wrap-content .item-10 {
  grid-area: 4 / 3 / 5 / 4;
}
.google_partners {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  -webkit-width: max-content;
  -moz-width: max-content;
  -ms-width: max-content;
  -o-width: max-content;
  width: max-content;
}
.google_partners img {
  width: auto;
  max-height: 120px;
}
@media (max-width: 767px) {
  .google_partners {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/*-- section-advantage --*/
.section-advantage {
  background: #f5f6f9;
  padding-bottom: 250px;
}

.section-advantage .wrap-content .item {
  color: #0d204b;
  text-align: center;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.section-advantage .wrap-content .item-img img {
  max-width: 200px;
}

.section-advantage .wrap-content .item-1 .item-img {
  background: url(../images/icon_05.png) no-repeat center / 200px;
}

.section-advantage .wrap-content .item-2 .item-img {
  background: url(../images/icon_06.png) no-repeat center / 200px;
}

.section-advantage .wrap-content .item-3 .item-img {
  background: url(../images/icon_07.png) no-repeat center / 200px;
}

.section-advantage .wrap-content .item-4 .item-img {
  background: url(../images/icon_08.png) no-repeat center / 200px;
}

.section-advantage .wrap-content .item:hover,
.section-advantage .wrap-content .item:focus {
  background: #0d204b;
  color: #fff;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-advantage .wrap-content .item:hover .item-img img,
.section-advantage .wrap-content .item:focus .item-img img {
  visibility: hidden;
}

/*-- section-case --*/
.section-case {
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.section-case .wrap-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-case .wrap-content-1 .item {
  background: #0d204b;
  color: #fff;
  padding: 120px 45px;
  height: 100%;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin-top: -200px;
  margin-left: 120px;
  float: left;
  position: relative;
  z-index: 2;
}

.section-case .wrap-content-1 .wrap-title {
  color: #fff;
  text-align: left;
}

.item-link {
  padding: 0;
  margin: 10px 0px 20px 0px;
  text-align:center;
}

.item-link a {
  font-size: 16px;
  color: #0d204b;
  letter-spacing: 4px;
  border: 1px solid #0d204b;
  padding: 5px 15px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.item-link a:hover,
.item-link a:focus {
  background: #0d204b;
  color: #fff;
}

a.link-primary {
  background: #ecac00;
  color: #fff;
}

a.link-primary:hover,
a.link-primary:focus {
  background: #0d204b;
  border-color: #0d204b;
  color: #ecac00;
}


/*-- footer --*/
.footer {
  background: #f5f6f9;
  color: #0d204b;
  padding: 30px 12%;
  font-size: 15px;
}

.footer a {
  color: #0d204b;
}

.footer a:hover,
.footer a:focus {
  opacity: 0.75;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.footer .item {
  padding: 20px 30px;
  border: 1px solid #0d204b;
}

.footer .item .title {
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #0d204b;
  letter-spacing: 4px;
  position: relative;
}

.footer .item .title::before {
  content: '';
  width: 90px;
  height: 5px;
  background: #0d204b;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.copyright {
  text-align: center;
  background: #d2d5de;
  color: #0d204b;
  font-size: 16px;
  padding: 10px;
}

.copyright a {
  color: #0d204b;
}

.copyright a:hover,
.copyright a:focus {
  opacity: 0.75;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.copyright p {
  margin: 0;
}

/*-- pages --*/
.carousel-indicators {
  bottom: 0;
}

.page-title {
  position: relative;
  z-index: 0;
}

.page-title::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .65);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.page-title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  color: #0d204b;
  letter-spacing: 12px;
}

.page-title .en {
  font-size: 28px;
  font-family: Arial;
  color: #9c9c9c;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  position: relative;
}

.page-title .en::before {
  content: '';
  display: block;
  position: relative;
  width: 40px;
  height: 2px;
  margin: 15px auto;
  background-color: #a07d0c;
}

.page-content {
  padding: 45px 12%;
  text-align: justify;
}

.subtitle {
  color: #a07d0c;
  font-size: 28px;
  line-height: 1.3;
  padding-bottom: 20px;
  margin-bottom: 30px;
  margin-top: 45px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.subtitle .en {
  font-size: 36px;
  color: #9c9c9c;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.subtitle::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #a07d0c;
  bottom: 0;
  left: calc(50% - 40px);
}

.card {
  width: 100%;
  box-shadow: 0px 2px 20px 0px rgba(12, 12, 11, .1);
  border-radius: 10px;
  text-align: justify;
}

.card .card-header {
  padding: 45px 15px;
  text-align: center;
}

.card .card-body {
  padding: 30px 45px;
}

.point {
  margin: 45px 0 30px;
  text-align: center;
}

.point img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/*-- Form Styles --*/
.inputBox {
  text-align: left;
}

.inputBox .custom-checkbox,
.inputBox .custom-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  font-size: 16px;
  letter-spacing: .05em;
  color: #444;
  cursor: pointer;
}

.form-check-input[type=radio],
.form-check-input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 18px;
  height: 18px;
  visibility: hidden;
  pointer-events: none;
}

.custom-checkbox i,
.custom-radio i {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #fff;
  border: 2px solid #7b7b7b;
  border-radius: 50%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.custom-checkbox i::before,
.custom-radio i::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -4px;
  width: 10px;
  height: 8px;
  background-image: url(../images/icon_check2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.form-check-input[type=radio]:checked~i,
.form-check-input[type=checkbox]:checked~i {
  background: #1f0477;
  border-color: #1f0477;
}

.form-check-input[type=radio]:checked~i::before,
.form-check-input[type=checkbox]:checked~i::before {
  opacity: 1;
}

.form-control[type=url] {
  width: 30%;
  display: none;
}

.form-control[name="yzm"] {
  width: auto;
  display: inline-block;
}


/*-- img-hover --*/
.img-hover {
  position: relative;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  margin: 15px auto;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.img-hover img {
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-hover:hover img,
.img-hover:focus img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.img-hover .overlay {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.img-hover:hover .overlay,
.img-hover:focus .overlay {
  opacity: 1;
}

.img-hover .overlay a {
  float: left;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1005;
}

.img-hover .overlay .fa {
  font-size: 2.5em;
  color: #fff;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

/*-- about --*/
.about-page .page-content-1 {
  background: url(../images/bg_01.jpg) no-repeat center / cover;
  background-attachment: fixed;
  box-shadow: inset 0 -100px 100px -100px rgb(153 153 153 / 30%);
}

.about-page .page-content-1 .video-item {
  margin-top: 45px;
}

.about-page .page-content-1 .text-item {
  padding: 20px;
  text-align: center;
}

.about-page .page-content-1 .h1 {
  font-size: 4.5em;
  line-height: 1.2;
  color: #9c9c9c;
  margin: 45px 0 0;
}

.about-page .page-content-1 .h2 {
  font-size: 2.55em;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 30px;
}

.about-page .page-content-1 p {
  margin-bottom: 20px;
}

.about-page .video-item {
  margin-right: -1px;
  overflow: hidden;
}

.about-page .page-content-2 {
  background: #0d204b;
  color: #fff;
  padding-bottom: 45px;
}

.about-page .page-content-2 .item {
  padding: 15px;
  margin-bottom: 45px;
}

.about-page .page-content-2 .item-title {
  font-size: 24px;
  font-weight: bold;
  color: #e8eaf1;
  padding-left: 15px;
  margin-bottom: 20px;
  border-left: 3px solid #a07d0c;
}

.about-page .page-content-3 {
  box-shadow: inset 0 100px 100px -100px rgb(153 153 153 / 30%);
}

.about-page .service-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 45px;
}

.about-page .service-list li {
  list-style: none;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.about-page .service-list li:nth-child(odd) {
  background: #f5f6f9;
}

.about-page .service-list li:nth-child(even) {
  background: #e8eaf1;
}

.about-page .service-list .item {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .8s;
}

.about-page .service-list .item:hover,
.about-page .service-list .item:focus {
  background-color: #fff;
  box-shadow: 0px 10px 80px 0px rgba(38, 38, 38, 0.1)
}

.about-page .service-list .item-img {
  position: relative;
  z-index: 0;
  margin-bottom: 15px;
  height: 120px;
}

.about-page .service-list .img-basic,
.about-page .service-list .img-hover {
  width: 120px;
  height: 120px;
  position: absolute;
  left: calc(50% - 60px);
  top: 0;
  margin: 0;
}

.about-page .service-list .img-basic {
  z-index: 2;
}

.about-page .service-list .img-hover {
  z-index: 1;
}

.about-page .service-list .img-hover {
  visibility: hidden;
  display: none;
}

.about-page .service-list .item:hover .img-basic,
.about-page .service-list .item:focus .img-basic {
  visibility: hidden;
  display: none;
}

.about-page .service-list .item:hover .img-hover,
.about-page .service-list .item:focus .img-hover {
  visibility: visible;
  display: block;
}

.about-page .service-list .item .img-hover:hover img,
.about-page .service-list .item .img-hover:focus img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.about-page .service-list .item-title {
  color: #0d204b;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-page .service-list .item-title>span {
  display: block;
  color: #9c9c9c;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: normal;
}

.about-page .service-list .item-text {
  display: flex;
  flex-direction: column;
}

.about-page .service-list .item-text p {
  margin-bottom: 30px;
  min-height: 75px;
}

.about-page .service-list .item-link {
  margin-top: auto;
}

.contact_form {
  float: left;
  padding: 25px 8% 0 8%;
}

.contact_form label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
  color: #7b7b7b;
  font-size: 16px;
}

.contact_form .form-control-lg {
  height: calc(2.875rem + 15px);
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  font-size: 1.2em;
  line-height: 1.5;
  border-radius: 0.3rem;
  color: #7b7b7b;
}

.contact_form .form-yzm {
  height: calc(2.875rem + 15px);
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  font-size: 1.2em;
  line-height: 1.5;
  border-radius: 0.3rem;
  color: #7b7b7b;
}

.contact_form .contact_btn {
  padding: 10px 0 0 0;
}

.contact_btn

/*qa*/
.bellows {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

.bellows__header {
  padding: 0;
  background: #f2f2f2;
  border-radius: 10px;
}

.bellows__header a {
  position: relative;
  padding: 15px 20px;
  border-width: 0 0 1px;
  color: #4b4b4b;
  text-decoration: none;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  float: left;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.bellows__header a:active {
  background: #a07d0c;
  color: #fff;
  border-radius: 10px;
}

.bellows__header::before,
.bellows__header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  display: block;
  width: 16px;
  height: 4px;
  margin-top: -2px;
  background: #a07d0c;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}

.bellows__header::before {
  content: '';
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.bellows__header::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.bellows__item.bellows--is-open>.bellows__header::before,
.bellows__item.bellows--is-opening>.bellows__header::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: #fff;
}

.bellows__item.bellows--is-open>.bellows__header::after,
.bellows__item.bellows--is-opening>.bellows__header::after {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  background: #fff
}

.bellows__item:last-child>.bellows__header {}

.bellows__header h1,
.bellows__header h2,
.bellows__header h3,
.bellows__header h4 {
  margin: 0;
}

.bellows--is-opening .bellows__header a {
  background: #a07d0c;
  color: #fff;
}

.bellows--is-open .bellows__header a {
  background: #a07d0c;
  color: #fff;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.bellows__content {
  padding: 30px 20px 20px;
  border: 1px solid #a07d0c;
  border-top: none;
  position: relative;
  font-size: 0.9em;
  color: #4b4b4b;
  line-height: 32px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.bellows__content table tr td {
  padding: 10px;
  font-size: 16px;
  color: #4b4b4b;
  line-height: 36px;
}

.bellows__content table tr td p {
  margin: 0;
}

.bellows__content .bellows {
  margin-top: 20px;
}

.bellows__item:not(.bellows--is-open)>.bellows__content {
  display: none;
}

.bellows__item.bellows--is-open>.bellows__content-wrapper,
.bellows__item.bellows--is-closing>.bellows__content-wrapper {
  display: block;
}

.bellows__content-wrapper {
  float: left;
  width: 100%;
  display: none;
}

.bellows__item {
  margin-bottom: 15px;
  padding: 0;
}

.im_ol>ol>li {
  float: left;
  width: 100%;
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.seo_ol>ol>li {
  float: left;
  width: 100%;
  list-style: revert;
  margin-left: 20px;
  margin-bottom: 20px;
}


/*case*/
.case-page .page-content {
  display: flex;
  flex-flow: row wrap;
}

.case_list {
  padding: 0 22px;
  margin-bottom: 30px;
}

.case_list .case_cons {
  float: left;
  font-size: 1.0em;
  color: #4b4b4b;
  line-height: 36px;
  border-radius: 4px;
  transition: 0.3s ease-in;
  display: block;
  height: 100%;
  letter-spacing: 2px;
  background: #fff;
  box-shadow: 0px 0px 10px #cccccc;
}

.case_list .case_cons .case_nr {
  float: left;
  padding: 10px 10px 30px 10px;
}

.case_list .img-hover {
  height: 205px;
}

.case_bt {
  display: block;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: #0d204b;
}

.case_bt a {
  color: #0d204b;
}

.case_bt a:hover {
  color: #a07d0c;
}

.case_rank {
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: #a07d0c;
  font-style: oblique;
}

.case_keyword {
  display: block;
  text-align: left;
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #eee;
}

.case_more {
  display: block;
  text-align: right;
  padding-top: 10px;
}

.case_more a {
  font-family: Arial;
  color: #0cb9c1;
  letter-spacing: 1px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.case_more a:after {
  content: "\f105";
  font-family: 'FontAwesome';
  font-weight: normal;
  margin-left: 5px;
}

.case_more a:hover {
  margin-right: 5px;
}

/*-- advantage --*/
.advantage-page .item {
  font-size: 16px;
  margin-top: 45px;
}

.advantage-page .item-img {
  text-align: center;
}

.advantage-page .item-img img {
  width: auto;
  max-height: 200px;
}

.advantage-page .item-text .h3 {
  color: #0d204b;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}


/*-- service-page --*/
#service-list {
  padding: 45px 12%;
  display: flex;
  justify-content: center;
  list-style: none;
  position: relative;
}

#service-list li {
  margin: 0 30px;
  list-style: none;
}

#service-list li a {
  border-bottom: 3px solid #fff;
  padding: 10px 15px;
  position: relative;
}

#service-list li a.active {
  border-color: #a07d0c;
  color: #a07d0c;
}

.seo-page .page-content-1 .h3 {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.seo-page .page-content-1 .h3>span {
  display: block;
}

.seo-page .page-content-1 .h3 strong {
  font-size: 36px;
  color: #a07d0c;
  margin-right: 5px;
}

.seo-page .page-content-1 .case-list,
.seo-page .page-content-1 .case-info {
  margin-left: 10px;
  list-style: none;
}

.seo-page .page-content-1 .case-list li {
  font-size: 22px;
  font-weight: bold;
  color: #26c6da;
}

.seo-page .page-content-1 .case-list li::before {
  content: "\f046";
  font-family: 'FontAwesome';
  font-weight: normal;
  margin-right: 5px;
}

.seo-page .page-content-1 .case-info {
  margin-top: 30px;
}

.seo-page .page-content-1 .case-info li {
  margin-bottom: 10px;
  background: url(../images/el_01.png) no-repeat left 5px / 17px;
  padding-left: 25px;
}

.seo-page .page-content-2,
.seo-page .page-content-4 {
  background: #f5f6f9;
  position: relative;
  z-index: 0;
}

.seo-page .page-content-2::before,
.seo-page .page-content-2::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: -1;

}

.seo-page .page-content-2::before {
  border-width: 75px 0 75px 80px;
  border-color: transparent transparent transparent #e8eaf1;
  left: 0;
  top: 60px;

}

.seo-page .page-content-2::after {
  border-width: 75px 80px 75px 0;
  border-color: transparent #e8eaf1 transparent transparent;
  right: 0;
  bottom: 120px;
}

.seo-page .page-content-2 img {
  margin-top: 30px;
}

.seo-page svg#dividerDown {
  pointer-events: none;
}

.seo-page #dividerDown path {
  fill: #f5f6f9;
  stroke: #f5f6f9;
  stroke-width: 2;
}

.seo-page .page-content-3 {
  text-align: center;
}

.seo-page .page-content-3 .strong-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.seo-page .page-content-3 .strong-list li {
  list-style: none;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  margin: 20px auto;
  padding: 15px;
  font-size: 16px;
}

.seo-page .page-content-3 .strong-list li img {
  width: auto;
  max-height: 200px;
}

.seo-page .page-content-3 .strong-list li .h3 {
  margin-bottom: 20px;
}

.seo-page .page-content-3 .strong-list li .h3>span {
  background: #15aabf;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
}

.seo-page .page-content-3 .strong-list li.item-2 .h3>span {
  background: #f69110;
}

.seo-page .page-content-3 .strong-list li.item-3 .h3>span {
  background: #82c91e;
}

.seo-page .page-content-3 .strong-list li.item-4 .h3>span {
  background: #7e57c2;
}

.seo-page .page-content-4 p {
  margin-bottom: 0;
}

.seo-page svg#dividerUp {
  pointer-events: none;
  transform: rotate(180deg);
  margin-bottom: -10px;
}

.seo-page #dividerUp path {
  fill: #f5f6f9;
  stroke: #f5f6f9;
  stroke-width: 2;
}

.seo-page .page-content-5::before {
  content: '';
  width: 100%;
  height: 400px;
  background: #f5f6f9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.seo-page .page-content-5 .d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.seo-page .page-content-5 .d-flex .card {
  flex: 0 0 auto;
  width: 22%;
  padding: 30px 20px 0;
  margin: 30px 15px;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 0;
}

.seo-page .page-content-5 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #a07d0c;
  font-weight: bold;
  font-size: 2.5em;
  text-align: center;
  background: #f5f6f9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f5f6f9 0%, #f5f6f9 58%, #fff 59%, #fff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f5f6f9 0%, #f5f6f9 58%, #fff 59%, #fff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f5f6f9 0%, #f5f6f9 58%, #fff 59%, #fff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f6f9', endColorstr='#fff', GradientType=0);
  /* IE6-9 */
  position: absolute;
  left: 25px;
  top: -35px;
  z-index: 1;
}

.seo-page .page-content-5 .d-flex .card_1::before {
  content: '01';
}

.seo-page .page-content-5 .d-flex .card_2::before {
  content: '02';
}

.seo-page .page-content-5 .d-flex .card_3::before {
  content: '03';
}

.seo-page .page-content-5 .d-flex .card_4::before {
  content: '04';
}

.seo-page .page-content-5 .d-flex .card img {
  margin-top: auto;
}

.seo-page .page-content-5 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.seo-page .page-content-5 .d-flex .card p {
  line-height: 1.5;
  text-align-last: left;
}

/*-- web-page --*/
.web-page .page-content-1 .item {
  max-width: 250px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin: 30px auto;
  text-align: center;
  font-size: 20px;
  background: #f5f6f9;
  border-radius: 50%;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.web-page .page-content-1 .item:hover,
.web-page .page-content-1 .item:focus {
  background: #0d204b;
  color: #fff;
}

.web-page .page-content-1 .item img {
  width: auto;
  max-height: 100px;
}

.web-page .page-content-1 .item .item-img {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.web-page .page-content-1 .item .item-img-hover {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}

.web-page .page-content-1 .item:hover .item-img>img,
.web-page .page-content-1 .item:focus .item-img>img {
  opacity: 0;
}

.web-page .page-content-1 .item:hover .item-img-hover,
.web-page .page-content-1 .item:focus .item-img-hover {
  opacity: 1;
}

.web-page .page-content-2 {
  background: #e8eaf1;
}

.web-page .page-content-2 .subtitle {
  color: #0d204b;
  border-color: #bdbdbd;
}

.web-page .page-content-2 .subtitle::after {
  background: #0d204b;
}

.web-page svg#dividerUp {
  pointer-events: none;
  transform: rotate(180deg);
  margin-bottom: -10px;
}

.web-page #dividerUp path {
  fill: #e8eaf1;
  stroke: #e8eaf1;
  stroke-width: 2;
}

.web-page .page-content-2 .item {
  margin-bottom: 30px;
}

.web-page .page-content-2 .img-hover {
  margin-bottom: 0;
}

.web-page .page-content-2 .item-title {
  margin: 15px 0 10px;
}

.web-page .page-content-2 .item-link {
  margin-top: 0;
  text-align: center;
}

.web-page .page-content-2 .item-link a {
  color: #0d204b;
  border-color: #0d204b;
}

.web-page .page-content-2 .item-link a:hover,
.web-page .page-content-2 .item-link a:focus {
  background: #0d204b;
  color: #fff;
}

.web-page .page-content-3 {
  background: url(../images/bg_02.png) no-repeat left top / 400px,
    url(../images/bg_03.png) no-repeat right bottom / 400px;
}

.web-page .page-content-3 .item-program {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  width: 80%;
  margin-left: 10%;
}

.web-page .page-content-3 .card {
  overflow: hidden;
  margin: 30px 15px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  background-clip: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 4px solid #7552cc;
}

.web-page .page-content-3 .card.active {
  border-color: #0cb9c1;
}

.web-page .page-content-3 .card-header {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #0d204b;
  padding-bottom: 50px;
}

.web-page .page-content-3 .card:hover .card-header,
.web-page .page-content-3 .card:focus .card-header {
  background: #7552cc;
  color: #fff;
}

.web-page .page-content-3 .card.active:hover .card-header,
.web-page .page-content-3 .card.active:focus .card-header {
  background: #0cb9c1;
  color: #fff;
}

.web-page .page-content-3 .program-price {
  padding: 30px 15px;
  text-align: center;
  background: #f5f6f9;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  color: #f44336;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.web-page .page-content-3 .program-price::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 800px;
  border-color: transparent transparent #f5f6f9 transparent;
  position: absolute;
  left: 0;
  top: -30px;
}

.web-page .page-content-3 .program-price span {
  display: block;
  font-size: 16px;
  color: #4b4b4b;
}

.web-page .page-content-3 .program-price span.money {
  font-size: 36px;
  display: inline;
  color: #f44336;
  margin: 0 5px;
  font-family: Bell MT, Microsoft JhengHei, Arial;
}

.web-page .page-content-3 .card-body {
  display: flex;
  flex-direction: column;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.web-page .page-content-3 .list-feature {
  list-style: none;
  padding: 0 30px;
  margin-bottom: 30px;
}

.web-page .page-content-3 .list-feature li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.web-page .page-content-3 .list-feature li::before {
  content: "\f00c";
  font-family: "FontAwesome", serif;
  color: #4caf50;
  position: absolute;
  width: 20px;
  top: 0;
  left: 0;
}

.web-page .page-content-3 .card-body .item-link {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.web-page .web-process {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  border-bottom: none;
  position: relative;
}

.web-page .web-process::before {
  content: '';
  width: 70%;
  height: 2px;
  background: #0d204b;
  position: absolute;
  z-index: -1;
  top: 37%;
  left: 15%;
}

.web-page .web-process li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.web-page .web-process li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.web-page .web-process>li.active>a,
.web-page .web-process>li.active>a:focus,
.web-page .web-process>li.active>a:hover {
  color: #a07d0c;
  font-weight: bold;
  background: transparent;
  cursor: default;
  border: none;
}

.web-page .web-process>li>a:hover,
.web-page .web-process>li>a:focus {
  background: transparent;
  border: none;
  color: #0d204b;
}

.web-page .web-process li .step {
  width: 90px;
  height: 90px;
  font-family: "Times New Roman", serif;
  font-size: 28px;
  color: #0d204b;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #0d204b;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.web-page .web-process li .step::after {
  content: '';
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid #0d204b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.web-page .web-process>li>a:hover .step,
.web-page .web-process>li>a:focus .step {
  background: #e8eaf1;
}

.web-page .web-process>li.active>a .step,
.web-page .web-process>li.active>a:focus .step,
.web-page .web-process>li.active>a:hover .step {
  background: #a07d0c;
  border-color: #a07d0c;
  color: #fff;
}

.web-page .web-process>li.active>a .step::after,
.web-page .web-process>li.active>a:focus .step::after,
.web-page .web-process>li.active>a:hover .step::after {
  border-color: #fff;
}

.web-page .page-content-4 .tab-content {
  margin-bottom: 30px;
}

.web-page .page-content-4 .tab-pane {
  padding: 30px;
  border: 1px solid #e5e5e5;
}

.web-page .page-content-4 .tab-pane .h3 {
  color: #0d204b;
  font-weight: bold;
  margin-top: 35px;
}

.web-page .page-content-4 .tab-pane>.h3:first-child {
  margin-top: 0;
}

.web-page .page-content-4 .tab-pane ol {
  margin-left: 30px;
}

.web-page .page-content-4 .tab-pane ol li {
  margin-bottom: 10px;
}

.web-page .page-content-4 .tab-pane .worktime {
  margin-top: 30px;
}

.web-page .page-content-4 .tab-pane .label {
  color: #a07d0c;
}

/*-- program-page --*/
.program-page .program-info {
  width: 70%;
  margin-top: 30px;
  margin-left: 15%;
}

.program-page .program-price {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: bold;
  padding: 0 15px;
}

.program-price>span.money {
  font-family: Bell MT, Microsoft JhengHei, Arial;
  font-size: 2.25em;
  margin-left: 5px;
}

.program-price .note {
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 300;
  margin: 0 10px;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 10px;
  margin-top: -12px;
}

.program-price .note::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 16px solid #0d204b;
  border-bottom: 8px solid transparent;
  left: -8px;
  top: 10px;
}

.program-page .card {
  border: 4px solid;
  border-collapse: separate;
  border-spacing: 0;
  padding: 15px;
}

.program-page .card>tbody>tr>td {
  width: 50%;
  padding: 10px 15px;
  vertical-align: middle;
}

.program-page .card .colspan {
  width: 100%;
  background: #e5e5e5;
  border-radius: 6px;
}

.program-page .card .colspan .fa-arrow-circle-right {
  margin-right: 5px;
}

.program-page .program-table th,
.program-page .program-table td {
  padding: 10px 15px;
}

.rwd-table .responsive-table tbody tr:nth-child(even) {
  background: #f5f6f9;
}

.program-page .program-table .responsive-table tbody th[scope="row"] {
  font-size: 18px;
  text-align: center;
}

.program-page .program-table .responsive-table tbody td {
  font-size: 16px;
}

.program-page .page-content-3 img {
  width: auto;
  max-height: 120px;
  margin-bottom: 15px;
}

.program-page .item-link a {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 10px 20px;
  margin: 0 15px;
  border-radius: 10px;
}

.program-1 .card {
  border-color: #7552cc;
}

.program-1 .program-price {
  color: #7552cc;
}

.program-1 .note {
  background: #7552cc;
}

.program-1 .note::before {
  border-right-color: #7552cc;
}

.program-1 .page-content-3 .h2 {
  color: #7552cc;
}

.program-1 a.link-primary {
  background: #7552cc;
  border-color: #7552cc;
  color: #fff;
}

.program-1 a.link-primary:hover,
.program-1 a.link-primary:focus {
  background: #0d204b;
  border-color: #0d204b;
  color: #fff;
}

.program-2 .card {
  border-color: #0cb9c1;
}

.program-2 .program-price {
  color: #0cb9c1;
}

.program-2 .note {
  background: #0cb9c1;
}

.program-2 .note::before {
  border-right-color: #0cb9c1;
}

.program-2 .page-content-3 .h2 {
  color: #0cb9c1;
}

.program-2 a.link-primary {
  background: #0cb9c1;
  border-color: #0cb9c1;
  color: #fff;
}

.program-2 a.link-primary:hover,
.program-2 a.link-primary:focus {
  background: #0d204b;
  border-color: #0d204b;
  color: #fff;
}

/*-- marketing-service --*/
.m_ecLink {
  display: none;
}

.ecBox {
  padding: 45px 0 60px;
  text-align: center;
}

ul.ecLink {
  display: inline-block;
  padding: 5px;
  border-radius: 20px;
  background-color: #eee;
}

ul.ecLink li {
  position: relative;
  display: inline-block;
}

ul.ecLink li+li {
  padding-left: 5px;
}

ul.ecLink li>a {
  display: block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 15px;
}

ul.ecLink li>a b {
  margin-left: 10px;
  font-size: 13px;
  font-weight: normal;
  color: #808080;
}

ul.ecLink li>a:hover {
  background-color: #e0e0e0;
  color: #a07d0c;
}

ul.ecLink li>a.active {
  background-color: #0d204b;
  color: #FFF;
}

@media (max-width: 768px) {
  .ecBox {
    padding: 30px 0;
  }

  /* ul.ecLink {display: none;} */
  .m_ecLink {
    display: block;
    position: relative;
  }

  .m_ecLink a.main {
    display: block;
    font-size: 15px;
    color: #fff;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background-color: #c89866;
  }

  .m_ecLink a.main i {
    display: block;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    color: #fff;
  }

  .m_ecLink a.main b {
    font-weight: 400;
  }

  .m_ecLink ul {
    padding: 0;
    list-style: none;
    display: none;
    width: 100%;
    background-color: #eee;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .m_ecLink ul li {
    padding: 0;
  }

  .m_ecLink ul li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }

  .m_ecLink ul li a.active {
    color: #fff;
    background-color: #0d204b;
  }

  .m_ecLink ul li:first-child a {
    border: none;
  }
}

.marketing-page .page-content-1 .item-img {
  text-align: center;
}

.marketing-page .page-content-1 .item-img img {
  width: auto;
  max-height: 200px;
}

.marketing-page .page-content-1 .item-body {
  width: 80%;
  margin-left: 10%;
  background: #fff;
  padding: 30px 20px 15px;
  box-shadow: 0px 10px 80px 0px rgb(38 38 38 / 10%);
  margin-top: -15px;
  margin-bottom: 30px;
}

.marketing-page .page-content-2 .d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 45px auto 0;
}

.marketing-page .page-content-2 .d-flex .card {
  flex: 0 0 auto;
  width: 30%;
  padding: 30px;
  margin: 0 15px 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(38, 198, 218, 0.24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(38, 198, 218, 0.24);
  box-shadow: 0px 0px 16px 0px rgba(38, 198, 218, 0.24);
  position: relative;
  z-index: 0;
}

.marketing-page .page-content-2 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #26c6da;
  font-weight: bold;
  font-size: 2.5em;
  text-align: center;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -40px;
  z-index: 1;
}

.marketing-page .page-content-2 .d-flex .card_1::before {
  content: '01';
}

.marketing-page .page-content-2 .d-flex .card_2::before {
  content: '02';
}

.marketing-page .page-content-2 .d-flex .card_3::before {
  content: '03';
}

.marketing-page .page-content-2 .d-flex .card img {
  margin-top: auto;
}

.marketing-page .page-content-2 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.marketing-page .page-content-2 .d-flex .card p {
  line-height: 1.75;
  text-align: left;
  font-size: 16px;
  margin-bottom: 30px;
}

.marketing-page .page-content-3 {
  background: #f5f6f9;
}

.marketing-page .page-content-3 .d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px auto;
}

.marketing-page .page-content-3 .d-flex .item-img {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 15px;
}

.marketing-page .page-content-3 .d-flex .item-img img {
  background: #fff;
  padding: 5px;
  border: 1px solid #e5e5e5;
}

.marketing-page .page-content-4 {
  text-align: center;
  position: relative;
}

.marketing-page .page-content-4::before {
  content: '';
  width: 100%;
  height: 350px;
  background: #f5f6f9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.marketing-page .page-content-4 .operation-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.marketing-page .page-content-4 .operation-list li {
  list-style: none;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin: 20px auto;
  padding: 15px 20px;
}

.marketing-page .page-content-4 .operation-list li img {
  width: auto;
  max-height: 250px;
}

.marketing-page .page-content-4 .operation-list li p {
  background: #15aabf;
  color: #fff;
  padding: 5px 15px;
  text-align: left;
  border-radius: 10px;
  margin: 15px 0;
  font-size: 16px;
}

.marketing-page .page-content-4 .operation-list li.item-2 p {
  background: #f69110;
}

.marketing-page .page-content-4 .operation-list li.item-3 p {
  background: #82c91e;
}

.marketing-page .page-content-5 img {
  width: auto;
  max-height: 350px;
}

.marketing-page .page-content-5 .d-flex {
  display: flex;
  align-items: center;
}

/*-- blogger-page --*/
.blogger-page .page-content-1 .h3 {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.blogger-page .page-content-1 .h3>span {
  padding: 0 5px;
}

.blogger-page .page-content-1 .h3 strong {
  font-size: 36px;
  color: #a07d0c;
  margin-right: 5px;
}

.blogger-page .page-content-1 .case-list,
.blogger-page .page-content-1 .case-info {
  margin-left: 10px;
  list-style: none;
}

.blogger-page .page-content-1 .case-list li {
  font-size: 22px;
  font-weight: bold;
  color: #7562e0;
}

.blogger-page .page-content-1 .case-list li::before {
  content: "\f046";
  font-family: 'FontAwesome';
  font-weight: normal;
  margin-right: 5px;
}

.blogger-page .page-content-1 .case-info {
  margin-top: 30px;
}

.blogger-page .page-content-1 .case-info li {
  margin-bottom: 10px;
  background: url(../images/el_01.png) no-repeat left 5px / 17px;
  padding-left: 25px;
}

.blogger-page .page-content-2 {
  background: #f5f6f9;
  position: relative;
}

.blogger-page svg#dividerDown {
  pointer-events: none;
}

.blogger-page #dividerDown path {
  fill: #f5f6f9;
  stroke: #f5f6f9;
  stroke-width: 2;
}

.blogger-page .page-content-2 .quote {
  width: 60%;
  margin-left: 20%;
  padding: 20px;
  text-align: center;
  color: #7562e0;
  font-weight: bold;
  border: 6px solid #7562e0;
  margin-top: 45px;
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
}

.blogger-page .page-content-2 .quote::before,
.blogger-page .page-content-2 .quote::after {
  font-family: 'Arial', serif;
  font-size: 160px;
  color: #7562e0;
  background: #f5f6f9;
  position: absolute;
  z-index: 1;
  width: 80px;
  height: 80px;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.blogger-page .page-content-2 .quote::before {
  content: '\201C';
  left: -37px;
  align-items: flex-end;
  top: -30px;
}

.blogger-page .page-content-2 .quote::after {
  content: '\201D';
  right: -37px;
  align-items: flex-end;
  bottom: -40px;
}

.blogger-page .page-content-3 {
  text-align: center;
}

.blogger-page .page-content-3 img {
  width: auto;
  max-height: 350px;
}

.blogger-page .page-content-3 .d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.blogger-page .page-content-3 .d-flex .card {
  flex: 0 0 auto;
  width: 22%;
  padding: 30px 20px 0;
  margin: 30px 15px;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(117, 98, 224, .24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(117, 98, 224, .24);
  box-shadow: 0px 0px 16px 0px rgba(117, 98, 224, .24);
  position: relative;
  z-index: 0;
}

.blogger-page .page-content-3 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #7562e0;
  font-weight: bold;
  font-size: 2.5em;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -35px;
  z-index: 1;
}

.blogger-page .page-content-3 .d-flex .card_1::before {
  content: '01';
}

.blogger-page .page-content-3 .d-flex .card_2::before {
  content: '02';
}

.blogger-page .page-content-3 .d-flex .card_3::before {
  content: '03';
}

.blogger-page .page-content-3 .d-flex .card_4::before {
  content: '04';
}

.blogger-page .page-content-3 .d-flex .card img {
  margin-top: auto;
}

.blogger-page .page-content-3 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.blogger-page .page-content-3 .d-flex .card p {
  line-height: 1.5;
  text-align: left;
  margin-bottom: 30px;
}


/*-- micro_video --*/
.mvideo-page .page-content .title {
  width: 100%;
  text-align: center;
}

.mvideo-page .page-content .title img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.mvideo-page .page-content-2 {
  text-align: center;
  background: url(../images/v_07.png) no-repeat left top / 350px,
    url(../images/v_08.png) no-repeat right bottom / 350px,
    #b0e3e4;
  box-shadow: inset 0 8px 20px -6px #0000006b, inset 0 -8px 20px -6px #0000006b;
}

.mvideo-page .page-content-2 .h2>span {
  font-weight: bold;
  color: #f4436d;
}

.mvideo-page .page-content-3 .d-flex {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  margin: 30px auto 0;
}

.mvideo-page .page-content-3 .d-flex .card {
  list-style: none;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  padding: 30px;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  transition: all .8s;
}

.mvideo-page .page-content-3 .d-flex .card_1,
.mvideo-page .page-content-3 .d-flex .card_3 {
  background: #f5f6f9;
}

.mvideo-page .page-content-3 .d-flex .card_2,
.mvideo-page .page-content-3 .d-flex .card_4 {
  background: #e8eaf1;
}

.mvideo-page .page-content-3 .d-flex .card:hover,
.mvideo-page .page-content-3 .d-flex .card:focus {
  background-color: #fff;
  box-shadow: 0px 10px 80px 0px rgba(38, 38, 38, 0.1);
}

.mvideo-page .page-content-3 .d-flex .card img {
  width: auto;
  max-height: 150px;
  margin: 20px auto;
}

.mvideo-page .page-content-3 .d-flex .card .h3>span {
  padding: 5px 20px;
  border-radius: 30px;
  background: #9b55e5;
  color: #fff;
}

.mvideo-page .page-content-3 .d-flex .card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

.mvideo-page .page-content-3 small {
  color: #e0e0e0;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.mvideo-page .page-content-4 .d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 0;
}

.mvideo-page .page-content-4 .d-flex .card {
  flex: 0 0 auto;
  width: 30%;
  padding: 30px 20px 0;
  margin: 0 15px 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(244, 67, 109, 0.24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(244, 67, 109, 0.24);
  box-shadow: 0px 0px 16px 0px rgba(244, 67, 109, 0.24);
  position: relative;
  z-index: 0;
}

.mvideo-page .page-content-4 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #cf1844;
  font-weight: bold;
  font-size: 2.5em;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -40px;
  z-index: 1;
}

.mvideo-page .page-content-4 .d-flex .card_1::before {
  content: '01';
}

.mvideo-page .page-content-4 .d-flex .card_2::before {
  content: '02';
}

.mvideo-page .page-content-4 .d-flex .card_3::before {
  content: '03';
}

.mvideo-page .page-content-4 .d-flex .card img {
  margin-top: auto;
}

.mvideo-page .page-content-4 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.mvideo-page .page-content-4 .d-flex .card .h3>span {
  font-size: 16px;
  font-weight: normal;
  color: #f4436d;
  display: block;
  margin-top: 5px;
}

.mvideo-page .page-content-4 .d-flex .card p {
  line-height: 1.5;
  text-align: left;
}

.mvideo-page .page-content-5 {
  background: #f5f6f9;
}

.mvideo-page .page-content-5 .video-case {
  margin: 0 auto 30px;
}

.mvideo-page .page-content-5 .video-case .card {
  margin: 30px 0;
  padding: 15px;
  border-radius: 0;
  box-shadow: none;
}

.mvideo-page .page-content-5 .video-case .card:hover,
.mvideo-page .page-content-5 .video-case .card:focus {
  background: #fff;
  box-shadow: 0px 10px 80px 0px rgba(38, 38, 38, 0.1);
}

.mvideo-page .page-content-5 .h1 {
  font-weight: bold;
  color: #f4436d;
  line-height: 1.5;
}

.mvideo-page .page-content-5 .h3 {
  line-height: 1.5;
}

.mvideo-page .page-content-6 .item-program {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.mvideo-page .page-content-6 .card {
  overflow: hidden;
  margin: 30px auto;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  max-width: 500px;
  background-clip: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 4px solid #f4436d;
}

.mvideo-page .page-content-6 .card-header {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: bold;
  background: #f4436d;
  color: #fff;
  padding-bottom: 50px;
}

.mvideo-page .page-content-6 .card:hover .card-header,
.mvideo-page .page-content-6 .card:focus .card-header {
  background: #f4436d;
  color: #fff;
}

.mvideo-page .page-content-6 .program-price {
  padding: 30px 15px;
  text-align: center;
  background: #f5f6f9;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  color: #f44336;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mvideo-page .page-content-6 .program-price::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 800px;
  border-color: transparent transparent #f5f6f9 transparent;
  position: absolute;
  left: 0;
  top: -30px;
}

.mvideo-page .page-content-6 .program-price span {
  display: block;
  font-size: 16px;
  color: #4b4b4b;
}

.mvideo-page .page-content-6 .program-price span.money {
  font-size: 36px;
  display: inline;
  color: #f44336;
  margin: 0 5px;
  font-family: Bell MT, Microsoft JhengHei, Arial;
}

.mvideo-page .page-content-6 .card-body {
  display: flex;
  flex-direction: column;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.mvideo-page .page-content-6 .list-feature {
  list-style: none;
  padding: 0 30px;
  margin-bottom: 30px;
}

.mvideo-page .page-content-6 .list-feature li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.mvideo-page .page-content-6 .list-feature li::before {
  content: "\f00c";
  font-family: "FontAwesome", serif;
  color: #4caf50;
  position: absolute;
  width: 20px;
  top: 0;
  left: 0;
}

.mvideo-page .page-content-6 .quote {
  padding: 90px 30px;
  background: url(../images/v_04.png) no-repeat top right / 100%,
    url(../images/v_05.png) no-repeat left bottom / 100%;
  width: 60%;
  margin: 30px auto 60px;
  text-align: center;
}

.mvideo-page .page-content-6 .quote span {
  color: #f4436d;
  border-bottom: 1px solid #f4436d;
}

/*-- fans-page --*/
.fans-page .page-content .title {
  width: 100%;
  text-align: center;
}

.fans-page .page-content .title img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.fans-page .page-content-2 {
  background: url(../images/f_02.jpg) no-repeat center / cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 0;
}

.fans-page .page-content-2::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .75);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.fans-page .page-content-2 .num-wrap {
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 45px;
  width: 100%;

}

.fans-page .page-content-2 .num-wrap .card {
  width: auto;
  padding: 20px;
  color: #fff;
  margin: 0 20px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.fans-page .page-content-2 .num-wrap .card img {
  width: 70px;
  height: 70px;
}

.fans-page .page-content-2 .num-wrap p {
  color: #fff;
}

.fans-page .page-content-2 .num-wrap .number-animate {
  color: #00bcd4;
  font-size: 5em;
  font-weight: bold;
  margin: 10px auto;
}

.fans-page .page-content-3 .card {
  padding: 20px 0;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
}

.fans-page .page-content-3 .table {
  text-align: left;
  margin-left: 35px;
  font-size: 16px;
}

.fans-page .page-content-3 .table>tbody>tr>td {
  border: none;
  text-align: left;
}

.fans-page .page-content-3 figure img {
  width: auto;
  max-height: 300px;
}

.fans-page .page-content-3 .card .title {
  margin-bottom: 30px;
}

.fans-page .page-content-3 .card .title>span {
  font-size: 32px;
  background: #ffb100;
  color: #fff;
  padding: 5px 30px;
  border-radius: 30px;
}

.fans-page .page-content-3 .card_2 .title>span {
  background: #00a726;
}

.fans-page .page-content-3 .card_3 .title>span {
  background: #783fda;
}

.fans-page .page-content-3 .card_2 {
  margin: 45px 0;
}

.fans-page .page-content-4 .subtitle {
  margin-bottom: 60px;
}

.fans-page .page-content-4 .card {
  padding: 20px 45px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  box-shadow: none;
  border-radius: 0;
}

.fans-page .page-content-4 .card p {
  line-height: 1.5;
}

.fans-page .page-content-4 .card .title {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

.fans-page .page-content-4 .card figure img {
  width: auto;
  max-height: 250px;
}

.fans-page .page-content-4 .card .card-body {
  padding: 0 30px;
}

.fans-page .page-content-4 .card_1 {
  border: 1px solid transparent;
  border-width: 4px 4px 0 0;
  border-image: linear-gradient(to bottom, #783fda 0%, #00a726 100%);
  border-image-slice: 1;
  padding-left: 120px;
}

.fans-page .page-content-4 .card_1 .title {
  color: #783fda;
  font-weight: bold;
}

.fans-page .page-content-4 .card_1::before {
  content: '01';
  background: #783fda;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fans-page .page-content-4 .card_1::after {
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 25px 50px 0 50px;
  border-color: #783fda transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 100px;
}

.fans-page .page-content-4 .card_2 {
  border: 1px solid transparent;
  border-width: 4px 0 0 4px;
  border-image: linear-gradient(to bottom, #00a726 0%, #ffb100 100%);
  border-image-slice: 1;
  flex-direction: row-reverse;
  padding-right: 120px;
}

.fans-page .page-content-4 .card_2::before {
  content: '02';
  background: #00a726;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fans-page .page-content-4 .card_2::after {
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 25px 50px 0 50px;
  border-color: #00a726 transparent transparent transparent;
  position: absolute;
  right: 0;
  top: 100px;
}

.fans-page .page-content-4 .card_2 .title {
  color: #00a726;
  font-weight: bold;
}

.fans-page .page-content-4 .card_2 .card-body {
  margin-right: auto;
}

.fans-page .page-content-4 .card_3 {
  border: 1px solid transparent;
  border-width: 4px 4px 0 0;
  border-image: linear-gradient(to bottom, #ffb100 0%, #2196f3 100%);
  border-image-slice: 1;
  padding-left: 120px;
}

.fans-page .page-content-4 .card_3::before {
  content: '03';
  background: #ffb100;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fans-page .page-content-4 .card_3::after {
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 25px 50px 0 50px;
  border-color: #ffb100 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 100px;
}

.fans-page .page-content-4 .card_3 .title {
  color: #ffb100;
  font-weight: bold;
}

.fans-page .page-content-4 .card_4 {
  border: 1px solid transparent;
  border-width: 4px 0 0 4px;
  border-image: linear-gradient(to bottom, #2196f3 0%, #e91e63 100%);
  border-image-slice: 1;
  flex-direction: row-reverse;
  padding-right: 120px;
}

.fans-page .page-content-4 .card_4::before {
  content: '04';
  background: #2196f3;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fans-page .page-content-4 .card_4::after {
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 25px 50px 0 50px;
  border-color: #2196f3 transparent transparent transparent;
  position: absolute;
  right: 0;
  top: 100px;
}

.fans-page .page-content-4 .card_4 .title {
  color: #2196f3;
  font-weight: bold;
}

.fans-page .page-content-4 .card_4 .card-body {
  margin-right: auto;
}

.fans-page .page-content-4 .card_5 {
  border-top: 4px solid #e91e63;
  border-right: 4px solid #e91e63;
  padding-left: 120px;
}

.fans-page .page-content-4 .card_5::before {
  content: '05';
  background: #e91e63;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fans-page .page-content-4 .card_5::after {
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 25px 50px 0 50px;
  border-color: #e91e63 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 100px;
}

.fans-page .page-content-4 .card_5 .title {
  color: #e91e63;
  font-weight: bold;
}

.fans-page .page-content-5 .item-program {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.fans-page .page-content-5 .card {
  overflow: hidden;
  margin: 30px auto;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  max-width: 500px;
  background-clip: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 4px solid #0056b8;
}

.fans-page .page-content-5 .card-header {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: bold;
  background: #0056b8;
  color: #fff;
  padding-bottom: 50px;
}

.fans-page .page-content-5 .card:hover .card-header,
.fans-page .page-content-5 .card:focus .card-header {
  background: #0056b8;
  color: #fff;
}

.fans-page .page-content-5 .program-price {
  padding: 30px 15px;
  text-align: center;
  background: #f5f6f9;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  color: #f44336;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fans-page .page-content-5 .program-price::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 800px;
  border-color: transparent transparent #f5f6f9 transparent;
  position: absolute;
  left: 0;
  top: -30px;
}

.fans-page .page-content-5 .program-price span {
  display: block;
  font-size: 16px;
  color: #4b4b4b;
}

.fans-page .page-content-5 .program-price span.money {
  font-size: 36px;
  display: inline;
  color: #f44336;
  margin: 0 5px;
  font-family: Bell MT, Microsoft JhengHei, Arial;
}

.fans-page .page-content-5 .card-body {
  display: flex;
  flex-direction: column;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.fans-page .page-content-5 .list-feature {
  list-style: none;
  padding: 0 30px;
  margin-bottom: 30px;
}

.fans-page .page-content-5 .list-feature li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.fans-page .page-content-5 .list-feature li::before {
  content: "\f00c";
  font-family: "FontAwesome", serif;
  color: #4caf50;
  position: absolute;
  width: 20px;
  top: 0;
  left: 0;
}

.fans-page .page-content-5 .quote {
  padding: 90px 30px;
  background: url(../images/v_04.png) no-repeat top right / 100%,
    url(../images/v_05.png) no-repeat left bottom / 100%;
  width: 60%;
  margin: 30px auto 60px;
  text-align: center;
  color: #0056b8;
}

/*-- youtuber-page --*/
.youtuber-page .page-content-2 {
  text-align: center;
}

.youtuber-page .page-content-2 .d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 45px auto 0;
}

.youtuber-page .page-content-2 .d-flex .card {
  flex: 0 0 auto;
  width: 30%;
  padding: 30px 20px 0;
  margin: 0 15px 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(76, 175, 80, .24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(76, 175, 80, .24);
  box-shadow: 0px 0px 16px 0px rgba(76, 175, 80, .24);
  position: relative;
  z-index: 0;
}

.youtuber-page .page-content-2 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #4caf50;
  font-weight: bold;
  font-size: 2.5em;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -40px;
  z-index: 1;
}

.youtuber-page .page-content-2 .d-flex .card_1::before {
  content: '01';
}

.youtuber-page .page-content-2 .d-flex .card_2::before {
  content: '02';
}

.youtuber-page .page-content-2 .d-flex .card_3::before {
  content: '03';
}

.youtuber-page .page-content-2 .d-flex .card img {
  margin-top: auto;
}

.youtuber-page .page-content-2 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.youtuber-page .page-content-2 .d-flex .card p {
  line-height: 1.75;
  text-align: left;
  font-size: 16px;
  margin-bottom: 30px;
}

.youtuber-page .page-content-2 .card-info {
  margin: 30px 0;
  text-align: left;
  list-style: none;
  font-size: 16px;
}

.youtuber-page .page-content-2 .card-info li {
  list-style: none;
  margin-bottom: 10px;
  background: url(../images/el_01.png) no-repeat left 5px / 17px;
  padding-left: 25px;
}

/*-- ad-page --*/
.ad-page .page-content .h3 {
  font-weight: bold;
  line-height: 1.5;
}

.ad-page .page-content .h3 strong {
  font-size: 36px;
}

.ad-page .page-content .ad-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-page .page-content .ad-list .card {
  flex: 0 0 auto;
  width: 22%;
  margin: 0 20px 45px;
  text-align: center;
}

.ad-page .page-content .ad-list .card img {
  width: auto;
  max-height: 150px;
  margin: 15px auto;
}

.ad-page .page-content .ad-list .card .h3 {
  margin-bottom: 20px;
}

.ad-page .page-content .case-list {
  margin-bottom: 45px;
  list-style: none;
}

.ad-page .page-content .case-list li {
  font-size: 22px;
  font-weight: bold;
  color: #2b80ff;
  list-style: none;
}

.ad-page .page-content .case-list li::before {
  content: "\f046";
  font-family: 'FontAwesome';
  font-weight: normal;
  margin-right: 5px;
}

.ad-page .page-content .case-info {
  margin-top: 20px;
}

.ad-page .page-content .case-info .dl-horizontal dt {
  width: 200px;
  text-align: left;
  color: #a07d0c;
  background: url(../images/el_01.png) no-repeat left 5px / 17px;
  padding-left: 25px;
}

.ad-page .page-content .case-info .dl-horizontal dd {
  margin-left: 200px;
}

.ad-page .page-content .case-info ul {
  margin-left: 5px;
}

.ad-page .page-content .case-info li {
  list-style: none;
  background: url(../images/el_01.png) no-repeat left 5px / 17px;
  padding-left: 25px;
  margin-bottom: 10px;
}

.ad-page .page-content-3 .h3>span {
  display: block;
}

.ad-page .page-content-4 .case-info .dl-horizontal dt {
  width: 260px;
}

.ad-page .page-content-4 .case-info .dl-horizontal dd {
  margin-left: 260px;
}

.ad-page .page-content-5 .case-info .dl-horizontal dt {
  width: 290px;
}

.ad-page .page-content-5 .case-info .dl-horizontal dd {
  margin-left: 290px;
}

.ad-page .page-content-3,
.ad-page .page-content-5 {
  background: #f5f6f9;
}

.ad-page .page-content-7 .item {
  margin: 30px 0;
}

.ad-page .page-content-7 .item-img {
  text-align: center;
}

.ad-page .page-content-7 .item-img img {
  width: auto;
  max-height: 200px;
}

.ad-page .page-content-7 .item-body {
  width: 80%;
  margin-left: 10%;
  background: #2b80ff;
  color: #fff;
  padding: 20px 15px;
  box-shadow: 0px 10px 80px 0px rgb(38 38 38 / 10%);
  margin-top: -15px;
  margin-bottom: 30px;
}

.ad-page .page-content-7 .strong-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.ad-page .page-content-7 .strong-list li {
  list-style: none;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  margin: 20px auto;
  padding: 15px 20px;
  text-align: center;
}

.ad-page .page-content-7 .strong-list li img {
  width: auto;
  max-height: 200px;
}

.ad-page .page-content-7 .strong-list li .h3 {
  margin-bottom: 20px;
}

.ad-page .page-content-7 .strong-list li .h3>span {
  background: #15aabf;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
}

.ad-page .page-content-7 .strong-list li.item-2 .h3>span {
  background: #f69110;
}

.ad-page .page-content-7 .strong-list li.item-3 .h3>span {
  background: #82c91e;
}

.ad-page .page-content-7 .strong-list li.item-4 .h3>span {
  background: #7e57c2;
}

.ad-page .page-content-7 .strong-list li.item-5 .h3>span {
  background: #ea4c89;
}

.ad-page .page-content-8 {
  text-align: center;
  padding-top: 0px;
}

.ad-page .page-content-8 img {
  width: auto;
  height: 100%;
}



/*-- ecvideo-page --*/
.ecvideo-page .page-content-2 .item-img {
  text-align: center;
}

.ecvideo-page .page-content-2 .item-img img {
  width: auto;
  max-height: 200px;
}

.ecvideo-page .page-content-2 .item-body {
  width: 90%;
  margin-left: 5%;
  background: #fff;
  padding: 20px 15px;
  box-shadow: 0px 10px 80px 0px rgb(38 38 38 / 10%);
  margin-top: -15px;
  margin-bottom: 30px;
}

.ecvideo-page .page-content-2 .item-body .h3 {
  text-align: center;
  font-weight: bold;
  color: #3f51b5;
  margin-top: 0;
}

.ecvideo-page .page-content-3 .case-list {
  margin-left: 10px;
  list-style: none;
  color: #3f51b5;
}

.ecvideo-page .page-content-3 .case-list li {
  font-size: 22px;
  font-weight: bold;
  color: #3f51b5;
}

.ecvideo-page .page-content-3 .case-list li::before {
  content: "\f046";
  font-family: 'FontAwesome';
  font-weight: normal;
  margin-right: 5px;
}

.ecvideo-page .page-content-4 .strong-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.ecvideo-page .page-content-4 .strong-list li {
  list-style: none;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  margin: 20px auto;
  padding: 15px 20px;
}

.ecvideo-page .page-content-4 .strong-list li img {
  width: auto;
  max-height: 200px;
}

.ecvideo-page .page-content-4 .strong-list li .h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.ecvideo-page .page-content-4 .strong-list li .h3>span {
  background: #15aabf;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
}

.ecvideo-page .page-content-4 .strong-list li.item-2 .h3>span {
  background: #f69110;
}

.ecvideo-page .page-content-4 .strong-list li.item-3 .h3>span {
  background: #82c91e;
}

.ecvideo-page .page-content-4 .strong-list li.item-4 .h3>span {
  background: #7e57c2;
}

.ecvideo-page .page-content-5 .video-case {
  margin: 0 auto 30px;
}

.ecvideo-page .page-content-5 .video-case .card {
  margin: 30px 0;
  padding: 15px;
  border-radius: 0;
  box-shadow: none;
}

.ecvideo-page .page-content-5 .video-case .card:hover,
.ecvideo-page .page-content-5 .video-case .card:focus {
  background: #fff;
  box-shadow: 0px 10px 80px 0px rgba(38, 38, 38, 0.1);
}

/*-- googlemap-page --*/

.googlemap-page svg#dividerUp {
  pointer-events: none;
  transform: rotate(180deg);
  margin-bottom: -10px;
}

.googlemap-page #dividerUp path {
  fill: #e8eaf1;
  stroke: #e8eaf1;
  stroke-width: 2;
}

.googlemap-page .page-content-2 {
  background: #e8eaf1;
}
.googlemap-page .page-content-2 .item-link {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.googlemap-page .page-content-2 .item-link a {
  color: #0d204b;
  border-color: #0d204b;
}

.googlemap-page .page-content-2 .item-link a:hover,
.googlemap-page .page-content-2 .item-link a:focus {
  background: #0d204b;
  color: #fff;
}

.googlemap-page .page-content-3 .strong-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.googlemap-page .page-content-3 .strong-list li {
  list-style: none;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  margin: 20px auto;
  padding: 15px 20px;
}

.googlemap-page .page-content-3 .strong-list li img {
  width: auto;
  max-height: 200px;
}

.googlemap-page .page-content-3 .strong-list li p {
  text-align: justify;
}

.googlemap-page .page-content-3 .strong-list li .h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.googlemap-page .page-content-3 .strong-list li .h3>span {
  background: #15aabf;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
}

.googlemap-page .page-content-3 .strong-list li.item-2 .h3>span {
  background: #f69110;
}

.googlemap-page .page-content-3 .strong-list li.item-3 .h3>span {
  background: #7e57c2;
}

.googlemap-page .page-content-3 .strong-list li.item-4 .h3>span {
  background: #82c91e;
}

.googlemap-page .page-content-3 .strong-list li.item-5 .h3>span {
  background: #ef3e58;
}

.googlemap-page .page-content-4 {
  text-align: center;
}

.googlemap-page .page-content-4 .d-flex {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  margin: 30px auto 0;
}

.googlemap-page .page-content-4 .d-flex .card {
  list-style: none;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
  padding: 30px;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  transition: all .8s;
}

.googlemap-page .page-content-4 .d-flex .card p {
  text-align: justify;
}

.googlemap-page .page-content-4 .d-flex .card_1,
.googlemap-page .page-content-4 .d-flex .card_3,
.googlemap-page .page-content-4 .d-flex .card_5 {
  background: #f5f6f9;
}

.googlemap-page .page-content-4 .d-flex .card_2,
.googlemap-page .page-content-4 .d-flex .card_4 {
  background: #e8eaf1;
}

.googlemap-page .page-content-4 .d-flex .card:hover,
.googlemap-page .page-content-4 .d-flex .card:focus {
  background-color: #fff;
  box-shadow: 0px 10px 80px 0px rgba(38, 38, 38, 0.1);
}

.googlemap-page .page-content-4 .d-flex .card img {
  width: auto;
  max-height: 150px;
  margin: 20px auto;
}

.googlemap-page .page-content-4 .d-flex .card .h3>span {
  padding: 5px 20px;
  border-radius: 30px;
  background: #f57c00;
  color: #fff;
}

.googlemap-page .page-content-4 .d-flex .card p {
  font-size: 16px;
  line-height: 1.5;
}

.googlemap-page .page-content-4 small {
  color: #e0e0e0;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.googlemap-page .page-content-4 small a {
  color: #e0e0e0;
}

.googlemap-page .page-content-4 .table-responsive {
  margin-top: 30px;
}

.googlemap-page .page-content-4 .table thead {
  background: #1f0477;
  color: #fff;
}

.googlemap-page .page-content-4 .table thead th {
  text-align: center;
  font-size: 20px;
}

.googlemap-page .page-content-5 .d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 45px auto 0;
}

.googlemap-page .page-content-5 .d-flex .card {
  flex: 0 0 auto;
  width: 30%;
  padding: 30px;
  margin: 0 15px 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(245, 124, 0, 0.24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(245, 124, 0, 0.24);
  box-shadow: 0px 0px 16px 0px rgba(245, 124, 0, 0.24);
  position: relative;
  z-index: 0;
}

.googlemap-page .page-content-5 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #f57c00;
  font-weight: bold;
  font-size: 2.5em;
  text-align: center;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -40px;
  z-index: 1;
}

.googlemap-page .page-content-5 .d-flex .card_1::before {
  content: '01';
}

.googlemap-page .page-content-5 .d-flex .card_2::before {
  content: '02';
}

.googlemap-page .page-content-5 .d-flex .card_3::before {
  content: '03';
}

.googlemap-page .page-content-5 .d-flex .card img {
  margin-top: auto;
  border-radius: 6px;
}

.googlemap-page .page-content-5 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.googlemap-page .page-content-5 .d-flex .card p {
  line-height: 1.75;
  text-align: left;
  font-size: 16px;
  margin-bottom: 30px;
}

/*-- koc-page --*/
.koc-page .page-content-1 .num-wrap {
  color: #ffb900;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 45px;
  width: 100%;
}

.koc-page .page-content-1 .num-wrap .card {
  width: auto;
  min-width: 230px;
  padding: 20px;
  color: #9e9e9e;
  margin: 0 20px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  box-shadow: 0px 10px 80px 0px rgb(38 38 38 / 10%);
}

.koc-page .page-content-1 .num-wrap .card img {
  width: 70px;
  height: 70px;
}

.koc-page .page-content-1 .num-wrap p {
  color: #9e9e9e;
}

.koc-page .page-content-1 .num-wrap .number-animate {
  color: #ffb900;
  font-size: 5em;
  font-weight: bold;
  margin: 10px auto;
}

.koc-page .page-content-2 {
  background: #f5f6f9;
  text-align: center;
}

.koc-page .page-content-2 .rwd-table .responsive-table thead th:first-of-type,
.koc-page .page-content-2 .responsive-table td {
  text-align: center;
}

.koc-page .page-content-2 .responsive-table td p {
  margin-bottom: 0;
}

.koc-page .page-content-2 .rwd-table .responsive-table tbody td:first-child {
  border: 1px solid #0d204b;
}

.koc-page .page-content-3 .d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px auto 30px;
}

.koc-page .page-content-3 .d-flex .card {
  flex: 0 0 auto;
  width: 30%;
  padding: 30px 20px 0;
  margin: 0 15px 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(255, 185, 0, 0.24);
  -moz-box-shadow: 0px 0px 16px 0px rgba(255, 185, 0, 0.24);
  box-shadow: 0px 0px 16px 0px rgba(255, 185, 0, 0.24);
  position: relative;
  z-index: 0;
}

.koc-page .page-content-3 .d-flex .card::before {
  width: 60px;
  height: 60px;
  color: #ffb900;
  font-weight: bold;
  font-size: 2.5em;
  background: #fff;
  position: absolute;
  left: 25px;
  top: -40px;
  z-index: 1;
}

.koc-page .page-content-3 .d-flex .card_1::before {
  content: '01';
}

.koc-page .page-content-3 .d-flex .card_2::before {
  content: '02';
}

.koc-page .page-content-3 .d-flex .card_3::before {
  content: '03';
}

.koc-page .page-content-3 .d-flex .card img {
  margin-top: auto;
}

.koc-page .page-content-3 .d-flex .card .h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.koc-page .page-content-3 .d-flex .card p {
  line-height: 1.5;
  font-size: 16px;
}

.koc-page .page-content-4 {
  background: #f5f6f9;
}

.page-content-4 .intro figure img {
  width: auto;
  max-height: 600px;
}

.koc-page .page-content-4 .timeline {
  list-style: none;
  margin: 25px 0;
  position: relative;
}

.koc-page .page-content-4 .timeline::before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 4px;
  background-color: #ffb900;
  left: 50%;
  margin-left: -1.5px;
}

.koc-page .page-content-4 .timeline>li::before,
.koc-page .page-content-4 .timeline>li::after {
  content: " ";
  display: table;
}

.koc-page .page-content-4 .timeline>li::after {
  clear: both;
}

.koc-page .page-content-4 .timeline>li {
  margin-bottom: 25px;
  position: relative;
}

.koc-page .page-content-4 .timeline>li>.timeline-badge {
  color: #fff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 2.5em;
  text-align: center;
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  background-color: #ffb900;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.koc-page .page-content-4 .timeline>li>.timeline-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 130px 15px 60px;
}

.koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card {
  flex-direction: row-reverse;
}

.koc-page .page-content-4 .timeline-card .card-img,
.koc-page .page-content-4 .timeline-card .card-body {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.koc-page .page-content-4 .timeline-card .card-body {
  padding-left: 90px;
}

.koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card .card-body {
  padding-left: 0;
  padding-right: 90px;
}

.koc-page .page-content-4 .timeline-card .card-body .h3>span {
  font-size: 60px;
  color: #ffb900;
  margin-right: 10px;
  font-weight: normal;
}

.koc-page .page-content-4 .timeline-card .card-img {
  padding-right: 60px;
  text-align: center;
}

.koc-page .page-content-4 .timeline-card .card-img img {
  width: auto;
  max-height: 320px;
}

.koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card .card-img {
  padding-right: 0;
  padding-left: 60px;
}

/*-- ytshort-page  --*/
.ytshort-page .page-content-2 .item-img {
  text-align: center;
}

.ytshort-page .page-content-2 .item-img img {
  width: auto;
  max-height: 200px;
}

.ytshort-page .page-content-2 .item-body {
  width: 90%;
  margin-left: 5%;
  background: #fff;
  padding: 20px 15px;
  box-shadow: 0px 10px 80px 0px rgb(38 38 38 / 10%);
  margin-top: -15px;
  margin-bottom: 30px;
}

.ytshort-page .page-content-2 .item-body .h3 {
  text-align: center;
  font-weight: bold;
  color: #ff7f50;
  margin-top: 0;
}

/******************************************************************************************************************************
*******************************************************************************************************************************

Media Screen Style

*******************************************************************************************************************************
********************************************************************************************************************************/

@media screen and (-webkit-min-device-pixel-ratio:0) {

  /*表單文字在ios裝置不被放大*/
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

@media (max-width : 820px) {
  :root {
    scroll-padding-top: 75px;
  }

  .wrap,
  .footer,
  .page-content {
    padding: 30px 2%;
  }

  .logo img {
    max-height: 55px;
  }

  #main {
    margin-top: 75px;
  }

  .page-banner {
    height: 150px;
  }

  .page-banner img {
    transform: scale(1.5);
  }

  .page-title {
    font-size: 32px;
  }

  .page-title .en {
    font-size: 22px;
  }

  .subtitle::after {
    width: 120px;
    left: calc(50% - 60px);
  }

  #service-list {
    padding: 30px 5%;
    flex-wrap: wrap;
    background: #eee;
  }

  #service-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 15px 0;
    text-align: center;
  }

  #service-list li a {
    border-color: #eee;
  }

  .card .card-body {
    padding: 30px 20px;
  }

  .rwd-table {
    padding: 10px 15px;
  }

  .section-service .wrap-content .item-1,
  .section-service .wrap-content .item-8 {
    display: none;
    visibility: none;
  }

  .section-service .wrap-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-service .wrap-content .item-2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  .section-service .wrap-content .item-3 {
    grid-area: 1 / 2 / 2 / 4;
  }

  .section-service .wrap-content .item-4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  .section-service .wrap-content .item-5 {
    grid-area: 2 / 3 / 3 / 4;
  }

  .section-service .wrap-content .item-6 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .section-service .wrap-content .item-7 {
    grid-area: 3 / 2 / 4 / 4;
  }

  .section-service .wrap-content .item-9 {
    grid-area: 4 / 1 / 5 / 3;
  }

  .section-service .wrap-content .item-10 {
    grid-area: 4 / 3 / 5 / 4;
  }

  .section-service .wrap-content .item-body {
    padding: 25px 30px;
  }

  .section-service .wrap-content .item-text {
    margin: 0;
    padding: 0;
  }

  .section-service .wrap-content .item-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .section-case,
  .section-case .wrap-content {
    padding: 0;
  }

  .section-case .wrap-content-1 .item {
    margin: 0;
    padding: 15px 20px;
  }

  .section-case .wrap-content .item-img {
    padding: 0;
  }

  .item-link {
    margin-top: 20px;
  }

  .footer .item {
    margin-bottom: 30px;
  }

  .about-page .page-content-2 img {
    margin-bottom: 30px;
  }

  .about-page .service-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-page .service-list li:nth-child(3n) {
    background: #e8eaf1;
  }

  .about-page .service-list li:nth-child(4n) {
    background: #f5f6f9;
  }

  .about-page .service-list .item-text p {
    min-height: unset;
  }

  .about-page .page-content-1 {
    padding: 0;
    text-align: left;
  }

  .about-page .page-content-1 {
    text-align: left;
  }

  .about-page .page-content-1 .text-item {
    padding: 20px;
    margin-top: 0;
  }

  .about-page .page-content-1 .h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    text-align: center;
    margin-top: 0;
  }

  .about-page .page-content-1 .h2 {
    font-size: 24px;
    text-align: center;
  }

  .seo-page .page-content-3 {
    text-align: left;
  }

  .seo-page .page-content-3 .strong-list {
    text-align: center;
  }

  .seo-page .page-content-3 .strong-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .seo-page .page-content-4 .rwd-table .responsive-table tbody td[data-title]:before {
    float: none;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .seo-page .page-content-4 p {
    font-size: 16px;
  }

  .seo-page .page-content-5 .d-flex .card {
    width: 45%;
  }

  .seo-page .page-content-5 .d-flex .card_3::before,
  .seo-page .page-content-5 .d-flex .card_4::before {
    background: #fff;
  }

  .marketing-page .page-content-2 .d-flex .card,
  .blogger-page .page-content-3 .d-flex .card,
  .mvideo-page .page-content-4 .d-flex .card,
  .youtuber-page .page-content-2 .d-flex .card,
  .googlemap-page .page-content-5 .d-flex .card,
  .koc-page .page-content-3 .d-flex .card {
    width: 45%;
  }

  .blogger-page .page-content-2 .quote {
    width: 80%;
    margin-left: 10%;
  }

  .mvideo-page .page-content-2 {
    background-size: 200px, 200px;
  }

  .mvideo-page .page-content-3 .d-flex .card {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px 20px;
  }

  .mvideo-page .page-content-3 .d-flex .card_3 {
    background: #e8eaf1;
  }

  .mvideo-page .page-content-3 .d-flex .card_4 {
    background: #f5f6f9;
  }

  .mvideo-page .page-content-6 .quote,
  .fans-page .page-content-5 .quote {
    width: 80%;
  }

  .fans-page .page-content-3 .table {
    margin-left: 0;
  }

  .fans-page .page-content-3 .table>tbody>tr>td {
    display: block;
    text-align: center;
  }

  .fans-page .page-content-4 .card {
    padding: 30px 45px;
  }

  .fans-page .page-content-4 .card figure img {
    max-height: 200px;
  }

  .fans-page .page-content-4 .card_1,
  .fans-page .page-content-4 .card_3,
  .fans-page .page-content-4 .card_5 {
    padding-left: 100px;
  }

  .fans-page .page-content-4 .card_2,
  .fans-page .page-content-4 .card_4 {
    padding-right: 100px;
  }

  .fans-page .page-content-4 .card::before {
    font-size: 2.5em;
    width: 80px;
    height: 80px;
  }

  .fans-page .page-content-4 .card::after {
    top: 80px;
    border-width: 25px 40px 0 40px;
  }

  .fans-page .page-content-4 .card .card-body {
    padding: 0 20px;
  }

  .web-page .page-content-3 .item-program {
    width: 100%;
    margin: 0;
  }

  .web-page .page-content-3 .program-price {
    min-height: 140px;
  }

  .web-page .page-content-3 .list-feature {
    padding: 0;
  }

  .program-page .program-info {
    width: 90%;
    margin-left: 5%;
  }

  .ad-page .page-content .case-info .dl-horizontal dt {
    width: 100%;
    display: block;
  }

  .ad-page .page-content .case-info .dl-horizontal dd {
    display: block;
    margin-left: 25px;
    font-size: 16px;
  }

  .ad-page .page-content-3,
  .ad-page .page-content-5 {
    display: flex;
    flex-direction: column-reverse;
  }

  .ad-page .page-content-7 .strong-list li,
  .marketing-page .page-content-3 .d-flex .item-img,
  .googlemap-page .page-content-4 .d-flex .card {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .fans-page .page-content-5 .list-feature {
    padding: 0 10px;
  }

  .ad-page .page-content .ad-list .card {
    width: 40%;
  }

  .ecvideo-page .page-content-3 {
    display: flex;
    flex-direction: column-reverse;
  }

  .ecvideo-page .page-content-4 .strong-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  ul.ecLink {
    background: #fff;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  ul.ecLink li+li {
    padding-left: 15px;
  }

  ul.ecLink li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 10px;
    position: relative;
  }

  ul.ecLink li:nth-child(odd)::after {
    content: '';
    width: 1px;
    height: 15px;
    top: 11px;
    right: 0;
    position: absolute;
    background: #d2d5de;
  }

  ul.ecLink li:last-child::after {
    content: none;
  }

  ul.ecLink li>a {
    border-radius: 0;
    padding: 5px 10px;
    border-bottom: 3px solid #fff;
  }

  ul.ecLink li>a:hover {
    background-color: #fff;
    color: #a07d0c;
  }

  ul.ecLink li>a.active {
    background-color: #fff;
    color: #a07d0c;
    border-color: #a07d0c;
  }

  .googlemap-page .page-content-4 .d-flex {
    justify-content: center;
  }

  .googlemap-page .page-content-3 .strong-list li {
    list-style: none;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .koc-page .page-content-3 .d-flex .card p {
    text-align: left;
  }

  .koc-page .page-content-4 .timeline-card .card-body .h3>span {
    font-size: 36px;
  }

  .koc-page .page-content-2 .rwd-table .responsive-table thead {
    position: relative;
  }

  .koc-page .page-content-2 .rwd-table .responsive-table th,
  .koc-page .page-content-2 .rwd-table .responsive-table td {
    display: table-cell;
  }

  .koc-page .page-content-2 .rwd-table .responsive-table tbody {
    display: table-row-group;
  }

  .koc-page .page-content-2 .rwd-table .responsive-table tr {
    display: table-row;
    margin-bottom: 0;
  }

  .rwd-table .responsive-table tbody td[data-title]:before {
    content: none;
  }

  .koc-page .page-content-4 .timeline::before {
    left: 50px;
  }

  .koc-page .page-content-4 .timeline>li>.timeline-badge {
    left: 0;
  }

  .koc-page .page-content-4 .timeline>li>.timeline-card {
    padding-bottom: 45px;
    padding-left: 90px;
    flex-direction: column;
  }

  .koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card {
    flex-direction: column;
  }

  .koc-page .page-content-4 .timeline-card .card-img,
  .koc-page .page-content-4 .timeline-card .card-body {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .koc-page .page-content-4 .timeline-card .card-img,
  .koc-page .page-content-4 .timeline-card .card-body,
  .koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card .card-img,
  .koc-page .page-content-4 .timeline>li.timeline-reverse>.timeline-card .card-body {
    padding: 0;
  }

  .koc-page .page-content-4 .timeline-card .card-img {
    text-align: left;
  }

  .koc-page .rwd-table .responsive-table tbody tr {
    border-width: 1px;
  }

  .koc-page .page-content-4 .intro figure img {
    width: 100%;
    max-width: 75%;
    height: auto;
    max-height: unset;
  }

  .web-page .page-content-4 .web-process-cont {
    width: 100%;
    margin-left: 0;
  }

  .web-page .web-process li {
    padding: 0;
    font-size: 16px;
  }

  .web-page .web-process li a {
    padding: 10px;
  }

  .web-page .web-process li .step {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .logo img {
    max-height: 40px;
  }

  #main {
    margin-top: 60px;
  }

  .page-banner {
    height: 120px;
    overflow: hidden;
  }

  .page-banner img {
    transform: scale(3.5);
  }

  .page-title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .page-title .en {
    font-size: 18px;
  }

  .page-title .en::before {
    margin: 10px auto;
  }

  .subtitle {
    font-size: 22px;
    margin-top: 20px;
  }

  .subtitle .en {
    font-size: 28px;
  }

  .item-link a {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 10px;
  }

  .card .card-header {
    padding: 30px 15px;
  }

  .wrap {
    padding: 30px 0;
  }

  .footer,
  .page-content {
    padding: 30px 15px;
  }

  .wrap-content {
    padding: 0;
  }

  .wrap-title {
    font-size: 32px;
  }

  .wrap-title>span.en {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 2px;
  }

  .section-service {
    padding-bottom: 0;
  }

  .section-service .wrap-content {
    gap: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .section-service .wrap-content .item-body {
    padding: 25px;
    text-align: center;
  }

  .section-service .wrap-content .item-title a {
    color: #a07d0c;
    font-size: 28px;
  }

  .section-service .wrap-content .item-2 {
    order: 1;
  }

  .section-service .wrap-content .item-3 {
    order: 2;
    margin-bottom: 0;
  }

  .section-service .wrap-content .item-4 {
    order: 4;
    margin-bottom: 0;
  }

  .section-service .wrap-content .item-5 {
    order: 3;
  }

  .section-service .wrap-content .item-6 {
    order: 5;
  }

  .section-service .wrap-content .item-7 {
    order: 6;
    margin-bottom: 0;
  }

  .section-service .wrap-content .item-9 {
    order: 8;
    margin-bottom: 0;
  }

  .section-service .wrap-content .item-10 {
    order: 7;
  }

  .section-advantage .wrap-content .item {
    padding: 0;
    margin-bottom: 0;
    min-height: 220px;
  }

  .section-advantage .wrap-content .item-1 .item-img,
  .section-advantage .wrap-content .item-2 .item-img,
  .section-advantage .wrap-content .item-3 .item-img,
  .section-advantage .wrap-content .item-4 .item-img {
    background-size: 119px;
  }

  .section-advantage .wrap-content .item-text {
    margin-top: 10px;
    line-height: 1.4;
  }

  .section-case {
    flex-direction: column-reverse;
    padding: 0;
  }

  .section-case .wrap-content-1 .item {
    padding: 30px 15px;
  }

  .footer .item {
    padding: 10px 25px;
  }

  .copyright {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-page .page-content-2 .item {
    padding: 15px 0;
  }

  .about-page .page-content-2 .item-title {
    line-height: 1.4;
  }

  .about-page .service-list {
    padding: 0;
  }

  .about-page .service-list .item {
    padding: 30px 15px;
  }

  .about-page .service-list .item-img {
    height: 90px;
  }

  .about-page .service-list .item-img img {
    width: auto;
    max-height: 90px;
  }

  .about-page .service-list .item-title {
    font-size: 22px;
    min-height: 60px;
  }

  .about-page .service-list .item-text {
    font-size: 15px;
  }

  .about-page .service-list .item-text p {
    min-height: 90px;
  }

  .advantage-page .item-1 {
    margin-top: 0;
  }

  .case_list .case_cons .case_nr {
    padding: 10px;
  }

  .bellows {
    padding: 0;
  }

  .bellows__header a {
    padding: 15px 40px 15px 15px;
  }

  .contact_form {
    padding: 20px 15px;
  }

  .seo-page .page-content-3 .strong-list li,
  .mvideo-page .page-content-3 .d-flex .card,
  .googlemap-page .page-content-4 .d-flex .card {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .seo-page .page-content-3 .strong-list li {
    padding: 15px 10px;
  }

  .seo-page .page-content-5 .d-flex .card {
    width: 95%;
    margin: 30px 20px;
  }

  .seo-page .page-content-5 .d-flex .card_2::before {
    background: #fff;
  }

  .web-page .page-content-1>div:nth-of-type(2),
  .web-page .page-content-2 .gallery {
    padding: 0;
  }

  .web-page .page-content-1 .item {
    max-width: 100%;
    height: 135px;
    min-height: unset;
    padding: 10px;
    font-size: 14px;
    border-radius: 0;
    margin: 15px auto;
  }

  .web-page .page-content-1 .item img {
    max-height: 60px;
  }

  .web-page .page-content-3 .item-program {
    flex-flow: column wrap;
    width: 95%;
    margin: 0 auto;
  }

  .web-page .page-content-3 .card {
    margin: 30px auto;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .web-page .page-content-3 .program-price {
    min-height: unset;
  }

  .program-page .program-info {
    margin-top: 20px;
  }

  .program-page .card {
    margin-top: 20px;
  }

  .program-price .note {
    margin: 10px 0 0;
    display: block;
    font-size: 15px;
  }

  .program-price .note::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 16px 8px;
    border-color: transparent transparent #0d204b transparent;
    top: -13px;
    left: 15px;
  }

  .program-1 .note::before {
    border-color: transparent transparent #7552cc transparent;
  }

  .program-2 .note::before {
    border-color: transparent transparent #0cb9c1 transparent;
  }

  .program-page .card>tbody>tr>td {
    width: 100%;
    display: block;
    padding: 10px;
  }

  .program-1 .page-content-3 .h2,
  .program-2 .page-content-3 .h2 {
    font-size: 24px;
  }

  .program-page .item-link a {
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 15px;
    margin: 15px 0;
    display: block;
  }

  .ad-page .page-content .h3 strong {
    font-size: 28px;
  }

  .ad-page .page-content .h3 {
    font-size: 20px;
  }

  .ad-page .page-content .case-info .dl-horizontal dt {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .ad-page .page-content-7 .strong-list {
    padding: 0;
  }

  .ad-page .page-content-7 .strong-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px 15px;
  }

  .ad-page .page-content-7 .strong-list li .h3>span {
    padding: 5px 10px;
  }

  .marketing-page .h1 {
    font-size: 30px;
  }

  .marketing-page .page-content-5 .h1 {
    font-size: 25px;
  }

  .marketing-page .page-content-1 .item-img img {
    max-height: 120px;
  }

  .marketing-page .page-content-1 .item-body {
    width: 100%;
    margin-left: 0;
    margin-top: -25px;
  }

  .marketing-page .page-content-2 .d-flex .card,
  .blogger-page .page-content-3 .d-flex .card,
  .mvideo-page .page-content-4 .d-flex .card,
  .youtuber-page .page-content-2 .d-flex .card,
  .googlemap-page .page-content-5 .d-flex .card,
  .koc-page .page-content-3 .d-flex .card {
    width: 100%;
  }

  .marketing-page .page-content-2 .d-flex .card .h3 {
    font-size: 20px;
  }

  .marketing-page .page-content-3 .d-flex .item-img {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .marketing-page .page-content-4 {
    text-align: left;
  }

  .marketing-page .page-content-4 .operation-list li,
  .ecvideo-page .page-content-4 .strong-list li,
  .googlemap-page .page-content-3 .strong-list li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .blogger-page .page-content-1 .h3>span {
    display: block;
  }

  .blogger-page .page-content-1 .h3 strong {
    font-size: 32px;
  }

  .blogger-page .page-content-2 .quote .h2 {
    font-size: 20px;
  }

  .blogger-page .page-content-2 .quote {
    width: 90%;
    margin-left: 5%;
  }

  .blogger-page .page-content-2 .quote::before,
  .blogger-page .page-content-2 .quote::after {
    font-size: 100px;
    width: 60px;
    height: 60px;
  }

  .blogger-page .page-content-2 .quote::before {
    top: -35px;
  }

  .blogger-page .page-content-2 .quote::after {
    bottom: -25px;
  }

  .mvideo-page .page-content-2 {
    background-size: 150px, 150px;
  }

  .mvideo-page .page-content-2 .h2 {
    font-size: 24px;
  }

  .mvideo-page .page-content-3 .d-flex .card {
    padding: 30px;
  }

  .mvideo-page .page-content-3 .d-flex .card_4 {
    background: #e8eaf1;
  }

  .mvideo-page .page-content-3 .d-flex .card_3 {
    background: #f5f6f9;
  }

  .mvideo-page .page-content-5 .video-case>div {
    padding: 0;
  }

  .mvideo-page .page-content-5 .video-case .card {
    margin: 15px auto;
  }

  .mvideo-page .page-content-5 .h3 {
    font-size: 20px;
  }

  .mvideo-page .page-content-5 .h1 {
    font-size: 28px;
  }

  .mvideo-page .page-content-6 .quote,
  .fans-page .page-content-5 .quote {
    width: 90%;
    padding: 40px 20px;
  }

  .mvideo-page .page-content-6 .quote .h3,
  .googlemap-page .page-content-5 .h3 {
    font-size: 20px;
  }

  .mvideo-page .page-content-6 .program-price {
    min-height: unset;
  }

  .fans-page .page-content-2 .h1 {
    font-size: 22px;
  }

  .fans-page .page-content-2 .h1.title {
    font-size: 24px;
  }

  .fans-page .page-content-2 .h2 {
    font-size: 17px;
  }

  .fans-page .page-content-2 .num-wrap .card,
  .googlemap-page .page-content-2 .num-wrap .card,
  .koc-page .page-content-1 .num-wrap .card {
    padding: 10px 15px;
  }

  .fans-page .page-content-2 .num-wrap .card img,
  .googlemap-page .page-content-2 .num-wrap .card img,
  .koc-page .page-content-1 .num-wrap .card img {
    width: 50px;
    height: 50px;
  }

  .fans-page .page-content-2 .num-wrap .number-animate,
  .googlemap-page .page-content-2 .num-wrap .number-animate,
  .koc-page .page-content-1 .num-wrap .number-animate {
    font-size: 2.5em;
  }

  .fans-page .page-content-3 figure img {
    max-height: 150px;
  }

  .fans-page .page-content-4 .card {
    flex-direction: column;
    padding: 20px;
  }

  .fans-page .page-content-4 .card figure img {
    max-height: 180px;
  }

  .fans-page .page-content-4 .card figure {
    margin-left: auto;
  }

  .fans-page .page-content-4 .card_2 figure,
  .fans-page .page-content-4 .card_4 figure {
    margin-right: auto;
    margin-left: 0;
  }

  .fans-page .page-content-4 .card .card-body {
    padding: 0;
    margin-top: 15px;
  }

  .fans-page .page-content-5 .program-price {
    min-height: unset;
  }

  .youtuber-page .page-content-2 {
    text-align: left;
  }

  .seo_ol>ol>li,
  .im_ol>ol>li {
    width: auto;
    line-height: 1.75;
  }

  .ad-page .page-content-8 img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .seo-page .page-content-2 p,
  .seo-page .page-content-3 p,
  .seo-page .page-content-3 .h3 {
    padding: 0 20px;
  }

  .ad-page .page-content .ad-list .card {
    width: 100%;
  }

  .ecvideo-page .page-content-2 .subtitle,
  .ecvideo-page .page-content-4 .h3 {
    font-size: 20px;
  }

  .form-control[type=url] {
    width: 100%;
  }

  .case_list .img-hover {
    height: auto;
  }

  ul.ecLink li>a {
    padding: 5px 0;
  }

  .googlemap-page .page-content-2,
  .googlemap-page .page-content-4,
  .googlemap-page .page-content-3 .strong-list li p {
    text-align: justify;
  }

  .section-service .wrap-content .item-text p {
    text-align: center;
  }

  .koc-page .page-content-1 .num-wrap .card {
    min-width: 130px;
  }

  .koc-page .page-content-1 .num-wrap p {
    text-align: center;
    font-size: 80%;
  }

  .koc-page .page-content-2 .rwd-table {
    padding: 10px;
  }

  .rwd-table .responsive-table tbody td {
    font-size: 16px;
  }

  .koc-page .page-content-4 .timeline::before {
    left: 25px;
  }

  .koc-page .page-content-4 .timeline>li>.timeline-badge {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
  }

  .koc-page .page-content-4 .timeline>li>.timeline-card {
    padding: 60px 10px 15px 50px;
  }

  .koc-page .page-content-4 .timeline-card .card-body .h3 {
    font-size: 24px;
  }

  .koc-page .page-content-4 .timeline-card .card-body .h3>span {
    margin-right: 5px;
    font-weight: bold;
  }

  .koc-page .page-content-4 .intro figure img {
    max-width: 100%;
  }

  .marketing-page .page-content-5 .d-flex {
    flex-direction: column;
  }

  .marketing-page .page-content-5 .column-reverse {
    flex-direction: column-reverse;
  }

  .web-page .web-process {
    margin: 30px auto 15px;
  }

  .web-page .web-process::before {
    top: 50%;
  }

  .web-page .web-process li a {
    padding: 10px 5px;
  }

  .web-page .web-process {
    flex-direction: row;
    align-items: flex-start;
  }

  .web-page .web-process li .step {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 0;
  }

  .web-page .web-process li .step-title {
    display: none;
  }

  .web-page .page-content-4 .tab-pane {
    padding: 20px;
  }

  .web-page .page-content-4 .tab-pane .title {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    color: #a07d0c;
    border-bottom: 1px solid #e5e5e5;
  }

  .web-page .page-content-4 .tab-pane .h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (max-width: 320px) {
  ul.ecLink li:last-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #main {
    margin-top: 65px;
  }

  .menu {
    margin-right: 20px;
  }

  .navbar-nav>li>a {
    padding: 5px 15px;
  }

  .wrap,
  .page-content {
    padding: 45px 4%;
  }

  .page-title {
    font-size: 40px;
  }

  .page-title .en {
    font-size: 26px;
  }

  .section-service .wrap-content .item-body {
    padding: 20px;
    font-size: 16px;
  }

  .section-service .wrap-content .item-title {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .section-service .wrap-content .item-text {
    margin-left: 0;
  }

  .section-advantage {
    padding-bottom: 250px;
  }

  .section-advantage .wrap-content .item {
    margin-bottom: 30px;
  }

  .section-case .wrap-content-1 .item {
    padding: 20px;
  }

  .footer {
    padding: 30px 4%;
  }

  .footer .item {
    padding: 20px;
    margin-bottom: 30px;
  }

  .fans-page .page-content-3 .table {
    margin-left: 0px;
  }

  .about-page .page-content-1 {
    padding: 0;
  }

  .about-page .page-content-1 .text-item {
    text-align: center;
    padding: 20px;
    margin-top: 0;
  }

  .about-page .page-content-1 .h1,
  .about-page .page-content-1 .h2 {
    text-align: center;
  }

  .about-page .service-list .item-title {
    min-height: 65px;
  }

  .about-page .service-list .item-text p {
    min-height: 100px;
  }

  .seo-page .page-content-3 .strong-list li .h3,
  .mvideo-page .page-content-3 .d-flex .card .h3 {
    font-size: 22px;
  }

  .seo-page .page-content-5 .d-flex .card {
    width: 40%;
    margin: 30px 20px;
  }

  .seo-page .page-content-5 .d-flex .card_3::before,
  .seo-page .page-content-5 .d-flex .card_4::before {
    background: #fff;
  }

  .marketing-page .page-content-2 .d-flex .card {
    width: 45%;
    margin: 0px 20px 45px;
  }

  .blogger-page .page-content-3 .d-flex .card {
    width: 45%;
    margin: 30px 20px;
  }

  .mvideo-page .page-content-3 .d-flex .card {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mvideo-page .page-content-3 .d-flex .card_3 {
    background: #e8eaf1;
  }

  .mvideo-page .page-content-3 .d-flex .card_4 {
    background: #f5f6f9;
  }

  .fans-page .page-content-3 .card .title>span {
    font-size: 28px;
  }

  .fans-page .page-content-3 .table>tbody>tr {
    display: flex;
    flex-direction: column;
  }

  .fans-page .page-content-3 .table>tbody>tr>td {
    text-align: center;
  }

  .youtuber-page .page-content-2 .d-flex .card {
    width: 45%;
    margin: 0 20px 45px;
  }

  .web-page .page-content-3 .item-program {
    width: 90%;
    margin-left: 5%;
  }

  .web-page .page-content-3 .program-price {
    min-height: 140px;
  }

  .web-page .page-content-3 .list-feature {
    padding: 0;
  }

  .program-page .program-info {
    width: 80%;
    margin-left: 10%;
  }

  .marketing-page .page-content-1 .item-body {
    width: 100%;
    margin-left: 0;
  }

  .ad-page .page-content .case-info .dl-horizontal dt {
    width: 100%;
    display: block;
  }

  .ad-page .page-content .case-info .dl-horizontal dd {
    display: block;
    margin-left: 25px;
    font-size: 16px;
  }

  .ad-page .page-content-7 .item-body {
    width: 100%;
    margin-left: 0;
  }

  .ad-page .page-content-7 .strong-list li {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .googlemap-page .page-content-3 .strong-list li {
    list-style: none;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .koc-page .page-content-3 .d-flex .card p {
    text-align: left;
  }

  .koc-page .page-content-4 .timeline-card .card-body .h3>span {
    font-size: 36px;
  }

  .web-page .page-content-4 .web-process-cont {
    width: 100%;
    margin-left: 0;
  }

  .web-page .web-process li {
    padding: 0 10px;
  }

  .web-page .web-process li .step {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  #main {
    margin-top: 80px;
  }

  .wrap,
  .page-content {
    padding: 45px 6%;
  }

  .section-service .wrap-content .item-body {
    padding: 30px 45px;
  }

  .section-service .wrap-content .item-title {
    margin-top: 10px;
  }

  .section-advantage {
    padding-bottom: 250px;
  }

  .footer {
    padding: 30px 6%;
  }

  .footer .item {
    padding: 20px;
    min-height: 250px;
  }

  .seo-page .page-content-5 .d-flex .card {
    width: 40%;
    margin: 30px 20px;
  }

  .seo-page .page-content-5 .d-flex .card_3::before,
  .seo-page .page-content-5 .d-flex .card_4::before {
    background: #fff;
  }

  .blogger-page .page-content-3 .d-flex .card {
    width: 40%;
  }

  .fans-page .page-content-3 .table {
    margin-left: 5px;
  }

  .koc-page .page-content-3 .d-flex .card p {
    text-align: left;
  }

  .koc-page .page-content-4 .timeline-card .card-body .h3>span {
    font-size: 45px;
  }

  .web-page .page-content-4 .web-process-cont {
    width: 100%;
    margin-left: 0;
  }
}


@media (min-width: 1440px) and (max-width: 1919px) {

  .wrap,
  .page-content {
    padding: 45px 8%;
  }

  .section-service .wrap-content .item-title {
    margin-top: 25px;
  }

  .section-advantage {
    padding-bottom: 250px;
  }

  .footer {
    padding: 30px 8%;
  }

  .footer .item {
    padding: 20px;
  }

  .koc-page .page-content-3 .d-flex .card p {
    text-align: left;
  }
}


@media (max-width: 767px){
.page-content {
    padding: 25px 0px;
    text-align: justify;
}
}