@charset "UTF-8";

/*
0-600px Phone
600-900px Tablet portrait
900-1200px Tablet landscape
1200-1800 is our normal styles apply
1800px + Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
1em=16px

ORDER:base+typography > general layout + grid>page layout >components
*/
@keyframes moveInLeft {

    0%,
    100% {
        left: -8%;
        top: -50%;
    }

    50% {
        left: 200%;
        top: -50%;
    }

    70% {
        left: 200%;
        top: -200%;
    }

    80% {
        left: -200%;
        top: -200%;
    }

    90% {
        left: -200%;
        top: -50%;
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(1rem);
    }

    80% {
        transform: translateX(-0.2rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes rudder-rotate {
    0% {
        -webkit-transform: translateX(-50%) rotate(0deg);
        transform: translateX(-50%) rotate(0deg);
    }

    transform: translateX(-50%) rotate(180deg);

    100% {
        -webkit-transform: translateX(-50%) rotate(360deg);
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes rudder-rotate {
    0% {
        -webkit-transform: translateX(-50%) rotate(0deg);
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translateX(-50%) rotate(360deg);
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes moveInBottom {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: rotate(180deg);
        transform: translate(3000px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes wave-drift {
    to {
        transform: rotate(0deg);
    }

    from {
        transform: rotate(360deg);
    }
}

@keyframes wave-drift-alt {
    to {
        transform: rotate(360deg);
    }

    from {
        transform: rotate(0deg);
    }
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.0
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translate(-2px, -1px);
        transform: translate(-2px, -1px);
    }

    18.5% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    31.5% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    43.5% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translate(-2px, -1px);
        transform: translate(-2px, -1px);
    }

    18.5% {
        -webkit-transform: translate(5px, 0px);
        transform: translate(5px, 0px);
    }

    31.5% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    43.5% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.animate__headShake {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

* {
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    min-width: 100%;
    min-height: 100vh;
    position: relative;
    font-family: "Open Sans", "微軟正黑體", Helvetica, Arial, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 50px;
}

@media (max-width: 768px) {
    body {
        min-height: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 20px 0 10px;
    line-height: 1.4;
}

.lead {
    font-weight: 500;
}

.badge {
    font-size: 14px;
    font-weight: 500;
    margin: 2px;
    background-color: #525252;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

ul.no-list {
    list-style: none;
    padding-left: 0;
}

.gotop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    color: #36b5b7;
    padding: 3px 10px;
    font-size: 3em;
    border-radius: 0px;
    -moz-border-radius: 3px;
    line-height: 200%;
    text-align: center;
    opacity: 0.8;
    z-index: 998;
    transition: all .3s ease;
}

#loading {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #1f6768;
    background: -webkit-linear-gradient(top #1f6768 42%, #36b5b7 42%);
    background: linear-gradient(to bottom, #1f6768 42%, #36b5b7 42%);
    z-index: 9999;
    opacity: 1;
    -webkit-transition: .5s linear;
    -o-transition: .5s linear;
    transition: 0.5s linear;
}

.loading-whale {
    opacity: .8;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 90px);
    width: 200px;
    height: 200px;
}

.loading__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading__logo svg {
    width: 100%;
}

.loading__dot {
    width: 100px;
    position: absolute;
    top: 50%;
    left: calc(50% + 50px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0;
    list-style: none;
    padding-left: 0;
}

.loading__dot li {
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    margin: 0;
    height: 10px;
    width: 10px;
    border: 3px solid #fff;
    border-radius: 100%;
    -webkit-transform: transformZ(0);
    -ms-transform: transformZ(0);
    transform: transformZ(0);
    -webkit-animation: loadiing-dot 2s infinite;
    animation: loadiing-dot 2s infinite;
}

@-webkit-keyframes loadiing-dot {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        background: #fff;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background: #36b5b7;
    }

    to {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        background: #fff;
    }
}

@keyframes loadiing-dot {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        background: #fff;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background: #36b5b7;
    }

    to {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        background: #fff;
    }
}

.loading__dot li:first-child {
    left: -20px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loading__dot li:nth-child(2) {
    left: 0;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading__dot li:nth-child(3) {
    left: 20px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

body {
    font-family: Arial, '微軟正黑體', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.heading {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #206560;
    margin-top: -20px;
}

.heading-tertiary {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: #36b5b7;
}

a,
a:link,
a:visited {
    text-decoration: none;
    transition: .2s;
}

a:hover,
a:active,
a:focus {
    color: #2a8e90;
}

.mt20 {
    margin-top: 20px;
}

.ma0 {
    margin: 0;
}

.mauto {
    margin: auto;
}

.color-light {
    color: #d70051;
}

.font-light {
    color: #206560;
}

.modal-content {
    background-color: #fff4ea;
    border-radius: 10px;
    color: #333333;
    margin: 20% auto;
    padding: 10px;
    min-height: 60vh;
}

.modal-content h5 {
    color: #333333;
}

.modal-content p {
    color: #333333;
    letter-spacing: 0;
}

.modal-content .modal-header {
    border-bottom: 1px solid #206560;
}

.modal-content .modal-header .close {
    color: #ffffff;
    font-size: 2.5em;
    margin-top: -10px;
}

.modal-content .modal-body {
    text-align: left;
}

.modal-content .modal-body .modal-title {
    margin: 5px auto 8px auto;
}

.modal-content .tab-content {
    padding: 15px;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.modal-content .tab-content blockquote {
    margin: 10px 0;
    background: #eee;
    padding: 8px;
    font-size: 16px;
    border-left: none;
}

.modal-content .tab-content ul {
    padding-left: 15px;
}

.modal-content .list-inline {
    margin: 0 1%;
}

.modal-content .list-inline>li {
    width: 48%;
    text-align: center;
    text-decoration: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #36b5b7;
    color: #ddd;
}

.modal-content .list-inline>li:hover {
    cursor: pointer;
}

.modal-content .list-inline>li .tab {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 9px 4px 7px;
    text-decoration: none;
    width: 100%;
}

.modal-content .list-inline>li.active {
    border: 1px solid #36b5b7;
    border-bottom: none;
    background-color: #ffffff;
    cursor: pointer;
}

.modal-content .list-inline>li.active .tab {
    color: #333;
    cursor: text;
}

.modal-content .list-inline>li .active {
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 480px) {
    .container .modal {
        left: none !important;
        right: none !important;
    }
}

.section--org .modal-content,
.section--spon .modal-content,
.section--buy .modal-content,
.section--thx .modal-content {
    background: #ffffff;
}

.section--org .modal-content .modal-header,
.section--spon .modal-content .modal-header,
.section--buy .modal-content .modal-header,
.section--thx .modal-content .modal-header {
    border-bottom: 1px solid #eeeeee;
}

.section--org .img-sponsor:first-of-type {
    padding: 1%;
    margin: auto;
    margin-bottom: 3%;
    max-width: 250px;
}

.btn {
    font-size: 16px;
    text-decoration: none;
}

.main-btn,
.main-btn:link,
.main-btn:visited {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    background-color: #36b5b7;
    border-radius: 0;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: .2s;
}

.main-btn:hover {
    background-color: #39c1c3;
    transform: translateY(-2px);
}

.main-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.main-btn:active,
.main-btn:focus {
    background-color: #33a9ab;
    outline: none;
    transform: translateY(0);
}

.main-btn--small {
    width: 100%;
    padding: 8px 10px;
    font-size: 18px;
}

a.disabled {
    cursor: default;
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    background-color: #a4a5a7;
    border-radius: 0;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

a.sale {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    background-color: #36b5b7;
    border-radius: 0;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

a.sale:hover,
a.sale:focus {
    background-color: #2a8e90;
}

.btn-line {
    color: #36b5b7;
    border: 3px solid #36b5b7;
    background-color: transparent;
    padding: 15px;
}

.btn-line:hover,
.btn-line:focus {
    color: #ffffff;
    background-color: #36b5b7;
}

.btn-default {
    background-color: #36b5b7;
    color: #ffffff;
    padding: 15px;
    border: none;
}

.btn-default:hover,
.btn-default:focus {
    color: #ffffff;
    background-color: #4cc8ca;
}

.btn-cowrite {
    margin: 5px 0px;
    color: #134041;
    background-color: #ffffff;
    border: 2px solid #134041;
    transition: all .3s ease-in;
}

.btn-cowrite:hover {
    color: #ffffff;
    background-color: #36b5b7;
}

.btn-download {
    margin: 5px 0px;
    color: #ffffff;
    background-color: #134041;
    border: 2px solid #134041;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease-in;
}

.btn-download:hover {
    color: #ffffff;
    background-color: #36b5b7;
}

.btn-block {
    margin: 2% 0;
}

@media (max-width: 992px) {
    .btn-block-xs {
        width: 100%;
    }
}

.btn-goBuy {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 30vh;
    width: 60px;
    text-align: center;
    background-color: transparent;
    font-weight: bold;
}

.btn-goBuy .goBuy-ban {
    background-color: #ffe764;
    position: relative;
    right: 0;
    bottom: -5px;
    width: 100%;
    padding: 8px;
    font-size: 20px;
    line-height: 1.2;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #36b5b7;
    box-shadow: 4px 4px 0px #36b5b7;
    transition: all .3s ease;
}

.btn-goBuy .goBuy-ban:hover,
.btn-goBuy .goBuy-ban:focus {
    color: #206560;
    background-color: #ffdf33;
}

.btn-goBuy img {
    width: 100%;
}

.footer .social-icon {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 992px) {
    .footer .social-icon {
        position: relative;
    }
}

.footer .social-icon .social-icon-list li {
    display: inline-block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin: 2px;
    border-radius: 50%;
    line-height: 40px;
    background-color: #36b5b7;
    transition: .3s ease-in-out;
    text-align: center;
}

.footer .social-icon .social-icon-list li:hover,
.footer .social-icon .social-icon-list li:focus {
    background-color: #206560;
    color: #fff;
}

.footer .social-icon .social-icon-list li a {
    display: block;
    color: #ffffff;
}

.speaker-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
}

.speaker-modal.fade .modal-dialog {
    transition: .2s ease-in;
    transform: translateY(-50%);
    opacity: 0;
}

.speaker-modal.in .modal-dialog {
    transform: translateY(-50%);
    opacity: 1;
}

.speaker-modal .modal-header,
.speaker-modal .modal-footer {
    border: none;
}

@media only screen and (max-width: 767px) {
    .speaker-modal__img {
        width: 50%;
        margin: 0 auto;
    }
}

.section-speaker .speaker-box {
    display: block;
    text-decoration: none;
    position: relative;
    width: 240px;
    min-height: 370px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.section-speaker .speaker-box:hover,
.section-speaker .speaker-box:focus {
    opacity: .8;
}

.section-speaker .speaker-box__deco {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.section-speaker .speaker-box__deco::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/speaker-deco.svg);
    background-size: cover;
}

.section-speaker .speaker-box--keynote .speaker-box__deco::before {
    background-image: url(../img/keynote-deco.svg);
}

.section-speaker .speaker-box--keynote .speaker-box__deco::after {
    position: absolute;
    content: 'KEYNOTE';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35px;
    padding-top: 2px;
    border-radius: 5px;
    line-height: 26px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background-color: #50c4ea;
}

.section-speaker .speaker-box__head {
    position: relative;
    width: 180px;
    height: 180px;
    display: inline-block;
    margin-top: 30px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.section-speaker .speaker-box__img {
    margin: 0 auto;
    transition: .3s;
}

.section-speaker .speaker-box__name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.section-speaker .speaker-box__title {
    margin-bottom: 10px;
    color: #fff;
    min-height: 80px;
}

.section-speaker .speaker-box__title+p {
    color: #fff;
}

.section-speaker .modal-content {
    background-color: #1e454c;
}

.speaker-brief__agenda-content {
    font-size: 16px;
    margin: 8px 0px;
}

.speaker-brief__agenda-content i {
    margin: 0 8px;
    font-size: 18px;
    color: #36b5b7;
}

.content-section-speaker {
    padding: 0px 15px;
    margin: 40px 0 20px;
    background-color: #ffffff;
    position: relative;
}

.content-section-speaker .heading {
    color: #36b5b7;
}

.content-section-speaker .bg-speaker-before {
    background: url("../img/bg-speaker-before.svg") no-repeat;
    background-size: 100%;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    top: -100px;
    background-size: cover;
    background-position-x: right;
    z-index: 9;
}

.content-section-speaker .bg-speaker-after {
    background: url("../img/bg-speaker-after.svg") no-repeat;
    background-size: 100%;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    bottom: -100px;
    background-size: cover;
    background-position-x: right;
    z-index: 9;
}

.content-section-speaker .speaker-box {
    display: block;
    text-decoration: none;
    position: relative;
    width: 240px;
    min-height: 370px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.content-section-speaker .speaker-box:hover,
.content-section-speaker .speaker-box:focus {
    opacity: .8;
}

.content-section-speaker .speaker-box__deco {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.content-section-speaker .speaker-box__deco::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/speaker-deco.svg);
    background-size: cover;
}

.content-section-speaker .speaker-box--keynote .speaker-box__deco::before {
    background-image: url(../img/keynote-deco.svg);
}

.content-section-speaker .speaker-box--keynote .speaker-box__deco::after {
    position: absolute;
    content: 'KEYNOTE';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35px;
    padding-top: 2px;
    border-radius: 5px;
    line-height: 26px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background-color: #50c4ea;
}

.content-section-speaker .speaker-box__head {
    position: relative;
    width: 180px;
    height: 180px;
    display: inline-block;
    margin-top: 30px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.content-section-speaker .speaker-box__img {
    margin: 0 auto;
    transition: .3s;
}

.content-section-speaker .speaker-box__name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.content-section-speaker .speaker-box__title {
    margin-bottom: 10px;
    color: #333;
    min-height: 80px;
}

.content-section-speaker .speaker-box__title+p {
    color: #333;
}

.section-speaker-inner {
    background-color: #ffffff;
    padding: 30px 0;
}

.section-speaker-inner .speaker-block {
    position: relative;
    margin: 0 auto;
}

.section-speaker-inner .speaker-block__head {
    position: relative;
    max-width: 250px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
}

.section-speaker-inner .speaker-block__img {
    margin: 0 auto;
    transition: .3s;
}

.section-speaker-inner .speaker-block__name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.section-speaker-inner .speaker-block__title {
    margin-bottom: 10px;
    color: #333;
}

.section-speaker-inner .speaker-block__title+p {
    color: #333;
}

.social-icon {
    position: relative;
    text-align: right;
    margin-bottom: -20px;
    float: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
}

.social-icon .social-icon-list {
    padding-left: 5px;
}

.social-icon .social-icon-list li {
    display: inline-block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin: 2px;
    border-radius: 50%;
    line-height: 40px;
    background-color: #333;
    color: #fff;
    transition: .3s ease-in-out;
    text-align: center;
}

.social-icon .social-icon-list li:hover,
.social-icon .social-icon-list li:focus {
    background-color: #206560;
}

.social-icon .social-icon-list li a {
    display: block;
    color: #ffffff;
}

.speaker-session {
    padding: 20px 0;
}

.speaker-session__badge {
    display: inline-block;
    margin-bottom: 4px;
    padding: 2px 6px 0;
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 25px;
    background-color: #d70051;
}

.speaker-session__topic {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.speaker-session__tag {
    padding: 10px 0;
}

.speaker-session__tag .tag {
    display: inline-block;
    margin-bottom: 4px;
    padding: 4px 8px 3px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 25px;
}

.speaker-session__desc {
    color: #666;
    margin: 10px 0;
}

.speaker-session .session-note .btn {
    padding: 10px;
    font-size: 18px;
}

.speaker-session__column+.speaker-session__column {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .speaker-session__column {
        display: inline-block;
        width: 30%;
        vertical-align: top;
        padding: 5px;
    }

    .speaker-session__column+.speaker-session__column {
        margin-top: 0;
    }
}

.speaker-session__classroom {
    font-weight: bold;
    color: #525252;
    text-align: center;
}

.speaker-session__readmore {
    display: block;
    margin: 3px 0;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 14px;
    border: 1px solid #dddddd;
    background-color: transparent;
    cursor: pointer;
    transition: .2s;
}

@media (max-width: 767px) {
    .speaker-session__readmore {
        width: 100%;
    }
}

.speaker-session__readmore:hover {
    background-color: #ffffff;
}

.speaker-session__readmore+.agenda-timeline__desc {
    display: none;
}

.speaker-session .card-body {
    padding: 10px;
    background-color: #ffffff;
}

.speaker-session .download {
    margin: 10px 0px;
    color: #d70051;
    font-weight: 700;
    text-decoration: none;
}

.speaker-session .download:hover {
    color: #333;
}

.agenda-timeline {
    border-left: 4px solid #36b5b7;
    margin-left: 80px;
}

@media (max-width: 1200px) {
    .agenda-timeline {
        margin-left: 82px;
    }
}

@media (max-width: 767px) {
    .agenda-timeline {
        margin-left: 62px;
    }
}

@media (max-width: 320px) {
    .agenda-timeline {
        margin-left: 42px;
    }
}

.agenda-timeline__group {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

@media (max-width: 320px) {
    .agenda-timeline__group {
        padding-left: 32px;
    }
}

.agenda-timeline__time {
    position: absolute;
    color: #36b5b7;
    right: 100%;
    top: -3px;
    width: 66px;
    font-size: 22px;
    font-weight: 800;
    font-size: 18px;
}

@media (max-width: 320px) {
    .agenda-timeline__time {
        width: 60px;
    }
}

.agenda-timeline__content {
    margin: 3px 0;
}

.agenda-timeline__content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 40px;
    height: 3px;
    background-color: #36b5b7;
}

@media (max-width: 320px) {
    .agenda-timeline__content::after {
        width: 20px;
    }
}

.agenda-timeline__topic {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.agenda-timeline__topic--keynote {
    border-left-style: none;
    padding-left: 0px;
    border-width: 0px;
    font-size: 22px;
}

.agenda-timeline__topic--tracka {
    font-size: 22px;
    color: #2c8c85;
}

.agenda-timeline__topic--trackb {
    font-size: 22px;
    color: #1b4e9a;
}

.agenda-timeline__topic--trackc {
    font-size: 22px;
    color: #b17120;
}

.agenda-timeline__topic--trackd {
    font-size: 22px;
    color: #812a82;
}

.agenda-timeline__topic--workshop {
    font-size: 22px;
    color: #b17120;
}

.agenda-timeline__badge {
    display: inline-block;
    margin-bottom: 4px;
    padding: 2px 6px 0;
    color: #fff;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 25px;
}

.agenda-timeline__badge--keynote {
    background-color: #d70051;
}

.agenda-timeline__badge--tracka {
    display: block;
    text-align: center;
    background-color: #2c8c85;
}

@media (max-width: 767px) {
    .agenda-timeline__badge--tracka {
        display: inline-block;
    }
}

.agenda-timeline__badge--trackb {
    display: block;
    text-align: center;
    background-color: #1b4e9a;
}

@media (max-width: 767px) {
    .agenda-timeline__badge--trackb {
        display: inline-block;
    }
}

.agenda-timeline__badge--trackc {
    display: block;
    text-align: center;
    background-color: #b17120;
}

@media (max-width: 767px) {
    .agenda-timeline__badge--trackc {
        display: inline-block;
    }
}

.agenda-timeline__badge--trackd {
    display: block;
    text-align: center;
    background-color: #812a82;
}

@media (max-width: 767px) {
    .agenda-timeline__badge--trackd {
        display: inline-block;
    }
}

.agenda-timeline__name {
    margin-top: 4px;
    margin-bottom: 4px;
    line-height: 1.4;
    font-size: 18px;
    word-break: break-word;
}

.agenda-timeline__desc {
    color: #666;
}

.agenda-timeline__column+.agenda-timeline__column {
    margin-top: 20px;
}

.agenda-timeline__column__keynote {
    width: 90%;
}

@media (min-width: 768px) {
    .agenda-timeline__column {
        display: inline-block;
        width: 24%;
        vertical-align: top;
        padding: 5px;
    }

    .agenda-timeline__column+.agenda-timeline__column {
        margin-top: 0;
    }
}

.agenda-timeline__classroom {
    font-weight: bold;
    color: #525252;
    text-align: center;
}

.agenda-timeline__classroom__keynote {
    text-align: left;
}

.agenda-timeline__readmore {
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    margin: 6px 0;
    padding: 6px 60px;
    font-size: 15px;
    border: 1px solid #dddddd;
    background-color: transparent;
    cursor: pointer;
    transition: .2s;
}

.agenda-timeline__readmore:hover,
.agenda-timeline__readmore:focus {
    background-color: #36b5b7;
    color: #ffffff;
}

@media (max-width: 767px) {
    .agenda-timeline__readmore {
        width: 100%;
    }
}

.agenda-timeline__readmore+.agenda-timeline__desc {
    display: none;
}

.agenda-timeline .card-body {
    padding: 10px;
    background-color: #ffffff;
}

.agenda-timeline .download {
    margin: 10px 0px;
    color: #d70051;
    font-weight: 700;
    text-decoration: none;
}

.agenda-timeline .download:hover {
    color: #333;
}

.session-note,
.session-download {
    display: inline-block;
    padding: 0 10px 0 0;
}

.footer {
    margin-top: 365px;
    padding: 0px 0 20px;
    background-color: #3a8c8a;
    position: relative;
}

.footer::before {
    content: '';
    background-image: url(../img/footer-top.svg);
    background-size: 101%;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    top: -364px;
    width: 100%;
    height: 365px;
}

.footer::after {
    content: '';
    background: #3a8c8a;
    height: 100px;
    width: 100%;
    position: absolute;
    top: -80px;
    z-index: -1;
}

@media (max-width: 1366px) {
    .footer {
        margin-top: 250px;
    }
}

@media (max-width: 1024px) {
    .footer {
        margin-top: 200px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 160px;
    }
}

@media (max-width: 667px) {
    .footer {
        margin-top: 100px;
    }
}

.footer .container {
    position: relative;
}

.footer__name {
    color: #ffffff;
}

.footer__name img {
    user-select: none;
    max-width: 450px;
}

.footer__name p {
    margin-top: 3px;
}

.footer__content {
    color: #fff;
    font-size: 85%;
}

.footer__content a {
    color: #fff;
}

.footer__highlight {
    color: #fff;
}

.footer__copyright {
    right: 15px;
    top: 50%;
    color: #003332;
    text-align: right;
}

@media (max-width: 1200px) {
    .footer__copyright {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 30px;
        text-align: center;
    }
}

.kv {
    position: relative;
    height: 680px;
    background-color: #fff4ea;
    background-size: 285px 191px;
    text-align: center;
    position: relative;
}

@media (max-width: 1200px) {
    .kv {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .kv {
        height: 350px;
    }
}

@media (max-width: 666px) {
    .kv {
        height: 310px;
    }
}

.kv .slogan {
    display: block;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    background: #fff4ea;
    user-select: none;
    position: relative;
}

@media (max-width: 767px) {
    .kv .slogan {
        margin-top: 0;
    }
}

.kv .slogan:before {
    content: '';
    background-image: url("../img/kv-bg.svg");
    background-position: top left;
    background-repeat: repeat;
    background-size: 285px 191px;
    position: absolute;
    top: 0;
    left: calc(285px * 4.5);
    height: 100%;
    width: calc(285px * 4);
    height: calc(191px * 4);
}

@media (max-width: 1700px) {
    .kv .slogan:before {
        left: calc(285px * 4);
    }
}

@media (max-width: 1600px) {
    .kv .slogan:before {
        left: calc(285px * 3.8);
    }
}

@media (max-width: 1400px) {
    .kv .slogan:before {
        left: calc(285px * 3.3);
    }
}

@media (max-width: 991px) {
    .kv .slogan:before {
        left: calc(285px * 2.7);
    }
}

@media (max-width: 768px) {
    .kv .slogan:before {
        left: calc(285px * 1.8);
    }
}

.kv .slogan:after {
    content: '';
    background-image: url("../img/kv-bg.svg");
    background-position: top left;
    background-repeat: repeat;
    background-size: 285px 191px;
    position: absolute;
    top: 0;
    right: calc(285px * 4.5);
    height: 100%;
    width: calc(285px * 4);
    height: calc(191px * 4);
}

@media (max-width: 1700px) {
    .kv .slogan:after {
        right: calc(285px * 4);
    }
}

@media (max-width: 1600px) {
    .kv .slogan:after {
        right: calc(285px * 3.8);
    }
}

@media (max-width: 1400px) {
    .kv .slogan:after {
        right: calc(285px * 3.3);
    }
}

@media (max-width: 991px) {
    .kv .slogan:after {
        right: calc(285px * 2.7);
    }
}

@media (max-width: 768px) {
    .kv .slogan:after {
        right: calc(285px * 1.8);
    }
}

.kv .slogan .logo {
    min-height: 100px;
    max-width: 550px;
    width: 100%;
    top: 200px;
    position: relative;
    z-index: 2;
    -webkit-filter: drop-shadow(30px 30px 10px #fff4ea);
    filter: drop-shadow(30px 30px 10px #fff4ea);
}

@media (max-width: 1366px) {
    .kv .slogan .logo {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .kv .slogan .logo {
        max-width: 300px;
        top: 100px;
    }
}

.kv .slogan .wheel {
    width: 265px;
    position: absolute;
    left: 50%;
    top: 10px;
    z-index: 1;
    -webkit-filter: drop-shadow(20px 20px 20px #fff4ea);
    filter: drop-shadow(30px 30px 10px #fff4ea);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
    -webkit-animation: rudder-rotate 20s linear infinite;
    animation: rudder-rotate 20s linear infinite;
    -webkit-animation-delay: 7s;
    -ms-animation-delay: 7s;
    animation-delay: 7s;
}

@media (max-width: 1366px) {
    .kv .slogan .wheel {
        top: 20px;
    }
}

@media (max-width: 768px) {
    .kv .slogan .wheel {
        max-width: 160px;
        top: 0px;
    }
}

.kv .kv-deco {
    position: absolute;
    top: -50%;
    left: -8%;
    width: 50%;
    height: 100%;
    animation: moveInLeft 15s ease;
    -webkit-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

@media (max-width: 768px) {
    .kv .kv-deco {
        display: none;
        animation-play-state: paused;
    }
}

.kv .kv-deco .kv-deco-boat {
    position: absolute;
    right: 30%;
    bottom: 30%;
    display: block;
    width: 500px;
    height: 91.5px;
    background: url("../img/kv-boat.svg") no-repeat;
    background-size: 100%;
    animation: headShake 5s ease-in-out infinite;
    transform-origin: 100% 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .kv .kv-deco .kv-deco-boat {
        animation-play-state: paused;
    }
}

.kv .kv-deco .kv-deco-river {
    position: absolute;
    background: url("../img/kv-wave-river.svg") no-repeat;
    background-size: 100%;
    right: 32%;
    bottom: -550px;
    width: 1790px;
    height: 1595px;
    animation: headShake 5s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .kv .kv-deco .kv-deco-river {
        bottom: -700px;
        width: 1590px;
    }
}

@media (max-width: 768px) {
    .kv .kv-deco .kv-deco-river {
        animation-play-state: paused;
    }
}

.kv .kv-deco .boat-wave-box {
    right: 36%;
    bottom: 26%;
    width: 1000px;
    height: 120px;
    transform-origin: 100% 100%;
    transform: rotate(-29deg);
    overflow: hidden;
    position: absolute;
}

.kv .kv-deco .boat-wave-box-alt {
    right: 42%;
    bottom: 31%;
    width: 1000px;
    height: 120px;
    transform-origin: 100% 100%;
    transform: rotate(24deg);
    overflow: hidden;
    position: absolute;
}

.kv .kv-deco .wave {
    opacity: .8;
    position: absolute;
    background-repeat: no-repeat;
    right: -350px;
    bottom: 40px;
    width: 1200px;
    height: 1200px;
    background-image: url("../img/kv-boat-wave-1.svg");
    transform-origin: 50% 50%;
    animation: wave-drift 5000ms infinite linear;
}

@media (max-width: 768px) {
    .kv .kv-deco .wave {
        animation-play-state: paused;
    }
}

.kv .kv-deco .boat-wave-1 {
    animation: wave-drift 8s infinite linear;
}

.kv .kv-deco .boat-wave-2 {
    opacity: .5;
    animation: wave-drift 11s infinite linear;
}

.kv .kv-deco .boat-wave-3 {
    top: 40px;
    bottom: auto;
    animation: wave-drift-alt 8s infinite linear alternate;
}

.kv .kv-deco .boat-wave-4 {
    top: 40px;
    bottom: auto;
    opacity: .5;
    animation: wave-drift-alt 10s infinite linear alternate;
}

.kv-content {
    position: relative;
    overflow: hidden;
}

.kv-content .kv-content-img {
    width: 100%;
}

@media (max-width: 667px) {
    .kv-content .kv-content-img {
        width: 200%;
        margin-left: -50%;
    }
}

@media (max-width: 480px) {
    .kv-content .kv-content-img {
        width: 300%;
        margin-left: -100%;
    }
}

.kv-anti {
    position: relative;
    top: 0;
}

.kv-anti .btn-anti {
    width: 100%;
    padding: 5px;
    font-size: 18px;
    text-align: center;
    background: #b75008;
    border-top: 2px solid #401a00;
    color: #ffe895;
    border-radius: 0;
    cursor: pointer;
    transition: all .5s ease;
}

.kv-anti .btn-anti:hover,
.kv-anti .btn-anti:focus {
    background-color: #7d3503;
}

.navbar-set {
    background-color: #46b7b9;
    border: none;
}

.navbar-set .navbar-collapse .navbar-nav>li>a {
    font-size: 18px;
    text-shadow: 0 1px 2px #217a7b;
    font-weight: bolder;
    background-color: #36b5b7;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-set .navbar-collapse .navbar-nav>li>a.highlight {
    background-color: #d72351;
}

.navbar-set .navbar-collapse .navbar-nav>li>a,
.navbar-set .navbar-collapse .navbar-nav>li>a:link,
.navbar-set .navbar-collapse .navbar-nav>li>a:visited {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: .2s;
    backface-visibility: hidden;
}

.navbar-set .navbar-collapse .navbar-nav>li>a:hover {
    color: #ffe895;
    transform: translateY(-3px);
}

.navbar-set .navbar-collapse .navbar-nav>li>a:active,
.navbar-set .navbar-collapse .navbar-nav>li>a:focus {
    color: #ffe895;
}

.navbar-set .navbar-nav>li .nav-light {
    background-color: #ec2a78;
}

.navbar-set .navbar-nav>li .nav-light:hover {
    background-color: #ce0e5b;
    transform: translateY(0px);
    color: #ffe895;
}

.navbar-set .navbar-toggle,
.navbar-set .navbar-toggle:focus,
.navbar-set .navbar-toggle:hover {
    background-color: transparent;
    border: none;
}

.navbar-set .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-set .navbar-collapse {
    border: none;
    box-shadow: none;
    text-align: center;
}

.navbar-set .navbar-brand {
    min-width: 30%;
}

.navbar-set .navbar-brand>img {
    width: 95px;
}

.navbar-collapse .navbar-nav>li>.dropdown-menu {
    min-width: 104px;
    font-size: 16px;
}

.navbar-collapse .navbar-nav>li>.dropdown-menu li a {
    padding: 10px;
}

.navbar-collapse .navbar-nav>li>.dropdown-menu li:not(:first-child) {
    text-align: center;
    box-shadow: 0px -1px 0px rgba(185, 185, 185, 0.5);
}

@media (max-width: 768px) {
    .navbar-collapse .navbar-nav>li>.dropdown-menu {
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: transparent;
}

@media (min-width: 768px) {
    nav.navbar-set .container {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    nav.navbar-set .container {
        width: 1170px;
    }
}

.section-reason {
    padding: 30px 0;
    color: #fff;
    background-color: #596c9b;
}

.reason-frame {
    display: inline-block;
    margin: 0 20px;
    padding: 16px 24px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    border: 6px solid #fff;
}

@media (max-width: 767px) {
    .reason-frame {
        margin: 10px 0;
        padding: 8px 12px;
        border: 4px solid #fff;
    }
}

@media (max-width: 1199px) {
    .reason-frame {
        margin-top: 0;
        margin-bottom: 20px;
        padding: 8px 16px;
        border: 4px solid #fff;
    }
}

.reason-box {
    display: table;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .reason-box {
        margin-top: 10px;
    }
}

.reason-box__deco,
.reason-box__content {
    display: table-cell;
    vertical-align: top;
}

.reason-box__deco {
    display: table-cell;
    padding-top: 8px;
}

@media (max-width: 767px) {
    .reason-box__deco {
        padding-top: 4px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .reason-box__deco img {
        width: 30px;
    }
}

.reason-box__content {
    padding-left: 14px;
}

.reason-box__title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #9EE6F8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .reason-box__title {
        margin-bottom: 4px;
        font-size: 20px;
    }
}

.section-intro {
    position: relative;
    padding: 30px 15px 80px;
    margin-bottom: -40px;
    background-color: #fff4ea;
    background-position: top left;
    background-repeat: repeat;
    background-size: 1850px 990px;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 666px) {
    .section-intro {
        padding-top: 15px;
    }
}

.section-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    border: 30px solid transparent;
    border-top: 20px solid #fff4ea;
    border-bottom: none;
    transform: translateX(-50%);
}

@media (max-width: 666px) {
    .section-intro::after {
        background-size: 150%;
        background-position: bottom left;
    }
}

.section-intro__desc {
    display: inline-block;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: justify;
    line-height: 1.8;
    font-size: 18px;
    font-family: '微軟正黑體', Arial, sans-serif;
}

@media (max-width: 767px) {
    .section-intro__desc {
        font-size: 16px;
    }
}

.section-intro .carousel {
    min-height: 220px;
}

@media (max-width: 991px) {
    .section-intro .carousel {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .section-intro .carousel {
        min-height: 480px;
    }
}

@media (max-width: 480px) {
    .section-intro .carousel {
        min-height: 500px;
    }
}

.section-intro .carousel .carousel-indicators li {
    border-color: #308AA2;
    opacity: .8;
}

.section-intro .carousel .carousel-indicators .active {
    background-color: #308AA2;
}

.intro-box {
    padding: 10px 20px;
}

.intro-box__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #36b5b7;
}

.intro-box__desc {
    font-size: 15px;
    color: #666;
    text-align: left;
}

.section-info {
    padding: 40px 15px;
    text-align: center;
}

.info-list {
    display: inline-block;
    text-align: left;
}

.info-list__item {
    position: relative;
    margin-bottom: 1em;
    padding-left: 4em;
    font-size: 20px;
    font-family: '微軟正黑體', Arial, sans-serif;
}

.info-list__title {
    position: absolute;
    left: 0;
    top: 0;
    color: #36b5b7;
    font-weight: 700;
    font-size: 22px;
}

.info-list__title::after {
    content: '';
    position: absolute;
    right: -1em;
    top: 50%;
    border: 6px solid transparent;
    border-left: 10px solid #36b5b7;
    border-right: none;
    transform: translateY(-50%);
}

.info-list__map,
.info-list__map:link,
.info-list__map:visited {
    font-size: 16px;
    color: #d70051;
    transition: .2s;
}

.info-list__map:hover {
    color: #f1005b;
}

.info-list__map:active,
.info-list__map:focus {
    color: #be0047;
}

.info-list__notice {
    font-size: 16px;
    color: #888;
}

.section-speaker {
    padding: 100px 15px 200px;
    margin: 40px 0 0;
    background-color: #1e454c;
    position: relative;
}

.section-speaker .heading {
    color: #36b5b7;
}

.section-speaker .bg-speaker-before {
    background: url("../img/bg-speaker-before.svg") no-repeat top;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    top: -100px;
    background-size: cover;
    background-position-x: right;
    z-index: 9;
}

.section-speaker .bg-speaker-after {
    background: url("../img/bg-speaker-after.svg") no-repeat bottom;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-size: 100%;
    background-position-x: right;
    z-index: 9;
}

.section-agenda {
    padding: 40px 0px;
    min-height: 300px;
    position: relative;
    z-index: 1;
}

.section-workshop {
    padding: 40px 15px;
    background-color: #fff4ea;
}

.section-workshop h4 {
    color: #888;
}

.workshoptime {
    font-family: 'Oswald', Arial, '微軟正黑體', sans-serif;
    font-size: 18px;
}

.workshopnotic {
    line-height: 26px;
    padding-bottom: 30px;
}

.workshop-group {
    border-bottom: 1px solid #888;
}

.workshop-group:hover {
    background-color: #eee;
}

.section-event {
    padding: 40px 15px 60px;
    background-color: #ffffff;
}

.section-event__desc {
    font-size: 18px;
    letter-spacing: 3px;
}

.section-event__notice {
    color: #888;
    letter-spacing: 3px;
}

.event-box {
    margin-bottom: 60px;
}

.event-box__logo {
    margin-bottom: 20px;
}

.event-box p {
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

.event-img img {
    max-width: 300px;
    max-height: 200px;
    margin: 2% auto;
}

.section-ticket {
    padding: 40px 15px;
    text-align: center;
    background: url("../img/deco-ticket-bg1.svg") no-repeat bottom right, url("../img/deco-ticket-bg2.svg") no-repeat bottom left;
    background-color: #fff4ea;
    background-size: auto 95%, auto 95%;
}

@media (max-width: 1365px) {
    .section-ticket {
        background: url("../img/deco-ticket-bg3.svg") no-repeat center bottom;
        background-size: 100% auto;
        background-color: #fff4ea;
        padding-bottom: 10%;
    }
}

.ticket-box-together-outer {
    padding-right: 5px;
    padding-left: 10px;
}

.ticket-box-together {
    position: relative;
    max-width: 96%;
    padding: 20px;
    margin: 0 auto;
    margin-bottom: 40px;
    background: #f8e4d1 url("../img/deco-tickets-group.svg") no-repeat top right;
    background-size: 100px;
    border-bottom: 1px solid #ac8864;
    box-shadow: 0 3px 3px #ac8864;
}

@media (max-width: 767px) {
    .ticket-box-together {
        text-align: center;
    }
}

.ticket-box-together__title {
    padding-top: 4px;
    padding-bottom: 10px;
    color: #333333;
    font-size: 24px;
    font-weight: 700;
}

.ticket-box-together__title span {
    position: relative;
    display: inline-block;
}

.ticket-box-together__title.text-muted {
    font-size: 18px;
}

.ticket-box-together__price {
    text-align: left;
    padding: 10px 0;
    font-size: 18px;
    vertical-align: middle;
}

.ticket-box-together__date {
    margin-top: 10px;
    font-size: 18px;
}

.ticket-box-together__date .date-title {
    padding-top: 10px;
    vertical-align: middle;
}

.ticket-box-together__date .date-limit {
    font-weight: 800;
}

.ticket-box-together .together__right-btn {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 2% auto 0;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    background-color: #36b5b7;
    border-radius: 0;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ticket-box-together .together__right-btn:hover,
.ticket-box-together .together__right-btn:focus {
    background-color: #2a8e90;
}

.ticket-box-together__num {
    font-size: 36px;
    font-weight: 700;
    color: #d70051;
}

.ticket-box-together__info {
    text-align: left;
}

.ticket-box-together .highlight {
    color: #d70051;
}

.ticket-box--flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.ticket-box__group {
    padding: 30px 0 0;
}

.ticket-box-outer {
    padding-right: 5px;
    padding-left: 10px;
}

.ticket-box {
    position: relative;
    width: 320px;
    height: 280px;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    margin-bottom: 40px;
    background: #f8e4d1 url("../img/deco-tickets-box.svg") no-repeat top left;
    background-size: 100px;
    border-bottom: 1px solid #ac8864;
    box-shadow: 0 3px 3px #ac8864;
}

.ticket-box__title {
    padding-top: 4px;
    padding-bottom: 10px;
    color: #333333;
    font-size: 24px;
    font-weight: 700;
}

.ticket-box__title span {
    position: relative;
    display: inline-block;
}

.ticket-box__content {
    display: table;
    width: 100%;
    min-height: 135px;
    text-align: center;
}

.ticket-box__price {
    display: table-cell;
    padding: 10px 0;
    font-size: 18px;
    vertical-align: middle;
}

.ticket-box__num {
    font-size: 36px;
    font-weight: 700;
    color: #d70051;
}

.ticket-box__info {
    text-align: left;
}

.ticket-box .highlight {
    color: #d70051;
}

.section-traffic {
    padding: 40px 15px;
    background-color: #fff4ea;
    text-align: center;
}

.section-traffic__desc {
    font-size: 18px;
    margin-bottom: 6px;
}

.section-traffic__notice {
    color: #d70051;
    margin-bottom: 20px;
}

.justify-content-center {
    justify-content: center;
}

.section-sponsorlogo img {
    width: 250px;
    border: 1px solid #fff;
}

.section-sponsorlogo img:hover {
    border: 1px solid #eee;
}

.section-sponsorlogo {
    padding: 40px 1px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #fff4ea 0%, #ffffff 10%);
    background: -webkit-linear-gradient(top, #fff4ea 0%, #ffffff 10%);
    background: linear-gradient(to bottom, #fff4ea 0%, #ffffff 10%);
}

.section-sponsorlogo .heading-tertiary {
    padding-top: 70px;
    color: #36b5b7;
    position: relative;
}

.section-sponsorlogo .heading-tertiary:before {
    content: '';
    background: url(../img/deco-title.svg) no-repeat;
    background-size: cover;
    width: 140px;
    height: 70px;
    position: absolute;
    top: 0px;
    left: calc(50% - 70px);
}

.section-sponsorlogo__img {
    margin: 0 auto;
    margin-bottom: 40px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-sponsorlogo__img {
        flex-direction: column;
    }
}

.section-sponsorlogo__img-responsive {
    /*&__logo-img{
        margin:0 auto;
        width: auto;
        height: auto;
        max-width: 50%;

    }*/
}

.section-sponsorlogo__img-responsive__sponsor-logo {
    text-align: center;
    padding: 1em;
}

.section-signup {
    margin-top: -40px;
    padding-bottom: 40px;
}

.section-signup .help-block {
    font-size: 14px;
}

.section-notice {
    padding: 40px 15px;
}

.section-notice .container-notice {
    background-color: #fff4ea;
    padding: 2% 3%;
}

.section-notice h3 {
    color: #36b5b7;
}

.section-notice a {
    color: #36b5b7;
}

.section-notice a:hover,
.section-notice a:focus {
    color: #48c7c9;
}

.section-notice a:active {
    color: #2e9a9b;
}

.section-notice .noticestyle li {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.div-notice {
    padding: 10px 15px;
}

.div-notice .container-notice {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2% 3%;
}

.div-notice h3 {
    color: #36b5b7;
}

.div-notice a {
    color: #36b5b7;
}

.div-notice a:hover,
.div-notice a:focus {
    color: #48c7c9;
}

.div-notice a:active {
    color: #2e9a9b;
}

.div-notice .noticestyle li {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.div-notice .list-none {
    list-style: none;
}

.section-cfs {
    background-color: #ffffff;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5%;
    z-index: 3;
}

.section-cfs--item {
    text-align: center;
}

.section-cfs--item--top {
    background-color: #36b5b7;
    color: #ffffff;
    font-size: 3em;
    font-weight: 500;
    border-top: 8px double #ffffff;
    position: relative;
}

.section-cfs--item--top span {
    font-size: 30px;
}

.section-cfs--item--title {
    line-height: 1.35;
}

.section-cfs--item--p {
    border-bottom: 8px double #36b5b7;
    padding-bottom: 20px;
}

.section-cfs--calculate {
    text-align: center;
    margin: 0 auto;
    color: #ec2a78;
    font-weight: 500;
}

/* CFS timer */
#timer {
    text-align: center;
    position: relative;
    vertical-align: middle;
    font-size: 2em;
}

#timer .timer-sub {
    margin: 3% 0 3%;
    padding: 6px 12px;
    border-radius: 20px;
}

/* end CFS timer */
.slick-dots {
    bottom: 5px;
}

.slick-dots li button::before {
    font-size: 12px;
}

.slick-dotted.slick-slider {
    margin: 0;
}

.slick-next:before,
.slick-prev:before {
    color: #36b5b7;
    font-size: 28px;
}

.slick-prev {
    left: -30px;
}

.slick-slider .fa-angle-left,
.slick-slider .fa-angle-right {
    font-size: 6em;
    position: absolute;
    top: 45%;
    cursor: pointer;
    color: #176d84;
    opacity: .6;
    z-index: 9;
}

.slick-slider .fa-angle-left:hover,
.slick-slider .fa-angle-left:focus,
.slick-slider .fa-angle-right:hover,
.slick-slider .fa-angle-right:focus {
    opacity: .8;
}

.slick-slider .fa-angle-left {
    float: left;
    left: -5%;
    top: 30%;
}

.slick-slider .fa-angle-right {
    float: right;
    right: -5%;
    top: 30%;
}

.section-history .slick-slider-item {
    padding: 10px 30px;
    background: #924c00;
    background: -moz-linear-gradient(left, #f78b16 0%, #924c00 100%);
    background: -webkit-linear-gradient(left, #f78b16 0%, #924c00 100%);
    background: linear-gradient(to right, #f78b16 0%, #924c00 100%);
}

.section-history .slick-slider-item-img {
    text-align: center;
    border: 2px solid #dddddd;
    padding: 10px;
    margin: 10px;
}

.section-history .slick-slider-item-img img {
    width: 100%;
    border-radius: 20px;
}

.section-news {
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-color: #fff4ea;
}

.section-news .kv-persons {
    width: 800px;
    position: absolute;
    left: -20%;
    bottom: 0;
    transform: rotate(30deg);
}

.section-news .slick-slider-item {
    position: relative;
    display: flex;
}

@media (max-width: 1199px) {
    .section-news .slick-slider-item {
        display: block;
    }
}

.section-news .slick-slider-item .slick-slider-item-img {
    position: relative;
    float: left;
    width: 60%;
}

.section-news .slick-slider-item .slick-slider-item-img img {
    width: 100%;
}

@media (max-width: 1199px) {
    .section-news .slick-slider-item .slick-slider-item-img {
        width: 100%;
    }
}

.section-news .slick-slider-item .slick-slider-item-right {
    text-align: center;
    min-height: 100%;
    padding: 5%;
    padding-top: 100px;
    position: absolute;
    left: 60%;
    width: 40%;
    display: flex;
    align-items: center;
    background: url("../img/memory/text-bg2.png") top, url("../img/memory/text-bg.png") bottom;
    background-color: #fff4ea;
    background-repeat: no-repeat;
    background-size: 100%;
}

@media (max-width: 1199px) {
    .section-news .slick-slider-item .slick-slider-item-right {
        width: 100%;
        left: 0;
        padding: 10%;
        padding-top: 50px;
        background: none;
        min-height: unset;
    }
}

@media (max-width: 767px) {
    .section-news .slick-slider-item .slick-slider-item-right {
        padding-top: 10px;
    }
}

.section-news .slick-slider-item .slick-slider-item-right::before {
    content: '';
    background: #fff4ea;
    background: -moz-linear-gradient(left, rgba(255, 244, 234, 0) 0%, #fff4ea 100%);
    background: -webkit-linear-gradient(left, rgba(255, 244, 234, 0) 0%, #fff4ea 100%);
    background: linear-gradient(to right, rgba(255, 244, 234, 0) 0%, #fff4ea 100%);
    position: absolute;
    left: -100px;
    top: 0;
    height: 100%;
    width: 100px;
}

@media (max-width: 1199px) {
    .section-news .slick-slider-item .slick-slider-item-right::before {
        width: 110vw;
        top: 0;
        left: 0;
        background: #fff4ea;
        background: -moz-linear-gradient(bottom, rgba(255, 244, 234, 0) 0%, #fff4ea 50%);
        background: -webkit-linear-gradient(bottom, rgba(255, 244, 234, 0) 0%, #fff4ea 50%);
        background: linear-gradient(to top, rgba(255, 244, 234, 0) 0%, #fff4ea 50%);
    }
}

.section-news .slick-slider-item-text {
    position: relative;
    text-align: left;
    font-size: 2.6rem;
    font-weight: 500;
    word-break: break-word;
    z-index: 0;
}

@media (max-width: 1199px) {
    .section-news .slick-slider-item-text {
        width: 100%;
        text-align: center;
        text-shadow: 1px 1px 3px #ffffff;
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .section-news .slick-slider-item-text {
        font-size: 1.6rem;
    }
}

.section-news .slick-slider-item-text:before {
    content: '';
    background: #ffdd84;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: -50px;
    z-index: -1;
}

.section-news .slick-slider-item-text-til {
    font-weight: 500;
    font-size: 5rem;
    color: #176d84;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.section-news .slick-slider-item-text i {
    color: #176d84;
    font-size: 3rem;
}

@media (max-width: 767px) {
    .section-news .slick-slider-item-text i {
        margin-top: -1rem;
    }
}

.section--quote {
    min-height: 320px;
    padding: 30px 0;
    background-color: #fff4ea;
}

.section--quote .quote__Carouselbox .carousel-control.right,
.section--quote .quote__Carouselbox .carousel-control.left {
    background-image: transparent;
    background-color: transparent;
    background: transparent;
    top: calc(50% - 10px);
}

.section--quote .quote__Carouselbox .carousel-control.right i,
.section--quote .quote__Carouselbox .carousel-control.left i {
    font-size: 50px;
    color: #6888c1;
}

.section--quote .quote__Carouselbox .carousel-control.right i:hover,
.section--quote .quote__Carouselbox .carousel-control.left i:hover {
    color: #6888c1;
}

.section--quote .quote__Carouselbox .slide {
    width: 100%;
}

.section--quote .quote__Carouselbox .carousel-inner__q h3 {
    line-height: 1.4em;
    color: #000;
    max-width: 930px;
}

.section--quote .quote__Carouselbox .carousel-inner__q h3 span {
    font-weight: 300;
    margin-left: 10px;
}

.jobs {
    padding: 0;
    margin: 30px 0;
    position: relative;
    width: 100%;
}

.jobs .title {
    margin-top: 2%;
}

.jobs--item {
    background-color: #eeeeee;
    border-radius: 10px;
    justify-content: center;
    -ms-flex-pack: center;
    margin-top: 2%;
    margin-bottom: 2%;
}

.jobs--item--brand {
    border-radius: 10px;
    text-align: center;
    margin: 15px;
}

.jobs--item--brand img {
    background-color: #ffffff;
    border-radius: 10px;
    max-width: 300px;
}

@media (max-width: 991px) {
    .jobs--item--brand img {
        margin: auto;
    }
}

.jobs--item--content {
    background-color: #ffffff;
    padding: 10px 15px;
    margin: 15px;
    border-radius: 10px;
}

.jobs--item--content--title--main {
    color: inherit;
}

.jobs--item--content--title--sub {
    color: inherit;
    margin: 10px 0 20px;
}

.jobs--item--content--list {
    margin-top: 4%;
}

.workshop_tags {
    margin: 10px 0;
    padding: 0;
}

.workshop_tags li {
    display: inline-block;
    color: #7693c7;
    padding: 1px 8px;
    border-radius: 10px;
    margin: 0 3px;
    border: 2px solid #7693c7;
    font-size: 14px;
}

.workshop_summary {
    background-color: #28517a;
}

.workshop_summary .workshop_block {
    padding: 40px 0 20px 0;
    border-radius: 10px;
}

.workshop_summary .workshop_block .workshop_speaker {
    border: 10px solid #e8e8e8;
    color: #ffffff;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .workshop_summary .workshop_block .workshop_speaker {
        left: 4%;
    }
}

.workshop_summary .workshop_block .workshop_speaker_avatar img {
    border-radius: 50%;
    margin: 10px auto;
    max-width: 200px;
    width: 100%;
}

.workshop_summary .workshop_block .workshop_speaker_profile {
    font-size: 18px;
    color: #333333;
}

.workshop_summary .workshop_block .workshop_course {
    border-left: 1px dotted #dddddd;
    background-color: #fff;
    padding: 30px 20px 10px 25px;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .workshop_summary .workshop_block .workshop_course {
        left: 4%;
    }
}

.workshop_summary .workshop_block .workshop_course:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-radius: 10px;
    border-width: 30px 30px 0 30px;
    border-color: #d70051 transparent transparent transparent;
    position: absolute;
    left: calc(50% - 30px);
    top: -3px;
}

.workshop_summary .workshop_block .workshop_course .fa {
    font-size: 20px;
    color: #7693c7;
}

.workshop_summary .workshop_block .workshop_course .heading {
    margin: 5px;
}

.workshop_summary .workshop_block .workshop_participants {
    background-color: #ffffff;
    padding: 10px;
    font-size: 18px;
}

.workshop_summary .workshop_block .workshop_session {
    padding: 0 10px;
}

.workshop_summary .workshop_block .workshop_topic {
    font-size: 2.1em;
    color: #6888c1;
    line-height: 1.3;
}

.workshop_summary .workshop_block .workshop_time {
    font-size: 20px;
    color: #6888c1;
    letter-spacing: 1px;
    font-weight: 700;
}

.workshop_summary .workshop_block .workshop_introduction {
    padding: 10px 0;
    font-size: 18px;
}

.workshop_summary .workshop_block .workshop_highlights {
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 0 10px 10px;
    font-size: 18px;
}

.workshop-scroll-btn {
    width: 100%;
    border: 1px solid #ff124e;
    text-align: center;
    display: block;
    transition: 0.3s ease;
}

.workshop_speaker_name {
    color: #46b7b9;
}

.text-center-md {
    text-align: center;
}

@media (max-width: 992px) {
    .text-center-md {
        text-align: left;
    }
}

.workshop-panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    color: #6888c1;
    border-radius: 26px;
    border: 8px solid #fbf5ee;
    padding: 35px 15px 10px;
    transition: .3s ease;
}

.workshop-panel:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-radius: 10px;
    border-width: 30px 30px 0 30px;
    border-color: #d70051 transparent transparent transparent;
    position: absolute;
    left: calc(50% - 30px);
    top: -3px;
}

.workshop-panel:hover {
    color: #28517a;
}

.section-workshop .workshop-topic {
    font-size: 1.5em;
    color: #d70051;
}

.section-workshop .workshop-title {
    font-size: 1.4em;
    line-height: 1.3;
    margin: 5px 0 20px;
    min-height: 100px;
}

@media (max-width: 991px) {
    .section-workshop .workshop-title {
        min-height: auto;
    }
}

.section-workshop .workshop-speaker {
    font-size: 1em;
}

.section-workshop .workshop-time {
    font-size: 1em;
}

.section-workshop .workshop-scroll {
    width: 100%;
    color: #ff124e;
    text-align: center;
    display: block;
    transition: .3s ease;
}

.section-workshop .workshop-scroll:hover,
.section-workshop .workshop-scroll:focus,
.section-workshop .workshop-scroll:active {
    background-color: #f8003f;
    color: #fff;
}

.section-workshop .workshop-scroll i.fa {
    font-size: 1.2em;
    padding: 10px;
    font-weight: 500;
}

.section-workshop .heading {
    margin-bottom: 10px;
}

.section-workshop .lead {
    margin-bottom: 10px;
    color: #596c9b;
    font-size: 20px;
    font-weight: 500;
}

.section-workshop .text-warning {
    color: #d70051;
    font-size: 20px;
}

.section-workshop .workshopnotic {
    color: #333333;
}

/*# sourceMappingURL=main.css.map */