/*
 * *** You can say something about your file if you need it!
 * Template Name
 * Description
 * Vertion
 * Copyright
 * Author
 * Last Modified Date
 *
 */
/*-------------------------*/
/* $Catalog 
---------------------------*/
/** 
 * Catalog
 * Button
 * Navigation bar
 * Jumbotron
 * Thumbnail
 * Footer
**/

/*-------------------------*/
/* $Button 
---------------------------*/
.btn {
  /* structure */
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0;
  height: 36px;
  border: 1px solid #000;
	line-height: 36px;
	padding: 0 16px;
  min-width: 64px;
  box-sizing: border-box;
  /* style */
  font-size: 14px;
	text-align: center;
	font-weight: 500;
  font-family: "Raleway", 'Helvetica', "Noto Sans TC", 'roboto', arial, sans-serif;
  letter-spacing: 0;
	text-transform: uppercase;
  text-decoration: none;
  /* color: #484848; */
	background-color: #d1d2d3;
	border: 0;
  border-radius: 2px;
  outline: none;
  /* interact */
	cursor: pointer;
  overflow: hidden;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.3s;
}
.btn--hover,
.btn:hover{
	background-color: #cacbcd;
}
.btn--hover,
.btn:active{
	background-color: #cacbcd;
}
.btn--disabled,
.btn--disabled:hover,
.btn--disabled:active,
.btn--disabled:focus{
	color: #fff;
	pointer-events: none;
	background-color: #d1d2d3;
}
.btn.btn--primary,
.btn.btn--secondary,
.btn.btn--positive,
.btn.btn--negative{
	color: #fefefe;
}
.btn.btn--primary{
	background-color: #e881a7;
}
.btn.btn--primary.btn--hover,
.btn.btn--primary:hover{
	background-color: #dd6488;
}
.btn.btn--secondary{
  background-color: inherit;
  border: 1px solid #e881a7;
  color: #e881a7;
}
.btn.btn--secondary:hover,
.btn.btn--secondary:active {
  background-color: #e881a7;
  color: #fefefe
}
.btn.btn--positive{
	background-color: #3eb5ac;
}
.btn.btn--positive.btn--hover,
.btn.btn--positive:hover{
	background-color: #38a59d;
}
.btn.btn--negative{
	background-color: #f84545;
}
.btn.btn--negative.btn--hover,
.btn.btn--negative:hover{
	background-color: #db3d3d;
}
.btn.btn--lg {
  /* font-size: 20px; */
  font-size: 22px;
  line-height: 56px;
  height: 56px;
  font-weight: 400px;
  border-radius: 28px;
  padding:0 64px;
}
.btn.btn--md {
  font-size: 18px;
  line-height: 48px;
  height: 48px;
  font-weight: 400px;
  border-radius: 24px;
  padding:0 64px;
}

.btn.btn--sm {
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  font-weight: 400px;
  border-radius: 16px;
  padding:0 32px;
}
/* group */
.btn-group .btn{
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
}
.btn-group--center{
	text-align: center;
}
.btn-group--right{
	text-align: right;
}
.btn-group--right .btn{
	margin-right: 0;
	margin-left: 16px;
}
/*-------------------------*/
/* $Navigation bar 
---------------------------*/
.navbar {
  /* height: 80px; */
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}
.navbar＿social-navbar {
  padding: 24px;
  float: left;
}
@media (max-width: 768px){
  .navbar＿social-navbar {
    padding: 12px;
  }
}
.navbar＿social-navbar .icon-btn {
  color: #e881a7;
}
.navbar＿nav {
  float: right;
}
/* icon btn */
.icon-btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 24px;
  font-family: serif;
}
.icon-btn .icon{
  display: block;
  text-align: center;
  transition: all 0.3s
}
.icon-btn .icon:hover{
  transform: translateY(-25%)
}
/* menu-toggle */
.menu-toggle {
  /* width: 80px;
  height: 80px; */
  /* border: 1px solid #fff; */
  /* display: inline-block; */
  display: block;
  padding: 24px;
  padding-top: 26px;
  transition: all 0.3s;
}
@media (max-width: 768px){
  .menu-toggle{
    padding: 12px;
    padding-top: 16px;
  }
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 32px;
  background-color: #e881a7;
  margin-bottom: 8px;
}
.menu-toggle:hover span:nth-child(1) {
  transform: translateX(-20%);
}
.menu-toggle:hover span:nth-child(3) {
  transform: translateX(20%);  
}

/* popup-menu */
.popup-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-color: #fefefe;
  z-index: 1000;
  /* display: none; */
  opacity: 0;
  visibility: hidden; 
}
#popup-overlay:target {
  /* display: block; */
  opacity: 1;
  visibility: visible;
}
.popup-menu__close {
  padding: 24px;
  width: 80px;
  height: 80px;
  /* border: 1px solid #000000; */
  /* display: block;  */
  float: right;
  transition: all 0.3s;
  margin-right: -16px;
}

@media (max-width: 768px){
  .popup-menu__close {
    padding: 12px;
    width: 56px;
    height: 56px;
  }
}

.popup-menu__close:hover{
  transform: rotate(180deg);
}
.popup-menu__close span {
  /* display: block; */
  height: 2px;
  width: 32px;
  background-color: #e881a7;
  position: absolute;
  top: 50%;
  left: 50%;
}

.popup-menu__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-menu__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-menu__item {
  display: block;
  text-align: center;
  font-family: "Raleway", 'Helvetica', 'roboto', arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #484848;
  line-height: 80px;
  transition: 0.3 all;
}
.popup-menu__item:hover {
  color: #e881a7;
}

@media (max-width: 768px){
  .popup-menu__item {
    font-size: 24px;
    line-height: 48px;
  }
}

/*-------------------------*/
/* $Jumbotron
---------------------------*/
.jumbotron{
	background-color: #d1d2d3;
	padding-top: 20vh;
	padding-bottom: 24vh;
}
.jumbotron--img-covered{
	background-image: url("../images/bg-min.jpg");
	background-size: cover;
	background-position: center;
}
.jumbotron--img-covered:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #43484c;
	opacity: 0.5;
}
.jumbotron__heading{
	text-align: left;
	color: #f4f4f4;
}
@media (max-width: 768px){
	.jumbotron__heading{
		font-size: 40px;	
	}
}
.jumbotron__heading--center{
	text-align: center;
}

/*-------------------------*/
/* $Thumbnail 
---------------------------*/
/* imgbox */
.imgbox{
	width: 100%;
	display: block;
	overflow: hidden;
}
.imgbox__inner{
	width: 100%;
	height: 0;
	position: relative;
}
.imgbox__inner-4-3{
	padding-top: calc(100% * 3 / 4);
}
.imgbox__inner .image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
/* Thumbnail */
.thumbnail{
	color: #353630;
	margin-bottom: 32px;
}
.thumbnail__title{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.thumbnail__preview{
	height: 72px;
	overflow: hidden;
}
.thumbnail__btn-group .btn{
	margin-bottom: 0;
}
/*-------------------------*/
/* $Footer 
---------------------------*/
.footer{
	padding-top: 40px;
	padding-bottom: 64px;
	background-color: #43484c;
}
.footer p{
	color: #f4f4f4;
	font-size: 14px;
}
.list{
	color: #f4f4f4;
	font-size: 14px;
}
.list__title{
	font-size: 16px;
	color: #f4f4f4;
}
.list__item{
	display: block;
	color: #999a94;
	margin-bottom: 8px;
	transition: all 0.3s;
}
.list__item:hover{
	color: #f4f4f4;
}
