@charset "utf-8";

/* Color Chart
   Green: #009668;
*/

/*--------------------------------------- universal (全部頁面使用)------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500;700&display=swap');


body              { margin: 0; background: #fff; color: #000; font-size: 16px;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    font-family: 'Urbanist', 'Noto Sans TC', 'Noto Sans', 'Helvetica Neue', 'Helvetica', 'Microsoft JhengHei', 'PingFangTC-Light', 'STHeiti Light', 'Hiragino Sans GB', sans-serif;
                  }

select, 
input, 
button, 
textarea          { font-family: 'Urbanist', 'Noto Sans TC', 'Noto Sans', 'Helvetica Neue', 'Helvetica', 'Microsoft JhengHei', 'PingFangTC-Light', 'STHeiti Light', 'Hiragino Sans GB', sans-serif;}

p{
    line-height: 1.5em;
}

body.noscroll{
    overflow: hidden;
}
.clear:after{
    content: '';
    clear: both;
    display: block;
}

::selection {
  color: #f5f5f5;
  background: #555;
}


body{
    background: #3B8FED url(../img/dot.png) center;
    background-attachment: fixed;
}


/* HEADER */
.header{
    width: 100%;
    height: 50px;
    position: fixed;
    left: 0;
    top: 0;
    background: #3B8FED;
    transition: all 0.2s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    1border-bottom: 1px solid #ddd;
}
.header .inner{
    max-width: 1920px;
    box-sizing: border-box;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}
.header .logo{
    width: 160px;
    height: 25px;
    float: left;
    margin-top: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.header .logo a{
    height: 100%;
    display: block;
    float: left;
}
.header .logo img{
    height: 100%;
    display: block;
}

.header .main-nav{
    margin: 10px 0 0 0;
    padding: 0;
    list-style-type: none;
    float: right;
}
.header .main-nav li{
    margin: 0 20px;
    padding: 0;
    display: inline-block;
    position: relative;
}
.header .main-nav li:after{
    display: block;
    content: '';
    width: 1px;
    height: 15px;
    position: absolute;
    right: -22px;
    top: 5px;
    background: #fff;
}
.header .main-nav li:last-child:after{
    display: none;
}
.header .main-nav li a{
    color: #fff;
    transition: all 0.2s;
    height: 25px;
    line-height: 25px;
    display: block;
    text-decoration: none;
}
.header .main-nav li a:hover{
    color: #ddd;
}


.header .burger{
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    display: none;
    right: 10px;
    top: 4px;
    z-index: 4;
}
.header .burger .box{
    width: 40px;
    height: 40px;
    background: url(../img/burger.png) center no-repeat;
    background-size: 80%;
    display: block;
}
.header .burger.active .box{
    background-image: url(../img/close-light.png);
    background-size: 70%;
}
.header.top .burger{
    top: 13px;
}



@media screen and (max-width: 950px) {
.header .inner{
    padding: 0 15px;
}
.header .logo{
    width: 230px;
    height: 20px;
    margin-top: 14px;
}
.header .nav-container{
    display: none;
}
.header .nav-container.active{
    display: block;
}
.header .nav-container.hide-mobile{
    display: none;
}
.header .burger{
    display: block;
}
.header .main-nav{
    margin: 0;
    float: none;
    background: rgba(1,124,237,0.95);
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    padding-bottom: 20px;
    padding-top: 50px;
}
.header .main-nav li{
    margin: 30px 0;
    display: block;
    padding: 0px;
}
.header .main-nav li a{
    color: #fff;
    height: auto;
    line-height: auto;
    padding: 15px;
    text-align: center;
}
.header .main-nav li a:hover{
    color: #ddd;
}
.header .main-nav li.active a{
    color: #ddd;
    border-bottom: none;
}
}














.content{
    margin-top: 50px;
    min-height: calc(100vh - 300px); /* 20190812 */
}


.footer{
    position: relative;
    background: #4E9CF3;
}
.side-tools .up{
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    display: block;
    background: rgba(50,50,50,0.3) url(../img/arrow-3.png) center no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 5;
    display: none;
}
.side-tools .up:hover{
    background-color: rgba(50,50,50,0.4);
}


.footer-content{
    padding: 30px 10px 20px 10px;
    text-align: center;
    color: #fff;
}
.footer-content a{
    color: #fff;
    text-decoration: none;
}
.footer-content a:hover{
    text-decoration: underline;
}
.footer-content .contact span{
    display: inline-block;
    margin: 0 20px;
}
.footer-content .credit{
}



@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
.footer-main > div{
    display: block;
}
.side-tools{
    display: none;
}
}



@media screen and (max-width: 420px) {
.footer-content .credit{
    font-size: 0.8em;
}
}





section > h2{
    text-align: center;
    font-size: 3em;
    font-weight: 300;
    margin: 70px 0 50px 0;
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
section > h2{
    font-size: 2em;
}
}


/* -----------------hero----------------- */

.section-hero{
    max-width: 1920px;
    margin: 0 auto;
}
.section-hero .kv{
}
.section-hero .kv img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

/* -----------------about----------------- */

.section-about{
    margin-top: -250px;
    padding: 0 30px;
}
.section-about .inner{
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.section-about .inner .title{
    background: #eee;
    border-top-left-radius: 40px; 
    border-top-right-radius: 40px; 
    box-sizing: border-box;
    padding: 20px 0 10px 60px;
    position: relative;
    position: relative;
}
.section-about .inner .title h2{
    color: #3B8FED;
    font-size: 3.5em;
    margin: 0;
    padding: 0;
    line-height: 1.2em;
    font-weight: 500;
}
.section-about .inner .title .blink{
    position: absolute;
    width: calc(100% - 250px);
    height: 50%;
    right: 0;
    top: 0;
}
.section-about .inner .title .blink:before{
    background: url(../img/blink.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    width: 14px;
    height: 14px;
    right: 70px;
    top: calc(70% - 7px);
    content: '';
}
.section-about .inner .title .blink:after{
    background: #3B8FED;
    position: absolute;
    width: calc(100% - 100px);
    height: 1px;
    right: 100px;
    top: 70%;
    content: '';
}


.section-about .inner .group{
    display: flex;
    align-items: flex-start;
}
.section-about .inner .group .image-wrapper{
    background: #eee;
    border-bottom-left-radius: 40px; 
    border-bottom-right-radius: 40px; 
    width: 55%;
    padding: 20px 40px 40px 40px;
    box-sizing: border-box;
    overflow: hidden;
}
.section-about .inner .group .image-wrapper .image{
    overflow: hidden;
    border-radius: 30px;
    width: 100%;
}
.section-about .inner .group .image-wrapper .image img{
    width: 100%;
    display: block;
}
.section-about .inner .group .text-wrapper{
    background: #eee;
    border-bottom-right-radius: 40px; 
    margin-top: -30px;
    width: 45%;
    padding: 0px 40px 40px 40px;
    box-sizing: border-box;
    position: relative;
}
.section-about .inner .group .text-wrapper:after{
    background: url(../img/corner.png) center no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 40px;
    height: 40px;
    content: '';
}
.section-about .inner .group .text p{
    font-size: 1.2em;
}


@media screen and (max-width: 1400px) {
.section-about{
    margin-top: -15vw;
}
.section-about .inner .group .text-wrapper{
    padding: 0px 20px 0px 0px;
    margin-top: -80px;
}
}
@media screen and (max-width: 1023px) {
.section-about .inner .group{
    display: block;
}
.section-about .inner .group .text-wrapper{
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 40px; 
    margin-top: 0px;
}
.section-about .inner .group .image-wrapper{
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 0px; 
    border-bottom-right-radius: 0px; 
}
.section-about .inner .group .text-wrapper:after{
    display: none;
}
}
@media screen and (max-width: 767px) {
.section-about{
    padding: 0 15px;
}
.section-about .inner .title{
    padding: 20px 10px 0px 20px;
    width: 80%;
}
.section-about .inner .title:after{
    background: url(../img/corner.png) center no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    left: 100%;
    bottom: 0%;
    width: 40px;
    height: 40px;
    content: '';
    transform: rotate(270deg);
}
.section-about .inner .title h2{
    font-size: 2em;
}
.section-about .inner .title .blink{
    width: calc(100% - 150px);
}
.section-about .inner .title .blink:before{
    right: 30px;
}
.section-about .inner .title .blink:after{
    width: calc(100% - 50px);
    right: 50px;
}
.section-about .inner .group .image-wrapper{
    border-top-right-radius: 40px; 
}
.section-about .inner .group .text-wrapper {
    padding-top: 0px;
    margin-top: -20px;
}
}



@media screen and (max-width: 550px) {
.section-about .inner .title h2{
    font-size: 1.5em;
}
.section-about .inner .group .image-wrapper{
    border-top-right-radius: 20px; 
}
.section-about .inner .group .text-wrapper{
    border-bottom-left-radius: 20px; 
    border-bottom-right-radius: 20px; 
}
.section-about .inner .group .image-wrapper .image{
    border-radius: 15px;
}
.section-about .inner .title:after{
    width: 20px;
    height: 20px;
}
.section-about .inner .title{
    border-top-left-radius: 20px; 
    border-top-right-radius: 20px; 
}
.section-about .inner .group .text p{
    font-size: 1em;
}
}





/* -----------------highlights----------------- */

.section-highlights{
    margin-top: 0px;
    padding: 150px 30px 100px 30px;
    overflow: hidden;
}
.section-highlights .inner{
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.section-highlights .inner:after{
    background: url(../img/decor-1.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    right: -50px;
    top: -150px;
    width: 250px;
    height: 200px;
    content: '';
}
.section-highlights .inner:before{
    background: url(../img/decor-2.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    left: 50px;
    bottom: -100px;
    width: 300px;
    height: 200px;
    content: '';
}
.section-highlights .inner .title{
    background: #eee;
    border-top-left-radius: 40px; 
    border-top-right-radius: 40px; 
    box-sizing: border-box;
    padding: 20px 0 10px 60px;
    position: relative;
    position: relative;
}
.section-highlights .inner .title h2{
    color: #3B8FED;
    font-size: 3.5em;
    margin: 0;
    padding: 0;
    line-height: 1.2em;
    font-weight: 500;
}
.section-highlights .inner .title .blink{
    position: absolute;
    width: calc(100% - 250px);
    height: 50%;
    right: 0;
    top: 0;
}
.section-highlights .inner .title .blink:before{
    background: url(../img/blink.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    width: 14px;
    height: 14px;
    right: 70px;
    top: calc(70% - 7px);
    content: '';
}
.section-highlights .inner .title .blink:after{
    background: #3B8FED;
    position: absolute;
    width: calc(100% - 100px);
    height: 1px;
    right: 100px;
    top: 70%;
    content: '';
}


.section-highlights .inner .group{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.section-highlights .inner .group .image-wrapper{
    background: #eee;
    border-bottom-left-radius: 40px; 
    border-bottom-right-radius: 40px; 
    width: 55%;
    padding: 20px 40px 40px 40px;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: -50px;
    z-index: 2;
}
.section-highlights .inner .group .image-wrapper .image{
    overflow: hidden;
    border-radius: 30px;
    box-sizing: border-box;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;
}
.section-highlights .inner .group .image-wrapper .image img{
    width: 100%;
    display: block;
}
.section-highlights .inner .group .image-wrapper iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.section-highlights .inner .group .text-wrapper{
    background: #eee;
    border-bottom-left-radius: 40px; 
    margin-top: 0px;
    width: 45%;
    padding: 0px 20px 20px 60px;
    box-sizing: border-box;
    position: relative;
}
.section-highlights .inner .group .text-wrapper:after{
    background: url(../img/corner.png) center no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 100%;
    width: 40px;
    height: 40px;
    content: '';
    transform: rotate(90deg);
}
.section-highlights .inner .group .text p{
    font-size: 1.2em;
}


@media screen and (max-width: 1023px) {
.section-highlights .inner .group{
    display: block;
}
.section-highlights .inner .group .text-wrapper{
    width: 100%;
    padding: 20px;
    border-bottom-right-radius: 40px; 
    margin-top: 0px;
}
.section-highlights .inner .group .image-wrapper{
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 0px; 
    border-bottom-right-radius: 0px; 
    margin-top: 0;
}
.section-highlights .inner .group .text-wrapper:after{
    display: none;
}
}
@media screen and (max-width: 767px) {
.section-highlights{
    padding: 0 15px;
    margin-top: 80px;
    margin-bottom: 50px;
}
.section-highlights .inner:after{
    display: none;
}
.section-highlights .inner:before{
    display: none;
}
.section-highlights .inner .title{
    padding: 20px 10px 0px 20px;
    width: 80%;
}
.section-highlights .inner .title:after{
    background: url(../img/corner.png) center no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    left: 100%;
    bottom: 0%;
    width: 40px;
    height: 40px;
    content: '';
    transform: rotate(270deg);
}
.section-highlights .inner .title h2{
    font-size: 2em;
}
.section-highlights .inner .title .blink{
    width: calc(100% - 150px);
}
.section-highlights .inner .title .blink:before{
    right: 30px;
}
.section-highlights .inner .title .blink:after{
    width: calc(100% - 50px);
    right: 50px;
}
.section-highlights .inner .group .image-wrapper{
    border-top-right-radius: 40px; 
}
.section-highlights .inner .group .text-wrapper {
    padding-top: 0px;
    margin-top: -20px;
}
}



@media screen and (max-width: 550px) {
.section-highlights .inner .title h2{
    font-size: 1.5em;
}
.section-highlights .inner .group .image-wrapper{
    border-top-right-radius: 20px; 
}
.section-highlights .inner .group .text-wrapper{
    border-bottom-left-radius: 20px; 
    border-bottom-right-radius: 20px; 
}
.section-highlights .inner .group .image-wrapper .image{
    border-radius: 15px;
}
.section-highlights .inner .title:after{
    width: 20px;
    height: 20px;
}
.section-highlights .inner .title{
    border-top-left-radius: 20px; 
    border-top-right-radius: 20px; 
}
.section-highlights .inner .group .text p{
    font-size: 1em;
}
}




/* -----------------section title----------------- */
.section-title{
    position: relative;
    display: flex;
    color: #fff;
    align-items: center;
}
.section-title .en{
    font-size: 3.5em;
    font-weight: 500;
    padding-right: 30px;
    flex-shrink: 0;
}
.section-title .ch{
    font-size: 1.3em;
    font-weight: bold;
    padding-right: 30px;
    flex-shrink: 0;
    padding-top: 10px;
}
.section-title .decor{
    width: calc(100% - 30px);
    height: 1px;
    background: #fff;
    margin-top: 10px;
    position: relative;
}
.section-title .decor:after{
    background: url(../img/blink-light.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    width: 12px;
    height: 12px;
    right: -20px;
    top: -5px;
    content: '';
}
@media screen and (max-width: 767px) {
.section-title{
    flex-wrap: wrap;
}
}
@media screen and (max-width: 550px) {
.section-title .en{
    font-size: 2em;
}
.section-title .ch{
    font-size: 1em;
}
}

/* -----------------article----------------- */

.section-article{
    padding: 100px 0;
    overflow: hidden;
}
.section-article .inner{
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 30px;
    box-sizing: border-box;
}
.section-article .article-container{
    position: relative;
    margin: 150px 0;
}
.section-article .article-container:after{
    background: url(../img/flash.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    right: -80px;
    top: -100px;
    width: 150px;
    height: 150px;
    content: '';
}
.section-article .article-container:before{
    background: url(../img/speaker.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    left: -30px;
    bottom: -120px;
    width: 153px;
    height: 121px;
    content: '';
    z-index: 3;
}
.section-article .article-container .speaker{
    position: absolute;
}
.section-article .article-container .bubble-wrapper{
    position: relative;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 30px;
}
.section-article .article-container .bubble-wrapper .bubble{
    background: #eee;
    border-radius: 30px;
    padding: 20px;
}
.section-article .article-container .bubble-wrapper .bubble a{
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}
.section-article .article-container .bubble-wrapper .bubble a:hover{
    color: #0076BD;
}
.section-article .article-container .bubble-wrapper .bubble .image{
    width: 40%;
    border-radius: 20px;
    overflow-y: hidden;
}
.section-article .article-container .bubble-wrapper .bubble .image img{
    width: 100%;
    display: block;
}
.section-article .article-container .bubble-wrapper .bubble .text{
    width: 60%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px;
}
.section-article .article-container .bubble-wrapper .bubble .text h3{
    font-size: 1.3em;
    font-weight: bold;
}
.section-article .article-container .bubble-wrapper .bubble .text p{
}

@media screen and (max-width: 768px) {
.section-article .article-container .bubble-wrapper .bubble a{
    flex-wrap: wrap;
}
.section-article .article-container .bubble-wrapper .bubble .image{
    width: 100%;
}
.section-article .article-container .bubble-wrapper .bubble .text{
    width: 100%;
}
.section-article .article-container:after{
    right: 0px;
    top: -120px;
}
}

@media screen and (max-width: 600px) {
.section-article{
    padding: 50px 0;
}
.section-article .article-container{
    margin: 100px 0;
}
.section-article .article-container .bubble-wrapper{
    border-radius: 20px;
    padding: 10px;
}
.section-article .article-container .bubble-wrapper .bubble{
    border-radius: 15px;
    padding: 10px;
}
.section-article .article-container .bubble-wrapper .bubble .image{
    border-radius: 10px;
}
.section-article .article-container .bubble-wrapper .bubble .text{
    padding: 10px;
}
.section-article .article-container:after{
    top: -70px;
    width: 80px;
    height: 80px;
}
.section-article .article-container:before{
    left: -10px;
    bottom: -72px;
    width: calc(153px * 0.6);
    height: calc(121px * 0.6);
}
}





/* -----------------readmore----------------- */

.section-readmore{
    padding: 100px 0;
}
.section-readmore .inner{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}
.section-readmore .list{
    display: flex;
    max-width: 1100px;
    margin: 100px auto 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}
.section-readmore .list .entry{
    width: 33.33%;
    text-decoration: none;
    color: #4d4d4d;
    box-sizing: border-box;
    padding: 0 20px;
    transition: color 0.2s;
    margin-bottom: 70px;
}
.section-readmore .list .entry a{
    background: #eee;
    display: block;
    height: 100%;
    padding: 20px;
    border-radius: 30px;
    box-sizing: border-box;
    color: #000;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}
.section-readmore .list .entry a:before{
    position: absolute;
    display: block;
    content: '';
    width: calc(360px * 0.5);
    height: calc(120px * 0.5);
    left: 0;
    top: -27px;
    background: url(../img/lope.png) center no-repeat;
    background-size: 100%;
    z-index: 1;
}
.section-readmore .list .entry a:hover{
    color: #0076BD;
}
.section-readmore .list .entry .image{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.section-readmore .list .entry .image img{
    width: 100%;
    display: block;
}
.section-readmore .list .entry p{
    font-weight: bold;
    margin: 0.5em 0;
}
.section-readmore .logo{
    margin-top: 100px;
}
.section-readmore .logo img{
    width: 150px;
    display: block;
    margin: 0 auto;
}


@media screen and (max-width: 1023px) {
.section-readmore .list .entry{
    padding: 0 10px;
}
.section-readmore .list .entry a{
    padding: 15px;
    border-radius: 30px;
}
.section-readmore .list .entry a:before{
    width: calc(360px * 0.4);
    height: calc(120px * 0.4);
    top: -22px;
}
}
@media screen and (max-width: 767px) {
.section-readmore .list .entry{
    width: 50%;
}
}
@media screen and (max-width: 500px) {
.section-readmore .list .entry{
    width: 100%;
}
}



/* -----------------grid----------------- */

.section-grid{
    padding: 180px 0;
    overflow: hidden;
    background: #4E9CF3;
}
.section-grid .inner{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
}
.section-grid .map{
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
}
.section-grid .map .entry{
    box-sizing: border-box;
    padding: 5px;
}
.section-grid .map .entry .image{
    width: 100%;
    height: 0;
    box-sizing: border-box;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}
.section-grid .map .entry .block{
    width: 100%;
    height: 0;
    box-sizing: border-box;
    position: relative;
    border-radius: 40px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-grid .map .entry.entry-3 .block .text-wrapper{
    padding-top: 70%;
}
.section-grid .map .entry.entry-4 .block .text-wrapper{
    padding-top: 35%;
}
.section-grid .map .entry.entry-6 .block .text-wrapper{
    padding-top: 70%;
}
.section-grid .map .entry.entry-8 .block .title-wrapper{
    padding-top: 65%;
}
.section-grid .map .decor{
    background: #3B8FED;
    width: 130%;
    margin-left: -15%;
    height: 1px;
    margin-bottom: 30px;
    position: relative;
}
.section-grid .map .decor:before{
    background: url(../img/blink.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    width: 10px;
    height: 10px;
    right: -15px;
    top: -5px;
    content: '';
}
.section-grid .map .title-wrapper h3{
    color: #3B8FED;
    font-size: 3.5em;
    font-weight: 500;
    margin: 0 0 0.4em 0;
    line-height: 1em;
}
.section-grid .map .title-wrapper h4{
    font-size: 1.4em;
    font-weight: bold;
    margin: 0;
    line-height: 1.4em;
}
.section-grid .map .entry.entry-1 .image{
    padding-bottom: 79%;
}
.section-grid .map .entry.entry-2 .image{
    padding-bottom: 83%;
}
.section-grid .map .entry.entry-3 .block{
    padding-bottom: 74%;
}
.section-grid .map .entry.entry-4 .block{
    padding-bottom: 38%;
}
.section-grid .map .entry.entry-5 .image{
    padding-bottom: 51%;
}
.section-grid .map .entry.entry-6 .block{
    padding-bottom: 76%;
}
.section-grid .map .entry.entry-7 .image{
    padding-bottom: 56%;
}
.section-grid .map .entry.entry-8 .block{
    padding-bottom: 72%;
}
.section-grid .map .entry .image img{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
}
.section-grid .map .entry-1{
    width: 40%;
}
.section-grid .map .group-1{
    width: 20%;
}
.section-grid .map .group-2{
    width: 40%;
    display: flex;
    flex-direction: column;
}
.section-grid .map .entry-2{
    width: 100%;
}
.section-grid .map .entry-3{
    width: 100%;
}
.section-grid .map .entry-4{
    width: 70%;
}
.section-grid .map .entry-5{
    width: 100%;
}
.section-grid .map .entry-6{
    width: 25%;
}
.section-grid .map .entry-7{
    width: 45%;
}
.section-grid .map .entry-8{
    width: 30%;
}

#swiper1 {
  padding-bottom: 79%;
}
#swiper2 {
  padding-bottom: 83%;
}
#swiper3 {
  padding-bottom: 51%;
}
#swiper4 {
  padding-bottom: 56%;
}

.section-grid .inner .map:after{
    background: url(../img/camera.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    right: -50px;
    top: -150px;
    width: 250px;
    height: 250px;
    content: '';
}
.section-grid .inner:before{
    background: url(../img/polaroid.png) center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    left: 50px;
    bottom: -100px;
    width: 300px;
    height: 200px;
    content: '';
}

@media screen and (max-width: 1400px) {
.section-grid .map .decor{
    width: 100%;
    margin-left: -0%;
}
}
@media screen and (max-width: 1200px) {
.section-grid .map .title-wrapper h3{
    font-size: 2em;
}
.section-grid .map .title-wrapper h4{
    font-size: 1em;
}
.section-grid .map .decor{
    margin-bottom: 15px;
}
}
@media screen and (max-width: 1023px) {
.section-grid .map .entry .image{
    border-radius: 30px;
}
.section-grid .map .entry .block{
    border-radius: 30px;
}
}

@media screen and (max-width: 767px) {
.section-grid .map .entry .image{
    border-radius: 20px;
}
.section-grid .map .entry .block{
    border-radius: 20px;
}
.section-grid .map .entry-1{
    width: 100%;
    order: 2;
}
.section-grid .map .group-1{
    width: 100%;
    order: 4;
}
.section-grid .map .group-2{
    width: 100%;
    order: 5;
    flex-direction: column-reverse;
}
.section-grid .map .entry.entry-3 {
    width: 80%;
    margin-left: 20%;
    margin-top: -20%;
    z-index: 3;
    position: relative;
}
.section-grid .map .entry.entry-3 .block .text-wrapper {
    padding-top: 40%;
}
.section-grid .map .entry.entry-3 .block {
    padding-bottom: 44%;
}
.section-grid .map .entry-6{
    width: 80%;
    order: 3;
    margin-top: -20%;
    z-index: 3;
}
.section-grid .map .entry.entry-6 .block {
    padding-bottom: 46%;
}
.section-grid .map .entry.entry-6 .block .text-wrapper {
    padding-top: 50%;
}
.section-grid .map .entry-7{
    width: 100%;
    order: 6;
}
.section-grid .map .entry-8{
    width: 85%;
    order: 1;
}
.section-grid .map .entry-8 br{
    display: none;
}
.section-grid .map .entry.entry-8 .block {
    padding-bottom: 55%;
}
.section-grid .map .entry.entry-8 .block .title-wrapper {
    padding-top: 60%;
}
.section-grid .inner .map:after{
    right: -0px;
    top: -180px;
    width: 200px;
    height: 200px;
}
.section-grid .inner:before{
    bottom: -120px;
    width: 200px;
    height: 150px;
}
}



















/* -----------------kv----------------- */

.section-kv{
    background: #017CED;
    background: #fff;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.section-kv .main-banner{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.section-kv .main-banner img{
    display: block;
    width: 100%;
    height: 100%;
}
.section-kv .switch{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    left: 0;
}
.section-kv .switch.active{
    opacity: 1;
    z-index: 2;
}
.section-kv .kv-content{
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    min-height: 50vw;
    box-sizing: border-box;
}
.section-kv .kv-content .inner{
    width: 47%;
}
.section-kv .kv-content .main-title img{
    display: block;
    width: 100%;
}
.section-kv .kv-content .tagline{
    text-align: center;
}
.section-kv .kv-content .tagline h2{
    border-top : 1px solid #fff;
    border-bottom : 1px solid #fff;
    width: 18vw;
    font-size: 1.5vw;
    color: #fff;
    margin: -2vw auto 0 auto;
    box-sizing: border-box;
    padding: 0.8vw 0;
}


@media screen and (min-width: 1920px) {
.section-kv .kv-content{
    padding: 200px 100px;
    min-height: 700px;
}
.section-kv .kv-content .tagline h2{
    width: 400px;
    font-size: 2em;
    margin: -50px auto 0 auto;
    padding: 20px 0;
}
}


@media screen and (max-width: 767px) {
.section-kv .kv-content{
    min-height: 165vw;
}
.section-kv .kv-content{
    align-items: flex-start;
    padding-top: 5vw;
}
.section-kv .kv-content .inner{
    width: 100%;
}
.section-kv .kv-content .tagline h2{
    width: 50vw;
    font-size: 4vw;
    margin: -4vw auto 0 auto;
    padding: 1.5vw 0;
}
}







/* -----------------program----------------- */

.section-program{
    background: #eee;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50px;
}
.section-program .inner{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}

.section-program .list{
    display: flex;
    max-width: 820px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-program .list .entry{
    width: 29%;
    text-align: center;
}
.section-program .list .entry .image{
    border-radius: 50%;
    overflow: hidden;
}
.section-program .list .entry .image img{
    width: 100%;
    display: block;
}
.section-program .list .entry p{
    font-weight: bold;
    font-size: 1.2em;
    color: #606060;
}



.section-program .bubble{
    background: #fff;
}
.section-program .bubble .text{
    padding: 20px 20px;
    color: #606060;
}
.section-program .bubble .text p{
    max-width: 520px;
}
.section-program .bubble .text:before{
    background: url(../img/quotation.png) center no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    top: -10px;
    width: 71px;
    height: 60px;
}


.main-text{
    text-align: center;
    padding: 20px 0;
}
.main-text h3{
    font-weight: bold;
    font-size: 2em;
    color: #606060;
    margin: 0 0 1em 0;
}
.main-text p{
    color: #017CED;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}
.main-text .marker{
    display: inline-block;
    position: relative;
}
.main-text .underline{
    padding-bottom: 6px;
    display: inline-block;
    border-bottom: 4px solid #FFED22;
}
.main-text .marker b{
    display: block;
    position: relative;
    z-index: 2;
}
.main-text .marker:after{
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 50%;
    background: #FFED22;
    content: '';
    z-index: 1;
}


@media screen and (max-width: 1200px) {
.section-program .bubble .text{
    padding: 20px 20px 120px 20px;
}
}
@media screen and (max-width: 1024px) {
.section-program .bubble .text:before{
    left: 5%;
    top: -40px;
}
}
@media screen and (max-width: 767px) {
.section-program .bubble .text {
  padding: 10vw 7vw 40vw 7vw;
}
.section-program .bubble .text:before{
    top: -10px;
}
}
@media screen and (max-width: 550px) {
.section-program .list{
    margin: 20px auto 0 auto;
    padding: 0 20px;
    max-width: 350px;
}
.section-program .list .entry{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.section-program .list .entry .image{
    margin-right: 20px;
}
}




/* -----------------house----------------- */

.section-house{
    background: #fff;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50px;
}
.section-house:before{
    background: url(../img/star.png) center no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    left: 20%;
    top: -40px;
    width: 152px;
    height: 226px;
}

.section-house .inner{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}

.section-house .list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0 180px 0;
}
.section-house .list .entry{
    width: 33.33%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}
.section-house .list .entry .image{
}
.section-house .list .entry .image img{
    width: 100%;
    display: block;
}
.section-house .list .entry p{
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: -20px;
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1em;
}
.section-house .list .entry p span:first-child{
    font-weight: bold;
    font-size: 1.2em;
    background: #017CED;
    padding: 12px 25px 6px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
}
.section-house .list .entry p span:last-child{
    font-weight: normal;
    font-size: 1em;
    background: #017CED;
    padding: 12px 25px 12px 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: inline-block;
}


.section-house .bubble{
    background: #eee;
}
.section-house .bubble .text{
    padding: 20px 20px;
    color: #606060;
}
.section-house .bubble .text:before{
    background: url(../img/quotation.png) center no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    top: -10px;
    width: 71px;
    height: 60px;
}
.section-house .bubble .text p{
    max-width: 520px;
}
.section-house .main-img img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
.section-house .bubble .text{
    padding: 20px 20px 120px 20px;
}
}
@media screen and (max-width: 1024px) {
.section-house .bubble .text:before{
    left: 5%;
    top: -40px;
}
.section-house:before{
    display: none;
}
}
@media screen and (max-width: 767px) {
.section-house .list{
    max-width: 500px;
    margin: 0 auto;
}
.section-house .list .entry{
    width: 100%;
    margin-bottom: 50px;
}
.section-house .bubble .text {
  padding: 10vw 7vw 40vw 7vw;
}
.section-house .bubble .text:before{
    top: -10px;
}
}

/* -----------------world----------------- */

.section-world{
    background: #017CED url(../img/world-bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
  padding-top: 80px;
}
.section-world .inner{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}
.section-world .bubble .text{
    padding: 20px 20px;
}
.section-world .bubble .text:before{
    background: url(../img/quotation-2.png) center no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    top: -10px;
    width: 71px;
    height: 60px;
}
.section-world .bubble .text p{
    max-width: 520px;
}
.section-world .poster .description {
  left: -40%;
}
.section-world .main-text h3{
    color: #fff;
}
.section-world .main-text p{
    color: #fff;
}
@media screen and (max-width: 1200px) {
.section-world .bubble .text{
    padding: 20px 20px 120px 20px;
}
}
@media screen and (max-width: 1024px) {
.section-world .bubble .text:before{
    left: 5%;
    top: -40px;
}
.section-world:before{
    display: none;
}
}
@media screen and (max-width: 767px) {
.section-world .bubble .text {
  padding: 10vw 7vw 40vw 7vw;
}
.section-world .bubble .text:before{
    top: -10px;
}
}









/* -----------------readmore----------------- */

.section-podcast{
    background: #fff;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-podcast .inner{
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}



/* -----------------talk----------------- */

.section-talk{
    background: #017CED;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 70px;
    color: #fff;
    overflow: hidden;
}
.section-talk:after{
    background: #eee;
    position: absolute;
    width: 100%;
    height: 30px;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    z-index: 1;
}
.section-talk .inner{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
}
.section-talk .title{
    position: relative;
    width: 40%;
    box-sizing: border-box;
    padding: 50px 0 0 70px;
}
.section-talk .title h3{
    font-weight: bold;
    font-size: 2em;
    margin: 0;
    letter-spacing: 3px;
}
.section-talk .title .speaking{
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 30px;
}
.section-talk .title .speaking .image{
    border-radius: 50%;
    overflow: hidden;
    width: 100px;
    margin-right: 20px;
}
.section-talk .title .speaking .image img{
    width: 100%;
    display: block;
}
.section-talk .title .speaking .talk-bubble{
    position: absolute;
    width: 200px;
    top: 80px;
    left: 100px;
}
.section-talk .title .speaking .talk-bubble img{
    width: 100%;
    display: block;
}


.section-talk .video-container{
    position: relative;
    width: 60%;
    padding-left: 5%;
    box-sizing: border-box;
}
.section-talk .video-container iframe{
    width: 100%;
    height: 360px;
}
.section-talk .video-container .brief{
    position: relative;
    padding-top: 50px;
    padding-right: 10%;
}
.section-talk .video-container .brief:before{
    background: url(../img/quotation-2.png) center no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    left: -30px;
    top: -10px;
    width: 71px;
    height: 60px;
}

.section-talk .picture{
    position: relative;
    width: 40%;
    margin-top: -180px;
}
.section-talk .picture img{
    width: 100%;
    display: block;
}

@media screen and (max-width: 980px) and (min-width: 768px){
.section-talk .title{
    padding: 30px 0 80px 30px;
}
.section-talk .title .speaking .talk-bubble{
    width: 150px;
}
}

@media screen and (max-width: 767px) {
.section-talk .title{
    width: 100%;
    padding: 0px 0 80px 50px;
}
.section-talk .video-container{
    width: 100%;
    padding-left: 0%;
}
.section-talk .video-container iframe{
    height: 56vw;
}
.section-talk .video-container .brief{
    padding-right: 0%;
}
.section-talk .picture{
    width: 100%;
    margin-top: 20px;
}
}

@media screen and (max-width: 450px) {
.section-talk .title{
    padding: 0px 0 80px 10px;
}
.section-talk .title h3{
    font-size: 1.5em;
    text-align: center;
}
.section-talk .title .speaking .image{
    width: 80px;
}
.section-talk .title .speaking .talk-bubble{
    width: 150px;
    left: 90px;
}
}


