
/*------------ General -------------*/
@import url('https://fonts.googleapis.com/earlyaccess/notosanstc.css');
body {
  font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
  color: #444444;
}
a {
  color: var(--palePurple);
  text-decoration: none;
}
a:hover {
  color: var(--green);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
}

:root {
  --white: #fff;
  --black: #000;
  --grey: #636772;
  --lightgrey: #737680;
  --green: #86934f;
  --rice: #d3b799;
  --brown: #9e7253;
  --iris: #a77599;
  --palePurple: #7b6c8c;
  --darkblue: #393C60;
  --blue: #3174AE;
  --darkgreen: #2C5647;
  --timeline-gradient: rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%;
}
.text-green {
	color: var(--green);
}
.text-rice {
	color: var(--rice);
}
.text-brown {
	color: var(--brown);
}
.text-iris {
	color: var(--iris);
}
.text-palePurple {
	color: var(--palePurple);
}
.text-darkblue {
	color: var(--darkblue);
}
.text-blue {
	color: var(--blue);
}
.text-darkgreen {
	color: var(--darkgreen);
}
.text-gold {
	color: #735226;
}
.text-silver {
	color: #636772;
}
.bg-palePurple {
	background:linear-gradient(to right,#f9efe4,#f5d6dc)!important;
	
}
/*------------ Back to top button -------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c68b63;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #cba5c5;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*------------ Header -------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 18px rgba(0, 0, 0, .1);
}
#header .logo {
  width: 200px;
}
/*------------ Navigation Menu -------------*/
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 15px;
  color: var(--grey);
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1.125rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--green);
}
.navbar .mark {
  background-color: #cba5c5;
  border-radius: 30px;
  color: #FFF;
}
.navbar .mark:hover {
  background-color: #ff9054;
  border-radius: 30px;
  color: #FFF;
}
.navbar .btn-signup {
  color:var(--palePurple);
  border: 1px solid var(--palePurple);
  border-radius: 30px;
  background-color: #FFF;
}
.navbar .btn-signup:hover {
  color: #FFF;
  border: 1px solid var(--iris);
  border-radius: 30px;
  background-color: var(--iris);
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--grey);
  font-size: 1.5rem;;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  z-index: 3999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 1.25rem;
  color: var(--palePurple);
	text-align: center;
	display: block;
	border-radius: 30px;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  background-color: var(--palePurple);
	color: #FFF;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--green);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*------------ Hero Section -------------*/
#hero {
  width: 100%;
  height: 100vh;
/*  background: linear-gradient(to bottom, #91a1c9 0%, #d6bdd5 25%, #faeeed 60%);*/
	background: url("../img/hero_bg.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero .hero-container {
/*  position: absolute;*/
/*
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px 0;
	margin-top: 20px;
}
#hero h3 {
/*
  margin: 10px -4rem 50px 0;
  padding: 0;
  font-size: 9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3rem;
  background: -webkit-linear-gradient(#77849b, #9c8699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 25px #FFFFFF);
*/
	background: linear-gradient(to bottom,#5879b2 20%,#b47eac 30%,#cba5c5 70%,#e0c6c6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-size: auto 500%;
    animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 50% 100%;
    }
}

@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#hero h3 {
  color: #fff;
  top: 100px;
  padding: 0;
	margin: -2rem 0 0.5rem;
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 500;
  letter-spacing: .1rem;
	text-align: center;
}
#hero .hero-logoLK {
  width: 240px;
	margin: 0 0 1.5rem 0;
}
#hero .hero-logo {
  width: 180px;
	margin-bottom: 1.5rem;
}
#hero .hero-logoText {
	width: 60%;
	margin-bottom: 1rem;
}

#hero .fb-link {
/*	position: absolute;*/
	text-align: right;
	margin: 10px 0;
	font-size: 1.5rem;
}

#hero .hero-slider {
	position: relative;
	 width: 90%;
      height: auto;
	margin: 10px auto;
}
#hero .hero-slider img {
	display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
	mix-blend-mode: color-dodge;
	border-radius: 8px;
}


#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}
#hero .btn-scroll i {
  font-size: 48px;
}
#hero .btn-scroll:hover {
  color: #ffb727;
}
#hero .swiper-button-prev, #hero .swiper-button-next {
	color: #fff;
}

#hero .flow-card {
  width: 90%;
  border-top: 1px solid #FFF;
}
#hero .flow-card .flow-group {
  width: 20%;
  float: left;
  border-right: 1px solid #FFF;
  margin: 5px 0;
  height: 110px;
  transition: 0.3s;
}
#hero .flow-card .flow-group:last-child:hover, #hero .flow-card .flow-group.active {
  box-shadow: 0 0 18px rgba(0, 0, 0, .2);
	background-color: #FFF;
}

#hero .flow-card .flow-group:last-child {
  border-right: none;
/*
  box-shadow: 0 0 18px rgba(0, 0, 0, .1);
*/
}
#hero .flow-card .flow-group .flow-img {
  width: 30px;
  height: 30px;
  margin: auto 1.5rem;
}
#hero .flow-card .flow-group .flow-content {
  color: #808080;
}
.flow-group .flow-content span {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.flow-group .flow-content p {
  font-size: 1.125rem;
	letter-spacing: 0.1rem;
  padding: 0;
  margin: 0;
}
.flow-group a {
  color: var(--iris);
}
.flow-group a:hover {
  color: #54668d;
}
#hero ul.hero-nav {
  padding: 0;
  margin: 20px 0 0 0;
}
#hero ul.hero-nav li {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}
#hero ul.hero-nav li a {
  position: relative;
/*
  writing-mode: vertical-rl;
  text-orientation: upright;
  width: 120px;
  height: 150px;
  padding: 0 2.8rem 0 0.8rem;
*/
  letter-spacing: 0.1rem;
  margin: 0px 1rem;
  text-align: center;
  display: block;
  color: #6b7c9a;
  transition: 0.3s;
  font-size: 1.5rem;
	font-weight: 600;
}
#hero ul.hero-nav li a:hover {
/*  letter-spacing: 0.3rem;*/
  color: #ad8aa8;
}
#hero ul.hero-nav li a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
	border-radius: 10px;
  top:  .8rem;
  right: -1.3rem;
  background: linear-gradient(to top, #b878b0, #9485d2);
}
#hero ul.hero-nav li:last-child a::after {
  background: none;
}

#hero .hero-news {
	background-color: #FFF;
	box-shadow: 0 0 18px rgba(0,0,0,.1);
	width: 80%;
	padding: 4px;
	margin-top: 1rem;
}
#hero .hero-news .news-tag {
	display: inline-block;
	float: left;
	background-color: var(--iris);
	color: var(--white);
	font-size: 1.25rem;
	font-weight: 700;
	border-radius: 0 20px 20px 0;
	padding: 3px 15px 3px 10px;
	margin-right: 10px;
}
#hero .hero-news .news-content {
	font-size: 1.25rem;
	padding: 3px 10px;
	color: var(--palePurple);
}

@media (min-width: 1200px) and (max-width:1440px) {
  #hero h1 {
	margin: 30px -4rem 50px 0;
  font-size: 9rem;
  letter-spacing: 3rem;
  }
}
  @media (min-width: 992px) and (max-width:1200px) {
    #hero h1 {
      margin: 30px -2rem 50px 0;
      font-size: 8.5rem;
      letter-spacing: 2rem;
    }
	  #hero .flow-card {
  width: 95%;
}
	  #hero .flow-card .flow-group .flow-img {
  width: 30px;
  height: 30px;
  margin: auto 1rem;
}
	  #hero ul.hero-nav li a {
/*
  height: 180px;
  width: 100px;
  padding: 0 2.2rem 0 0.8rem;
*/
  font-size: 1.375rem;
	  }

	  
  }
  @media (min-width: 768px) and (max-width:992px) {
	  #hero {
		  height: auto;
	  }
    #hero h1 {
      margin: 20px -2.2rem 30px 0;
      font-size: 5rem;
      letter-spacing: 2rem;
    }
	  #hero .flow-card {
  width: 85%;
}
	  #hero .flow-card .d-flex {
		  display: inline-block!important;
	  }
	  #hero .flow-card .flow-group .flow-img {
  width: 35px;
  height: 35px;
  margin: 0.5rem auto;
		  display: block;
}
	  #hero .flow-card .flow-group .flow-content {
  text-align: center;
}
.flow-group .flow-content span {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}
.flow-group .flow-content p {
  font-size: 1rem;
}
	  
	  #hero ul.hero-nav li a {

  font-size: 1.125rem;
	  }

}
@media screen and (min-width: 576px) and (max-width:768px) {
	  #hero {
		  height: auto;
	  }
	#hero .hero-logo {
  width: 15%;
}
    #hero h1 {
      margin: 20px -2.2rem 30px 0;
      font-size: 4.5rem;
      letter-spacing: 2.2rem;
    }
	  #hero .flow-card {
  width: 85%;
}
	  #hero .flow-card .d-flex {
		  display: inline-block!important;
	  }
	  #hero .flow-card .flow-group .flow-img {
  width: 28px;
  height: 28px;
  margin: 0.5rem auto 0.2rem;
		  display: block;
}
	  #hero .flow-card .flow-group .flow-content {
  text-align: center;
}
.flow-group .flow-content span {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}
.flow-group .flow-content p {
  font-size: 1rem;
}
	  
	  #hero ul.hero-nav li a {

  font-size: 1.125rem;
	  }

	  
  }


@media screen and (max-width:576px) {
	  #hero {
		  height: auto;
	  }
	#hero .hero-logo {
  width: 20%;
		margin: 0;
}
    #hero h1 {
      margin: 5% -1rem 8% 0;
      font-size: 3.2rem;
      letter-spacing: 1rem;
    }
	#hero h3 {
  color: #fff;
		top:0;
  padding: 15% 0 0 0;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
	text-align: center;
}
	  #hero .flow-card {
  width: 98%;
}
	  #hero .flow-card .d-flex {
		  display: inline-block!important;
	  }
	
	#hero .flow-card .flow-group {
  width: 20%;
  float: left;
  border-right: 1px solid #9699a0;
  margin: 5px 0;
  height: 100px;
  transition: 0.3s;
}
	
	  #hero .flow-card .flow-group .flow-img {
  width: 38px;
  height: 38px;
  margin: 1rem auto 0.5rem auto;
		  display: block;
}
	  #hero .flow-card .flow-group .flow-content {
  text-align: center;
}
.flow-group .flow-content span {
  font-weight: 700;
  font-size: .9375rem;
  margin-bottom: 10px;
}
.flow-group .flow-content p {
  font-size: 0.9375rem;
	display: none;
}
	.flow-group .flow-content a {
		font-size: 1rem;
	}
	  
	  #hero ul.hero-nav li a {

	  }
	  #hero ul.hero-nav li a::after {

}
	  
  }
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }

  @keyframes up-down {
    0% {
      transform: translateY(5px);
    }
    100% {
      transform: translateY(-5px);
    }
  }


  /*------------ Sections General -------------*/
  section {
    padding: 60px 0;
  }
  .section-bg {
    background-color: white;
  }
  .section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
  }
  .section-title h2 {
    font-size: 2.375rem;
    letter-spacing: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: var(--grey);
    position: relative;
    z-index: 2;
    background: -webkit-linear-gradient(#7b6c8c, var(--grey));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-title h2::before {
    content: "";
    position: absolute;
    height: 50px;
    width: 250px;
	  border-radius: 20px;
	  border-bottom:3px solid var(--iris);
	  bottom: 0;
    left: calc(50% - 125px);
/*    background: linear-gradient(to right, #8aa1c9, #cba5c5);*/
  }
 
  .subtitle {
    color: var(--grey);
    font-weight: 700;
    font-size: 1.5rem;
  }
  .content {
    color: #808080;
    font-size: 1.125rem;
  }
  .section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
@media screen and (max-width:768px) {
	.section-title h2 {
    font-size: 1.75rem;
    letter-spacing: 0.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .section-title h2::after {
    height: 6px;
    width: 180px;
    left: calc(50% - 90px);
  }
  .subtitle {
    font-weight: 700;
    font-size: 1.375rem;
  }
}
@media (max-width:576px) {
	  section {
    padding: 60px 0 30px;
  }
}


  /*------------ about -------------*/
  .about {
    padding: 80px 0;
    background: url("../img/logo-event-w.svg"), linear-gradient(#FFF, #f8ebdd);
    background-position: right center, center center;
    background-size: 40%, cover;
    background-repeat: no-repeat;
    position: relative;
  }
  .about .content {
    font-size: 1.25rem;
    line-height: 2.2rem;
    width: 80%;
    margin: 10px auto;
	  font-weight: bold;
	  text-align: justify;
  }

 @media (min-width: 992px) and (max-width:1200px) {
	  .about {
    padding: 80px 0;
    background-position: right bottom, center center;
    background-size: 70%, cover;
    background-repeat: no-repeat;
    position: relative;
  }
}
 @media (min-width: 768px) and (max-width:992px) {
	  .about {
    padding: 50px 0;
    background-size: 70%, cover;
  }
}

 @media (max-width:768px) {
	  .about {
    padding: 50px 0 20px 0;
    background-size: 80%, cover;
  }
	   .about .content {
    font-size: 1.125rem;
    line-height: 2rem;
    width: 95%;
    margin: 0 auto;
  }
}
 @media (max-width:576px) {
	  .about {
    padding: 10px 0 10px 0;
    background-size: 90%, cover;
  }

}



  /*------------ category -------------*/
  .awardList ul.award-list {
    padding: 0;
    margin: 0;
  }
  .awardList ul.award-list li {
    padding: 0;
    margin: 0;
    float: left;
    width: 20%;
    list-style: none;
    text-align: center;
  }
  .award-list li .award-item h3 {
    margin: 10px auto -0.2rem;
    width: 162px;
    height: 162px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 1.5rem;
    padding-top: 65px;
    letter-spacing: 0.2rem;
    color: #FFF;
    transform: scale(0.9);
    transition: 0.5s;
    border: 6px solid rgba(255, 255, 255, 0.15);
  }
  .award-list li .award-item h3:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
  }
  .award-list li:nth-child(1) .award-item h3, .award-list li:nth-child(1) .award-item p:hover {
    background: #8aa1c9;
  }
  .award-list li:nth-child(2) .award-item h3, .award-list li:nth-child(2) .award-item p:hover {
    background: #afa4c7;
  }
  .award-list li:nth-child(3) .award-item h3, .award-list li:nth-child(3) .award-item p:hover {
    background: #cba5c5;
  }
  .award-list li:nth-child(4) .award-item h3, .award-list li:nth-child(4) .award-item p:hover {
    background: #d6b9c9;
  }
  .award-list li:nth-child(5) .award-item h3, .award-list li:nth-child(5) .award-item p:hover {
    background: #e0c6c6;
  }

.award-list li .award-item h4 {
	margin-top: 2rem;
	font-size: 1.375rem;
	color: #808080;
}

.award-list li .award-item p {
	font-weight: 300;
	color: #808080;
    transition: 0.5s;
	padding: 5px;
}
.award-list li .award-item p:hover {
	color: #FFF;
	font-weight: 700;
	border-radius: 50px;
}

@media (min-width:576px) and (max-width:992px) {
	.awardList ul.award-list li {
    width: 33%;
  }
}
@media (max-width:576px) {
	.awardList ul.award-list li {
    width: 50%;
  }
	  .award-list li .award-item h3 {
    margin: 10px auto -0.2rem;
    width: 140px;
    height: 140px;
    font-size: 1.375rem;
    padding-top: 55px;
    border: 5px solid rgba(255, 255, 255, 0.15);
  }
}

  /*------------ category -------------*/
  .category ul.category-list {
    padding: 0;
    margin: 0;
  }
  .category ul.category-list li {
    padding: 0;
    margin: 0;
    float: left;
    width: 20%;
    list-style: none;
    text-align: center;
  }
  .category-list li .category-item {
    margin: 10px auto;
    width: 200px;
    height: 200px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 1.875rem;
	font-weight: 700;
    padding-top: 75px;
    letter-spacing: 0.2rem;
    color: #FFF;
    transform: scale(0.9);
    transition: 0.5s;
	  text-shadow: 0 4px 18px rgba(0,0,0,.2);
  }
  .category-list li .category-item:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
  }
  .category-list li:nth-child(1) .category-item {
    background:linear-gradient(to bottom, #aa7dbb, #7b6c8c);
  }
  .category-list li:nth-child(2) .category-item {
    background:linear-gradient(to bottom, #d3b799, #b68263);
  }
  .category-list li:nth-child(3) .category-item {
    background: linear-gradient(to bottom, #cc6386, #a77599);
  }
  .category-list li:nth-child(4) .category-item {
    background: linear-gradient(to bottom, #8eb845, #86934f);
  }
  .category-list li:nth-child(5) .category-item {
    background: linear-gradient(to bottom, #bf6b49, #9e7253);
  }

  .category-content {
    margin-top: 30px;
  }
  .category-content .subtitle {
    margin: 20px 0;
  }

.category-content .item {
	font-size: 1.25rem;
}

.category-card {
	padding: 20px;
	text-align: center;
}
.category-card img {
	width: 50%;
	margin: 1rem auto;
	text-align: center;
}
.category-card h3 {
	color: var(--palePurple);
	font-size: 1.375rem;
	letter-spacing: .2rem;
	border-bottom: 1px solid var(--rice);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.category-card .content {
	text-align: justify;
    font-size: 1.125rem;
	font-weight: 500;
    letter-spacing: 0.1rem;
	color: var(--grey);
	padding-bottom: 2rem;
}
.category-card .content span {
	font-size: 1.625rem;
    padding: 0 5px;
	color: var(--iris);
}


@media (max-width:1200px) {
	.category-card img {
	width: 65%;
	margin: 1rem auto;
	text-align: center;
}
}
@media (max-width:992px) {
	.category-card {
	padding: 20px 0;
	text-align: center;
}
	.category-card img {
	width: 70%;
	margin: 1rem auto;
	text-align: center;
}
}
@media (max-width:768px) {
	.category-card {
	padding: 20px 0;
	text-align: center;
}
	.category-card img {
	width: 120px;
	margin: 0 1rem 0 0;
		float: left;
}
	.category-card .content {
	text-align: justify;
    font-size: 1rem;
	font-weight: 500;
    letter-spacing: 0.1rem;
	color: var(--grey);
	padding-bottom: 1rem;
		padding-top: .4rem;
}
	.category-card h3 {
	color: var(--palePurple);
	font-size: 1.25rem;
	letter-spacing: .2rem;
	border-bottom: 1px solid var(--rice);
	padding-bottom: .8rem;
	margin-bottom: 0rem;
		text-align: left;
}
}

  .category .category-content .progress {
    height: 100px;
    display: block;
    background: none;
    border-radius: 0;
    position: relative;
	  padding-left: 100px;
	 
  }
  .category .category-content .progress .skill {
    padding: 0px 10px;
    margin: 0 0 6px 0;
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    color: #FFF;
    position: absolute;
    letter-spacing: 0.1rem;
    z-index: 300;
  }
  .category .category-content .progress .skill span {
    font-size: 1.625rem;
    padding: 0 5px;
  }
  .category .category-content .progress .award-label {
    padding: 0;
	  width: 90px;
	  height: 90px;	
	  margin-left: -100px;
    position: absolute;
	  border-radius: 50%;
  }
.category .category-content .progress .award-label img {
	
}
 .category .category-content .progress .val {
    right: 0;
    padding: 10px;
    position: absolute;
    font-size: 1.125rem;
    color: #808080;
  }
  .category .category-content .progress .val i {
    font-size: 1.375rem;
    padding-right: 5px;
  }
  .trophy-gold {
    color: #ffb510;
  }
  .trophy-silver {
    color: #9fa0a0;
  }
  .trophy-brown {
    color: #c68b63;
  }
  .category .category-content .progress-bar-wrap {
    background: #FFF;
  }
  .category .category-content .progress-bar {
    width: 1px;
    height: 80px;
    transition: 0.9s;
    background: linear-gradient(to right, var(--palePurple), var(--iris), #f4dfde);
    clip-path: polygon(0% 0%, 90% 0%, 95% 100%, 0% 100%);
  }

.category .category-content .progress-tag ul {
	margin: 1rem 0 0;
	padding: 0;
}
.category .category-content .progress-tag ul li {
	padding: 0 0 .5rem 0;
	margin: 0;
	list-style: none;
    font-size: 1rem;
	color: var(--grey);
	display: block;
}
.category .category-content .progress-tag ul li label {
	font-weight: 500;
    font-size: 1.125rem;
	letter-spacing: .1rem;
	background-color:var(--lightgrey);
	color: #FFF;
	padding: 2px .5rem;
	border-radius: 30px;
	margin-right: .5rem;
}

 @media (max-width:1200px) {
	   .category-list li .category-item {
    margin: 10px auto;
    width: 170px;
    height: 170px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 1.625rem;
    padding-top: 65px;
    letter-spacing: 0.2rem;
  }
 .category .category-content .progress-bar-wrap {
    background: #FFF;
	 width: 100%;
  }
	 
	
}

@media (max-width:992px) {
	   .category-list li .category-item {
    width: 135px;
    height: 135px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 1.375rem;
    padding-top: 50px;
    letter-spacing: 0.2rem;
  }
 .category .category-content .progress-bar-wrap {
    background: #FFF;
	 width: 100%;
  }
	  .category .category-content .progress {
    height: 100px;
    display: block;
    background: none;
    border-radius: 0;
    position: relative;
	  padding-left: 100px;
  }
  .category .category-content .progress .skill {
    padding: 0px 8rem 0 10px;
    margin: 0 0 6px 0;
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #FFF;
    position: absolute;
    letter-spacing: 0.1rem;
	  line-height: 1.5rem;
    z-index: 300;
  }
  .category .category-content .progress .skill span {
    font-size: 1.5rem;
    padding: 0 5px;
  }
}
@media (max-width:768px) {
	   .category-list li .category-item {
		   margin: 5px auto;
    width: 105px;
    height: 105px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 1.125rem;
    padding-top: 40px;
    letter-spacing: 0rem;
  }
	  .category .category-content .progress .val {
    padding: 0 10px;
  }
	  .category .category-content .progress {
    height: 120px;
  }
  .category .category-content .progress .skill {
	  padding: 0px 5rem 0 10px;
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #FFF;
    position: absolute;
    letter-spacing: 0.1rem;
    z-index: 300;
  }
	.category .category-content .progress .me-b {
		margin-right: 1rem;
	}
	.category .category-content .progress .me-c {
		margin-right:1.8rem;
	}
	.category .category-content .progress .me-c br {
		display: none;
	}

  .category .category-content .progress .skill span {
    font-size: 1.375rem;
  }
 .category .category-content .progress-bar-wrap {
    background: #FFF;
	 width: 100%;
  }

}

@media (max-width:576px) {
	   .category-list li .category-item {
		   margin: 5px auto;
    width: 60px;
    height: 125px;
    text-align: center;
    background-color: #eee;
    border-radius: 20px;
    font-size: 1.125rem;
    padding-top: 10px;
		   padding-right: 15px;
		   padding-bottom: 10px;
    letter-spacing: 0rem;
		   
  writing-mode: vertical-rl;
  text-orientation: upright;
  }
  .category .category-content .progress .val {
    right: 0;
    padding: 0;
    position: absolute;
    font-size: 0.9375rem;
    color: #808080;
  }
  .category .category-content .progress .val i {
    font-size: 1rem;
    padding-right: 0;
  }
	  .category .category-content .progress .award-label {
    padding: 0;
	  width: 110px;
	  height: 110px;	
	  margin:10px auto 5px;
	  border-radius: 50%;
		  display: block;
		  margin-left: -120px;
  }
	.category .category-content .progress {
    height: 110px;
    display: block;
    background: none;
    border-radius: 0;
    position: relative;
	  padding-left: 130px;
		margin-bottom: 1rem;
  }
	  .category .category-content .progress .skill {
	  padding: 2px 3.4rem 0 10px;
    display: block;
    font-weight: 700;
    font-size: .9375rem;
    color: #FFF;
    position: absolute;
    letter-spacing: normal;
    z-index: 300;
  }
	.category .category-content .progress-bar {
    width: 1px;
    height: 110px;
    transition: 0.9s;
    background: linear-gradient(to right, var(--palePurple), var(--iris), #f4dfde);
    clip-path: polygon(0% 0%, 90% 0%, 95% 100%, 0% 100%);
  }
	.category .category-content .progress .me-b {
		margin-right: 1rem;
	}
	.category .category-content .progress .me-c {
		margin-right:1.8rem;
	}
	.category .category-content .progress-bar-wrap {
    background: #FFF;
	 width: 100%;
  }
	.category .category-content .progress br {
		display: none;
	}

}
  /*------------ 活動時程 -------------*/
  .schedule {
    padding: 80px 0;
    background: url("../img/site_bg.jpg") fixed;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  .schedule .schedule-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #3b434a;
  }
  .schedule .schedule-item {
    padding: 0 0 40px 20px;
    margin-top: -20px;
    border-left: 2px solid #636772;
    position: relative;
  }
  .schedule .schedule-item h4 {
    line-height: 1rem;
    color: #ff9054;
	  padding: 5px;
	  border: 1px solid #636772;
	  border-radius: 30px;
  }
.schedule .schedule-item h4 font {
	display: inline-block;
	width: 150px;
	text-align: center;
	padding: 16px 10px;
	border-radius: 30px;
    font-size: 1.375rem;
    font-weight: 700;
	color: #FFF;
    text-transform: uppercase;
}
.schedule .schedule-item:first-child h4 font {
	background-color: var(--brown);
}
.schedule .schedule-item:nth-child(2) h4 font {
	background-color: var(--green);
}
.schedule .schedule-item:nth-child(3) h4 font {
	background-color: var(--iris);
}
.schedule .schedule-item:nth-child(4) h4 font {
	background-color: var(--palePurple);
}
  .schedule .schedule-item h4 span {
    font-size: 1.25rem;
    color: #808080;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .schedule .schedule-item:last-child {
    padding-bottom: 0;
  }
  .schedule .schedule-item::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    left: -11px;
    top: 23px;
  }
.schedule .schedule-item:nth-child(1)::before {
    background: var(--brown);
}
.schedule .schedule-item:nth-child(2)::before {
    background: var(--green);
}
.schedule .schedule-item:nth-child(3)::before {
    background: var(--iris);
}
.schedule .schedule-item:nth-child(4)::before {
    background: var(--palePurple);
}

@media  (max-width:992px) {
	.schedule .offset-3 {
		margin: auto;
	}
}
@media (max-width:576px) {
	.schedule .schedule-item h4 {
	  border-radius: 20px;
  }
	.schedule .schedule-item h4 font {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 10px;
	border-radius: 30px;
    font-size: 1.375rem;
    font-weight: 700;
	color: #FFF;
    text-transform: uppercase;
}
	  .schedule .schedule-item h4 span {
    font-size: 1.25rem;
    color: #808080;
    padding: 5px 15px 0 0;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
		  margin-top: 5px;
		  text-align: center;
  }
}
  
  /*------------ awards -------------*/
  .award {
    padding: 40px 80px;
    background: url("../img/rule_bg.jpg") repeat;
    background-position: center center;
    position: relative;
  }
  .award .subtitle {
    text-align: center;
    margin-bottom: 10px;
  }
  .award .content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .award .section-header {
    margin-bottom: 40px;
  }
  .award .award-carousel, .award .award-slider {
    overflow: hidden;
  }
  .award .award-item {
    text-align: center;
    color: #fff;
    margin-top: 5rem;
  }
  .award .award-item .award-title {
    text-align: center;
    float: right;
    margin-right: 20px;
  }
  .award .award-item .award-title h3 {
    width: 220px;
    height: 220px;
    padding: 88px 0 0;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    box-shadow: 0 15px 10px rgba(0, 0, 0, .15);
  }
  .award .award-item p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #808080;
    text-align: left;
  }
  .award .award-item p strong {
    font-weight: 700;
  }
  .award-content .item-title {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .award .item-group {
    font-size: 1.375rem;
  }
  .award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 3rem;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
  .award .item-group .item-content {
    margin-left: 1rem;
    color: #808080;
  }
  /*color set */
  .category-a .award-title h3 {
    background:linear-gradient(to bottom, #aa7dbb, #7b6c8c);
  }
  .category-a .award-content p strong, .category-a .award-content .item-title {
    color: var(--palePurple);
  }
  .category-a .item-group .item-percent {
    background-color: var(--palePurple);
  }
  .category-b .award-title h3 {
    background:linear-gradient(to bottom, #d3b799, #b68263);
  }
  .category-b .award-content p strong, .category-b .award-content .item-title {
    color: var(--rice);
  }
  .category-b .item-group .item-percent {
    background-color: var(--rice);
  }
  .category-c .award-title h3 {
    background: linear-gradient(to bottom, #cc6386, #a77599);
  }
  .category-c .award-content p strong, .category-c .award-content .item-title {
    color: var(--iris);
  }
  .category-c .item-group .item-percent {
    background-color: var(--iris);
  }
  .category-d .award-title h3 {
    background: linear-gradient(to bottom, #8eb845, #86934f);
  }
  .category-d .award-content p strong, .category-d .award-content .item-title {
    color: var(--green);
  }
  .category-d .item-group .item-percent {
    background-color: var(--green);
  }
  .category-e .award-title h3 {
    background: linear-gradient(to bottom, #bf6b49, #9e7253);
  }
  .category-e .award-content p strong, .category-e .award-content .item-title {
    color: var(--brown);
  }
  .category-e .item-group .item-percent {
    background-color: var(--brown);
  }
  .award .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .award .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(128, 128, 128, .3);
  }
  .award .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #8aa4d1;
  }
@media (min-width: 1200px) and (max-width:1440px) {
	.award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 15%;
	height: 34px;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
	.award .item-group .item-content {
		width: 85%;
		text-align: left;
	}
}

@media (min-width: 992px) and (max-width:1200px) {
	  .award .award-item .award-title h3 {
    width: 165px;
    height: 165px;
    padding-top: 65px;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    box-shadow: 0 15px 10px rgba(0, 0, 0, .15);
  }
	.award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 20%;
	height: 34px;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
	.award .item-group .item-content {
		width: 80%;
		text-align: left;
	}
}

@media (min-width: 768px) and (max-width:992px) {
	  .award .award-item .award-title h3 {
    width: 155px;
    height: 155px;
    padding-top: 60px;
    font-size: 1.375rem;
    letter-spacing: 0.15rem;
  }
	.award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 28%;
	height: 28px;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
	.award .item-group .item-content {
		width: 72%;
		text-align: left;
	}
	.award .award-item p {
    font-size: 1.375rem;
  }
  .award-content .item-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
	  margin-top: 10px;
  }
  .award .item-group {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width:768px) {
	  .award .award-item .award-title {
    text-align: center;
    float: none;
    margin-right: 0;
		  margin-bottom: 20px;
  }
	  .award .award-item .award-title h3 {
    width: 155px;
    height: 155px;
    padding-top: 60px;
    font-size: 1.375rem;
    letter-spacing: 0.15rem;
	margin: 0 auto;
  }
	.award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 28%;
	height: 28px;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
	.award .item-group .item-content {
		width: 72%;
		text-align: left;
	}
	.award .award-item p {
    font-size: 1.375rem;
  }
  .award-content .item-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
	  margin-top: 10px;
  }
  .award .item-group {
    font-size: 1.25rem;
  }
}
@media (max-width:576px) {
	.award {
		padding: 30px 20px;
	}
	.award .content {
		text-align: justify;
	}
	.award .content br {
		display: none;
	}
	  .award .award-item .award-title {
    text-align: center;
    float: none;
    margin-right: 0;
		  margin-bottom: 20px;
  }
	  .award .award-item .award-title h3 {
    width: 135px;
    height: 135px;
    padding-top: 50px;
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
	margin: 0 auto;
  }
	.award .item-group .item-percent {
    margin-bottom: 10px;
    text-align: left;
    padding: 0px 10px;
    width: 28%;
	height: 28px;
    clip-path: polygon(0% 0%, 95% 0%, 80% 100%, 0% 100%);
  }
	.award .item-group .item-content {
		width: 72%;
		text-align: left;
		margin-bottom: .5rem;
	}
	.award .award-item p {
    font-size: 1.25rem;
  }
	.award-content p {
		text-align: justify;
	}
	
  .award-content .item-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
	  margin-top: 10px;
  }
  .award .item-group {
    font-size: 1.125rem;
  }
}
  /*------------ My document -------------*/
  .document .content {
    margin-bottom: 0;
  }
  .document .content .highlight {
    color: #d2718b;
    font-size: 1.375rem;
  }
  .document .content .highlight strong {
    font-size: 1.5rem;
  }
  .document .content li {
    padding-bottom: 1rem;
  }
  .document ul.flow-group {
    padding: 0;
    margin: 0 0 1rem -20px;
  }
  .document ul.flow-group li {
    padding: 0;
    margin: 0 0 0 0;
    float: left;
    width:20%;
    list-style: none;
    text-align: center;
  }
  .document ul.flow-group li .item {
    font-size: 1.375rem;
    color: var(--white);
    margin: 0 auto;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    position: relative;
    padding-top: calc(50% - 45px);
  }
  .document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 55px);
    background: url("../img/flow-bg01.svg") center center no-repeat;
	  background-size: 95%;
  }
  .document ul.flow-group li:nth-child(2) .item {
    background: url("../img/flow-bg02.svg") center center no-repeat;
	  background-size: 95%;
  }
  .document ul.flow-group li:nth-child(3) .item {
    background: url("../img/flow-bg03.svg") center center no-repeat;
	  background-size: 95%;
  }
  .document ul.flow-group li:nth-child(4) .item {
    background: url("../img/flow-bg04.svg") center center no-repeat;
	  background-size: 95%;
  }
  .document ul.flow-group li:nth-child(5) .item {
    border: 6px solid #e0c6c6;
  }
  .document ul.flow-group li .item::after {
	  position: absolute;
    content: " ";
	  background-image: url("../img/flow-arrow.svg");
	  background-repeat: no-repeat;
	  width: 20px;
	  height: 20px;
    top: 75px;
    right: -50px;
  }
  .document ul.flow-group li:last-child .item::after {
    content: none;
  }

.document ul.flow-group li .item a {
	color: #FFF;
}

.document ul.file-download {
	margin: 0;
	padding: 0;
}
  .document ul.file-download li {
    list-style: none;
  }
 
  .document .document-item {
    margin-bottom: 30px;
  }
  .document .document-item .document-img {
    overflow: hidden;
  }
  .document .document-item .document-img img {
    transition: all 0.8s ease-in-out;
  }


  .document .document-item:hover .document-img img {
    transform: scale(1.2);
  }
  .document .document-item:hover .document-info {
    opacity: 1;
  }

@media (min-width: 1200px) and (max-width:1440px) {
	 .document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 50px);
  }
	  .document ul.flow-group li .item {
    font-size: 1.375rem;
    margin: 0 auto;
    border-radius: 50%;
    width: 165px;
    height: 165px;
    position: relative;
    padding-top: calc(50% - 40px);
  }
	 .document ul.flow-group li .item::after {
    font-size: 2rem;
    top: 70px;
    right: -35px;
  }
}
@media (min-width: 992px) and (max-width:1200px) {
	.document ul.flow-group li {
    padding: 0;
    float: left;
    width:23%;
    list-style: none;
    text-align: center;
  }
	 .document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 40px);
  }
	  .document ul.flow-group li .item {
    font-size: 1.375rem;
    margin: 0 auto;
    border-radius: 50%;
    padding-top: calc(50% - 30px);
  }
	 .document ul.flow-group li .item::after {
    font-size: 1.5rem;
    right: -25px;
  }
}

@media (min-width: 768px) and (max-width:992px) {
	.document .subtitle {
		text-align: center;
		margin-bottom: 10px;
	}
	.document .content {
		margin-bottom: 2rem;
	}
	.document .highlight {
		text-align: center;
	}
	.document .file-download {
		text-align: center;
	}
	
	.document ul.flow-group {
    margin: 1rem 0 0 0;
  }
	.document ul.flow-group li {
    padding: 0;
    margin: 0 0 1rem 0;
    float: left;
    width:25%;
    list-style: none;
    text-align: center;
  }
	 .document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 40px);
		 line-height: 1.5rem;
  }
	  .document ul.flow-group li .item {
    font-size: 1.125rem;
    margin: 0 auto;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    position: relative;
    padding-top: calc(50% - 32px);
  }
	 .document ul.flow-group li .item::after {
    font-size: 1.125rem;
    top: 60px;
    right: -32px;
  }
}
@media (min-width: 576px) and (max-width:768px) {
	.document {
		padding: 0 20px;
	}
	.document .subtitle {
		text-align: center;
		margin-bottom: 10px;
	}
	.document .content {
		margin-bottom: 1rem;
	}
	.document .highlight {
		text-align: center;
	}
	.document .file-download {
		text-align: center;
	}
	
	.document ul.flow-group {
    margin: 1rem 0 0 0;
  }
	.document ul.flow-group li {
    padding: 0;
    margin: 0 0 1rem 0;
    float: left;
    width:25%;
  }
	 .document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 20px);
		 line-height: 1.5rem;
  }
	  .document ul.flow-group li .item {
/*
  writing-mode: vertical-rl;
  text-orientation: upright;
*/
    font-size: 1rem;
    margin: 0 auto;
    border-radius: 20px;
    width: 115px;
    height: 140px;
    position: relative;
    padding-top: calc(50% - 10px);
/*		  padding-right: 18px;*/
		  text-align: center;
  }
/*
	.document ul.flow-group li .item br {
		display: none;
	}
*/
	 .document ul.flow-group li .item::after {
    font-size: 0.8rem;
    top: 58px;
    right: -24px;
  }
}
@media (max-width:576px) {
	.document {
		padding: 0 20px;
	}
	.document .subtitle {
		text-align: center;
		margin-bottom: 10px;
	}
	.document .content {
		margin-bottom: 1rem;
	}
	.document .highlight {
		text-align: center;
	}
	  .document .content .highlight {
    color: #d2718b;
    font-size: 1.125rem;
  }
  .document .content .highlight strong {
    font-size: 1.25rem;
  }
	.document ul.file-download {
		text-align: left;
		margin: 0;
		padding: 0;
	}
	
	.document ul.flow-group {
    margin: 1rem 0 2rem 0;
  }
	.document ul.flow-group li {
    padding: 0;
    margin: 0 5% 0 0;
    float: left;
		width: 21%;
  }
	.document ul.flow-group li:last-child {
		margin-right: 0;
	}
	.document ul.flow-group li:first-child .item {
    padding-top: calc(50% - 12px);
		 line-height: 1.2rem;
  }
	  .document ul.flow-group li .item {
/*
  writing-mode: vertical-rl;
  text-orientation: upright;
*/
    font-size: .9375rem;
    margin: 0 auto;
    border-radius: 20px;
    width: 85px;
    height: 85px;
    position: relative;
    padding-top: calc(50% - 6px);
  }

	 .document ul.flow-group li .item::after {
    font-size: 0.6rem;
    top: 39px;
	height: 10px;
    right: -20px;
  }
}

  /*------------ Pricing -------------*/
  .pricing {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(244, 227, 238, 0.5)), url("../img/pricong-bg.jpg") fixed center center;
    background-size: 100% 100%;
    padding: 60px 0;
  }

.pricing .content {
	text-align: center;
	margin-bottom: 2rem;
}
  .pricing .content .highlight {
    color: #d2718b;
    font-size: 1.375rem;
  }
  .pricing .content .highlight strong {
    font-size: 1.75rem;
	  padding-left: 5px;
	  padding-right: 5px;
  }

  .pricing .box {
    color: #808080;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    font-size: 1.25rem;
  }
  .pricing ul {
    padding: 20px;
    list-style: none;
    color: #808080;
    text-align: left;
    line-height: 2.2rem;
    font-size: 1.25rem;
    border: 1px solid #8aa1c9;
  }
  @media (max-width:768px) {
	  .pricing .box {
    width: 95%;
    font-size: 1.125rem;
  }
}
  /*------------ note Me -------------*/
  .note {
    background: url("../img/note_bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .note ol {
    margin-bottom: 4rem;
  }
  .note ol li {
    color: var(--grey);
    font-size: 1.125rem;
    padding-bottom: 1rem;
  }
.note ul {
	margin: 5px 0 0 1rem;
	padding: 5px 0 0;
}
.note ul li {
	list-style: disc;
	padding: 0 0 5px 0;
	margin: 0;
}
  .note .subtitle {
    text-align: center;
  }
  .note .info-box {
    color: var(--grey);
    text-align: left;
  }
  .note .info-box h4 {
    font-size: 1.125rem;
    color:var(--grey);
    font-weight: 700;
    margin: 10px 0;
  }
  .note .info-box p {
    padding: 0;
    line-height: 24px;
    margin-bottom: 0;
  }
  .note .info-box a {
    color: var(--brown);
    text-decoration: underline;
  }
  .note .info-box a:hover {
    color: #fff;
    background: var(--iris);
  }

@media (max-width:576px) {
	.note .info-box {
		margin-bottom: 10px;
		text-align: center;
  }
	  .note .info-box h4 {
    font-size: 1rem;
  }
	
}
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /*------------ Footer -------------*/
  #footer {
    background: linear-gradient(to top, #cba5c5, #e0c6c6);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 10px 0 20px;
    position: relative;
  }
  #footer .footer-unit {
    text-align: left;
    color: #FFF;
  }
  #footer .footer-unit img {
    height: 35px;
  }
  #footer .container {
    position: relative;
  }
  #footer h3 {
    font-size: 2.375rem;
    font-weight: 300;
    color: #fff;
    position: relative;
    padding: 12rem 0 1rem;
    margin: 5rem 0 15px 0;
    text-shadow: 0 12px 10px rgba(0, 0, 0, .15);
    background: url("../img/logo-event-w.svg");
    background-size: 15%;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #footer p {
    padding: 0;
    margin: 0 0 40px 0;
  }
  #footer .links {
    margin: 0 0 40px 0;
  }
  #footer .links a {
    font-size: 1.75rem;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.2rem;
    text-decoration: none;
    background: #FFF;
    color: var(--iris);
    padding: 8px 2.5rem;
    margin-right: 4px;
    border-radius: 50px;
    text-align: center;
    width: auto;
    transition: 0.3s;
  }
  #footer .links a:hover {
    background:var(--iris);
    color: #fff;
    text-decoration: none;
  }
  .copyright {
    margin: 5px 0;
  }
  .copyright a {
    color: var(--grey);
    text-decoration: underline;
  }

#footer span {
	display: inline-block;
}

@media (min-width: 768px) and (max-width:992px) {
	 #footer h3 {
    font-size: 2rem;
    font-weight: 300;
    margin: 3rem 0 15px 0;
    background-size: 40%;
  }
}
@media (min-width: 576px) and (max-width:768px) {
	 #footer h3 {
    font-size: 2rem;
    font-weight: 300;
    margin: 1rem 0 15px 0;
    background-size: 60%;
		 line-height: 2.6rem;
  }
	#footer span {
		display: block;
	}
}
@media (max-width:576px) {
	#footer .footer-unit {
		padding-bottom: 5px;
		text-align: center;
  }
	 #footer .footer-unit img {
    height: 35px;
		 display: block;
		 margin: 5px auto;
  }
	 #footer h3 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0rem 0 15px 0;
    background-size: 28%;
		 line-height: 2.4rem;
		 padding: 6rem 0 .5rem;
  }

	#footer span {
		display: block;
	}
}



.hide {
	display: none;
	
	
}

#esg-article .esg-slider {
	position: relative;
	 width: 90%;
      height: auto;
	margin: 10px auto;
}

  .esg-article .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .esg-article .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(128, 128, 128, .3);
  }
  .esg-article .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #7b6c8c;
  }

.esg-page .article-content {
	margin: 0 auto;
	
}
.article-content {
	margin: 10px 0 20px 0;
	clear: both;
	
}
.line-top {
	border-top: 1px dashed var(--iris);
	padding: 20px 0;
}

.article-content .article-pic-main {
	width: 100%;
	margin: 1rem 0 .5rem;
}

.article-content .article-pic-main img {
	border-radius: 8px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.article-content .note {
	position: relative;
	padding: 10px 0px 10px 10px;
	margin: 0;
	color: #595758;
	font-size: 0.75rem;
	text-align: left;
	background: none;
}
.article-content .note::before {
	content: " ";
	position: absolute;
	width: 1px;
	height: 15px;
	background-color: #b49f80;
	left: 0;
	top:16px;
}

.article-content h3 {
	font-size: 1.375rem;
	color: var(--palePurple);
	letter-spacing: 0.2rem;
	margin: .5rem 0 1rem;
	font-weight: 700;
}
.article-content h4 {
	font-size: 1.125rem;
	background-color: var(--iris);
	color: var(--white);
	letter-spacing: 0.2rem;
	margin: .5rem 0;
	font-weight: 500;
	padding: .25rem .5rem;
	display: inline-block;
}


.article-content a {
	width: 100%;
	text-align: right;
	float: right;
}
.article-content a.btn-article {
	width: auto;
  background-color: var(--rice);
  color: #fff;
  cursor: pointer;
  padding: 6px 20px;
  text-align: right;
	margin: 6px 0 10px ;
  transition: 0.4s;
	border: none;
}
.article-content a.btn-article i {
	margin-right: 5px;
}

.article-content .active, a.btn-article:hover {
  border-radius: 0 20px 0 20px;
	background-color: var(--iris);
}

.article-content .btn-article:after {
  content: '\002B';
  color: #FFF;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.article-content .active:after {
  content: "\2212";
}

.article-content .panel {
	clear: both;
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.article-content hr {
	border-style: dashed;
	color: #595758;
	margin: 3rem 0;
}
.esg-course .category-title {
	margin-top: 1rem;
	
}

  #esg-article .links {
    margin: 20px auto;
	  text-align: center;
  }
  #esg-article .links a {
    font-size: 1.25rem;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.2rem;
    text-decoration: none;
    color: #FFF;
    background: var(--iris);
    padding: 6px 2.5rem;
    margin-right: 4px;
    border-radius: 50px;
    text-align: center;
    width: auto;
    transition: 0.3s;
  }
  #esg-article .links a:hover {
    background:var(--green);
    color: #fff;
    text-decoration: none;
  }

@media (max-width:768px) {
	.esg-page .article-content {
	margin: 0 auto;
	
}
.article-content {
	margin: 10px 0 20px 0;
	clear: both;
}

.article-content .article-pic-main {
	width: 100%;
	float: none;
	margin-right: 0;
	margin: 1rem 0;
}

	.article-content .article-pic-main img {
	border-radius: 8px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 5px;
}
	.article-content a.btn-article {
	width: auto;
  color: #fff;
  cursor: pointer;
  padding: 6px 20px;
  text-align: right;
	margin: 6px 0 10px ;
  transition: 0.4s;
	border: none;
}
}

  .history {
    padding: 40px 80px;
    background: url("../img/rule_bg.jpg") repeat;
    background-position: center center;
    position: relative;
  }
.history .nav {
	margin-left: 13px;
}
.history a.nav-link {
	border-radius: 0;
	padding: 5px 2rem;
	margin-right: 4px;
	font-size: 1.25rem;
	background-color: var(--white);
	color: var(--grey);
}
.history a.nav-link.active, .history a.nav-link:hover {
	background: var(--iris);
	color: #FFF;
}
.history .table-responsive {
	margin-top: 20px;
	background-color: var(--grey);
  box-shadow: 0px 0px 18px rgba(0,0,0,.1);
	overflow: auto;
	border-collapse: collapse;
}
.history .history-table {
	width: 100%;
	font-size: 1.125rem;
	letter-spacing: .1rem;
}
.history .history-table th {
	color: var(--white);
	padding: 4px;
	text-align: center;
	font-weight: 300;
}
.history .history-table tbody tr {
	background-color: #FFF;
	margin-bottom: 1px;
}
.history .history-table tbody tr:hover {
/*	background-color: #eee;*/
}
.history .history-table tbody td {
	padding: .6rem;
	border-bottom: 1px solid var(--grey);
}
.history .history-table tbody td p {
	margin: 4px 0;
}


@media (max-width:576px) { 
.history {
    padding: 40px 0px;
  }
	.history .text-vertical {
		writing-mode: vertical-lr;
		-webkit-writing-mode: vertical-lr;
		text-orientation: upright;
		height: 100px;
	}

	.history .history-table tbody td {
	padding: .1rem;
}
	.history .history-table tbody td p {
	margin: 5px 0;
		line-height: 1.4rem;
		
}
	
}

#video-zone {
	background: rgba(123,108,140,.1);
	margin-bottom: 10px;
}

#video-zone .video-slider {
	position: relative;
	 width: 90%;
      height: auto;
	margin: 10px auto;
}

#video-zone .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
#video-zone .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(128, 128, 128, .3);
  }
#video-zone .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #7b6c8c;
  }

.video-content {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
.video-content video {
	width: 80%;
}

#video-zone .swiper-button-next, #video-zone .swiper-button-prev {
	color: var(--rice); 
	width: 20px;
	height: 20px;
}


@media (max-width:576px) { 
#video-zone .video-slider {
	position: relative;
	 width: 100%;
      height: auto;
	margin: 0 auto;
}
	.video-content {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
}