@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: #222222;
  background-color: #FFFFFF;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8em;
  overflow-x: hidden;
}
a{
	text-decoration: none;
	color: #222222;
  transition: 0.2s;
}
a:hover{
  color: #88B942;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
}

.loader-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.container{
  padding: 0;
}
.topnav{
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 999;
  background-color: rgba(255,255,255,0.9);
}
.topnav .full-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 90px;
  padding: 0 50px;
}
.topnav .brand{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topnav .logo{
  margin-right: 15px;
}
.topnav .logo img{
  height: 60px;
}
.topnav .orgname div:first-child{
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
}
.topnav .orgname div:last-child{
  font-size: 16px;
  line-height: 1em;
  margin-top: 5px;
  font-weight: 400;
}
.topnav .menu{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topnav .menu-item{
  margin: 0 10px;
  padding: 10px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 300;
}
.topnav .menu-item img{
  margin-left: 10px;
  transition: 0.3s;
}
.topnav .menu-item-cc{
  display: flex;
  align-items: center;
  justify-content: center;
}
.topnav .menu-item::after{
  content: '';
  width: 0%;
  height: 2px;
  background-color: #88B942 ;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.topnav .menu-item:hover{
  color: #88B942;
}
.topnav .menu-item:hover::after{
  width: 100%;
}
.topnav .menu-item.nobb:hover::after{
  width: 0%;
}
.topnav .menu-item:hover img{
  transform: rotate(90deg);
}
.topnav .menu-item .smenu{
  display: none;
  min-width: 100%;
  position: absolute;
  top: 52px;
  left: 0;
  background-color: white;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 999;
}
.topnav .menu-item .smenu .smenu-item{
  padding: 10px 30px;
  border-bottom: 1px solid #DDD;
  width: 100%;
  transition: 0.5s;
  white-space: nowrap;
}
.topnav .menu-item .smenu .smenu-item:last-child{
  border-bottom: 0px;
}
.topnav .menu-item:hover .smenu{
  display: flex;
}
.topnav .menu-item .smenu .smenu-item:hover{
  background-color: rgba(136, 185, 66, 0.2);
}
.footer{
  position: relative;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 150px;
  background-color: rgba(136, 185, 66, 0.2);
  z-index: 999;
}

.footer .container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
/*   margin-top: 0px; */
  position: relative;
}
.footer-logo{
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc( 100% + 80px );

}
.footer-logo img{
  height: 100%;
}
.footer-content{
/*   padding-top: 70px; */
  width: 100%;
  line-height: 1.5em;
}
.footer-copyright{
  font-size: 14px;
  margin-top: 30px;
  color: #88B942;
}

.menu-btn{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-btn div{
  width: 100%;
  height: 2px;
  background-color: #88B942;
  transition: 0.5s;
  position: relative;
}
.menu-btn div::before{
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: -9px;
  left: 0;
  transform-origin: 50% 50%;
  transition: 0.5s;
  background-color:  #88B942;
}
.menu-btn div::after{
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -9px;
  left: 0;
  transform-origin: 50% 50%;
  transition: 0.5s;
  background-color:  #88B942;
}
.menu-btn.open div::before{
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}
.menu-btn.open div{
  background-color: rgba(71, 131, 181,0);
}
.menu-btn.open div::after{
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.two-cols{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;

}
.tc-txt{
  flex-shrink: 1;
  width: 100%;
}
.tc-photo{
  width: 45%;
  margin-left: 30px;
  flex-shrink: 0;
}
.tc-photo img{
  width: 100%;
}
.tc-photo-txt{
  font-size: 14px;
  color: #777;
}

.page-photo{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.page-photo img{
  width: 80%;
}
.cfpsubmit{
  margin: 35px 0;
}
.cfpsubmit a{
  text-decoration: none;
}

@media(max-width: 1200px){
  .topnav .menu-item{
    margin: 0 5px;
    padding: 10px 5px;
  }
}

@media(max-width: 992px){
  .topnav{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  .topnav .menu{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    top: 0;
    left: 0;
    transform: translateY(-100vh);
    transition: 0.5s;
  }
  .topnav .menu-item img{
    position: absolute;
    right: -15px;
    top: 18px;
  }
  .topnav .menu.open{
    transform: translateY(0);
  }
  .menu-btn{
    display: flex;
    height: 20px;
    width: 30px;
  }
  .topnav .menu-item:hover .smenu{
    display: none;
  }
  .topnav .menu-item .smenu{
    position: relative;
    top: 0;
    margin-top: 15px;
  }
  .topnav .menu-item:hover::after{
    width: 0%;
  }
  .topnav .menu-item .smenu .smenu-item{
    text-align: center;
  }
}
@media(max-width: 768px){
  .footer-logo{
    display: none;
  }
}
@media(max-width: 576px){

  .topnav{
    height: 60px;
  }
  .topnav .full-container{
    height: 60px;
    padding: 0 20px;
  }
  .topnav .logo{
    margin-right: 10px;
  }
  .topnav .logo img{
    height: 40px;
  }
  .topnav .orgname div:first-child{
    font-size: 18px;
    line-height: 1em;
  }
  .topnav .orgname div:last-child{
    font-size: 12px;
    line-height: 1em;
    margin-top: 5px;
  }

  .footer{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 70px;
    background-color: rgba(136, 185, 66, 0.2);
    text-align: center;
  }
  .footer-content{
    padding: 0 20px;
  }
}

.pager-block{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255,255,255,0.4);
}
.pager-prev{
  padding: 0 15px;
  cursor: pointer;
  transition: 0.5s;
}
.pager-next{
  padding: 0 15px;
  cursor: pointer;
  transition: 0.5s;
}
.pager-item{
  margin: 0 5px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.4em;
  cursor: pointer;
}
.pager-prev:hover, .pager-next:hover{
  color: #88B942;
}
.pager-item:hover, .pager-item.active{
  background-color: #88B942;
  color: white;
}

.pagecover{
  width: 100%;
  height: 100vh;
  background-image: url('../images/home_bg1.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.6;
}
.content-block{
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding-top: 150px;
}
.page-title{
  padding: 0 0 0 25px;
  color: white;
  border-left: 10px solid #88B942;
  line-height: 50px;
  margin-left: 30px;
  margin-bottom: 35px;
  mix-blend-mode: difference;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-weight: 400;
}
.page-title-tw{
  font-size: 46px;
}
.page-title-en{
  margin-left: 10px;
  font-size: 28px;
}

.page-block{
  width: 100%;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.9);
  padding: 50px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.pb-title{
  font-size: 24px;
  color: #88B942;
  font-weight: 500;
  margin: 40px 0 15px;
}
.pb-title:first-child{
  margin-top: 0px;
}
.pb-title svg{
  margin-right: 10px;
}

@media(max-width:768px){
  .page-block{
    padding: 50px 20px;
  }
  .page-title{
    padding: 0 0 0 20px;
    border-left: 6px solid #88B942;
    line-height: 40px;
    margin-left: 30px;
    margin-bottom: 35px;
    mix-blend-mode: difference;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-weight: 400;
  }
  .page-title-tw{
    font-size: 32px;
  }
  .page-title-en{
    margin-left: 10px;
    font-size: 20px;
  }
}
