/* Page CSS */
html{
    position: relative;
    width:  100%;
    height:  100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    color: black;
    overflow-x: hidden;
}
*{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-weight: normal;
    vertical-align: baseline;
}
body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}
a{
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}
b{
    font-weight: 600;
}
input, a, textarea{
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
}
input[type='checkbox'] {
    cursor: pointer;
}
/* Utilities */
.u-hide{
    display: none !important;
}
.u-opaque{
    opacity: 0.5;
}
.u-disabled{
    opacity: 0.5 !important;
}
.u-notransition{
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}
.u-alignLeft{
    float: left;
}
.u-alignRight{
    float: right;
}
.u-noSelect{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Top bar */
.topWrap{
    position: fixed;
    width: 100%;
    height: 8px;
    z-index: 103;
}
.topWrap.with-notice{
    height: 48px;
}
@-webkit-keyframes tickerAnimation {
    0%{height: 45px;}
    50%{height: 50px;}
    100%{height: 45px;}
}
@-moz-keyframes tickerAnimation {
    0%{height: 45px;}
    50%{height: 50px;}
    100%{height: 45px;}
}
@keyframes tickerAnimation {
    0%{height: 45px;}
    50%{height: 50px;}
    100%{height: 45px;}
}
.topWrap a{
    display: block;
    text-align: center;
    font-weight: 600;
    padding-top: 13px;
}
.topWrap marquee a{
    position: relative;
    padding: 0px 40px;
    display: inline-block;
    line-height: 49px;
}
.topWrap marquee a:after{
    position: absolute;
    right: 0px;
    content: "|";
}
.topWrap marquee a:last-of-type:after{
    content: "";
}
.headerWrap{
    position: absolute;
    top: 8px;
    left: 0px;
    width: 100%;
    height: 100px;
    z-index: 101;
}
.headerWrap.with-notice{
    top: 58px;
}
.logo-main{
    position: absolute;
    left: 0px;
    top: 20px;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0px 0px;
}
/* Lang btns */
.lang-btns{
    position: absolute;
    top: 33px;
    left: 140px;
    padding: 5px 10px;
    border-radius: 4px;
}
.lang-btns a{
    display: inline-block;
    font-weight: 600;
    margin-right: 10px;
}
.lang-btns a:last-of-type{
    margin-right: 0px;
}
/* Main wrap */
.mainWrap{
    position: relative;
    width: 100%;
    padding-top: 110px;
    min-height: 100%;
}
.mainWrap.with-notice{
    padding-top: 160px;
}
/* Blocks */
.one-block{
    position: relative;
    width: 100%;
}
.one-block:after{
    display: block;
    content: '';
    clear: both;
}
.block-btn{
    position: relative;
    display: inline-block;
    min-width: 250px;
    margin: 20px 0px;
    padding: 14px 20px 18px;
    border-radius: 10px;
}
.block-btn span{
    font-weight: 600;
}
.block-btn:after{
    position: relative;
    top: 5px;
    left: 0px;
    line-height: 20px;
    content: ' →';
    font-size: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.block-btn:hover:after{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    left: 5px;
}
.block-btnb{
    margin-top: -10px;
}
/* Header block */
.header-block{
    position: relative;
    width: 100%;
    min-height: 400px;
}
.header-block.with-bg{
    border-radius: 10px;
    margin-bottom: 50px;
}
.header-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 100%;
    border-radius: 12px;
}
.header-content{
    position: relative;
    width: 600px;
}
.header-block.with-bg .header-content{
    padding: 30px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    min-height: 400px;
}
.header-title{
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 10px;
}
.header-title span,
.kindness-stories{
    font-weight: 600;
}
.header-desc{
    font-size: 18px;
}
/* Header story */
.header-story{
    position: absolute;
    display: block;
    right: 30px;
    top: 0px;
    width: 500px;
    padding: 50px;
    border-radius: 10px;
}
.header-story:before{
    position: absolute;
    content: '';
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
}
.header-story:after{
    position: absolute;
    content: '';
    top: 23px;
    left: 23px;
    bottom: 23px;
    right: 23px;
}
.header-story-title{
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 10px;
}
/* Container block */
.container-block{
    position: relative;
    display: block;
    width: 100%;
}
.all-people.container-block{
    width: auto;
}
.container-block .container-row{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.container-row > div:not(.slick-list),
.container-row > a:not(.slick-list){
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
    margin: 10px 20px 10px 0px;
    flex: 1 0 calc(33.333% - 13px);
    max-width: calc(33.333% - 14px);
    border-radius: 10px;
}
.view-as-list.container-row > div,
.view-as-list.container-row > a,
.mixed-others > div,
.mixed-others > a{
    position: relative;
    display: table;
    padding: 0px;
    margin: 20px 0px 0px 0px;
    flex: none;
    max-width: 100%;
    border: 0px;
    border-radius: 0px;
}
.mixed-others > div,
.mixed-others > a{
    margin-top: 0px;
}
.view-as-list.container-row > div:first-of-type,
.view-as-list.container-row > a:first-of-type,
.mixed-others > div:first-of-type,
.mixed-others > a:first-of-type{
    margin-top: 0px;
}
.container-row > div.mixed-first{
    padding: 20px 0px 0px 0px;
    border: 0px !important;
    border-radius: 0px;
}
.container-row > div.mixed-others{
    padding: 20px 0px 0px 50px;
    flex: 1 0 calc(66.666% - 13px);
    max-width: calc(66.666% - 14px);
    border: 0px !important;
    border-radius: 0px;
}
.slick-track{
    position: relative;
    height: 100%;
}
.slick-track > div,
.slick-track > a{
    position: relative;
    padding: 20px;
    margin: 10px 20px 10px 0px;
    border-radius: 10px;
    height: 100%;
}
.slick-track > div.with-btn{
    padding-bottom: 80px;
}
.container-row > div.width-full,
.container-row > a.width-full{
    flex: 1 0 calc(100% - 6px);
    max-width: calc(100% - 7px);
}
.container-row > div.width-two-third,
.container-row > a.width-two-third{
    flex: 1 0 calc(66.7% - 13px);
    max-width: calc(66.7% - 14px);
}
.container-row > div.width-half,
.container-row > a.width-half{
    flex: 1 0 calc(50% - 13px);
    max-width: calc(50% - 14px);
}
.container-row > div:last-of-type,
.container-row > a:last-of-type{
    margin-right: 0px;
}
.container-row > div.with-btn{
    padding-bottom: 120px;
}
.container-row .card-block{
    padding-bottom: 20px;
}
.container-row .card-block.with-btn{
    padding-bottom: 90px;
}
.card-block{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.card-block:hover{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.container-block .body-embed-block,
.container-block .logos-block,
.container-block .calendar-block{
    flex: 1 0 calc(66.7% - 13px);
    max-width: calc(66.7% - 14px);
}
.container-block .body-embed-block.width-full,
.container-block .logos-block.width-full,
.container-block .calendar-block.width-full{
    flex: 1 0 calc(100% - 6px);
    max-width: calc(100% - 7px);
}
.container-block .body-embed-block.width-half,
.container-block .logos-block.width-half,
.container-block .calendar-block.width-half{
    flex: 1 0 calc(50% - 13px);
    max-width: calc(50% - 14px);
}
.container-block .body-embed-block.width-one-third,
.container-block .logos-block.width-one-third,
.container-block .calendar-block.width-one-third{
    flex: 1 0 calc(33.333% - 13px);
    max-width: calc(33.333% - 14px);
}
/* Section block */
.section-block{
    position: relative;
    display: table;
    width: 100%;
    padding: 50px;
    margin: 50px 0px 10px;
    border-radius: 10px;
}
.section-header{
    position: relative;
    display: table-cell;
    width: 35%;
    vertical-align: top;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-right: 50px;
}
.section-content{
    position: relative;
    display: table-cell;
    width: 45%;
    vertical-align: top;
}
.section-desc{
    line-height: 1.6;
}
/* Embed Block */
.embed-block{
    position: relative;
    margin-top: 20px;
    margin-right: 20px;
}
.body-embed-block .embed-block{
    margin-right: 0px;
}
.embed-block > iframe{
    max-width: 100%;
    padding: 0px 30px;
}
.header-block .embed-block{
    position: absolute;
    right: 0px;
    margin: 0px;
    max-height: 350px;
    overflow-y: auto;
}
.embed-block > img{
    max-width: 100%;
}
.header-video .embed-block > iframe{
    width: 560px;
    height: 315px;
    padding: 0px;
    border-radius: 10px;
}
.header-video .embed-block > iframe.globe-embed{
    position: relative;
    height: 420px;
    top: -50px;
    border-radius: 0px;
}
.twitter-timeline{
    width: 400px;
}
.header-video .embed-block > iframe#twitter-widget-0{
    width: 400px !important;
    border: 1px solid #e9e9ef !important;
    border-radius: 10px !important;
}
.container-block .embed-block > iframe{
    width: 100%;
    max-width: 100%;
    float: none;
    padding: 0px;
    border-radius: 10px;
}
.container-block .embed-block > iframe.globe-embed{
    position: relative;
    height: 420px;
    border-radius: 0px;
    width: 560px;
}
.card-block .embed-block{
    margin-top: 0px;
    margin-bottom: 10px;
}
.card-block .embed-block > iframe{
    height: 200px;
}
/* Logos */
.logos-block .all-logos{
    display: block;
}
.logos-block .one-logo{
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: 0px 20px 20px 0px;
    background-size: 150px;
    border-radius: 10px;
}
/* Feed */
.feed-block{
    width: 33.3%;
}
.feed-block .embed-block{
    max-height: 700px;
    overflow-y: auto;
    margin-right: 0px;
    border-radius: 10px;
}
/* Overlay */
.overlay{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 105;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.overlay.with-sidebar{
    display: block;
}
.overlay-box{
    position: absolute;
    display: block;
    top: 15%;
    left: 50%;
    width: 560px;
    height: 315px;
    padding: 0;
    margin-left: -280px;
    opacity: 0;
    -webkit-transform: translateY(5%);
    -moz-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.overlay-box.animate{
    opacity: 1;
    -webkit-transform: translateY(-5%);
    -moz-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
}
.overlay-box > iframe{
    width: 600px;
    height: 340px;
}
/* Body text */
.articleWrap{
    max-width: 900px;
    margin: 0 auto;
    background-size: 100%;
    padding: 50px !important;
    margin-top: 50px;
    border-radius: 20px;
}
.articleWrap .embed-block > iframe{
    width: 100%;
    max-width: 100%;
    float: none;
    margin-bottom: 20px;
}
.articleWrap .container-block > .body-text-block{
    font-size: 18px;
    margin-bottom: 0px;
    min-height: 300px;
    border: 0px;
    padding: 0px;
    box-shadow: none;
}
.body-text-block button{
    display: none;
}
.body-text-block table{
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
}
.body-text-block th,
.body-text-block td{
    padding: 10px;
    white-space: normal;
    word-wrap: break-word;
    width: auto;
}
.articleWrap .body-text-block div,
.articleWrap .body-text-block p,
.articleWrap .body-text-block figure,
.articleWrap .body-text-block h1,
.articleWrap .body-text-block h2,
.articleWrap .body-text-block h3,
.articleWrap .body-text-block h4,
.articleWrap .body-text-block h5,
.articleWrap .body-text-block h6{
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    word-wrap: break-word;
}
.articleWrap .body-text-block h1{
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 600;
}
.articleWrap .body-text-block h2,
.article-block .people-block .block-title{
    font-size: 22px;
    font-weight: 600;
}
.articleWrap .body-text-block h3{
    font-size: 18px;
}
.articleWrap .body-text-block blockquote{
    position: relative;
    padding: 10px 50px;
    margin-bottom: 20px;
}
.articleWrap .body-text-block blockquote:before{
    position: absolute;
    top: -25px;
    left: -15px;
    content: '"';
    font-weight: 600;
    font-size: 100px;
    font-style: italic;
}
.articleWrap .body-text-block blockquote p{
    font-size: 22px;
    font-style: italic;
}
.articleWrap .body-text-block blockquote p:last-of-type{
    margin-bottom: 0px;
}
.body-text-block strong,
.body-text-block b,
.body-text-block strong span,
.body-text-block b span{
    font-weight: 600;
}
.body-text-block strong em,
.body-text-block strong i,
.body-text-block b em,
.body-text-block b i,
.body-text-block em strong,
.body-text-block em b,
.body-text-blocki strong,
.body-text-block i b{
    font-weight: 600;
    font-style: italic;
}
.body-text-block em,
.body-text-block i{
    font-style: italic;
}
.body-text-block img{
    display: block;
    max-width: 100%;
    margin: 20px 0px;
    border-radius: 10px;
}
.body-text-block ul,
.body-text-block ol{
    margin: 10px 0px 20px 20px;
}
.body-text-block li{
    margin-bottom: 10px;
}
.body-text-block pre{
    padding: 20px;
    margin-bottom: 20px;
    white-space: normal;
}
.body-text-block hr{
    display: block;
    height: 1px;
    border: 0;
    margin: 20px 0px;
    padding: 0;
}
.body-text-block > iframe{
    width: 100%;
    max-height: 500px;
}
.text-title,
.body-text-block .text-title,
.article-block .body-text-block .text-title{
    position: relative;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.mixed-others .text-title{
    font-size: 20px;
}
.view-as-list.container-row .content-wrapper,
.mixed-others .content-wrapper{
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
}
.title-wrapper{
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.container-row a span.text-title{
    padding-bottom: 5px;
    transition: background-size .6s ease-out;
}
.container-row a:hover .text-title{
    background-size: 97% 40%;
}
.article-block .body-text-block .text-title{
    font-size: 20px;
    line-height: 1.5;
}
.text-desc,
.text-about{
    line-height: 1.6;
}
.container-row .text-about{
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}
.text-label{
    display: inline-block;
    border: 1px solid;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 5px 0px 10px;
    font-size: 14px;
    font-weight: 600;
}
.text-image-cover{
    position: relative;
    display: block;
    width: 100%;
}
.view-as-list.container-row .text-image-cover,
.mixed-others .text-image-cover{
    display: table-cell;
    vertical-align: top;
    width: 200px;
}
.text-image,
.body-text-block .text-image{
    width: 100%;
    height: 200px;
    background-size: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}
.text-image:hover,
.body-text-block .text-image:hover{
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.all-people .body-text-block .text-image{
    min-width: 200px;
}
.body-text-block .block-btn{
    position: absolute;
    left: 20px;
    bottom: 0px;
}
.all-people .body-text-block .block-btn{
    min-width: initial;
}
.body-text-block .block-btn.social-btn{
    padding-left: 45px;
}
.body-text-block .block-btn.social-btn span.icon{
    position: absolute;
    left: 15px;
}
/* Calendar */
.all-events{
    position: relative;
    margin-top: 30px;
}
.one-event{
    position: relative;
    margin-bottom: 15px;
    display: table;
    width: 100%;
}
.one-event .event-image{
    display: table-cell;
    width: 200px;
    height: 100px;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
}
.one-event .event-content{
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
}
.one-event .event-date{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 4rem 2rem 4.2rem 1.1rem;
}
.one-event:nth-child(2) .event-date{
    border-radius: 2rem 4rem 1.2rem 4.2rem;
}
.one-event .event-title{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
/* HTML Block */
.html-block{
    font-size: 18px;
    margin-bottom: 0px;
    min-height: 300px;
    border: 0px;
    padding: 0px;
}
.html-block button{
    display: none;
}
.html-block table{
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
}
.html-block th,
.html-block td{
    padding: 10px;
    white-space: normal;
    word-wrap: break-word;
    width: auto;
}
.html-block div,
.html-block p,
.html-block figure,
.html-block h1,
.html-block h2,
.html-block h3,
.html-block h4,
.html-block h5,
.html-block h6{
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    word-wrap: break-word;
}
.html-block a{
    font-weight: 600;
}
.html-block h1{
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 600;
}
.html-block h2{
    font-size: 22px;
    font-weight: 600;
}
.html-block h3{
    font-size: 18px;
}
.html-block blockquote{
    position: relative;
    padding: 10px 50px;
    margin-bottom: 20px;
}
.html-block blockquote:before{
    position: absolute;
    top: -25px;
    left: -15px;
    content: '"';
    font-weight: 600;
    font-size: 100px;
    font-style: italic;
}
.html-block blockquote p{
    font-size: 22px;
    font-style: italic;
}
.html-block blockquote p:last-of-type{
    margin-bottom: 0px;
}
.html-block .ae-twitter-link{
    border-bottom: 0px;
}
.html-block strong,
.html-block b,
.html-block strong span,
.html-block b span{
    font-weight: 600;
}
.html-block strong em,
.html-block strong i,
.html-block b em,
.html-block b i,
.html-block em strong,
.html-block em b,
.html-block i strong,
.html-block i b{
    font-weight: 600;
    font-style: italic;
}
.html-block em,
.html-block i{
    font-style: italic;
}
.html-block img{
    display: block;
    max-width: 100%;
    margin: 20px 0px;
}
.html-block ul,
.html-block ol{
    margin: 10px 0px 20px 20px;
}
.html-block li{
    margin-bottom: 10px;
}
.html-block pre{
    padding: 20px;
    margin-bottom: 20px;
    white-space: normal;
}
.html-block hr{
    display: block;
    height: 1px;
    border: 0;
    margin: 20px 0px;
    padding: 0;
}
.html-block > iframe{
    width: 100%;
    max-height: 500px;
}
/* Gallery */
.carousel-block{
    position: relative;
    width: 100%;
}
.carousel-block .gallery-image{
    position: relative;
    width: 600px;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
}
.carousel-block .gallery-title{
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 20px;
}
/* Article */
.articleWrap .header-block{
    min-height: 400px;
    height: auto;
}
.articleWrap .embed-image{
    position: relative;
    width: 800px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}
.articleWrap .header-content{
    position: relative;
    width: 100%;
    padding: 0px 0px 40px 0px;
    margin-bottom: 40px;
}
/* Article block */
.article-block{
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.article-block .carousel-block{
    padding: 0px;
}
.article-block .block-title{
    font-size: 20px;
    font-weight: 600;
}
.article-block .block-text{
    line-height: 1.6;
}
.article-block .journal-block .block-text{
    position: relative;
    margin: 10px 0px 20px;
}
.article-block .image-block img{
    max-width: 100%;
}
.article-block .audio-block,
.article-block .video-block,
.article-block .block-options{
    margin-top: 20px;
}
.article-block .block-table{
    position: relative;
    display: table;
    width: 100%;
}
.article-block .block-type{
    display: table-cell;
    width: 150px;
}
.article-block .block-details{
    position: relative;
    display: table-cell;
    vertical-align: top;
    padding: 20px;
}
.article-block .block-image{
    position: relative;
    display: table-cell;
    vertical-align: top;
    width: 400px;
    background-size: cover;
    background-repeat: no-repeat;
}
.article-block .block-embed > iframe{
    width: 800px;
}
.article-block .block-details.with-embed{
    position: relative;
    display: block;
    padding: 20px;
}
.article-block .block-provider{
    display: inline-block;
    padding: 5px 10px;
    margin: 10px 0px;
}
.article-block .block-provider a span{
    font-weight: 600;
}
.article-block .button-block a{
    display: inline-block;
    padding: 15px 50px;
    border-radius: 4px;
}
.article-block .container-block > div,
.article-block .container-row > div,
.article-block .container-block > a,
.article-block .container-row > a{
    border: 0px;
    padding: 0px;
    padding-top: 10px;
    padding-right: 20px;
    box-shadow: none;
}
.article-block .card-block{
    box-shadow: none;
}
.article-block .body-text-block .block-btn{
    left: 0px;
    right: 20px;
    padding: 0px 10px;
    text-align: center;
}
.article-block .body-text-block .block-btn span{
    font-size: 16px;
}
.article-block .body-text-block .block-btn:after{
    display: none;
}
.article-block .all-people .body-text-block .text-image{
    margin-bottom: 0px;
}
.article-block .logos-block .one-logo{
    margin: 0px 10px 10px 0px;
}
.file-type{
    position: relative;
    padding: 10px 0px;
}
.file-type label{
    display: block;
    position: absolute;
    width: 100%;
    bottom: 14px;
    font-weight: 600;
    margin: auto;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}
/* File icons */
.file-type div{
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
}
.file-type .file-pdf{
    background-position: -150px 0px;
}
.file-type .file-doc{
    background-position: -300px 0px;
}
.file-type .file-ppt{
    background-position: -450px 0px;
}
.file-type .file-xls{
    background-position: -600px 0px;
}
.file-type .file-zip{
    background-position: -750px 0px;
}
.file-type .file-song{
    background-position: -900px 0px;
}
.file-type .file-video{
    background-position: -1050px 0px;
}
.file-type .file-ai{
    background-position: -1200px 0px;
}
.file-type .file-sketch{
    background-position: -1350px 0px;
}
.file-type .file-psd{
    background-position: -1500px 0px;
}
.file-type .file-code{
    background-position: -1650px 0px;
}
.file-type .file-css{
    background-position: -1800px 0px;
}
.file-download{
    position: relative;
    bottom: 40px;
    text-align: center;
    display: block;
    padding: 5px 10px;
    max-width: 200px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 600;
}
/* Menu */
.link-menu{
    display: none;
    position: absolute;
    top: 19px;
    right: 0px;
    line-height: 59px;
    padding: 0px 60px;
    font-weight: 600;
    border-radius: 10px;
}
.link-menu.close-menu{
    right: 20px;
}
/* Search */
.link-search{
    position: absolute;
    top: 20px;
    right: 0px;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: -60px 0px;
}
.searchWrap{
    position: absolute;
    right: 0px;
    top: 100px;
    width: 390px;
    padding: 20px 0px;
    border-radius: 10px;
}
.searchWrap .triangle{
    position: absolute;
    right: 12px;
    top: -16px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    display: inline-block;
}
.searchWrap input{
    position: relative;
    display: inline-block;
    width: 350px;
    padding: 14px;
    margin: 0px 20px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: none;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}
.searchWrap .search-tip{
    font-weight: 600;
    font-size: 14px;
    margin: 10px 20px;
}
.search-results{
    position: relative;
    padding: 0px 20px;
    min-height: 200px;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
}
.search-results .search-header{
    display: block;
    padding: 7px 0px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0px;
    border-radius: 10px;
}
.search-results .one-search-result{
    display: block;
    padding: 7px 0px;
}
.search-results .one-search-result .result-title{
    font-size: 14px;
}
.search-results .one-search-result.with-image{
    display: table;
}
.search-results .one-search-result.with-image .result-image{
    position: relative;
    display: table-cell;
    vertical-align: top;
    width: 100px;
}
.search-results .one-search-result.with-image .result-image span{
    display: inline-block;
    width: 100px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
}
.search-results .one-search-result.with-image .result-title{
    position: relative;
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
}
/* Nav btns */
.nav-btns{
    position: absolute;
    top: 20px;
    right: 270px;
}
.nav-btns a{
    display: inline-block;
    font-weight: 600;
    line-height: 59px;
    margin-left: 20px;
}
.link-m-newsroom{
    display: none;
    position: absolute;
    top: 20px;
    right: 270px;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: -180px 0px;
}
.page-newsroom .link-m-newsroom{
    display: none;
}
/* Footer */
.footerWrap{
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}
.footerWrap > .footer-cell{
    position: relative;
    display: table-cell;
    vertical-align: top;
    padding: 50px 0px;
}
.footerWrap > .footer-embed{
    position: relative;
    display: table-cell;
    vertical-align: top;
    padding: 50px 0px;
    width: 400px;
}
.footerWrap .footer-email-div,
.footerWrap .footer-name-div{
    position: relative;
}
.footer-embed input{
    position: relative;
    display: inline-block;
    width: 350px;
    padding: 14px 80px 14px 14px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: none;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}
.footer-embed .btn-footer{
    display: inline-block;
    width: 65px;
    height: 43px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    line-height: 43px;
    position: absolute;
    top: 8px;
    right: 55px;
    cursor: pointer;
}
.footer-message{
    font-size: 14px;
    margin-top: 10px;
}
.footer-social{
    margin-bottom: 10px;
}
.footer-social span,
.footer-contact{
    font-size: 14px;
}
.footer-social a{
    display: inline-block;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    background-repeat: no-repeat;
}
.footer-social a.social-fb{
    background-position: 0px 0px;
}
.footer-social a.social-twitter{
    background-position: -30px 0px;
}
.footer-social a.social-instagram{
    background-position: -60px 0px;
}
.footer-social a.social-youtube{
    background-position: -90px 0px;
}
.footer-social a.social-linkedin{
    background-position: -120px 0px;
}
/* Menu */
.menu-overlay{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 400px;
    height: 100%;
    z-index: 103;
    overflow-x: hidden;
    overflow-y: auto;
}
.menu-overlay .topWrap.with-notice{
    border-bottom-color: transparent;
    background-color: transparent;
}
.menu-overlay .menu-items{
    position: absolute;
    width: 100%;
    top: 150px;
    padding-bottom: 50px;
}
.menu-level.level-1{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 400px;
    padding: 10px 20px 10px 40px;
}
.menu-level.level-2{
	display: none;
    margin-top: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.menu-level a{
    position: relative;
    display: block;
}
.menu-level a[href$='#']{
    padding-left: 30px;
}
.menu-level a[href$='#']:before{
    position: absolute;
    left: 0px;
    top: 9px;
    content: '►';
    font-size: 14px;
}
.menu-level a.active[href$='#']:before{
    content: '▼';
}
.menu-level span.new{
    display: inline-block;
    font-size: 12px;
    padding: 0px 10px;
    border-radius: 50px;
    margin-left: 5px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}
.level-1 > a{
    left: 0px;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.level-2 > a{
    left: 0px;
    font-weight: 600;
    line-height: 34px;
    padding-left: 30px;
}
.level-2 > a:before{
    position: absolute;
    left: 0px;
    top: 0px;
    content: '●';
    font-size: 14px;
}
/* Menu Wrap */
.menuWrap{
    position: relative;
    top: 120px;
    max-width: 1419px;
    margin: 0 auto;
    z-index: 100;
    border-radius: 4px;
}
.menuWrap .menu-level.level-1{
    width: auto;
    padding: 20px;
}
.menuWrap .menu-level.level-2{
	display: none;
    margin-top: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
}
.menuWrap .menu-level a{
    position: relative;
    display: block;
}
.menuWrap .menu-level a[href$='#']{
    padding-left: 0px;
}
.menuWrap .menu-level a[href$='#']:before{
    content: '';
    display: none;
}
.menuWrap .menu-level a.active[href$='#']:before{
    content: '';
    display: none;
}
.menuWrap .level-1 > a{
    font-size: 16px;
}
.menuWrap .level-2 > a{
    left: 0px;
    line-height: 34px;
    padding-left: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}
.menuWrap .level-2 > a:before{
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    font-size: 14px;
}
.menuWrap .level-2 > a:last-of-type{
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
/* Feed */
.feed-btn{
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    bottom: 30px;
    right: 30px;
    z-index: 12;
    background-repeat: no-repeat;
    background-position: -240px 0px;
    cursor: pointer;
}
.feed-btn.is-active{
    background-position: -300px 0px;
}
/* Sidebar */
.sidebarWrap{
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 106;
    width: 400px;
    height: 100%;
}
.sidebarWrap > div{
    position: relative;
    width: 100%;
    height: 100%;
}
.sidebar-box{
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateX(400px);
    -moz-transform: translateX(400px);
    -ms-transform: translateX(400px);
    transform: translateX(400px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    overflow-x: hidden;
    overflow-y: auto;
}
.sidebar-box.animate{
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.sidebar-box .sidebar-header{
    position: relative;
    padding: 20px;
}
.sidebar-box h2.message{
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.sidebar-box .sidebar-content{
    position: relative;
    padding: 20px;
}
.one-feed{
    position: relative;
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.one-feed:last-of-type{
    margin-bottom: 0px;
}
.one-feed .feed-label{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 15px;
    margin-bottom: 10px;
}
.one-feed .embed-block{
    margin: 0px 0px 5px 0px;
}
.one-feed .embed-block > iframe{
    width: 320px;
    height: 180px;
    padding: 0px;
    border-radius: 10px;
}
.one-feed .text-image{
    height: 160px;
}
.one-feed .text-title{
    font-size: 20px;
}
.one-feed .text-desc{
    font-size: 14px;
}
.launch-div{
    display: table !important;
    background-color: #fad212;
    padding: 20px 20px 10px;
    margin-bottom: 50px !important;
    border: 10px solid #0dc76c;
}
.launch-div iframe{
    border: 5px solid #fad212;
}
.launch-div > h2,
.launch-div > p{
    display: table-cell;
    vertical-align: top;
    color: #1d1d1d !important;
}
.launch-div > h2{
    padding-right: 20px;
}
.launch-div a{
    color: #1d1d1d !important;
    border-bottom-color: #0dc76c !important;
}
.notfound-section{
    display: block;
    margin: 200px auto;
    max-width: 300px;
}
.notfound-section h2{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}
.notfound-section h3{
    margin-bottom: 5px;
}
.notfound-links{
    margin-top: 20px;
}
.notfound-links a{
    color: #0069B4;
    font-weight: 600;
}
/* Responsive code */
@media (min-width: 1419px){
    .headerWrap{
        position: relative;
        top: auto;
        left: auto;
        max-width: 1419px;
        margin: 0 auto;
    }
    .mainWrap,
    .footerWrap,
    .menu-overlay .menu-items{
        max-width: 1419px;
        margin: 0 auto;
    }
}
@media (min-width: 660px) and (max-width: 1438px){
    .menuWrap{
        display: none;
    }
    .link-menu{
        display: block;
        right: 20px;
    }
    .link-m-newsroom{
        display: block;
        right: 270px;
    }
    .link-search{
        right: 210px;
    }
    .searchWrap{
        right: 20px;
    }
    .searchWrap .triangle{
        right: 202px;
    }
    .nav-btns{
        right: 290px;
    }
}
@media (min-width: 1101px) and (max-width: 1418px){
    .logo-main{
        left: 30px;
    }
    .lang-btns{
        left: 170px;
    }
    .mainWrap.with-notice{
        padding-top: 250px;
    }
    .one-block{
        padding: 0px 30px;
    }
    .footerWrap > .footer-cell{
        display: block;
        padding: 25px;
    }
}
@media (min-width: 660px) and (max-width: 1100px){
    .logo-main{
        left: 30px;
    }
    .lang-btns{
        left: 170px;
    }
    .mainWrap.with-notice{
        padding-top: 250px;
    }
    .one-block{
        padding: 0px 30px;
    }
    .navBar a{
        margin-left: 4px;
    }
    .header-block.header-video .embed-block{
        position: relative;
        margin-left: 20px;
    }
    .header-block.header-video .header-content{
        position: relative;
        padding-left: 30px;
        left: 0px;
        top: 0px;
    }
    .header-title{
        font-size: 36px;
    }
    .block-btn{
        max-height: 64px;
        overflow-y: hidden;
    }
    .container-row .text-title{
        word-wrap: break-word;
    }
    .section-header{
        font-size: 30px;
        padding-right: 20px;
    }
    .articleWrap{
        margin: 110px 20px 0px;
        padding: 25px !important;
    }
    .articleWrap .embed-image{
        width: 100%;
    }
    .footerWrap > .footer-cell{
        display: block;
        padding: 25px;
    }
    .footerWrap > .footer-embed{
        display: block;
        padding: 25px;
    }
    .footer-embed .btn-footer{
        right: 5px;
    }
    .launch-div{
        display: block !important;
    }
    .launch-div > h2,
    .launch-div > p{
        display: block;
    }
    .launch-div > h2{
        padding-right: 0px;
        margin-bottom: 20px;
    }
}
@media (min-width: 300px) and (max-width: 659px){
    .menuWrap{
        display: none;
    }
    .headerWrap{
        height: 150px;
    }
    .logo-main{
        left: 20px;
        top: 12px;
        width: 80px;
        height: 80px;
    }
    .lang-btns{
        left: 20px;
        top: 102px;
    }
    .mainWrap.with-notice{
        padding-top: 220px;
    }
    .navBar .link-nav{
        display: none;
    }
    .header-block{
        height: auto;
        min-height: auto;
    }
    .header-block.with-bg{
        border-radius: 0px;
        margin-bottom: 0px;
    }
    .header-bg{
        display: none;
    }
    .header-content{
        position: relative;
        width: auto;
        top: auto;
        left: auto;
        padding: 20px;
    }
    .header-block.with-bg .header-content{
        border-radius: 0px;
        min-height: auto;
    }
    .header-story{
        position: relative;
        right: auto;
        top: auto;
        width: auto;
        margin: 20px;
    }
    .container-block,
    .one-block > .calendar-block,
    .one-block > .people-block,
    .one-block > .logos-block{
        display: block;
        padding: 0px 20px;
    }
    .articleWrap > .container-block{
        padding: 0px;
    }
    .all-people.container-block{
        padding: 20px 0px;
    }
    .article-block .container-block > div,
    .article-block .container-row > div,
    .article-block .container-block > a,
    .article-block .container-row > a{
        width: 100%;
        padding-right: 0px;
        padding-top: 0px;
    }
    .text-title,
    .body-text-block .text-title{
        font-size: 20px;
    }
    .view-as-list.container-row .content-wrapper,
    .mixed-others .content-wrapper{
        display: block;
        padding-left: 0px;
    }
    .view-as-list.container-row .text-image-cover,
    .mixed-others .text-image-cover{
        display: block;
        width: 100%;
    }
    .container-block > div,
    .container-row > div,
    .container-block > a,
    .container-row > a{
        display: block;
        border: 0px;
    }
    .container-row > div,
    .container-row > a{
        margin: 0px 0px 10px 0px;
        flex: 1 0 100% !important;
        max-width: 100% !important;
    }
    .container-row > div:last-of-type,
    .container-row > a:last-of-type{
        margin-bottom: 0px;
    }
    .mixed-others > div,
    .mixed-others > a{
        width: 100%;
    }
    .container-row > div.mixed-others{
        padding: 0px;
    }
    .container-row .text-title{
        word-wrap: break-word;
    }
    .header-block.header-video{
        height: auto;
        min-height: 400px;
    }
    .header-block.header-video .embed-block{
        position: relative;
        margin-left: 20px;
    }
    .header-block.header-video .header-content{
        position: relative;
        padding-left: 30px;
        left: 0px;
        top: 0px;
    }
    .header-title{
        font-size: 30px;
    }
    .header-desc{
        font-size: 16px;
    }
    .block-btn{
        max-height: 64px;
        overflow-y: hidden;
    }
    .block-btn:after{
        display: none;
    }
    .section-block{
        display: block;
        margin: 30px 20px 10px 20px;
        padding: 20px;
        width: initial;
    }
    .section-block .block-btn{
        left: inherit;
    }
    .section-desc{
        margin-bottom: 20px;
    }
    .section-header{
        display: block;
        border: 0px;
        width: 100%;
        font-size: 30px;
    }
    .embed-block > iframe{
        width: 100%;
        float: left;
        max-width: 100%;
    }
    .header-block.header-video .embed-block > iframe{
        float: none;
        width: calc(100% - 20px);
    }
    .header-video .embed-block > iframe.globe-embed{
        top: 0px;
    }
    .container-block .body-embed-block,
    .container-block .logos-block,
    .container-block .calendar-block{
        flex: 1 0 100%;
        max-width: 100%;
    }
    .feed-block{
        width: 100%;
        height: 400px;
        overflow: hidden;
    }
    .one-event{
        display: block;
        margin-bottom: 30px;
    }
    .one-event .event-image{
        display: block;
    }
    .one-event .event-content{
        display: block;
        padding-left: 0px;
        padding-top: 20px
    }
    .articleWrap{
        margin: 110px 20px 0px;
        padding: 15px !important;
    }
    .articleWrap .embed-image{
        width: 100%;
        margin: 0 auto;
    }
    .articleWrap .header-block{
        padding-top: 90px;
    }
    .articleWrap .embed-block:after{
        display: block;
        content: '';
        clear: both;
    }
    .articleWrap .header-content{
        padding: 20px 0px 10px;
        margin-bottom: 20px;
    }
    .articleWrap .header-content .header-desc{
        display: none;
    }
    .articleWrap .body-text-block blockquote p,
    .html-block blockquote p{
        font-size: 18px;
    }
    .article-block .block-embed > iframe{
        width: 100%;
        height: 270px;
    }
    .article-block .block-table{
        display: block;
    }
    .article-block .block-image{
        display: block;
        width: 100%;
    }
    .footerWrap > .footer-cell{
        display: block;
        padding: 25px;
    }
    .footerWrap > .footer-embed{
        display: block;
        padding: 25px;
    }
    .footer-embed .btn-footer{
        right: 5px;
    }
    .link-menu{
        display: block;
        top: 29px;
        right: 20px;
        padding: 0px 30px;
        line-height: 39px;
        z-index: 2;
    }
    .link-search{
        right: 135px;
    }
    .searchWrap{
        left: 20px;
        right: 20px;
        width: auto;
    }
    .searchWrap .triangle{
        right: 127px;
    }
    .searchWrap input{
        width: calc(100% - 40px);
    }
    .menu-overlay{
        width: 100%;
    }
    .nav-btns{
        display: none;
    }
    .link-m-newsroom{
        display: block;
        right: 180px;
    }
    .sidebarWrap{
        width: 350px;
    }
    .one-feed .embed-block > iframe{
        width: 270px;
        height: 152px;
        margin-bottom: 10px;
    }
    .one-feed .text-image{
        height: 135px;
    }
    .one-feed .text-title{
        font-size: 18px;
    }
    .one-feed .text-desc{
        display: -webkit-box;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        max-height: 110px;
        overflow: hidden;
    }
    .slick-prev{
        left: -25px;
    }
    .slick-next{
        right: -25px;
    }
    .launch-div{
        display: block !important;
    }
    .launch-div > h2,
    .launch-div > p{
        display: block;
    }
    .launch-div > h2{
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .launch-div iframe{
        width: calc(100% - 10px) !important;
    }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi){
    .footer-social a{
        background-size: 150px 30px;
    }
    .link-search,
    .link-m-newsroom,
    .feed-btn{
        background-size: 360px 60px;
    }
}
