/* ================================== Basic ================================== */

body {
  font-family: 'Microsoft JhengHei', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
  overflow-y: auto;
}

/* 全站基本標籤樣式設定 */

input, select, textarea {
  font-family: 'Microsoft JhengHei', Helvetica, Arial, sans-serif;
  font-size: 16px;
}

a, a:focus, a:active {
  color: #333;
}

a:link, a:visited {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #06C;
}

p, span, h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

/* ================================== Header ================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0px;
  padding: 0px;
  z-index: 9999;
  background-color: #FFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}

header .headwrap {
  position: relative;
  display: block;
  height: 100px;
  padding: 0px;
}

header.ShrinkDown {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}

#Head {
  position: relative;
  height: 100px;
}

/* 上方小選單 */

#TopIcon {
  float: right;
  padding: 5px 0px;
}

#TopIcon ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  font-size: 0;
}

#TopIcon ul li {
  display: inline-block;
  padding: 5px 0px;
  margin: 0 0 0 15px;
  font-size: 14px;
}

#TopIcon ul li a {
  display: inline-block;
  cursor: pointer;
}

#TopIcon ul li a>i {
  text-align: center;
  padding: 0px 5px;
  font-size: 18px;
}

#TopIcon ul li.lang_item_2 {
  display: none;
}

/* Logo */

#Logo.topLogo {}

#Logo.topLogo img {}

/* language box */

.langBox {
  display: none;
  position: absolute;
  top: 42px;
  right: 15px;
  padding: 0;
  margin: 0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.langBox a {
  display: block;
  font-size: 13px;
  padding: 5px;
  background-color: rgb(255, 255, 255);
  min-width: 70px;
  text-align: center;
}

.langBox a .long {
  display: inline-block;
}

.langBox a .sort {
  display: none;
}

.langBox a:hover {}

/* search box */

.inputBox {
  display: none;
  padding: 10px 15px;
  background: #FFF;
  width: 300px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
}

.inputBox input[type="text"] {
  display: block;
  float: left;
  width: 85%;
  height: 30px;
  border: none;
  outline: 1px solid #CCC;
  padding: 5px;
  box-sizing: border-box;
}

.inputBox a.btn_submit {
  overflow: hidden;
  display: block;
  background: #F5F5F5;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}

/* ------------ 系統上方選單列新版(topmenu_new.htm) ------------ */

.menu {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 100%;
  position: relative;
  /* background: rgb(245, 245, 245); */
  z-index: 1005;
}

@media screen and (max-width: 1200px) {
  .menu {
    background-color: rgba(0, 0, 0, 0.95) !important;
    background-image: none !important;
  }
}

/* 第一層menu style */

.menu a.active-parent {
  /* 第一層menu滑入鎖定樣式 */
}

.menu>ul {
  margin: 0;
  padding: 0px;
}

.menu_item {
  position: relative;
  border-bottom: 1px solid rgba(204, 204, 204, 0.25);
  position: relative;
  list-style: none;
  /*background: #FFF;*/
}

.menu_item a {
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  position: relative;
  transform: translate(0, 0) !important;
  line-height: 20px;
  color: #FFF;
}

/*次名稱*/

.menu_item a b {
  display: block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-top: 3px;
}

.menu_item a:hover {}

/* 第一層右方小箭頭圖示 */

.menu_item a .arrow {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
}

.menu_item a .arrow:before {
  position: absolute;
  top: 8px;
  left: 17px;
  padding: 2px;
  content: '\f107';
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 22px;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

.menu_item a .arrow.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

/* 第二層menu style */

.sub_menu {
  margin: 0;
  padding: 0;
  pointer-events: none;
  top: 0;
  display: none;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.sub_menu li.sub_menu_item {
  display: block;
  position: relative;
  min-width: 100%;
  /*width: 210px;
	background: #FFF;*/
  text-align: left;
}

.sub_menu li.sub_menu_item a {
  line-height: 20px;
  padding: 5px 25px 10px 25px;
  display: block;
}

.sub_menu.open {
  visibility: visible;
  opacity: 1;
  display: block;
  pointer-events: auto;
  transform: translate(0, 0);
}

/* 第二層右方小箭頭圖示 */

.sub_menu li.sub_menu_item a .arrow {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.sub_menu li.sub_menu_item a .arrow:before {
  position: absolute;
  top: 0px;
  left: 17px;
  padding: 2px;
  content: '\f107';
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 22px;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

.sub_menu li.sub_menu_item a .arrow.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

.sub_menu li.sub_menu_item a:hover {}

/* 第三層menu style */

.sub_menu .sub_menu {
  top: 0;
  left: 0;
  position: relative;
}

.sub_menu .sub_menu li a {
  padding: 10px 20px 10px 35px;
}

.sub_menu .sub_menu.open {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

/* 手機板MENU展開按鈕 */

.menu-button {
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: 0s;
  width: auto;
  position: fixed;
  top: 10px;
  right: 5px;
  z-index: 10000;
}

.burger-icon {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.burger-icon, .burger-icon::before, .burger-icon::after {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #666;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.burger-icon::before, .burger-icon::after {
  position: absolute;
  content: "";
}

.burger-icon::before {
  top: -10px;
}

.burger-icon::after {
  top: 10px;
}

.menu.open .burger-icon {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu.open .burger-icon, .menu.open .burger-icon::before, .menu.open .burger-icon::after {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #222;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.menu.open .burger-icon::before, .menu.open .burger-icon::after {
  position: absolute;
  content: "";
}

.menu.open .burger-icon::before {
  top: -10px;
}

.menu.open .burger-icon::after {
  top: 10px;
}

.menu-button.is-active .burger-icon {
  background-color: transparent;
}

.menu-button.is-active .burger-icon::before {
  -webkit-transform: translateY(10px) rotate(45deg);
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.menu-button.is-active .burger-icon::after {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

/* 手機板選單背景區 */

.menu_body {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  width: 0;
  overflow: hidden;
  z-index: 1;
}

.menu_body.open {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transition: all 0.2s linear;
  /* transition-timing-function: cubic-bezier(0.62, 0.04, 0.82, 0.13); */
  width: 260px;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
  min-height: 100vh !important;
  overflow-y: scroll;
}

.menu_body.close {
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transition: all 0.2s;
  /* transition-timing-function: cubic-bezier(0.62, 0.04, 0.82, 0.13); */
  text-shadow: none;
  width: 0;
}

/* PC版-選單樣式 */

@media screen and (min-width: 1201px) {
  .menu {
    background: none;
    min-height: auto;
  }
  .menu>ul>.menu_item.left>ul {
    left: 0;
  }
  .menu .sub_menu.left-ul>li>a {
    text-align: left;
  }
  .menu>ul {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .menu_item {
    border-bottom: none;
    padding: 0 10px;
  }
  .menu_item:last-child {
    padding: 0 0 0 10px;
  }
  .menu_item a {
    position: relative;
    padding: 15px;
    color: #333;
	font-size: 20px;
  }
  .menu_item a:hover {
    color: #06C;
  }
  .menu_item:last-child a {
    padding: 15px 0 15px 15px;
  }
  .menu_item.current>a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 26px;
    right: 26px;
    height: 1px;
    background-color: #EEE;
  }
  .menu_item>a .arrow {
    /* transform: rotate(0deg);
		right: -15px; */
    display: none;
  }
  .menu_item a .arrow:before {
    font-size: 13px;
    color: #999;
  }
  /* ----------------------------- 
   第一層選單 Hover.css 滑入效果
   ----------------------------- */
  /* 效果一 - 下方線條 */
  .menu>ul>li.menu_item a.hvr-underline-from-left:before {
    background: #5eb1e2;
    /*線條背景色*/
  }
  /* 效果二 - 背景放射狀 */
  .menu>ul>li.menu_item a.hvr-radial-out {
    background: transparent;
  }
  .menu>ul>li.menu_item a.hvr-radial-out:before {
    background: #06C;
    /*背景色*/
  }
  .hvr-radial-out:active, .hvr-radial-out:focus, .hvr-radial-out:hover {
    color: #FFF;
    /*滑入時的文字顏色*/
  }
  /* 效果三 - 框線淡入 */
  .menu>ul>li.menu_item a.hvr-border-fade {
    box-shadow: inset 0 0 0 2px transparent, 0 0 1px transparent;
  }
  .menu>ul>li.menu_item a.hvr-border-fade:active, .menu>ul>li.menu_item a.hvr-border-fade:focus, .menu>ul>li.menu_item a.hvr-border-fade:hover {
    /* 線條背景色 */
    box-shadow: inset 0 0 0 2px #06C, 0 0 1px transparent
  }
  /* ----------------------------- 
   Hover.css 滑入效果 END
   ----------------------------- */
  .sub_menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    pointer-events: none;
    transition: all 0.3s;
    transform: translate(0, 60px);
    z-index: 999;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  }
  .sub_menu li.sub_menu_item {
    padding: 0px;
    width: 210px;
    background: rgba(255, 255, 255, 0.95);
  }
  .sub_menu li.sub_menu_item a {
    position: relative;
    display: block;
    padding: 10px 25px;
    border-bottom: 1px dashed #DDD;
  }
  .sub_menu li.current>a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    bottom: 10px;
    width: 3px;
    background-color: #EEE;
  }
  .sub_menu li:last-child a {
    border-bottom: none;
  }
  .sub_menu .sub_menu {
    top: 0;
    left: 210px;
    transition: all 0.3s;
    transform: translate(-60px, 0);
    position: absolute;
  }
  .menu-button.visible-xs {
    display: none;
  }
  .menu_body {
    width: auto;
    height: auto;
    transform: translate(0, 0);
    overflow: visible;
  }
  .menu_body.open {
    width: 100%;
  }
  .menu_body.close {
    width: 100%;
  }
}

/* ------------ 系統上方選單列新版(topmenu_new) End ------------ */

/* ================================ Banner Slider ================================ */

#featured_div {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*max-height: 600px;*/
}

/* ------ 靜態單張圖樣式 ------ */

#featured_div .featured_show {
  /*max-height: 360px;*/
}

#featured_div .featured_show img {
  width: 100%;
}

/* ------ 動態圖滑動樣式 ------ */

/* 文字內容(預設不顯示) */

#featured_div .flexslider .slides li .content {
  position: absolute;
  top: 100px;
  left: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  display: block;
  width: 25%;
  padding: 10px;
}

/* 分頁樣式 */

#featured_div .flex-direction-nav a {
  margin: 40px 0px 0px;
  width: 20px;
  height: 20px;
  top: 50%;
  border-radius: 0px;
}

#featured_div .flex-direction-nav a:before {
  font-size: 18px;
  padding-top: 0px;
}

#featured_div .flex-direction-nav .flex-prev {
  left: 0;
}

#featured_div .flex-direction-nav .flex-next {
  right: 0;
}

#featured_div .flexslider:hover .flex-direction-nav .flex-prev {
  left: 80px;
}

#featured_div .flexslider:hover .flex-direction-nav .flex-next {
  right: 80px;
}

/* ================================ Content ================================ */

/* 系統側邊選單列表 */

/* 一層直式 (mainmenu.htm) */

.MainMenu {
  position: relative;
  margin: 0px;
  padding: 0px 15px 0px 0px;
}

.MainMenu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.MainMenu ul li {
  margin: 0px 0px 5px 0px;
  display: block;
  -o-webkit-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.MainMenu ul li>a {
  display: block;
  padding: 8px 10px;
  margin: 0px;
  border: 1px solid #DDD;
}

/*次名稱*/

.MainMenu ul li>a>b {
  display: block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-top: 3px;
}

.MainMenu ul li>a:before {}

.MainMenu ul li>a:after {}

.MainMenu ul li>a:hover {}

/* 一層橫式 (mainmenu.htm) */

.MainMenu ul li.inline {
  display: inline-block;
}

.MainMenu ul li.inline>a {
  margin: 0px 0px 5px 5px
}

/*次名稱*/

.MainMenu ul li.inline>a>b {
  display: inline-block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-top: 0px;
  padding-left: 5px;
}

/* 兩層下拉 (mainmenu_float.htm)  */

.FloatMenu {
  padding: 0;
  margin: 0;
}

.FloatMenu nav select {
  display: none;
}

.FloatMenu nav ul {
  display: block;
  z-index: 1;
  list-style-type: none;
  padding: 0;
  margin: 0 20px 0 0;
}

.FloatMenu nav ul li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
}

.FloatMenu nav ul li.b-box {}

.FloatMenu nav ul li a.current {
  position: relative;
  display: block;
  border-bottom: 1px solid #F5F5F5;
  border-right: 1px solid #F5F5F5;
  border-left: 1px solid #F5F5F5;
  padding: 10px;
}

.FloatMenu nav ul li:first-child a.current {
  position: relative;
  display: block;
  border-top: 1px solid #F5F5F5;
  padding: 10px;
}

.FloatMenu nav ul li.drop-down>a.current::before {
  position: absolute;
  top: 12px;
  right: 10px;
  content: '\f105';
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 12px;
  text-rendering: auto;
  color: #CCC;
}

/*次名稱*/

.FloatMenu nav ul li a.current>b {
  display: inline-block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-left: 5px;
}

.FloatMenu nav ul li a.m_child>b {
  display: inline-block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-left: 5px;
}

/* 次名稱end */

.FloatMenu nav ul li ul.float_sub_menu {
  margin: 0;
  padding: 0;
  /* border-bottom: 1px solid #F5F5F5; */
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  max-width: 250px;
  background-color: rgba(249, 249, 249, 0.95);
}

.FloatMenu nav ul li ul.float_sub_menu li>a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.FloatMenu nav ul li ul.float_sub_menu li:not(:last-child)>a {
  border-bottom: 1px dashed #eeeeee;
}

/* 內容主區塊 */

#Container {
  padding: 100px 0px 0px;
}

#Container .contentBox {
  padding: 40px 0px;
}

/* 頁面主題名稱&&路徑連結區塊 */

.SectionTitle {
  position: relative;
  font-size: 28px;
  padding: 15px 0 20px 0;
  margin: 0;
  text-align: right;
  display: block;
 /* background-color: #06C;*/
  color: #666;
}

.SectionTitle a {
  font-size: 14px;
  color: #666;
  opacity: 0.9;
}

.SectionTitle a:hover {
  opacity: 1;
}

/* 頁面主題名稱 */

.SectionTitle h3.st_name {
  font-weight: normal;
  padding: 0px;
  margin: 0px;
  /*float: left;*/
  text-align: center;
}

/* 頁面主題次名稱 */

.SectionTitle .second_name {
  padding-left: 10px;
  font-size: 18px;
}

/* 頁面路徑連結 */

.SectionTitle div.st_bread {}

.SectionTitle span.arrow, .SectionTitle span.navParent_nolink {
  font-size: 14px;
}

.SectionTitle span.navParent_nolink {
  opacity: 0.75;
}

.SectionTitle a.navParent {}

.SectionTitle a:hover {}

.SectionTitle a:link, .SectionTitle a:visited {}

/* 欄位區塊 */

/*左*/

#LeftBlock {}

/*#main_block {}*/

/*中*/

#CenterBlock {}

/*右*/

#RightBlock {}

/* 區塊外框 */

.block {
  padding: 0px;
  margin: 0px 0px 30px 0px;
}

/* 區塊標題名稱 */

.blockTitle {
  padding: 20px 0px;
  font-size: 26px;
  margin: 0px;
}

.blockTitle .bk_name {}

.left_b .blockTitle {}

.center_b .blockTitle {}

.right_b .blockTitle {}

/* 區塊內容 */

.blockContent {
  padding: 0px;
  margin: 0px;
}

/* 區塊More按鈕 */

.block .block-more-btn {
  display: block;
  text-align: center;
  padding: 20px;
}

.block .block-more-btn>a {
  padding: 5px 10px;
  border: 1px #DDD solid;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.left_b .blockContent {}

.center_b .blockContent {}

.right_b .blockContent {}

/*.indent {padding-left: 20px;padding-top: 5px;}
.plus_html {margin: 5px 5px 5px 10px;clear: both;}
.show_sub ul {margin: 1px 10px 5px 15px;padding: 1px;}
.show_sub li {list-style-type: none;padding: 3px;margin: 2px 5px 2px 1px;}*/

/* =============================== Footer =============================== */

footer {
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background: #303030;
  background-size: cover;
  color: #FFF;
}

#Footer, #Footer a {
  color: #FFF;
  opacity: 1;
}

#Footer a:hover {
  opacity: 0.9;
}

/* 公司抬頭 && 頁尾選單 */

.FootTitle {
  padding: 15px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.FootTitle .FootMenu {
  display: block;
  font-size: 14px;
}

.FootTitle .FootMenu ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.FootTitle .FootMenu ul li {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0px;
  padding: 0px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.FootTitle .FootMenu ul li a {
  padding: 0px 10px;
  color: #FFF;
}

.FootTitle .FootMenu ul li a b {
  display: block;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  padding-top: 3px;
}

/* footer內容資訊 */

.footer_flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 20px 0px;
}

.ft_item {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0px;
  padding: 0px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  font-size: 14px;
}

/* QR Code */

.flex_1 {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex_1 .qr_code {
  display: block;
}

/* 公司資訊 */

.flex_2 {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding: 0px 20px 0px 0px;
  text-align: center;
}

.flex_2 ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

.flex_2 ul li {
  padding-bottom: 10px;
  line-height: 1;
}

.flex_2 ul li:first-child {
  font-size: 22px;
  padding-bottom: 15px;
  font-weight: bold;
}

.flex_2 ul li>i {
  padding-right: 10px;
}

/* copyright & icon */

.flex_3 {
  -webkit-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  padding: 0px;
}

.flex_3 ul {
  list-style-type: none;
  margin: 0;
  padding: 0px 0px 10px 0px;
}

.flex_3 ul li {
  display: inline-block;
  float: left;
  margin: 5px;
}

.flex_3 ul li a {
  color: #FFF;
  display: block;
}

.flex_3 ul li a>i {
  border-radius: 99em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  width: 36px;
  line-height: 36px;
  font-size: 20px;
}

.flex_3 ul li a:hover>i {
  opacity: 0.75;
}

.flex_3 ul li.line {
  margin-left: 15px;
}

.flex_3 .ft_copyright {
  display: block;
  padding: 0px 0px 0px 10px;
}

.flex_3 .ft_copyright h6 {
  display: block;
  font-size: 12px;
  margin: 0;
  padding: 0px 0px 10px 0px;
 
}

.flex_3 .ft_copyright h6 a {
  color: #FFF;
}

.flex_3 .ft_copyright h6 a.power {
  opacity: 0.75;
}

.flex_3 .ft_copyright h6 a.login {
  padding: 0px 10px;
  font-size: 16px;
  opacity: 0.75;
}

/* =============================== 右側side_bar.htm =============================== */

.side_bar {
  position: fixed;
  z-index: 9999;
  top: 50%;
  right: 0px;
  padding: 0px;
  margin: -175px 0px 0px;
}

.side_bar ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.side_bar ul li {
  padding: 0px;
  transition: 0.5s;
  text-align: center;
}

.side_bar ul li.fb_bar a {
  background: #3b5998;
}

.side_bar ul li.plus_bar a {
  background: #dc4e41;
}

.side_bar ul li.instagram a {
  background: #FF2894;
}

.side_bar ul li.line a {
  background: #090;
  height: 50px;
  line-height: 48px;
}

.side_bar ul li.line a img {
  vertical-align: middle;
  border: 0;
}

.side_bar ul li.tel_bar a {
  background: #06C;
}

.side_bar ul li.mail_bar a {
  background: #666;
}

.side_bar ul li.map_bar a {
  background: #F60;
}

.side_bar ul li a {
  display: block;
  color: #F5F5F5;
  background: #09C;
}

.side_bar ul li:hover a {
  opacity: 0.85;
}

.side_bar ul li:last-child a {
  border-bottom: none;
}

.side_bar ul li a>i {
  width: 50px;
  font-size: 1.5em;
  line-height: 50px;
}

/* 置頂 */

#goTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 10000;
  cursor: pointer;
  border-radius: 40px;
  border: 2px solid #FFF;
  text-align: center;
  background: #999;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#goTop a {
  font-size: 1.313em;
  color: #FFF;
  line-height: 40px;
  font-weight: bold;
}

#goTop a:hover {
  opacity: 0.75;
}
/**/


.grid {
	position: relative;
	margin: 0 auto;
	/*padding: 1em 0 4em;*/
	max-width: 1250px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 600px;
	max-height: 400px;
	width: 48%;
	/*background: #3085a3;*/
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 10;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 70%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	text-align: left;
}

figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-lily p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
}

figure.effect-sadie h2 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: #484c61;
	-webkit-transition: -webkit-transform 0.35s, color 0.35s;
	transition: transform 0.35s, color 0.35s;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}

figure.effect-sadie:hover h2 {
	color: #fff;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
	transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Roxy *****/
/*---------------*/

figure.effect-roxy {
	background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
	background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
}

figure.effect-roxy img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50px,0,0);
	transform: translate3d(-50px,0,0);
}

figure.effect-roxy figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}

figure.effect-roxy figcaption {
	padding: 3em;
	text-align: left;
}

figure.effect-roxy h2 {
	padding: 30% 0 10px 0;
}

figure.effect-roxy p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

figure.effect-roxy:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Bubba *****/
/*---------------*/

figure.effect-bubba {
	background: #9e5406;
}

figure.effect-bubba img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.effect-bubba h2 {
	padding-top: 30%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure.effect-bubba p {
	padding: 20px 2.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Romeo *****/
/*---------------*/

figure.effect-romeo {
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

figure.effect-romeo img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,0,300px);
	transform: translate3d(0,0,300px);
}

figure.effect-romeo:hover img {
	opacity: 0.6;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-romeo figcaption::before,
figure.effect-romeo figcaption::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 1px;
	background: #fff;
	content: '';
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

figure.effect-romeo:hover figcaption::before {
	opacity: 0.5;
	-webkit-transform: translate3d(-50%,-50%,0) rotate(45deg);
	transform: translate3d(-50%,-50%,0) rotate(45deg);
}

figure.effect-romeo:hover figcaption::after {
	opacity: 0.5;
	-webkit-transform: translate3d(-50%,-50%,0) rotate(-45deg);
	transform: translate3d(-50%,-50%,0) rotate(-45deg);
}

figure.effect-romeo h2,
figure.effect-romeo p {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-romeo h2 {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
	transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
}

figure.effect-romeo p {
	padding: 0.25em 2em;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,150%,0);
	transform: translate3d(0,-50%,0) translate3d(0,150%,0);
}

figure.effect-romeo:hover h2 {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
	transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
}

figure.effect-romeo:hover p {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,100%,0);
	transform: translate3d(0,-50%,0) translate3d(0,100%,0);
}

/*---------------*/
/***** Layla *****/
/*---------------*/

figure.effect-layla {
	/*background: #18a367;*/
}

figure.effect-layla img {
	height:450px;
}

figure.effect-layla figcaption {
	padding: 3em;
}

figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
	position: absolute;
	content: '';
	opacity: 0;
}

figure.effect-layla figcaption::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

figure.effect-layla figcaption::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

figure.effect-layla h2 {
	padding-top: 20%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-layla p {
	padding: 0.5em 0.2em;
	text-transform: none;
	/*opacity: 0;*/
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
	font-size:24px;
}

figure.effect-layla img,
figure.effect-layla h2 {
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
	font-weight: bold;
}

figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	
}

figure.effect-layla:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	
	
}

figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	
}

figure.effect-layla:hover h2,
figure.effect-layla:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

/*---------------*/
/***** Honey *****/
/*---------------*/

figure.effect-honey {
	background: #4a3753;
}

figure.effect-honey img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-honey:hover img {


	opacity: 0.5;
}

figure.effect-honey figcaption::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}

figure.effect-honey h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1em 1.5em;
	width: 100%;
	text-align: left;
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}

figure.effect-honey h2 i {
	font-style: normal;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}

figure.effect-honey figcaption::before,
figure.effect-honey h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
	background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
	background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}

figure.effect-oscar img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-oscar figcaption {
	padding: 3em;
	background-color: rgba(58,52,42,0.7);
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
}

figure.effect-oscar h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.effect-oscar figcaption::before,
figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.effect-oscar:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-oscar:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-oscar:hover img {
	opacity: 0.4;
}

/*---------------*/
/***** Marley *****/
/*---------------*/

figure.effect-marley figcaption {
	text-align: right;
}

figure.effect-marley h2,
figure.effect-marley p {
	position: absolute;
	right: 30px;
	left: 30px;
	padding: 10px 0;
}


figure.effect-marley p {
	bottom: 30px;
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.effect-marley h2 {
	top: 30px;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-marley:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-marley h2::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-marley h2::after,
figure.effect-marley p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-marley:hover h2::after,
figure.effect-marley:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Ruby *****/
/*---------------*/

figure.effect-ruby {
	background-color: #17819c;
}

figure.effect-ruby img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

figure.effect-ruby:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-ruby h2 {
	margin-top: 20%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-ruby p {
	margin: 1em 0 0;
	padding: 3em;
	border: 1px solid #fff;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
} 

figure.effect-ruby:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-ruby:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

/*---------------*/
/***** Milo *****/
/*---------------*/

figure.effect-milo {
	background: #2e5d5a;
}

figure.effect-milo img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	opacity: 1;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-30px,0,0) scale(1.12);
	transform: translate3d(-30px,0,0) scale(1.12);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-milo:hover img {
	opacity: 0.5;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

figure.effect-milo h2 {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 1em 1.2em;
}

figure.effect-milo p {
	padding: 0 10px 0 0;
	width: 50%;
	border-right: 1px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0,0);
	transform: translate3d(-40px,0,0);
}

figure.effect-milo:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Dexter *****/
/*---------------*/

figure.effect-dexter {
	background: -webkit-linear-gradient(top, rgba(37,141,200,1) 0%, rgba(104,60,19,1) 100%);
	background: linear-gradient(to bottom, rgba(37,141,200,1) 0%,rgba(104,60,19,1) 100%); 
}

figure.effect-dexter img {
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-dexter:hover img {
	opacity: 0.4;
}

figure.effect-dexter figcaption::after {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	height: -webkit-calc(50% - 30px);
	height: calc(50% - 30px);
	border: 7px solid #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

figure.effect-dexter:hover figcaption::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-dexter figcaption {
	padding: 3em;
	text-align: left;
}

figure.effect-dexter p {
	position: absolute;
	right: 60px;
	bottom: 60px;
	left: 60px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.effect-dexter:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Sarah *****/
/*---------------*/

figure.effect-sarah {
	background: #42b078;
}

figure.effect-sarah img {
	max-width: none;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-sarah:hover img {
	opacity: 0.4;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-sarah figcaption {
	text-align: left;
}

figure.effect-sarah h2 {
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
}

figure.effect-sarah h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.effect-sarah:hover h2::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-sarah p {
	padding: 1em 0;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

figure.effect-sarah:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Zoe *****/
/*---------------*/

figure.effect-zoe figcaption {
	top: auto;
	bottom: 0;
	padding: 1em;
	height: 3.75em;
	background: #fff;
	color: #3c4a50;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.effect-zoe h2 {
	float: left;
}

figure.effect-zoe p.icon-links a {
	float: right;
	color: #3c4a50;
	font-size: 1.4em;
}

figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
	color: #252d31;
}

figure.effect-zoe p.description {
	position: absolute;
	bottom: 8em;
	padding: 2em;
	color: #fff;
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.effect-zoe h2,
figure.effect-zoe p.icon-links a {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

figure.effect-zoe p.icon-links a span::before {
	display: inline-block;
	padding: 8px 10px;
	font-family: 'feathericons';
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-eye::before {
	content: '\e000';
}

.icon-paper-clip::before {
	content: '\e001';
}

.icon-heart::before {
	content: '\e024';
}

figure.effect-zoe h2 {
	display: inline-block;
}

figure.effect-zoe:hover p.description {
	opacity: 1;
}

figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-zoe:hover h2 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-zoe:hover p.icon-links a:first-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/*---------------*/
/***** Chico *****/
/*---------------*/

figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chico figcaption {
	padding: 3em;
}

figure.effect-chico figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

figure.effect-chico figcaption::before,
figure.effect-chico p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico h2 {
	padding: 20% 0 20px 0;
}

figure.effect-chico p {
	margin: 0 auto;
	max-width: 200px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media only screen and (max-width: 1400px) {
.grid {
  
    max-width: 1000px;
    
}}
@media screen and (max-width: 50em) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
	figure.effect-layla img {
	height:300px;
	
}
.grid figure figcaption, .grid figure figcaption > a {
  
    width: 65%;
    
}
}


/* ========================================= Responsive Start ========================================= */

@media only screen and (max-width: 1200px) {
  header {
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.15);
  }
  header .headwrap {
    height: 60px;
  }
  #Head {
    margin: 0px;
    height: 60px;
  }
  #TopIcon {
    position: absolute;
    top: 15px;
    right: 70px;
    float: none;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
  }
  #TopIcon ul li {
    padding: 0;
  }
  #TopIcon ul li>a>i {
    font-size: 24px;
    color: #555555;
  }
  #TopIcon ul li>a span {
    display: none;
  }
  .langBox {
    top: 100%;
    right: 90px;
    z-index: 0;
    box-shadow: none;
  }
  #Logo {
    left: 10px !important;
    top: 10px !important;
  }
  #Logo img {
    max-height: 40px;
  }
  #featured_div .outWrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  #Container {
    padding: 60px 0 20px 0;
  }
}

@media only screen and (max-width: 1024px) {
  .side_bar {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    margin: 0;
    background: #999;
    z-index: 9998;
  }
  .side_bar ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
  .side_bar ul li {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .side_bar ul li a {
    margin: 0px;
    padding: 0px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .side_bar ul li a>i {
    width: inherit !important;
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 992px) {
  .SectionTitle {
    font-size: 24px;
    margin: 0;
    padding: 10px 0 15px 0;
  }
  .MainMenu {
    padding: 0px 0px 10px 0px;
  }
  .MainMenu ul li {
    width: 20%;
    float: left;
    padding-right: 5px;
  }
  .MainMenu ul li>a {
    padding: 5px 10px;
  }
  .FloatMenu nav ul {
    display: none;
  }
  .FloatMenu nav select {
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #e3e3e3;
  }
  .block {
    margin: 10px 0px;
  }
  .FootTitle .FootMenu ul {
    flex-wrap: wrap;
  }
  .FootTitle .FootMenu ul li {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    display: -webkit-inline-flex;
    display: -ms-inline-flex;
    display: inline-flex;
  }
  .footer_flex {
    flex-direction: column;
  }
  .ft_item {
    padding: 20px 30px;
  }
  .flex_1 {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .flex_2, .flex_3 {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex_3 ul li {
    margin: 0px 8px 10px 0px;
  }
  .flex_3 ul li.line {
    margin-left: 0px;
  }
  .flex_3 .ft_copyright {
    padding: 0px;
  }
}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 640px) {
  #Container .contentBox {
    padding: 20px 0 40px 0px;
  }
  .MainMenu ul li {
    width: 33.333333%;
  }
  .FootTitle .FootMenu ul {
    justify-content: flex-start;
  }
  .FootTitle .FootMenu ul li a b {
    display: inline-block;
    padding-top: 0px;
    padding-left: 5px;
    font-size: 12px;
  }
  #goTop {
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  #goTop a {
    font-size: 16px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 480px) {
  header {
    padding-top: 40px;
  }
  .menu-button {
    top: 45px;
  }
  #TopIcon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    text-align: center;
    padding: 0;
    background-color: #eeeeee;
  }
  #TopIcon ul li {
    -o-webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    width: 20%;
    font-size: 0;
    line-height: 1;
    padding: 0 10px;
  }
  #TopIcon ul li>a>i {
    font-size: 22px;
    line-height: 40px;
    padding: 0;
  }
  .langBox {
    top: 100%;
    right: 0px;
  }
  .inputBox {
    width: 260px;
    right: 0;
  }
  #Container {
    padding-top: 100px;
  }
  .SectionTitle {
    text-align: left;
    padding: 7px 0;
    font-size: 22px;
  }
  .SectionTitle h3.st_name {
    padding: 0px;
    float: none;
  }
  .SectionTitle div.st_bread {
    display: none;
  }
  .MainMenu ul li {
    width: 50%;
  }
  .footer_flex {
    padding: 10px 0px;
	
  }
  .ft_item {
    padding: 20px 0px;
	margin: 0 auto;
  }
  .flex_3 .ft_copyright h6 {
  text-align:center;
 
 
}

}