@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700|Noto+Sans+TC:300,400,500,700&display=swap");
* {
  position: relative;
  font-family: 'Noto Sans', 'Noto Sans CJK TC', 'Noto Sans CJK SC', 'Noto Sans CJK', 'Source Han Sans TC', 'Source Han Sans SC', 'Source Han Sans CN', 'Source Han Sans', 'Noto Sans TC', '微軟正黑體', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #464646;
  -webkit-box-sizing: border-box;
    -webkit-box-sizing--moz-box-sizing: border-box;
      -webkit-box-sizing--moz-box-sizing-box-sizing: border-box; }
  *::-moz-selection {
    background: #bce8fc;
    color: #fff; }
  *::selection {
    background: #bce8fc;
    color: #fff; }
  *::-moz-selection {
    background: #bce8fc;
    color: #fff; }

html, body {
  font-size: calc(16px * 10 / 16);
  width: 100%;
  height: auto;
  margin: 0; }
  /* html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 15px; }
  html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    border-left: 1px solid rgba(128, 128, 128, 0.2); }
  html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: padding-box;
    background-color: #bce8fc;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover {
    background-color: #bccfff; } */

#hover-mobile {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: auto;
  z-index: -9999; }
  #hover-mobile .hover-bg {
    display: inline-block;
    width: 100%;
    height: 100%; }

.transition {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-image: -webkit-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: -o-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: linear-gradient(-82deg, #bdfffa, #bccfff);
  -webkit-animation: animateOut 0.8s both;
  animation: animateOut 0.8s both;
  z-index: 99999; }

.transition.animateIn {
  width: 0;
  left: 0;
  -webkit-animation: animateIn 0.8s both;
  animation: animateIn 0.8s both; }

/* ------ Burger ------ */
#burger-area, #burger-area-inner {
  z-index: 100; }

.burger {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 6vw;
  top: 4vh;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(70, 70, 70, 0.2);
  box-shadow: 0 2px 10px 0 rgba(70, 70, 70, 0.2);
  cursor: pointer;
  visibility: hidden;
  z-index: 10; }
  .burger:hover .span {
    margin: 5px; }
    .burger:hover .span:nth-child(1) {
      -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
      transform: rotate(-15deg); }
    .burger:hover .span:nth-child(2) {
      -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
      transform: rotate(15deg); }
  .burger:hover .span-area.isOpen {
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important; }
  .burger .span-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%; }
    .burger .span-area .span {
      width: 55%;
      height: 4px;
      margin: 5px;
      background-color: #464646;
      -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
      transform-origin: center center; }
  .burger .span-area.isOpen .span {
    width: 70%;
    margin: -2.5px; }
    .burger .span-area.isOpen .span:nth-child(1) {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .burger .span-area.isOpen .span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

.ul-burger {
  position: fixed;
  width: 0;
  height: 100vh;
  right: 0;
  top: 0;
  background-image: -webkit-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: -o-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: linear-gradient(-82deg, #bdfffa, #bccfff);
  -webkit-box-shadow: -2px 0 8px 0 rgba(70, 70, 70, 0.25);
  box-shadow: -2px 0 8px 0 rgba(70, 70, 70, 0.25);
  overflow: hidden;
  visibility: hidden !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .ul-burger .btn-burger > ul {
    display: inline-block;
    width: 28vw;
    left: 0;
    top: 48vh;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .ul-burger .btn-burger .p-btn {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: 5px 4vw 0 8vw !important;
    margin-bottom: 3vh;
    -webkit-transition: 0;
    -o-transition: 0;
    transition: 0; }
    .ul-burger .btn-burger .p-btn:hover {
      color: #fff; }
      .ul-burger .btn-burger .p-btn:hover::before {
        width: 100%;
        left: 0; }
    .ul-burger .btn-burger .p-btn::before {
      content: '';
      display: block;
      position: absolute;
      width: 0;
      height: 100%;
      right: 0;
      top: 0;
      background-color: #464646;
      z-index: -1;
      -webkit-transition: 0;
      -o-transition: 0;
      transition: 0; }
  .ul-burger .btn-burger .p-btn.active {
    color: #fff; }
    .ul-burger .btn-burger .p-btn.active::before {
      width: 100%;
      left: 0; }
  .ul-burger .p-btn {
    font-size: 1.8rem !important;
    letter-spacing: 0.4rem;
    color: #464646;
    text-align: left; }

@media (max-width: 991px) {
  .burger {
    visibility: visible; }
    .burger .span-area {
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .burger .span-area .span {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
  .ul-burger {
    visibility: visible !important; }
    .ul-burger .btn-burger .p-btn, .ul-burger .btn-burger .p-btn::before {
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; } }

@media (max-width: 575px) {
  .burger {
    width: 40px;
    height: 40px; }
  .ul-burger .btn-burger > ul {
    width: 40vw; }
  .ul-burger .p-btn {
    font-size: 1.7rem !important; } }

/* ------ Labels ------ */
a {
  text-decoration: none !important;
  color: inherit; }
  a:hover {
    color: inherit; }

img {
  width: 100%; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }

/* ------ Fonts ------ */
h1, h2, h3, h4, h5, h6, p {
  margin: 0; }

h1.slogan {
  font-size: 3.2rem;
  letter-spacing: 1.9rem;
  line-height: 2.4;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-animation: appear 1.6s both;
  animation: appear 1.6s both; }
  h1.slogan::before {
    content: '';
    display: block;
    position: absolute;
    width: 60%;
    height: 0;
    left: 28%;
    top: 0;
    background-color: #464646; }

@-webkit-keyframes appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes slogan-appear {
  0% {
    height: 0;
    top: 0;
    bottom: auto; }
  48% {
    height: 100%;
    top: 0;
    bottom: auto; }
  52% {
    height: 100%;
    top: auto;
    bottom: 0; }
  100% {
    height: 0;
    top: auto;
    bottom: 0; } }

@keyframes slogan-appear {
  0% {
    height: 0;
    top: 0;
    bottom: auto; }
  48% {
    height: 100%;
    top: 0;
    bottom: auto; }
  52% {
    height: 100%;
    top: auto;
    bottom: 0; }
  100% {
    height: 0;
    top: auto;
    bottom: 0; } }

h2.title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.28rem; }

h2.sub-title {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  margin-top: 0.8vw; }

h3.title-small {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.55rem; }

h3.item {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.8rem;
  line-height: 2; }

h3.tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.22rem;
  color: #fff;
  padding: 4px 0 0 2px;
  margin-top: 0.8vw;
  background-color: #464646; }

p {
  letter-spacing: 0.5rem;
  line-height: 2;
  text-align: justify;
  text-justify: auto; }

p.en {
  font-size: 1.6rem !important;
  line-height: 1.8;
  text-align: left; }

.p-btn {
  font-weight: 400;
  letter-spacing: 0.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.p-footer {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.4rem;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.tel p, .tel a {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.55rem; }

p.copyright {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.24rem;
  text-align: center; }

a.btn-more, .btn-send {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  text-align: center; }

.btn-send {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.45rem;
  text-align: center; }

@media (max-width: 1366px) {
  h1.slogan {
    line-height: 2; } }

@media (max-width: 1200px) {
  h1.slogan {
    font-size: 3.1rem;
    letter-spacing: 1.7rem;
    line-height: 1.8; } }

@media (max-width: 1024px) {
  h3.item {
    letter-spacing: 0.6rem;
    line-height: 2; }
  p {
    letter-spacing: 0.3rem;
    line-height: 1.8; }
  .p-footer {
    line-height: 1.4; } }

@media (max-width: 575px) {
  h1.slogan {
    font-size: 2.6rem;
    letter-spacing: 1rem;
    line-height: 1.7; }
  h2.title {
    font-size: 4rem; }
  h3.title-small {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
    line-height: 1.5; }
  h3.item {
    letter-spacing: 0.4rem;
    line-height: 2; } }

/* ------ Adjustments ------ */
.p-btn, .p-footer {
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .p-btn:hover, .p-footer:hover {
    color: #fff; }
    .p-btn:hover::before, .p-footer:hover::before {
      width: 100%;
      left: 0; }
  .p-btn::before, .p-footer::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #464646;
    z-index: -1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }

.p-btn.active, .p-footer.active {
  color: #fff; }
  .p-btn.active::before, .p-footer.active::before {
    width: 100%;
    left: 0; }

a.btn-more, .btn-send {
  display: block;
  width: 100%;
  padding: 15px 4vw 15px 4vw;
  background-image: -webkit-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: -o-linear-gradient(172deg, #bdfffa, #bccfff);
  background-image: linear-gradient(-82deg, #bdfffa, #bccfff);
  background-size: 150%;
  background-position: 99% center;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }
  a.btn-more:hover, .btn-send:hover {
    background-position: 0 center; }

@media (max-width: 575px) {
  a.btn-more {
    padding: 10px 4vw 10px 4vw; } }

/* ------ Keyframes ------ */
@-webkit-keyframes animateIn {
  to {
    width: 100%; } }
@keyframes animateIn {
  to {
    width: 100%; } }

@-webkit-keyframes animateOut {
  to {
    width: 0; } }

@keyframes animateOut {
  to {
    width: 0; } }

/* ------ Layouts ------ */
#banner_wrapper {
  width: 100%;
  height: 100vh;
  padding-top: 13.5vh; }

/* -- nav#navbar -- */
nav#navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 70%;
  height: 45px;
  left: -4vw;
  margin: 0 auto 30px auto; }
  nav#navbar a.logo-area {
    display: block;
    height: 100%; }
    nav#navbar a.logo-area img {
      width: auto;
      height: 100%; }
  nav#navbar .btn-area {
    position: absolute;
    right: 0;
    bottom: 0; }
    nav#navbar .btn-area ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    nav#navbar .btn-area li .p-btn {
      display: block;
      padding: 4px 1vw 0 1vw; }

/* -- header#header -- */
header#header .swiper-container.swiper1 {
  width: 72vw;
  left: 4vw; }

header#header .swiper-container.swiper2 {
  position: absolute;
  width: 140px;
  right: 7.3vw;
  top: -60px; }
  header#header .swiper-container.swiper2 .swiper-slide.swiper-slide-active h1.slogan:nth-child(1)::before,
  header#header .swiper-container.swiper2 .swiper-slide.swiper-slide-duplicate-active h1.slogan:nth-child(1)::before {
    -webkit-animation: slogan-appear 1.6s 0.2s both;
    animation: slogan-appear 1.6s 0.2s both; }
  header#header .swiper-container.swiper2 .swiper-slide.swiper-slide-active h1.slogan:nth-child(2)::before,
  header#header .swiper-container.swiper2 .swiper-slide.swiper-slide-duplicate-active h1.slogan:nth-child(2)::before {
    -webkit-animation: slogan-appear 1.6s both;
    animation: slogan-appear 1.6s both; }

header#header .img-overflow {
  width: 0;
  height: 65vh;
  background-size: cover;
  -webkit-animation: animateIn 1.5s 0.8s both cubic-bezier(0.7, 0.02, 0.27, 0.99);
  animation: animateIn 1.5s 0.8s both cubic-bezier(0.7, 0.02, 0.27, 0.99); }

header#header .img-year {
  background-position: center center; }

header#header .img-overflow.img01 {
  background-position: 5% center; }

header#header .img-overflow.img02 {
  background-position: 90% center; }

header#header .img-overflow.img03 {
  background-position: 95% center; }

header#header .slogan-area {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

header#header .btn-area {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 7.2vw;
  bottom: -10px;
  z-index: 12; }
  header#header .btn-area .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 65px;
    height: 65px;
    margin-left: 30px;
    border: 1px solid #464646;
    background-color: #fff;
    font-size: 2rem; }

header#header .item-area {
  position: absolute;
  right: 78.5%;
  bottom: 25px;
  padding: 50px 15px 15px 55px;
  background-color: #fff;
  z-index: 10; }

/* -- section#section_service -- */
section#section_service {
  padding: 4vw 6vw 0 6vw; }
  section#section_service .container {
    max-width: 1550px; }
  section#section_service .col-md-6:nth-child(odd) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  section#section_service .col-md-6.order-md-1 {
    left: 2vw;
    padding: 5vw 0 7vw 0; }
    section#section_service .col-md-6.order-md-1::after {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-image: -webkit-linear-gradient(54deg, #bdfffa, #bccfff);
      background-image: -o-linear-gradient(54deg, #bdfffa, #bccfff);
      background-image: linear-gradient(36deg, #bdfffa, #bccfff);
      z-index: -1; }
    section#section_service .col-md-6.order-md-1 .img-overflow {
      left: 4vw;
      z-index: 10;
      -webkit-box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3);
      box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3); }
  section#section_service .col-md-6.order-md-2 .text-area {
    margin: -14vw 0 0 10vw; }
  section#section_service .col-md-6.order-md-3 {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    section#section_service .col-md-6.order-md-3 .text-area {
      left: 1.5vw;
      top: -5vw;
      padding: 2.5vw 0.8vw 1.5vw 4vw;
      background-color: #fff; }
  section#section_service .col-md-6.order-md-4 .img-overflow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: -2vw; }
    section#section_service .col-md-6.order-md-4 .img-overflow img {
      width: 105%; }
  section#section_service .col-md-6.order-md-5 {
    left: 10vw;
    padding: 3vw 0 7vw 0;
    margin-top: -7vw; }
    section#section_service .col-md-6.order-md-5::after {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 18vw;
      top: 0;
      background-image: -webkit-linear-gradient(126deg, #bdfffa, #bccfff);
      background-image: -o-linear-gradient(126deg, #bdfffa, #bccfff);
      background-image: linear-gradient(-36deg, #bdfffa, #bccfff);
      z-index: -1; }
    section#section_service .col-md-6.order-md-5 .img-overflow {
      -webkit-box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3);
      box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3); }
  section#section_service .col-md-6.order-md-6 .text-area {
    left: 12vw;
    top: -4vw;
    padding: 3vw 2.5vw 0.8vw 2.5vw;
    background-color: #fff; }
  section#section_service .title-area {
    left: 4vw;
    margin-bottom: -8px; }
  section#section_service h3.title-small {
    margin-bottom: 1vw; }
  section#section_service .text-area {
    -webkit-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    -o-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1); }
    section#section_service .text-area .content {
      max-width: 340px; }
  section#section_service .img-overflow {
    -webkit-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    -o-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1); }

/* -- section#section_projects -- */
section#section_projects {
  padding: 2vw 6vw 0 6vw;
  -webkit-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
  -o-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
  transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
  overflow: hidden;
  z-index: 10; }
  section#section_projects .container {
    max-width: 1450px; }
  section#section_projects .col-md-4 {
    padding: 0.5vw; }
  section#section_projects a.img-overflow {
    display: block; }
    section#section_projects a.img-overflow:hover .text-area {
      opacity: 1;
      visibility: visible; }
      section#section_projects a.img-overflow:hover .text-area .content {
        opacity: 1; }
  section#section_projects .title-area {
    left: 6.5vw;
    margin-bottom: 7vw; }
  section#section_projects .text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 4vw 0 4vw;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    section#section_projects .text-area .content {
      opacity: 0;
      -webkit-transition: 1s;
      -o-transition: 1s;
      transition: 1s; }
    section#section_projects .text-area h3.title-small {
      font-weight: 400; }

/* -- section#section_clients -- */
section#section_clients {
  padding: 12vw 6vw 5vw 4vw;
  margin-top: -8vw;
  overflow: hidden; }
  section#section_clients::after {
    content: '';
    display: block;
    position: absolute;
    width: 78vw;
    height: 100%;
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(54deg, #bdfffa, #bccfff);
    background-image: -o-linear-gradient(54deg, #bdfffa, #bccfff);
    background-image: linear-gradient(36deg, #bdfffa, #bccfff);
    z-index: -1; }
  section#section_clients .container {
    max-width: 1350px; }
  section#section_clients .col-md-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  section#section_clients .col-md-12:last-child {
    left: 7vw;
    padding: 15px 20% 15px 20%;
    background-color: #fff;
    -webkit-box-shadow: 3px 6px 30px 0 rgba(70, 70, 70, 0.1);
    box-shadow: 3px 6px 30px 0 rgba(70, 70, 70, 0.1); }
  section#section_clients .img-overflow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 85px; }
    section#section_clients .img-overflow img {
      width: auto;
      height: 100%; }
  section#section_clients .title-area {
    left: 3vw;
    margin-bottom: 6vw;
    text-align: right; }
  section#section_clients .swiper-button-prev, section#section_clients .swiper-button-next {
    font-size: 3rem;
    width: auto;
    height: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    background-image: none; }
    section#section_clients .swiper-button-prev:focus, section#section_clients .swiper-button-next:focus {
      outline: none; }
  section#section_clients .swiper-button-prev {
    left: 12%; }
  section#section_clients .swiper-button-next {
    right: 12%; }

/* -- section#section_contact -- */
section#section_contact {
  padding: 8.5vw 6vw 0 6vw; }
  section#section_contact .container {
    max-width: 1250px; }
  section#section_contact .col-md-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  section#section_contact .col-md-6.order-md-1 {
    left: 4vw;
    top: -4vw;
    z-index: 10; }
  section#section_contact .col-md-6.order-md-2 {
    left: -2vw; }
  section#section_contact .text-area h2.title {
    margin-bottom: 1vw; }
  section#section_contact .text-area .content {
    max-width: 550px;
    margin: 1vw 0 4vw 2px; }
    section#section_contact .text-area .content .tel {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-top: 2.5vw; }
  section#section_contact .img-overflow {
    -webkit-box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3);
    box-shadow: 25px 15px 85px 0 rgba(70, 70, 70, 0.3);
    -webkit-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    -o-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1); }

/* -- footer#footer -- */
footer#footer {
  padding: 2vw 6vw 6vw 6vw; }
  footer#footer .col-md-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  footer#footer a.logo-area {
    display: block;
    width: 100px; }
    footer#footer a.logo-area::before {
      content: '';
      display: block;
      width: 1px;
      height: 72px;
      left: 50%;
      margin: 0 auto 2.4vw auto;
      background-color: #464646; }
  footer#footer .btn-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2.2vw 0 3.5vw 0; }
    footer#footer .btn-area ul li .p-footer {
      display: block;
      padding: 5px 1vw 0 1vw; }
  footer#footer p.copyright {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 1.5vw; }
  footer#footer .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 165px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    footer#footer .link a {
      margin: 0 8px 5px 8px; }
    footer#footer .link #qr {
      position: absolute;
      width: 70px;
      height: 70px;
      left: calc(100% + 10px);
      bottom: 0;
      padding: 4px;
      -webkit-box-shadow: 0 2px 5px 0 rgba(70, 70, 70, 0.2);
      box-shadow: 0 2px 5px 0 rgba(70, 70, 70, 0.2);
      background-color: #fff;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }

/* ------ Inner ------ */
/* -- Form Start -- */
form.form {
  float: right;
  width: 46vw;
  padding: 4.7vw 7vw 4.7vw 7vw;
  margin-top: 2.5vw;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  text-align: center; }

.form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .form-wrapper .form-group {
    width: 50%; }
  .form-wrapper .form-group:nth-child(1) {
    padding-right: 1vw; }
  .form-wrapper .form-group:nth-child(2) {
    padding-left: 1vw; }

.form-group {
  margin-bottom: 2vw; }
  .form-group label {
    width: 100%; }
  .form-group span.red-dot {
    color: red !important;
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8); }
  .form-group .enter-block {
    -webkit-appearance: none;
    padding: 12px 15px 12px 15px;
    border: none;
    border-radius: 2px;
    border: 1px solid #9b9b9b;
    background-color: #fff;
    font-family: 'Noto Sans', 'Noto Sans CJK TC', 'Noto Sans CJK SC', 'Noto Sans CJK', 'Source Han Sans TC', 'Source Han Sans SC', 'Source Han Sans CN', 'Source Han Sans', 'Noto Sans TC', '微軟正黑體', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.4rem;
    color: #464646 !important;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .form-group input.enter-block {
    width: 100%;
    height: 40px; }
  .form-group textarea.enter-block {
    width: 100%;
    height: 150px;
    resize: none; }
  .form-group input:focus, .form-group textarea:focus {
    outline: none; }
  .form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
    color: #464646;
    opacity: 0.5; }
  .form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
    color: #464646;
    opacity: 0.5; }
  .form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
    color: #464646;
    opacity: 0.5; }
  .form-group input::placeholder, .form-group textarea::placeholder {
    color: #464646;
    opacity: 0.5; }
  .form-group h2.title-inner {
    text-align: center; }

.send-block {
  display: inline-block; }
  .send-block button.btn-send {
    padding: 10px 4vw 6px 4vw;
    border: none;
    cursor: pointer; }

@media (max-width: 991px) {
  form.form {
    width: 55vw;
    padding: 6vw 7vw 6vw 7vw;
    margin-top: 8vw; } }

@media (max-width: 767px) {
  form.form {
    width: 65vw;
    padding: 8vw 7vw 8vw 7vw; } }

@media (max-width: 575px) {
  form.form {
    width: 100%;
    padding: 12vw 7vw 12vw 7vw;
    margin-top: 10vw; }
  .form-wrapper .form-group:nth-child(1) {
    padding-right: 1.5vw; }
  .form-wrapper .form-group:nth-child(2) {
    padding-left: 1.5vw; }
  .form-group {
    margin-bottom: 3vw; }
  h3.title-small {
    margin-bottom: 4vw; }
  .send-block {
    margin-top: 4vw; } }

@media (max-width: 375px) {
  .form-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .form-wrapper .form-group {
      width: 100%; }
    .form-wrapper .form-group:nth-child(1) {
      padding-right: 0; }
    .form-wrapper .form-group:nth-child(2) {
      padding-left: 0; }
  .form-group input.enter-block {
    height: 38px; }
  .form-group textarea.enter-block {
    height: 135px; } }

/* -- form end -- */
/* -- Fonts -- */
h1.title-banner {
  position: absolute;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  padding-bottom: 1.5vw;
  background-color: #fff; }

h2.title-inner {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.8rem; }

h2.title-info {
  display: inline-block;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.75rem;
  line-height: 1;
  color: #fff;
  padding: 6px 0 0 6px;
  background-color: #464646; }

p.p-decoration {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2.6rem;
  opacity: 0.6;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr; }

p.p-numRun {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.55rem;
  line-height: 1.6;
  text-align: right; }
  p.p-numRun * {
    font-size: 3.4rem;
    font-weight: 400;
    margin-bottom: 1px; }

.odometer.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: 4s !important;
  -o-transition: 4s !important;
  transition: 4s !important; }

p.p-description {
  font-size: 1.5rem;
  letter-spacing: 0.45rem;
  line-height: 1.6;
  color: #666666; }

@media (max-width: 575px) {
  p.p-description {
    letter-spacing: 0.3rem; } }

/* -- Adjustments -- */
#decoration_inner {
  position: absolute;
  width: 50px;
  height: 100%;
  right: 5vw;
  top: 0;
  padding-top: 22vh;
  overflow: hidden; }
  #decoration_inner p.p-decoration {
    margin-bottom: 40vh; }
  #decoration_inner p.p-decoration:last-child {
    margin-bottom: 0; }

/* -- Layouts -- */
#banner_wrapper.inner {
  height: 86vh; }

/* -- header#header_inner -- */
header#header_inner {
  padding-left: 11vw; }
  header#header_inner .banner-area {
    width: 74%; }
  header#header_inner .img-overflow {
    width: 0;
    height: 45vh;
    background-size: cover;
    background-position: 90% 20%;
    -webkit-animation: appear-inner 1.5s 0.8s both cubic-bezier(0.7, 0.02, 0.27, 0.99);
    animation: appear-inner 1.5s 0.8s both cubic-bezier(0.7, 0.02, 0.27, 0.99); }

@-webkit-keyframes appear-inner {
  to {
    width: 100%; } }

@keyframes appear-inner {
  to {
    width: 100%; } }
  header#header_inner .img-overflow.banner-about {
    background-image: url("../img/banner/banner-index02.jpg"); }
  header#header_inner .img-overflow.banner-projects {
    background-image: url("../img/banner/banner-index01.jpg");
    background-position: 40% 20%; }
  header#header_inner .img-overflow.banner-procedure {
    background-image: url("../img/banner/banner-index03.jpg"); }
  header#header_inner .img-overflow.banner-contact {
    background-image: url("../img/banner/banner-index02.jpg"); }
  header#header_inner h1.title-banner.about {
    right: -10vw;
    bottom: 20px; }
  header#header_inner h1.title-banner.projects {
    right: -4vw;
    bottom: -5px; }
  header#header_inner h1.title-banner.procedure {
    right: -8.5vw;
    top: 70px; }
  header#header_inner h1.title-banner.contact {
    left: 12vw;
    bottom: -36px; }

/* -- section.inner -- */
section.inner {
  padding: 0 11vw; }

/* -- section#section_about_inner,section#section_contact_inner -- */
section#section_about_inner, section#section_contact_inner {
  padding: 0 11vw 3vw 11vw; }
  section#section_about_inner .container, section#section_contact_inner .container {
    max-width: 1450px; }
  section#section_about_inner .col-md-12:first-child, section#section_contact_inner .col-md-12:first-child {
    padding-right: 8vw; }
  section#section_about_inner .col-md-12.bg, section#section_contact_inner .col-md-12.bg {
    height: 24vw;
    min-height: 360px;
    margin-top: -200px; }
    section#section_about_inner .col-md-12.bg::after, section#section_contact_inner .col-md-12.bg::after {
      content: '';
      display: block;
      position: absolute;
      width: 71%;
      height: 100%;
      right: 0;
      top: 0;
      background-image: -webkit-linear-gradient(33deg, #bdfffa, #bccfff);
      background-image: -o-linear-gradient(33deg, #bdfffa, #bccfff);
      background-image: linear-gradient(57deg, #bdfffa, #bccfff);
      z-index: -1; }
  section#section_about_inner .col-md-12.last, section#section_contact_inner .col-md-12.last {
    padding: 12px 8vw 0 0;
    text-align: right;
    -webkit-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    -o-transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1);
    transition: 1s cubic-bezier(0.23, 0.83, 0.7, 1); }
  section#section_about_inner .text-area h2.title-inner, section#section_contact_inner .text-area h2.title-inner {
    margin-bottom: 1.5vw; }
  section#section_about_inner .text-area .content, section#section_contact_inner .text-area .content {
    max-width: 540px; }
  section#section_about_inner .text-area:first-child, section#section_contact_inner .text-area:first-child {
    margin-bottom: 6vw; }
  section#section_about_inner ul.number, section#section_contact_inner ul.number {
    margin-top: 6vw; }
    section#section_about_inner ul.number li, section#section_contact_inner ul.number li {
      display: inline-block;
      margin-left: 8vw;
      margin-bottom: 4vw; }

/* -- section#section_projects_inner -- */
section#section_projects_inner {
  left: -3vw;
  padding-bottom: 7vw; }
  section#section_projects_inner .container {
    max-width: 1320px; }
  section#section_projects_inner .col-xl-4.col-6 {
    padding: 0 1vw 4vw; }
  section#section_projects_inner .col-xl-4.col-6:nth-child(3n+1) {
    top: 1.5vw; }
  section#section_projects_inner .col-xl-4.col-6:nth-child(3n+3) {
    top: 2.5vw; }
  section#section_projects_inner a {
    display: block; }
    section#section_projects_inner a:hover .img-overflow::before {
      opacity: 1;
      visibility: visible; }
  section#section_projects_inner .img-overflow {
    -webkit-box-shadow: 3px 6px 30px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 3px 6px 30px 0 rgba(0, 0, 0, 0.12); }
    section#section_projects_inner .img-overflow::before {
      content: '➟';
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      border: 1px solid #666666;
      background-color: rgba(255, 255, 255, 0.8);
      font-size: 5rem;
      font-weight: 500;
      color: #464646;
      opacity: 0;
      visibility: hidden;
      z-index: 10;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
  section#section_projects_inner .text-area {
    padding: 0.8vw 0.5vw 0.5vw; }
    section#section_projects_inner .text-area h3.title-small {
      font-weight: 400; }
      section#section_projects_inner .text-area h3.title-small::before {
        content: '';
        display: block;
        width: 38px;
        height: 1px;
        margin: 1vw 0 0.8vw 0;
        background-color: #464646; }

/* -- section#section_procedure_inner -- */
section#section_procedure_inner {
  padding: 0 12vw 280px 8vw; }
  section#section_procedure_inner .col-md-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  section#section_procedure_inner .col-md-12:nth-child(odd) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  section#section_procedure_inner .col-md-12:nth-child(even) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  section#section_procedure_inner .procedure-wrapper.step01 {
    margin-left: 1vw; }
    section#section_procedure_inner .procedure-wrapper.step01 .text-area {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      left: 270px;
      top: 60px; }
    section#section_procedure_inner .procedure-wrapper.step01 h2.step {
      margin-right: 1.5vw; }
  section#section_procedure_inner .procedure-wrapper.step02 {
    margin-right: 8.5vw;
    margin-top: -140px; }
    section#section_procedure_inner .procedure-wrapper.step02 .text-area {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      right: 10px;
      bottom: -30px; }
    section#section_procedure_inner .procedure-wrapper.step02 h2.step {
      margin-left: 160px;
      margin-bottom: -15px; }
  section#section_procedure_inner .procedure-wrapper.step03 {
    margin-left: 2vw;
    margin-top: 2vw; }
    section#section_procedure_inner .procedure-wrapper.step03 .text-area {
      left: calc(100% + 20px);
      top: 45%; }
  section#section_procedure_inner .procedure-wrapper.step04 {
    margin-right: 11vw;
    margin-top: 160px; }
    section#section_procedure_inner .procedure-wrapper.step04 .text-area {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      left: 20px;
      top: -50px; }
    section#section_procedure_inner .procedure-wrapper.step04 h2.step {
      margin-top: 3vw; }
  section#section_procedure_inner .procedure-wrapper.step05 {
    margin-left: 10vw;
    margin-top: -300px; }
    section#section_procedure_inner .procedure-wrapper.step05 .text-area {
      left: 70px;
      top: calc(100% + 25px); }
  section#section_procedure_inner .procedure-wrapper.step06 {
    margin-right: 20vw;
    margin-top: 6vw; }
    section#section_procedure_inner .procedure-wrapper.step06 .text-area {
      left: 32px;
      top: calc(100% - 100px); }
  section#section_procedure_inner .img-overflow img {
    max-width: 400px;
    z-index: 10; }
  section#section_procedure_inner .text-area {
    position: absolute;
    white-space: nowrap; }
    section#section_procedure_inner .text-area h2.step {
      font-size: 13rem;
      font-weight: 700;
      letter-spacing: 1rem;
      line-height: 0.85;
      margin-left: -10px;
      margin-bottom: 1vw; }
    section#section_procedure_inner .text-area h2.title-inner {
      margin-bottom: 1.5vw; }
    section#section_procedure_inner .text-area p {
      text-align: left; }

/* -- section#section_contact_inner -- */
section#section_contact_inner {
  padding-bottom: 4vw; }
  section#section_contact_inner .text-area h2.title-inner {
    margin-bottom: 0.8vw; }
  section#section_contact_inner .text-area:first-child {
    margin-bottom: 3vw; }
  section#section_contact_inner a.phone h2.title-inner {
    letter-spacing: 0.65rem;
    margin: 0; }
  section#section_contact_inner ul.wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 5vw 8vw 5vw 8.4vw;
    margin: 1.5vw 0 0 3vw;
    border: 1px solid #464646; }
    section#section_contact_inner ul.wrapper > li:first-child {
      margin-right: 6vw; }
    section#section_contact_inner ul.wrapper h2.title-info {
      margin-bottom: 1.5vw; }
    section#section_contact_inner ul.wrapper p.first {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      font-weight: 400;
      margin-right: 0.5vw; }
    section#section_contact_inner ul.wrapper p {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      letter-spacing: 0.6rem; }
  section#section_contact_inner ul.child li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

/* -- section#section_404_inner -- */
section#section_404_inner {
  padding-bottom: 5vw; }
  section#section_404_inner .container-fluid {
    max-width: 1400px; }

@media (max-width: 1366px) {
  /* -- nav#navbar -- */
  nav#navbar {
    width: 75%;
    left: 7vw;
    margin: 0 0 30px 0; }
    nav#navbar .btn-area li .p-btn {
      padding: 3px 0.8vw 0 0.8vw; }
  /* -- header#header -- */
  header#header .swiper-container.swiper1 {
    width: 75vw;
    left: 2vw; }
  header#header .swiper-container.swiper2 {
    right: 6vw; }
  header#header .item-area {
    right: 75%; }
  /* -- section#section_service -- */
  section#section_service .col-md-6.order-md-5 {
    left: 8vw; }
  section#section_service .col-md-6.order-md-6 .text-area {
    left: 10vw; }
  /* -- section#section_clients -- */
  section#section_clients .title-area {
    left: 0; }
  /* -- footer#footer -- */
  footer#footer {
    padding: 2vw 6vw 7vw 6vw; }
  /* ------ Inner ------ */
  /* -- Adjustments -- */
  #decoration_inner {
    right: 5vw; }
  /* -- Layouts -- */
  #banner_wrapper.inner {
    height: 82vh; }
  /* -- header#header_inner -- */
  header#header_inner {
    padding-left: 7vw; }
    header#header_inner .banner-area {
      width: 82%; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 11vw 3vw 9vw; }
    section#section_about_inner .col-md-12.last, section#section_contact_inner .col-md-12.last {
      padding: 12px 7vw 0 0; }
  /* -- section#section_procedure_inner -- */
  section#section_procedure_inner {
    padding: 0 8vw 280px 0; }
    section#section_procedure_inner .procedure-wrapper.step04 {
      margin-top: 180px; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner .col-md-12.last {
    padding-right: 5vw; }
  section#section_contact_inner ul.wrapper {
    padding: 4.5vw 6vw 4.5vw 6.4vw;
    margin: 1.5vw 0 0 2vw; } }

@media (max-width: 1200px) {
  html, body {
    font-size: calc(15px * 10 / 16); }
  /* ------ Layouts ------ */
  #banner_wrapper {
    padding-top: 12vh; }
  /* -- nav#navbar -- */
  nav#navbar {
    width: 77%;
    left: 6vw;
    margin: 0 0 30px 0; }
    nav#navbar a.logo-area {
      height: 90%; }
    nav#navbar .btn-area li .p-btn {
      padding: 4px 0.7vw 0 0.7vw; }
  /* -- header#header -- */
  header#header .swiper-container.swiper1 {
    width: 80vw;
    left: 1vw; }
  header#header .swiper-container.swiper2 {
    right: 3vw; }
  header#header .btn-area {
    right: 6vw; }
  header#header .item-area {
    left: 0;
    right: auto; }
  /* -- section#section_service -- */
  section#section_service {
    padding: 2vw 6vw 0 6vw; }
    section#section_service .col-md-6.order-md-1 {
      left: 0; }
    section#section_service .col-md-6.order-md-2 .text-area {
      margin: -14vw 0 0 8vw; }
    section#section_service .col-md-6.order-md-4 .img-overflow {
      left: -2vw;
      margin-top: 0; }
    section#section_service .col-md-6.order-md-5 {
      left: 7vw;
      margin-top: -6vw; }
    section#section_service .col-md-6.order-md-6 .text-area {
      left: 9vw; }
  /* -- section#section_clients -- */
  section#section_clients {
    padding: 12vw 6vw 5vw 6vw; }
    section#section_clients .col-md-12:last-child {
      left: 7vw;
      padding: 10px 22% 10px 22%; }
  /* -- section#section_contact -- */
  section#section_contact {
    padding: 10vw 6vw 0 6vw; }
    section#section_contact .col-md-6.order-md-1 {
      left: 3vw; }
    section#section_contact .col-md-6.order-md-2 {
      left: -3vw; }
  /* ------ Inner ------ */
  /* -- Fonts -- */
  h3.tag {
    margin-top: 1.2vw; }
  p.p-decoration {
    letter-spacing: 2.4rem; }
  /* -- Adjustments -- */
  #decoration_inner {
    right: 2vw; }
    #decoration_inner p.p-decoration {
      margin-bottom: 38vh; }
  /* -- header#header_inner -- */
  header#header_inner {
    padding-left: 6vw; }
    header#header_inner .banner-area {
      width: 80%; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 11vw 4vw 8vw; }
    section#section_about_inner ul.number li, section#section_contact_inner ul.number li {
      margin-left: 6vw; }
  /* -- section#section_projects_inner -- */
  section#section_projects_inner {
    left: -2.5vw; }
    section#section_projects_inner .col-xl-4.col-6 {
      padding: 0 1.5vw 6vw 1.5vw; }
    section#section_projects_inner .col-xl-4.col-6:nth-child(3n+1) {
      top: 0; }
    section#section_projects_inner .col-xl-4.col-6:nth-child(3n+3) {
      top: 0; }
    section#section_projects_inner .col-xl-4.col-6:nth-child(2n+1) {
      top: -1.5vw; }
    section#section_projects_inner .text-area h3.title-small::before {
      margin: 1.4vw 0 1.2vw 0; }
  /* -- section#section_procedure_inner -- */
  section#section_procedure_inner {
    padding: 0 8vw 220px 0; }
    section#section_procedure_inner .procedure-wrapper.step01 .text-area {
      left: 240px; }
    section#section_procedure_inner .procedure-wrapper.step02 {
      margin-top: -100px; }
      section#section_procedure_inner .procedure-wrapper.step02 .text-area {
        bottom: -20px; }
      section#section_procedure_inner .procedure-wrapper.step02 h2.step {
        margin-left: 140px; }
    section#section_procedure_inner .procedure-wrapper.step03 {
      margin-top: 70px; }
    section#section_procedure_inner .procedure-wrapper.step04 {
      margin-top: 200px; }
      section#section_procedure_inner .procedure-wrapper.step04 .text-area {
        left: 30px; }
    section#section_procedure_inner .procedure-wrapper.step05 {
      margin-left: 10vw;
      margin-top: -280px; }
    section#section_procedure_inner .procedure-wrapper.step06 {
      margin-right: 16vw;
      margin-top: 10vw; }
    section#section_procedure_inner .img-overflow img {
      max-width: 360px; }
    section#section_procedure_inner .text-area h2.step {
      font-size: 12rem; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner {
    padding-bottom: 6vw; }
    section#section_contact_inner .col-md-12.last {
      padding-right: 4vw; }
    section#section_contact_inner ul.wrapper {
      padding: 4vw 6.5vw 4vw 7vw;
      margin: 1vw 0 0 2vw; }
      section#section_contact_inner ul.wrapper > li:first-child {
        margin-right: 4vw; }
      section#section_contact_inner ul.wrapper h2.title-info {
        margin-bottom: 2vw; }
      section#section_contact_inner ul.wrapper p {
        max-width: 200px; } }

@media (max-width: 1024px) {
  * {
    font-size: 1.7rem; }
  html, body {
    font-size: calc(14px * 10 / 16); }
  /* -- nav#navbar -- */
  nav#navbar {
    width: 77%;
    left: 6.5vw;
    margin: 0 0 30px 0; }
    nav#navbar a.logo-area {
      height: 88%; }
    nav#navbar .btn-area li .p-btn {
      padding: 4px 0.6vw 0 0.6vw; }
  /* -- header#header -- */
  header#header .swiper-container.swiper2 {
    right: 2.5vw; }
  /* ------ Inner ------ */
  /* -- header#header_inner -- */
  header#header_inner {
    padding-left: 6.5vw; }
    header#header_inner .banner-area {
      width: 84%; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 12vw 0vw 8vw; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner {
    padding-bottom: 5vw; } }

@media (max-width: 991px) {
  /* ------ Layouts ------ */
  #banner_wrapper {
    padding-top: 14vh; }
  /* -- nav#navbar -- */
  nav#navbar {
    width: 77%;
    left: 7vw;
    margin: 0 0 30px 0; }
    nav#navbar a.logo-area {
      height: 85%; }
    nav#navbar .btn-area {
      visibility: hidden;
      opacity: 0; }
  /* -- header#header -- */
  header#header .swiper-container.swiper1 {
    width: 76vw;
    left: 1vw; }
  header#header .swiper-container.swiper2 {
    right: 3.5vw; }
  /* -- section#section_service -- */
  section#section_service {
    padding: 1vw 4vw 0 4vw; }
    section#section_service .col-md-6.order-md-3 .text-area {
      left: 3vw; }
    section#section_service .col-md-6.order-md-4 .img-overflow {
      left: 0;
      margin-top: 0; }
      section#section_service .col-md-6.order-md-4 .img-overflow img {
        width: 110%; }
    section#section_service .col-md-6.order-md-5 {
      left: 5vw;
      padding: 5vw 0 7vw 0;
      margin-top: -4vw; }
    section#section_service .col-md-6.order-md-6 .text-area {
      left: 7vw;
      top: -2vw;
      padding: 3vw 0 0.8vw 2.5vw; }
    section#section_service .text-area .content {
      max-width: 260px; }
  /* -- section#section_projects -- */
  section#section_projects {
    padding: 10vw 5vw 0 5vw; }
  /* -- section#section_clients -- */
  section#section_clients {
    padding: 18vw 6vw 5vw 6vw;
    margin-top: -10vw; }
  /* -- section#section_contact -- */
  section#section_contact {
    padding: 18vw 4vw 0 4vw; }
  /* -- footer#footer -- */
  footer#footer {
    padding: 4vw 6vw 8vw 6vw; }
    footer#footer a.logo-area {
      width: 85px; }
      footer#footer a.logo-area::before {
        height: 60px;
        margin: 0 auto 2.6vw auto; }
    footer#footer .btn-area ul {
      margin: 2.6vw 0 4vw 0; }
  /* ------ Inner ------ */
  /* -- Adjustments -- */
  #decoration_inner {
    width: 36px;
    right: 0; }
  /* -- Layouts -- */
  #banner_wrapper.inner {
    height: 80vh; }
  /* -- header#header_inner -- */
  header#header_inner {
    padding-left: 7vw; }
    header#header_inner .banner-area {
      width: 88%; }
    header#header_inner h1.title-banner.about {
      right: -6vw; }
    header#header_inner h1.title-banner.procedure {
      right: -4.5vw; }
    header#header_inner h1.title-banner.contact {
      bottom: -20px; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 8vw 6vw 8vw; }
    section#section_about_inner .col-md-12.last, section#section_contact_inner .col-md-12.last {
      padding: 12px 7vw 0 0; }
    section#section_about_inner ul.number li, section#section_contact_inner ul.number li {
      margin-left: 2vw; }
  /* -- section#section_projects_inner -- */
  section#section_projects_inner {
    left: -1vw; }
    section#section_projects_inner .col-xl-4.col-6:nth-child(2n+1) {
      top: -2vw; }
  /* -- section#section_procedure_inner -- */
  section#section_procedure_inner {
    padding: 0 4vw 26vw 0;
    margin-top: -50px; }
    section#section_procedure_inner .procedure-wrapper.step01 {
      margin-left: 0; }
      section#section_procedure_inner .procedure-wrapper.step01 .text-area {
        left: 220px; }
    section#section_procedure_inner .procedure-wrapper.step02 {
      margin-top: -50px; }
      section#section_procedure_inner .procedure-wrapper.step02 h2.step {
        margin-left: 120px; }
    section#section_procedure_inner .procedure-wrapper.step03 {
      margin-left: 0;
      margin-top: 8vw; }
    section#section_procedure_inner .procedure-wrapper.step04 {
      margin-right: 8vw;
      margin-top: 12vw; }
      section#section_procedure_inner .procedure-wrapper.step04 .text-area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        left: auto;
        right: 100px;
        top: 80px; }
      section#section_procedure_inner .procedure-wrapper.step04 h2.step {
        margin: 0 0 -15px -30px; }
    section#section_procedure_inner .procedure-wrapper.step05 {
      margin-left: 6vw;
      margin-top: -40px; }
      section#section_procedure_inner .procedure-wrapper.step05 .text-area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        left: 160px;
        top: auto;
        bottom: 0; }
      section#section_procedure_inner .procedure-wrapper.step05 h2.step {
        margin-right: 1.5vw; }
    section#section_procedure_inner .procedure-wrapper.step06 {
      margin-right: 14vw;
      margin-top: 5.5vw; }
      section#section_procedure_inner .procedure-wrapper.step06 .text-area {
        left: 20px;
        top: calc(100% - 80px); }
    section#section_procedure_inner .img-overflow img {
      max-width: 320px; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner {
    padding-bottom: 8vw; }
    section#section_contact_inner .col-md-12.last {
      padding-right: 2vw; }
    section#section_contact_inner .text-area {
      max-width: 380px; }
    section#section_contact_inner ul.wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 8vw 6.5vw 8vw 7vw;
      margin: 9vw 0 0 4vw; }
      section#section_contact_inner ul.wrapper > li:first-child {
        margin-right: 0;
        margin-bottom: 4vw; }
      section#section_contact_inner ul.wrapper h2.title-info {
        margin-bottom: 2vw; }
      section#section_contact_inner ul.wrapper p {
        max-width: initial; } }

@media (max-width: 767px) {
  /* ------ Layouts ------ */
  #banner_wrapper {
    padding-top: 12vh; }
  /* -- header#header -- */
  header#header .swiper-container.swiper1 {
    width: 76vw;
    left: 0; }
  header#header .swiper-container.swiper2 {
    right: 2.5vw; }
  header#header .img-year {
    background-position: 37% 100%; }
  header#header .item-area {
    padding: 55px 0 12px 40px; }
  /* -- section#section_service -- */
  section#section_service {
    padding: 2vw 6vw 0 6vw;
    overflow: hidden; }
    section#section_service .col-md-6.order-md-1 {
      left: 0;
      padding: 10vw 0 14vw 0; }
      section#section_service .col-md-6.order-md-1::after {
        left: -6vw; }
    section#section_service .col-md-6.order-md-2 .text-area {
      margin: -8vw 0 0 8vw; }
    section#section_service .col-md-6.order-md-3 .text-area {
      left: 1.5vw;
      top: auto;
      padding: 4vw 0.8vw 1.5vw 4vw;
      margin-top: -10vw; }
    section#section_service .col-md-6.order-md-4 .img-overflow {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      left: calc(-6vw - 15px);
      margin-top: 20vw; }
      section#section_service .col-md-6.order-md-4 .img-overflow img {
        width: 100%; }
    section#section_service .col-md-6.order-md-5 {
      padding: 6vw 0 10vw 0;
      margin-top: 10vw; }
    section#section_service .col-md-6.order-md-6 .text-area {
      top: 0;
      padding: 4vw 2vw 0.8vw 4vw;
      margin-top: -8vw; }
  /* -- section#section_projects -- */
  section#section_projects {
    padding: 18vw 4vw 0 4vw; }
  /* -- section#section_clients -- */
  section#section_clients {
    padding: 24vw 4vw 8vw 4vw;
    margin-top: -16vw; }
    section#section_clients .col-md-12:last-child {
      left: 7vw;
      padding: 8px 22% 8px 22%; }
    section#section_clients .img-overflow {
      height: 70px; }
  /* -- section#section_contact -- */
  section#section_contact {
    padding: 16vw 4vw 0 4vw; }
    section#section_contact .col-md-6.order-md-1 {
      left: auto;
      top: auto;
      padding: 0 8vw 0 8vw;
      margin-top: -2vw; }
    section#section_contact .col-md-6.order-md-2 {
      left: -6vw; }
    section#section_contact .img-overflow {
      width: 85%; }
  /* -- footer#footer -- */
  footer#footer {
    padding: 16vw 6vw 10vw 6vw; }
    footer#footer .btn-area ul {
      margin: 4vw 0 5vw 0; }
  /* ------ Inner ------ */
  /* -- Fonts -- */
  h3.tag {
    margin-top: 3vw; }
  p.p-decoration {
    letter-spacing: 2.2rem; }
  /* -- Adjustments -- */
  #decoration_inner {
    width: 20px;
    overflow: hidden; }
    #decoration_inner p.p-decoration {
      left: 50%; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 8vw 0 8vw; }
    section#section_about_inner ul.number li, section#section_contact_inner ul.number li {
      margin-left: 2vw; }
  /* -- section#section_projects_inner -- */
  section#section_projects_inner {
    left: 0;
    padding: 0 6vw 6vw; }
    section#section_projects_inner .text-area {
      padding: 3vw 2vw 2vw; }
      section#section_projects_inner .text-area h3.title-small::before {
        margin: 3vw 0 2.8vw 0; }
  /* -- section#section_procedure_inner -- */
  section#section_procedure_inner {
    padding: 0 0 20vw 0;
    margin-top: -5vh; }
    section#section_procedure_inner .procedure-wrapper.step01 .text-area,
    section#section_procedure_inner .procedure-wrapper.step02 .text-area,
    section#section_procedure_inner .procedure-wrapper.step03 .text-area {
      white-space: normal; }
      section#section_procedure_inner .procedure-wrapper.step01 .text-area .content,
      section#section_procedure_inner .procedure-wrapper.step02 .text-area .content,
      section#section_procedure_inner .procedure-wrapper.step03 .text-area .content {
        width: 200px; }
    section#section_procedure_inner .procedure-wrapper.step01 {
      margin-left: -6vw; }
    section#section_procedure_inner .procedure-wrapper.step02 {
      margin-top: 4vw; }
      section#section_procedure_inner .procedure-wrapper.step02 h2.step {
        margin-left: 100px; }
    section#section_procedure_inner .procedure-wrapper.step03 {
      margin-left: -6vw;
      margin-top: 12vw; }
      section#section_procedure_inner .procedure-wrapper.step03 .text-area {
        top: 30%; }
    section#section_procedure_inner .procedure-wrapper.step04 {
      margin-right: 10vw;
      margin-top: 14vw; }
      section#section_procedure_inner .procedure-wrapper.step04 h2.step {
        margin: 0 0 -15px -80px; }
    section#section_procedure_inner .procedure-wrapper.step05 {
      margin-left: 2vw;
      margin-top: -20px; }
    section#section_procedure_inner .procedure-wrapper.step06 {
      margin-right: 14vw;
      margin-top: 8vw; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner {
    padding-bottom: 0; }
    section#section_contact_inner .col-md-12.last {
      padding-right: 0; }
    section#section_contact_inner .text-area {
      max-width: 320px; }
    section#section_contact_inner .text-area:first-child {
      margin-bottom: 5vw; } }

@media (max-width: 575px) {
  /* -- nav#navbar -- */
  nav#navbar a.logo-area {
    height: 75%; }
  /* -- header#header -- */
  header#header .swiper-container.swiper2 {
    width: 80px;
    right: 6vw; }
  header#header .btn-area .btn {
    width: 50px;
    height: 50px;
    margin-left: 15px; }
  header#header .item-area {
    padding: 8vw 2vw 2vw 6vw;
    bottom: 20px; }
  /* -- section#section_service -- */
  section#section_service {
    padding: 6vw 6vw 0 6vw; }
    section#section_service .col-md-6.order-md-3 .text-area {
      left: 1.5vw;
      padding: 6.5vw 2vw 3.5vw 6vw; }
    section#section_service .col-md-6.order-md-6 .text-area {
      padding: 6.5vw 3.5vw 2vw 6vw; }
    section#section_service .title-area {
      left: 0;
      margin-bottom: 0; }
    section#section_service h3.title-small {
      margin-bottom: 2vw; }
  /* -- section#section_projects -- */
  section#section_projects {
    padding: 16vw 6vw 0 6vw; }
    section#section_projects .col-md-4 {
      padding: 0 10px 2vw 10px; }
    section#section_projects .title-area {
      left: auto;
      margin-bottom: 8vw; }
    section#section_projects .text-area {
      padding: 0 12vw 0 12vw; }
      section#section_projects .text-area h3.title-small {
        font-size: 1.9rem; }
  /* -- section#section_clients -- */
  section#section_clients {
    padding: 30vw 4vw 8vw 4vw;
    margin-top: -10vw; }
    section#section_clients .col-md-12:last-child {
      left: 6vw;
      padding: 4px 14vw 4px 14vw; }
    section#section_clients .title-area {
      margin-bottom: 8vw; }
    section#section_clients .img-overflow {
      height: 15vw; }
    section#section_clients .swiper-button-prev {
      left: 8%; }
    section#section_clients .swiper-button-next {
      right: 8%; }
  /* -- section#section_contact -- */
  section#section_contact {
    padding: 18vw 4vw 4vw 4vw; }
    section#section_contact .col-md-6.order-md-1 {
      margin-top: 0; }
    section#section_contact .text-area .content {
      margin: 4vw 0 6vw 2px; }
  /* -- footer#footer -- */
  footer#footer .col-md-12:last-child {
    display: block; }
  footer#footer a.logo-area {
    width: 80px; }
  footer#footer .btn-area ul {
    margin: 6vw 0 7vw 0; }
    footer#footer .btn-area ul li .p-footer {
      margin-bottom: 2px; }
  footer#footer p.copyright {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  footer#footer .link {
    width: 115px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
    footer#footer .link a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0 1.5px 6px 1.5px; }
    footer#footer .link img {
      width: 85%; }
  /* ------ Inner ------ */
  /* -- Fonts -- */
  h2.title-inner {
    font-size: 2.2rem;
    letter-spacing: 0.3rem;
    line-height: 1.6; }
  h3.tag {
    margin-top: 0; }
  h2.title-info {
    letter-spacing: 0.6rem; }
  /* -- header#header_inner -- */
  header#header_inner {
    padding-left: 0; }
    header#header_inner .banner-area {
      width: 85vw; }
  /* -- section.inner -- */
  section.inner {
    padding: 0 4vw; }
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner, section#section_contact_inner {
    padding: 0 4vw; }
    section#section_about_inner .col-md-12:first-child, section#section_contact_inner .col-md-12:first-child {
      padding-right: 10vw; }
    section#section_about_inner .col-md-12.bg, section#section_contact_inner .col-md-12.bg {
      height: 76vw;
      min-height: initial; }
  /* -- section#section_projects_inner -- */
  section#section_projects_inner {
    left: 0;
    padding: 0 2vw 6vw; }
    section#section_projects_inner .text-area {
      padding: 2vw 1vw 1vw; }
      section#section_projects_inner .text-area h3.title-small::before {
        margin: 3vw 0 2.8vw 0; }
  /* -- section#section_procedure_inner -- */
  section#section_procedure_inner {
    padding: 0 0 10vw 0;
    margin-top: -2vh; }
    section#section_procedure_inner .procedure-wrapper.step01 {
      margin-left: -12vw; }
      section#section_procedure_inner .procedure-wrapper.step01 .text-area {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        left: 0;
        top: 0;
        margin: -60px 0 0 28vw; }
    section#section_procedure_inner .procedure-wrapper.step02 {
      margin-right: -0vw;
      margin-top: 8vw; }
      section#section_procedure_inner .procedure-wrapper.step02 .text-area {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: -40px 0 0 -2vw; }
      section#section_procedure_inner .procedure-wrapper.step02 h2.step {
        margin-left: 0; }
    section#section_procedure_inner .procedure-wrapper.step03 {
      margin-left: -16vw;
      margin-top: 15vw; }
      section#section_procedure_inner .procedure-wrapper.step03 .text-area {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        left: 0;
        top: 0;
        margin: -40px 0 0 35vw; }
    section#section_procedure_inner .procedure-wrapper.step04 {
      margin-right: 6vw;
      margin-top: 8vw; }
      section#section_procedure_inner .procedure-wrapper.step04 .text-area {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        left: 0;
        top: 0;
        margin: -90px 0 0 10vw; }
      section#section_procedure_inner .procedure-wrapper.step04 h2.step {
        margin: 0; }
    section#section_procedure_inner .procedure-wrapper.step05 {
      margin-left: -2vw;
      margin-top: 8vw; }
      section#section_procedure_inner .procedure-wrapper.step05 .text-area {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        left: 0;
        top: 0;
        margin: -80px 4vw 0 0; }
      section#section_procedure_inner .procedure-wrapper.step05 h2.step {
        margin-right: -3vw; }
      section#section_procedure_inner .procedure-wrapper.step05 .content {
        width: auto !important; }
    section#section_procedure_inner .procedure-wrapper.step06 {
      margin-right: 2vw;
      margin-top: 8vw; }
      section#section_procedure_inner .procedure-wrapper.step06 .text-area {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        left: 0;
        top: 0;
        margin: -50px 0 0 2vw;
        white-space: normal; }
    section#section_procedure_inner .img-overflow img {
      width: 75vw;
      max-width: initial; }
    section#section_procedure_inner .text-area {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
      position: relative; }
      section#section_procedure_inner .text-area h2.step {
        margin-bottom: 1vw !important; }
      section#section_procedure_inner .text-area .content {
        width: 68vw !important; }
  /* -- section#section_contact_inner -- */
  section#section_contact_inner {
    padding-bottom: 0; }
    section#section_contact_inner .col-md-12.last {
      padding-right: 0; }
    section#section_contact_inner .text-area {
      max-width: initial; }
    section#section_contact_inner .text-area:first-child {
      margin-bottom: 5vw; }
    section#section_contact_inner ul.wrapper {
      display: block;
      min-width: 76vw;
      left: 1vw;
      padding: 10vw 5vw 8vw 6vw;
      margin: 14vw 0 0 0; }
      section#section_contact_inner ul.wrapper > li:first-child {
        margin-bottom: 6vw; }
      section#section_contact_inner ul.wrapper h2.title-info {
        margin-bottom: 3.5vw; }
      section#section_contact_inner ul.wrapper p:not(p.first) {
        -ms-flex-negative: 1;
        flex-shrink: 1;
        word-break: break-all;
        line-height: 1.5;
        margin-bottom: 2vw; }
    section#section_contact_inner ul.child li {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }

@media (max-width: 320px) {
  /* ------ Inner ------ */
  /* -- section#section_about_inner,section#section_contact_inner -- */
  section#section_about_inner .col-md-12.bg, section#section_contact_inner .col-md-12.bg {
    height: 82vw; } }
