@charset "UTF-8";

/* CSS Document */

html {
    min-height: 100%;
    position: relative;
    font-size: 15px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
ul,
ol,
li,
table,
tr,
th,
td,
hr,
input,
textarea,
select,
option {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    min-height: 100%;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    -webkit-transition: opacity linear .4s;
    transition: opacity linear .4s;
}

body.noscroll {
    overflow: hidden;
}

body.start {
    opacity: 1;
    -webkit-transition: opacity linear .4s;
    transition: opacity linear .4s;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    cursor: pointer;
}

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

ul,
li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-family: 'customTitle';
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}


/*■■■■■■■■■■ Basic Start ■■■■■■■■■■*/

@font-face {
    font-family: 'customTitle';
    unicode-range: U+00-024F;
    /* Latin, Latin1 Sup., Ext-A, Ext-B */
    src: url('font/DINCond-Regular.otf'), local("Helvetica Neue"), local("Helvetica"), local("san serif");
}

@font-face {
    font-family: 'customTitle';
    unicode-range: U+4E00-9FFF;
    src: local("NotoSansCJKtc-Regular"), url('font/NotoSansCJKtc-Regular.otf'), local("MHei"), local("STHeitiTC-Light"), local("Helvetica Neue"), local("Helvetica"), local("微軟正黑體");
}

@font-face {
    font-family: 'customTitle2';
    unicode-range: U+00-024F;
    /* Latin, Latin1 Sup., Ext-A, Ext-B */
    src: local("Helvetica Neue"), local("Helvetica"), local("san serif");
}

@font-face {
    font-family: 'customTitle2';
    unicode-range: U+4E00-9FFF;
    src: local("NotoSansCJKtc-Regular"), url('font/NotoSansCJKtc-Regular.otf'), local("MHei"), local("STHeitiTC-Light"), local("Helvetica Neue"), local("Helvetica"), local("微軟正黑體");
}

a.logo {
    width: 165px;
    display: block;
    position: absolute;
    left: 40px;
    top: 35px;
    z-index: 9;
}

a.logo img {
    display: none;
}

a.logo img.rwd {
    display: block;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 70px;
    z-index: 4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

header nav {
    display: none;
}

header nav,
header nav ul {
    height: 100%;
    font-family: 'customTitle';
}

header nav ul li {
    display: inline-block;
    text-align: center;
    height: 100%;
    float: left;
    padding: 0!important;
    font-size: 1.2rem;
    position: relative;
}

header nav ul li:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00adee;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
}

header nav li a {
    color: #000;
    text-transform: uppercase;
    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: 100%;
    position: relative;
    opacity: 0;
}

body.start header nav li a {
    opacity: 1;
    -webkit-transition: ease-out opacity .4s .2s;
    transition: ease-out opacity .4s .2s
}
body.lang_cn header nav li a,
body.lang_tw header nav li a{
    font-size: 1rem;
}
header nav li a:after,
header nav li:last-child a:before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: #eee;
    position: absolute;
    left: 0;
    top: 0;
}

header nav li:last-child a:before {
    left: auto;
    right: 0;
}

header .language-chooser {
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    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;
}

header .language-chooser li {
    display: inline-block;
    padding-left: 20px;
    font-family: 'customTitle';
}

header .language-chooser li a {
    color: #000;
    background: none;
}

header .language-chooser li.active a {
    border: 1px rgba(0, 0, 0, .3) solid;
    padding: 10px;
}

#lines {
    position: fixed;
    pointer-events: none;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 12;
    height: 100%
}

#lines > div {
    height: 100%
}

#lines span {
    border-left: 1px #000 solid;
    display: block;
    height: 100%;
    opacity: .1;
}

#lines span:lest-child {
    display: none;
}

body.page-template-page-contact .social {
    right: auto;
    left: 60px;
}

.social {
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 9;
}

.social li {
    display: block;
    margin-top: 6px;
}

.social li a {
    border: 1px solid rgba(0, 0, 0, .3);
    width: 36px;
    height: 36px;
    display: block;
    font-size: 1.5rem;
    text-align: center;
    color: #000;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.social li a:before {
    content: '';
    background: #00adee;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translate3d(-120%, 0, 0);
    transform: translate3d(-120%, 0, 0);
}

.social li a i {
    z-index: 1;
    position: relative;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

#copyright {
    text-align: center;
    z-index: 8;
    left: -100px;
    bottom: 60px;
    font-size: 12px;
    margin-bottom: 90px;
    position: fixed;
    color: #444;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
}

.pageTitle {
    position: fixed;
    left: 60px;
    overflow: hidden;
    padding: 0 50px 50px 0;
    top: 130px;
    font-size: 1.7rem;
    font-family: 'customTitle';
    line-height: 1;
    z-index: 5;
    -webkit-transition: opacity ease .5s;
    transition: opacity ease .5s;
}

.pageTitle.no {
    opacity: 0;
    -webkit-transition: opacity ease .5s;
    transition: opacity ease .5s;
}

.pageTitle h1 {
    position: relative;
    font-size: 3rem;
    margin-bottom: 5px;
    display: inline-block;
    float: left;
    clear: both;
}

.pageTitle h4 {
    position: relative;
    display: inline-block;
    letter-spacing: 6px;
    float: left;
    clear: both;
}

.pageTitle h1:before,
.pageTitle h4:before {
    content: '';
    width: 110%;
    height: 30px;
    background-color: #00adee;
    position: absolute;
    left: 19px;
    bottom: 0;
}

.pageTitle h4:before {
    bottom: -10px;
    height: 20px;
}

.pageTitle h1 span,
.pageTitle h4 span {
    position: relative;
    z-index: 1;
}

.pageTitle h1 span b,
.pageTitle h4 span b {
    font-weight: bold;
    letter-spacing: 0px;
    margin-right: 5px;
}

.main {
    opacity: 1;
}

.main.blur {
    opacity: .5;
}

.menu-toggle {
    width: 25px;
    height: 25px;
    position: fixed;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 13;
    display: none;
}

.menu-toggle.on .one {
    -ms-transform: rotate(45deg) translate(3px, 3px);
    -webkit-transform: rotate(45deg) translate(3px, 3px);
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.on .two {
    opacity: 0;
}

.menu-toggle.on .three {
    -ms-transform: rotate(-45deg) translate(5px, -6px);
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
    transform: rotate(-45deg) translate(5px, -6px);
}

.one,
.two,
.three {
    width: 100%;
    height: 2px;
    background: #000;
    margin: 4px auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.rwdMenu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: 12;
    color: #000;
    text-align: center;
    background-color: rgba(255, 255, 255, .9);
}

.rwdMenu.on {
    left: 0;
}

.rwdMenu ul.menu {
    margin: 0;
    padding: 40px 0;
    list-style: none;
    text-align: center;
    height: 70%;
}

.rwdMenu ul.menu li {
    height: 20%;
}

.rwdMenu ul.menu a {
    text-decoration: none;
    width: 100%;
    display: block;
    color: #000;
    line-height: 1.5;
    font-size: 2rem;
    font-family: 'customTitle';
    text-transform: uppercase;
}

.rwdMenu ul.social {
    position: static;
    margin: 20px auto;
    display: inline-block;
}

.rwdMenu ul.social li {
    display: inline-block;
    margin: 0 5px;
}

.rwdMenu p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}

.rwdMenu .language-chooser {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.rwdMenu .language-chooser li {
    display: inline-block;
    padding: 0 10px;
    margin: 0 auto;
    font-family: 'customTitle';
}

.rwdMenu .language-chooser li a {
    color: #000;
    display: block;
    line-height: 1;
    border: 1px rgba(0, 0, 0, .3) solid;
    padding: 10px;
    background: none;
}

.rwdMenu .language-chooser li.active a {
    border: 1px rgba(0, 0, 0, .3) solid;
    padding: 10px;
    color: #fff;
    background-color: #000;
}

.menu-section.on {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
}

.caption .effect-title,
.pageTitle .effect-title {
    position: relative;
}

.slideshow .caption .effect-title:before,
.pageTitle .effect-title:before {
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: translate3d(-150%, 0, 0);
    transform: translate3d(-150%, 0, 0);
}

.caption .effect-title.gorun:before {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.pageTitle .effect-title.gorun:before {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.error {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.error div {
    height: auto;
}

.error h1 {
    font-size: 7rem;
    line-height: 1;
    color: #00adee;
}

.error a {
    padding: 10px 40px;
    background: #00adee;
    color: #fff;
    margin: 40px 15px 0;
    display: inline-block;
}


/*■■■■■■■■■■ Basic End ■■■■■■■■■■*/


/*■■■■■■■■■■ index Start ■■■■■■■■■■*/

#index > div {
    position: relative;
    margin-top: 70px;
    padding: 0 40px;
}

#index .total {
    position: absolute;
    right: 70px;
    pointer-events: none;
    z-index: 1;
    bottom: 15px;
    font-family: 'customTitle';
    font-weight: bold;
    text-align: right;
    min-width: 200px;
}

#index .total .number {
    line-height: 1;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, .5);
    font-size: 1.2rem;
    margin: 0 5px;
    letter-spacing: 1px;
}

#index .total .number span {
    font-size: 4rem;
}

#index .total h5 {
    text-align: center;
    z-index: 8;
    right: 0;
    font-size: 1.5rem;
    font-weight: bold;
    top: -350%;
    margin-bottom: 90px;
    position: absolute;
    color: #000;
    min-width: 210px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
}

#index .total h5:after {
    content: '';
    width: 160px;
    margin-left: -80px;
    height: 1px;
    display: block;
    background-color: #000;
}

.slideshow {
    height: calc(100vh - 70px);
    position: relative;
}

.slideshow:after {
    content: '';
    height: 0%;
    width: 25px;
    position: absolute;
    right: 0;
    top: 10%;
    background-color: #f6bb63;
    z-index: 1;
}

body.start .slideshow:after {
    -webkit-transition: height .5s ease-out 1s;
    transition: height .5s ease-out 1s;
    height: 40%;
}

.slideshow .caption {
    position: absolute;
    left: 0px;
    overflow: hidden;
    padding: 0px 50px 0 0;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

#index .slideshow .caption {
    bottom: 20px;
    padding: 20px 20px 20px 0;
    overflow: hidden;
}

.lSSlideWrapper .lSSlide img {
    display: none;
}

.slideshow .caption h1 {
    line-height: 1.1;
    position: relative;
}

.slideshow .caption h1:before {
    content: '';
    width: 110%;
    height: 70%;
    background-color: rgba(238, 238, 238, .4);
    position: absolute;
    left: -20px;
    bottom: 0;
}

.slideshow .caption h1.cn {
    font-weight: bold;
    display: inline-block;
    float: left;
    clear: both;
}

.slideshow .caption h1.en {
    font-size: 3.3rem;
    display: inline-block;
    float: left;
    clear: both;
    margin-bottom: 10px;
}

.slideshow .caption h1 span {
    position: relative;
    z-index: 1;
}


/*■■■■■■■■■■ index End ■■■■■■■■■■*/


/*■■■■■■■■■■ Contact ■■■■■■■■■■*/

#contact {
    padding-top: 70px;
    position: relative;
    height: calc(100vh - 70px);
    margin-top: 70px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#contact .pageTitle {
    top: 130px;
}

#contact .map {
    height: 100%;
    padding: 50px 20px 0;
    background: rgba(237, 237, 237, 1);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 237, 237, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d0d2d3', endColorstr='#d0d2d3', GradientType=0);
}

#contact .map .thumb {
    position: relative;
}

#contact .map .thumb li:after {
    width: 12px;
    height: 12px;
    background-color: #f6bb63;
    content: '';
    border-radius: 100%;
    position: absolute;
    left: 50%;
    margin: -6px;
    top: 50%;
}

#contact .map .thumb li {
    border: 1px solid #f6bb63;
    width: 22px;
    height: 22px;
    position: absolute;
    display: block;
    border-radius: 100%;
}

#contact .map .thumb li i {
    content: '\e804';
    font-family: 'fontello';
    position: absolute;
    bottom: -2px;
    opacity: 0;
    left: -22px;
    color: #f6bb63;
    font-size: 3rem;
}

#contact .contactList {
    padding: 0;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
}

#contact .contactList .item {
    padding: 35px 20px;
    width: 50%;
    float: left;
    border-bottom: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

#contact .contactList .item:after {
    background: #f0f0f0;
    content: '';
    position: absolute;
    left: 0;
    display: none;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    transition-timing-function: cubic-bezier(0.75, 0.5, 0.3, 1);
    -webkit-transform: translate3d( -100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

#contact .contactList .item:before {
    content: '';
    height: 0;
    width: 0;
    border: 20px solid #d0d0d0;
    border-left: 0px;
    border-color: #d0d0d0 transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
}

#contact .contactList .item .thumb {
    width: 100px;
    margin-right: 10px;
    display: -ms-flexbox;
    display: -webkit-box;
    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: relative;
    z-index: 1;
}

#contact .contactList .item .thumb img {
    width: 80%;
}

#contact .contactList .item .content {
    color: #000;
    position: relative;
    z-index: 1;
}

#contact .contactList .item .content .title {
    color: #00adee;
    font-size: 1.6rem;
}

#contact .contactList .item .content span {
    font-size: 1.2rem;
    display: block;
}

#contact .contactList .item .content .info {
    margin-top: 30px;
}

#contact .contactList .item .content .info span {
    font-size: 1rem;
}


/*■■■■■■■■■■ Contact End ■■■■■■■■■■*/


/*■■■■■■■■■■ JOBS START ■■■■■■■■■■*/

#jobs .cd-main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#jobs .cd-gallery {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 340px;
}

#jobs .cd-tab-filter {
    width: 340px;
    float: left;
    height: calc(100vh - 70px);
    position: fixed;
    left: 0;
    top: 70px;
    display: block;
    padding-top: 170px;
}

#jobs .cd-tab-filter > div {
    width: 100%;
    text-align: right;
    padding: 40px 20px 40px;
}

#jobs .cd-gallery li {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    outline: none;
}

#jobs .cd-gallery li .title {
    margin-top: 10px;
}

#jobs .cd-gallery li > div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#jobs .cd-gallery li .logo {
    text-align: center;
    padding-top: 10px;
}

#jobs .cd-gallery li .info img {
    height: 100px;
    width: auto;
}

#jobs .cd-filters {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
}

#jobs .cd-gallery .info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 15px;
    background-color: #fff;
    position: relative;
    height: 100%;
}

#jobs .cd-gallery ul {
    background-color: #f1f1f1;
    float: left;
    width: 100%;
}

#jobs .cd-gallery li .info a {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    color: #fff;
    background-color: #00adee;
    font-size: 1.2rem;
    width: auto;
    height: auto;
}

#jobs .cd-gallery .info .header {
    padding: 0;
}

#jobs .cd-gallery .info .header h6 {
    margin-bottom: 0px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#jobs .cd-gallery .info .header h6.jobposition {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
}

#jobs .cd-gallery .info .header h6 span {
    font-weight: bold;
}

#jobs .cd-gallery .info .header h6 span:nth-child(1) {
    font-weight: normal;
    width: 60px;
    display: inline-block;
}

#jobs .cd-gallery .info .header h6 span b:after {
    content: '&';
    margin: 0 2px;
}

#jobs .cd-gallery .info .header h6:last-child span b:after {
    content: '/';
    margin: 0 3px;
}

#jobs .cd-gallery .info .header h6 span b:last-child:after {
    display: none;
}

#jobs .cd-gallery .info .desc {
    margin-top: 25px;
    padding: 0;
    text-align: left;
}

#jobs .cd-gallery .thumb {
    padding: 0;
    height: 200px;
}

#jobs .cd-gallery .thumb a {
    display: block;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/*■■■■■■■■■■ JOBS End ■■■■■■■■■■*/


/*■■■■■■■■■■ News Start ■■■■■■■■■■*/

#news {
    margin-top: 70px;
    background-color: #f1f1f1;
    min-height: calc(100vh - 70px);
}

#news .newsFilter {
    position: relative;
    margin: 30px 0;
    text-align: right;
    display: block;
}

#news .newsFilter .filters {
    display: inline-block;
    position: relative;
}

#news .newsFilter .filters > div {
    display: inline-block;
    margin-right: 7px;
}

#news .newsFilter select {
    background-color: #FFF;
    color: #000000;
    line-height: 1;
    padding: 15px 70px 15px 15px;
    border: 0;
    margin: 0;
    border-radius: 0;
    -webkit-appearance: button;
}

#news .newsFilter .filters:before {
    content: '';
    right: 0;
    pointer-events: none;
    top: 0;
    background-color: #00adee;
    position: absolute;
    height: 100%;
    width: 40px;
}

#news .newsFilter .filters:after {
    content: '\e805';
    pointer-events: none;
    font-family: 'fontello';
    right: 12px;
    top: 11px;
    color: #fff;
    position: absolute;
}

.newsList {
    margin-bottom: 100px;
    display: inline-block;
    width: 100%;
    float: left;
}

.newsList .item {
    float: left;
    overflow: hidden;
    background-color: #fff;
    border: #f1f1f1 2px solid;
}

.newsList .item .thumb {
    height: 260px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.newsList .item .thumb a {
    display: block;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.newsList .item .thumb .caption {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: 'customTitle2';
    padding: 15px;
    font-family: ;
    width: 100%;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .7);
    font-size: 1.1rem;
    line-height: 1.2;
    background: rgba(0, 0, 0, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.81)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0);
}

.newsList .item .content {
    padding: 20px;
}

.newsList .item .content .header {
    margin-bottom: 8px;
    line-height: 1;
}

.newsList .item .content .header .source {
    display: inline-block;
}

.newsList .item .content .header .source a {
    color: #000;
    text-decoration: underline;
}

.newsList .item .content .header .date {
    font-size: 1.2rem;
    display: inline-block;
}


/*■■■■■■■■■■ News End ■■■■■■■■■■*/


/*■■■■■■■■■■ about Start ■■■■■■■■■■*/

#about:before {
    content: '';
    height: 400px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(237, 237, 237, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(237, 237, 237, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(237, 237, 237, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
}

#about #lines {
    position: absolute;
    z-index: 1;
    height: 100%;
}

#about section.first {
    position: relative;
    height: 740px;
    padding-top: 240px;
}

#about section.first .title h2 {
    line-height: 1;
    font-size: 4rem;
    font-weight: bold;
}

#about section.first .title h2 em {
    font-size: 8rem;
    font-style: normal;
}

#about section.first .center {
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 280px;
    margin-left: -140px;
    z-index: 3;
}

#about section.first .info {
    position: relative;
    z-index: 3;
}

#about section.first .chart {
    position: relative;
    height: 100%;
    width: 100%;
}

#about section.first .chart > img {
    position: absolute;
    bottom: 0;
    left: 0;
}

#about section.first .chart ul.markList {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
    z-index: 1;
}

#about section.first .chart ul.markList li {
    position: absolute;
    text-align: center;
    color: #000;
    font-size: 1rem;
    opacity: 0;
    opacity: 0;
    margin-left: -20px;
    background-color: #ddd;
    border-radius: 100%;
    width: 230px;
    height: 230px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 17px 20px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2;
    font-size: .9rem;
    border: 4px rgba(255, 255, 255, .8) solid;
}

body.start #about section.first .chart ul.markList li {
    opacity: 1;
}

#about section.first .chart ul.markList li:nth-child(2) {
    width: 310px;
    height: 310px;
}

#about section.first .chart ul.markList li:nth-child(4) {
    width: 200px;
    height: 200px;
}

body.start #about section.first .chart ul.markList li:nth-child(1) {
    background-color: rgba(0, 173, 238, .7);
    -webkit-transition: all ease .4s .4s;
    transition: all ease .4s .4s;
}

body.start #about section.first .chart ul.markList li:nth-child(2) {
    background-color: rgba(246, 187, 99, .7);
    -webkit-transition: all ease .4s .7s;
    transition: all ease .4s .7s;
}

body.start #about section.first .chart ul.markList li:nth-child(3) {
    background-color: rgba(121, 173, 231, .7);
    -webkit-transition: all ease .4s 1s;
    transition: all ease .4s 1s;
}

body.start #about section.first .chart ul.markList li:nth-child(4) {
    background-color: rgba(236, 181, 119, .7);
    -webkit-transition: all ease .4s 1.4s;
    transition: all ease .4s 1.4s;
}

body.start #about section.first .chart ul.markList li:nth-child(5) {
    background-color: rgba(0, 173, 238, .7);
    -webkit-transition: all ease .4s 2s;
    transition: all ease .4s 2s;
}

#about section.close {
    display: none;
}

#about section.first .chart ul.markList li span {
    line-height: 1;
    text-align: center;
    color: #fff;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'customTitle';
}

#about section.first .chart ul.markList li span:first-child {
    font-size: 5rem;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

#about section.first .chart ul.markList li p {
    margin-top: 10px;
}

#about section.second {
    position: relative;
    min-height: 400px;
    z-index: 3;
}

#about section.second:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    background-image: url(../img/about-s2-pattern.svg);
    background-size: 40px;
}

#about section.second .topBg {
    position: absolute;
    left: 0%;
    top: -100px;
    width: 100%;
    height: 200px;
}

#about section.second .topBg img {
    width: 100%;
}

#about section.second .content {
    text-align: right;
    margin-top: 280px;
}

#about section.second .content h2,
#about section.second .content .desc {
    position: relative;
    margin-bottom: 20px;
}

#about section.second .content h2:before {
    content: '';
    width: 100%;
    height: 50px;
    background-color: #00adee;
    position: absolute;
    right: 20px;
    bottom: -20px;
}

#about section.second .content .desc:before {
    content: '';
    width: 80%;
    height: 70px;
    background-color: #00adee;
    position: absolute;
    right: 20px;
    bottom: -20px;
}

#about section.second .content h2 {
    line-height: 1.2
}

#about section.second .content h2 span,
#about section.second .content .desc span {
    position: relative;
    z-index: 1;
}

#about section.second .valuation {
    text-align: center;
    padding: 50px 40px;
    position: relative;
    margin-top: 50px;
}

#about section.second .valuation:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/icon-money-bg.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#about section.second .valuation .mark {
    position: absolute;
    right: 30px;
    top: -50px;
    height: 100px;
    width: 100px;
}

#about section.second .valuation .mark span {
    position: absolute;
    right: 13px;
    top: -100px;
    height: 180px;
    width: 74px;
    background-color: #00adee;
}

#about section.second .valuation .mark:before,
#about section.second .valuation .mark:after {
    content: '';
    position: absolute;
    border-bottom: 70px solid #00adee;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    top: 70px;
    left: -10px;
    -webkit-transform: rotate(-150deg);
    -moz-transform: rotate(-150deg);
    -ms-transform: rotate(-150deg);
    -o-transform: rotate(-150deg);
}

#about section.second .valuation .mark:after {
    left: auto;
    right: -10px;
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
}

#about section.second .valuation h1 {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

#about section.second .valuation h1 img {
    width: 80px;
    margin: 0 auto;
}

#about section.second .valuation h1 span {}

#about section.second .valuation h6 {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 4px 40px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

#about section.third {
    padding: 70px 0;
    position: relative;
}

#about section.third:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

#about section.third:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    background-image: url(../img/about-s2-pattern.svg);
    background-size: 40px;
    display: block;
}

#about section.third h1,
#about section.fourth h1,
#about section.fifth h1 {
    text-align: center;
    line-height: 1;
    width: 100%;
    font-size: 3.8rem;
    font-weight: bold;
}

#about section.fourth h1,
#about section.fifth h1 {
    margin-bottom: 40px;
}

#about section.third h1 span,
#about section.fourth h1 span,
#about section.fifth h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 100;
    letter-spacing: 14px;
    padding-left: 14px;
    margin-top: 6px;
}

#about section.fourth h1 span,
#about section.fifth h1 span {
    letter-spacing: 5px;
}

#about section.third .slider-milestone {
    height: 350px;
    margin-top: 70px;
}

#about section.third .slider-milestone ul {
    width: 100%
}

#about section.third .slider-milestone .lightSlider {
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto!important;
}

#about section.third .slider-milestone .lSSlideOuter .lSPager.lSpg {
    display: none;
}

#about section.third .slider-milestone li {
    text-align: center;
    -ms-flex-item-align: end;
    align-self: flex-end;
    border-left: 1px #fff solid;
}

#about section.third .slider-milestone li .title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 300;
    padding: 10px 5px;
    position: relative;
}

#about section.third .slider-milestone li .thumb {
    margin: auto;
    overflow: hidden;
    width: 80px;
    box-shadow: -1px -4px 0px rgba(0, 0, 0, .1);
    height: 80px;
    padding: 5px;
    border-radius: 100%;
    background: #fff;
}

#about section.third .slider-milestone li.lslide {
    height: 180px;
    background-color: #f1f1f1;
    padding: 10px 20px 20px;
    color: #fff;
}

#about section.third .slider-milestone li.lslide:nth-last-child(2n) {
    height: 160px;
}

#about section.third .slider-milestone li.lslide:nth-last-child(5n+1) {
    background-color: #f6bb63;
}

#about section.third .slider-milestone li.lslide:nth-last-child(5n+2) {
    background-color: #ecb577;
}

#about section.third .slider-milestone li.lslide:nth-last-child(5n+3) {
    height: 200px;
    background-color: #00adee;
}

#about section.third .slider-milestone li.lslide:nth-last-child(5n+4) {
    background-color: #79ade7;
}

#about section.third .slider-milestone li.lslide:nth-last-child(5) {
    background-color: #e6e7e8;
    color: #000;
}

#about section.fourth {
    padding: 0px 0 150px;
}

#about section.fifth {
    padding: 30px 0 150px;
}

.peoples {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.peoples .item {
    position: relative;
    height: 260px;
    padding-top: 10px;
    margin-right: 5px;
    width: 100%;
    cursor: pointer;
}

.peoples .item:last-child {
    margin: 0;
}

.peoples .item .thumb {
    position: absolute;
    width: 50%;
    bottom: 0;
    width: 150px;
    left: 10px;
    z-index: 1;
}

.peoples .item .content {
    height: 40%;
    color: #fff;
    padding-left: 55%;
}

.peoples .item .content:after {
    background-color: #666;
    height: 40%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
    transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
}

.peoples .content .desc {
    padding: 10px 10px 0 0;
    position: relative;
    z-index: 1;
}

.peoples .item .header {
    position: relative;
    z-index: 1;
    height: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.peoples .item .header .title {
    font-size: 1.4rem;
    display: inline-block;
    line-height: 1;
    font-family: 'customTitle';
    padding-left: 55%;
    padding-bottom: 10px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.peoples .item .header .title span {
    font-weight: bold;
    display: block;
}

.peoples .item .header .title span:nth-child(2) {
    font-size: 13px;
    margin-top: 5px;
    font-weight: 100;
    font-family: 'customTitle2';
}

.peoples .item a.more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 1px #fff solid;
    padding: 10px;
    color: #fff;
    z-index: 3;
}

.peoples.team .item .content {
    background-color: transparent;
    color: #000;
    position: relative;
    height: 50%;
}

.peoples.team .item .header {
    height: 50%;
}

.peoples.team .item .content:before {
    content: '';
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #00adee;
    -webkit-transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
    transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
}

.peoples.team .item .content:after {
    content: '';
    height: 80%;
    width: 25%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #00adee;
    -webkit-transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
    transition: all cubic-bezier(0.75, 0.5, 0.3, 1) .5s;
}

.peoples.team .item .content .desc {
    z-index: 1;
    position: relative;
    line-height: 1.5;
}

.partner.featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
}

.partner.featherlight .featherlight-inner .leftarea {
    padding: 40px 20px 0;
}

.partner .featherlight-inner .leftarea:before {
    display: none;
}

.partner .featherlight-inner .rightarea h2 {
    font-size: 1.6rem;
}

.partner .featherlight-inner .rightarea h5 {
    font-size: 12px;
}

.partner .featherlight-inner .rightarea .desc {
    margin-top: 15px;
}

.partner.featherlight .featherlight-inner .leftarea img {
    width: auto;
    max-width: 100%;
}

.partner.featherlight .featherlight-inner .rightarea {
    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;
}


/*■■■■■■■■■■ about End ■■■■■■■■■■*/

#companies .slideshow {
    width: 100%;
    float: left;
    height: auto;
    max-height: inherit;
}

#companies .slideshow:after {
    display: none;
}

#companies .slideshow li {
    position: relative;
}

#companies .slideshow .caption {
    color: #fff;
    position: absolute;
    bottom: 0px;
    top: auto;
    pointer-events: auto;
    left: 0px;
    font-size: 1.1rem;
    line-height: 1.2;
    padding: 15px;
    width: 100%;
    text-transform: inherit;
    min-height: 100px;
    height: auto;
    background: rgba(0, 0, 0, .3);
}
