@charset "UTF-8";
@media screen and (max-width: 1200px) {
    body {
        font-size: 45%;
    }
    .header-logos {
        width: calc(100% - 545px);
        padding-right: 25px;
    }
    .header-right {
        width: 545px;
    }
    .header-logo,
    .header-title {
        height: 55px;
    }
    .main-menu ul>li>a {
        font-size: 2em;
    }
    .header-slogan {
        padding-bottom: 10%;
    }
}


/* MOBILE MENU */

@media screen and (max-width: 1024px) {
    .sticky .header-top {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        padding: 15px;
        background-color: #53b4b3;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        z-index: 2;
    }
	
    .header-wrapper {
        height: auto;
        width: 100%;
        padding: 15px;
    }
    .header-logos {
        width: 365px!important;
    }
    .header-right {
        width: 50px;
    }
    .mobile {
        display: inherit;
    }
    .header-search-desktop,
    .widget-language-switcher-desktop {
        display: none;
    }
    .main-menu-button {
        position: absolute;
        top: 30px;
        right: 20px;
        display: block;
        z-index: 999;
        scroll-behavior: smooth;
        overflow: hidden;
    }
    .main-menu-container {
        display: block;
        position: fixed;
        top: 0;
        right: -300px;
        width: 100%;
        max-width: 300px;
        min-width: 240px;
        height: 100%;
        background-color: #58b6b3;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        -webkit-transition: right 0.25s ease-in-out;
        transition: right 0.25s ease-in-out;
        z-index: 998;
    }
    .main-menu-top {
        display: block;
    }
    .main-menu {
        padding: 15px 0;
    }
    .main-menu ul#menu-main-menu>li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .main-menu ul#menu-main-menu>li>a {
        width: 100%;
        line-height: 1.2;
        margin: 0;
        padding: 15px 20px;
        border: 0;
        text-align: center;
    }
    .main-menu ul#menu-main-menu>li>ul>li>a {
        padding: 10px 20px 10px 40px;
    }
    .main-menu ul#menu-main-menu>li:hover>ul {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .main-menu ul>li>a {
        border-right: 0;
        padding-left: 15px;
    }
    .main-menu ul#menu-main-menu>li>ul {
        display: none;
        position: initial;
        width: 100%;
        max-height: unset;
        background-color: unset;
    }
    .main-menu ul#menu-main-menu>li.open>ul {
        display: block;
        -webkit-animation: fadeIn 0.5s;
        animation: fadeIn 0.5s;
    }
    .main-menu>ul>li {
        display: block;
        padding: 10px 0;
    }
    .header-search,
    .language-switcher {
        width: 100%;
        margin-top: 15px;
    }
    .language-switcher {
        margin-top: 25px;
    }
    .main-menu .language-switcher ul {
        text-align: center;
    }
    .main-menu .language-switcher ul>li {
        margin: 0;
        padding: 0 3%
    }
    .main-menu .language-switcher ul>li>a {
        padding-left: 0;
    }
    .header-search .search-form {
        width: 100%;
        height: 40px;
        font-size: 1.4em;
        color: #fff;
    }
    .header-icons {
        margin-top: 15px;
    }
    .mb-icon img {
        max-width: 30px;
        margin-right: 3%;
    }
    .main-menu ul ul {
        position: relative;
        width: 100%;
        left: 0;
    }
    /* .main-menu ul#menu-main-menu>li.menu-item-has-children:before {
      position: absolute;
      top: 20px;
      right: 6px;
      content: "▾";
      width: 40px;
      height: auto;
      color: #fff;
      font-size: 20px;
      text-align: center;
      cursor: pointer;
      -webkit-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in;
  }
  .main-menu ul#menu-main-menu>li.menu-item-has-children.open:before {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
  }*/
    .main-menu>ul>li.menu-item-has-children.open:after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    .main-menu>ul>li.menu-item-has-children ul {
        display: none;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    .main-menu>ul>li.menu-item-has-children.open ul {
        display: block;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    .main-menu>ul>li.menu-item-has-children:after {
        position: absolute;
        top: 8px;
        right: 25px;
    }
    .main-menu>ul>li.menu-item-has-children:hover:after {
        color: #c81933;
    }
    @-webkit-keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @-webkit-keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    @keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    .main-menu .menu-main-menu-container-button ul li.active>a,
    .main-menu .menu-main-menu-container-button ul li.current-menu-item>a,
    .main-menu .menu-main-menu-container-button ul li.current-page-ancestor>a,
    .main-menu .menu-main-menu-container-button ul li:hover>a {
        border-bottom: 0;
    }
    .main-menu .menu-main-menu-container-button ul li.active>a,
    .main-menu>ul li.active:hover>a,
    .main-menu .menu-main-menu-container-button ul li.current-menu-item>a,
    .main-menu>ul li.current-menu-item:hover>a,
    .main-menu .menu-main-menu-container-button ul li.current-page-ancestor>a,
    .main-menu>ul li.current-page-ancestor:hover>a {
        color: #0a2342;
        background-color: #b6b8b6;
    }
    .main-menu ul>li.menu-item-has-children.open>span {
        height: 50px;
        color: #fff;
        -webkit-transform: scaleY(-1);
        transform: scaleY(-1);
    }
    .main-menu .menu-main-menu-container-button ul>li.menu-item-has-children.open:before {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    body.menu-open .header-wrapper {
        position: unset;
    }
    body.menu-open .main-menu-mask {
        display: block;
    }
    .main-menu-top {
        display: block;
        width: 260px;
        margin: 5px auto 0;
        z-index: 1000;
    }
    /*body.menu-open .main-menu-button {
      display: none;
  }*/
    body.menu-open .main-menu-container {
        right: 0;
        -webkit-transition: right 0.25s ease-in-out;
        transition: right 0.25s ease-in-out;
    }
    .main {
        position: relative;
        z-index: 1;
    }
    .search-form:before {
        background-image: url(images/siel/blue-search-icon@2x.png);
    }
    .search-form-submit {
        height: 33px;
    }
	.language-switcher-desktop{
display:none;}
}

@media screen and (max-width: 1024px) {
    .card-icon {
        width: 45%;
        height: 0;
        padding-bottom: 45%;
    }
    .wb-left {
        width: 33%;
        margin-right: 3%;
    }
    .wb-left img {
        width: 100%;
        margin-left: 0;
    }
    .wb-right p {
        text-align: left;
    }
    .like-btn {
        width: 70px;
        height: 30px;
    }
    .pt-content {
        padding-left: 3%;
    }
    .list-num {
        width: 70px;
        padding-bottom: 70px;
    }
    .page-template-page-news .main,
    .page-template-page-contact .main {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 850px) {
    .header-slogan {
        font-size: 5.8em;
        padding-left: 35%;
    }
	 .zh_TW .header-slogan,
    .zh_CN .header-slogan {
        font-size: 5.8em;
        padding-left: 35%;
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .card-inner h3 {
        font-size: 2.6em;
    }
    .social-links {
        width: 155px;
    }
    .social-link {
        width: 28px;
        height: 28px;
        margin-right: 20px;
    }
    .copyright {
        width: 80%;
    }
    h1.page-title {
        padding-left: 10%;
    }
    .pt-heading {
        width: 25%;
    }
    .pt-content {
        width: 60%;
    }
    .page-template-page-contact .pt-heading {
        width: 35%;
        margin-right: 5%;
    }
    .page-template-page-contact .pt-content {
        width: 55%;
    }
    .content-search .search-form-submit input[type="submit"] {
        background-size: 36%;
        background-position: 50%;
        height: 54px;
    }
}

@media screen and (max-width: 650px) {
    body {
        background-size: cover;
    }
    .grid-1-3>.grid-col {
        display: block;
        width: 100%;
    }
    .siel-card {
        width: 100%;
        padding-bottom: 0;
        height: 125px;
    }
    .card-inner {
        width: 98%;
    }
    .card-icon {
        bottom: 0;
        width: 100px;
        height: 0;
        padding-bottom: 100px;
    }
    .card-inner h3 {
        font-size: 2.6em;
        width: 70%;
    }
    .page-title-wrapper,
    .pt-heading,
    .pt-content,
    .nc-image,
    .nc-text {
        display: block;
        width: 100%;
    }
    h1.page-title,
    .pt-heading h2 {
        margin-right: 0;
        padding: 1% 0 0 0%;
        text-align: left;
    }
    .pt-heading p {
        text-align: left;
        padding-top: 0;
        padding-bottom: 1em;
    }
    .page-template-page-contact .pt-content {
        padding-left: 10px;
    }
    .pt-content {
        margin-top: 3%;
    }
    .nc-image {
        max-width: 300px;
        margin: auto;
    }
    .nc-text {
        padding: 0;
        margin-top: 3em;
    }
    .list-content {
        width: calc(100% - 80px);
        vertical-align: top;
    }
    .list-content p {
        text-align: left;
    }
    .events .header-bottom {
        padding-bottom: 3em;
    }
    .grid-1-3>.grid-col.event-col {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 5%;
        clear: unset;
    }
    .grid-1-3>.grid-col.event-col:nth-child(2n+2) {
        margin-right: 0;
    }
    .event-col .siel-card {
        width: 100%;
        padding-bottom: 100%;
        height: 0;
    }
    .event-col .card-inner {
        width: 92%;
    }
    .page-template-page-contact .pt-heading {
        width: 100%;
        margin-right: 0;
    }
    .page-template-page-contact .pt-content {
        width: 100%;
        padding-left: 1.5em;
        margin-top: 3em;
    }
    .page-template-page-contact .page-top {
        padding: 8em 0 0;
    }
}

@media screen and (max-width: 575px) {
    /*.header-slogan {
        font-size: 5.2em;
        padding-left: 30%;
    }*/
	
    .en_US .header-slogan {
        width: 57%;
        padding-bottom: 35%;
    }
	.zh_TW .header-slogan,
    .zh_CN .header-slogan {
        font-size: 5em;
    }
    .white-block {
        display: block;
    }
    .wb-left {
        width: 100%;
        text-align: center;
    }
    .wb-left img {
        max-width: 223px;
    }
    .wb-right {
        width: 100%;
        margin-top: 5%;
    }
    .footer-wrapper,
    .social-links,
    .copyright {
        display: block;
        margin: auto;
        text-align: center;
    }
    .social-links {
        margin-top: 20px;
    }
    .social-link:last-child {
        margin-right: 0;
    }
    .copyright {
        width: 100%;
        margin: 20px auto 10px;
        padding: 0;
    }
}

@media screen and (max-width:530px) {
    .grid-1-3>.grid-col.event-col,
    .grid-1-3>.grid-col.event-col:nth-child(2n+2) {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 5% auto;
        float: unset;
    }
}

@media screen and (max-width: 460px) {
    .header-logos {
        width: 185px !important;
    }
    .header-logo-2 {
        width: 55px;
        height: 55px;
        background-size: cover;
        background-repeat: none;
        background-image: url(images/siel/UC-logo.png);
    }
    .header-logo-2 img {
        display: none;
    }
    .header-slogan {
        font-size: 5em;
        padding-left: 15%;
    }
	
    .en_US .header-slogan {
        width: 63%;
        padding-bottom: 39%;
	}
	.zh_TW .header-slogan,
    .zh_CN .header-slogan {
        padding-left: 25%;
        font-size: 4.2em;
    }
}

@media screen and (max-width: 375px) {
    .header-slogan {
        font-size: 4.5em;
        padding-left: 10%;
    }
    .card-inner h3 {
        font-size: 2.4em;
    }
    .cl-detail {
        width: 100%;
        padding-left: 0;
        padding-top: 3%;
    }
}


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