/*  =============================================================================
	=============================================================================
	=============================================================================
	客製化 CSS 設計
	=============================================================================
	=============================================================================
	=============================================================================
	========================================================================== */
/* =============================================================================
   基本設定
   ========================================================================== */
body {
	background-color: #fff;
	-webkit-text-size-adjust: none; 
	-webkit-font-smoothing: antialiased;
}

body:not(.home):not(.lessons):not(.gallery){
	background-color: #e6e6e6;
}

/* 字體設定 */

/*
* Noto Sans TC (Chinese_traditional) http://www.google.com/fonts/earlyaccess
 */
@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 100;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 300;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans TC';
	font-style: normal;
	font-weight: 500;
	src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff2) format('woff2'),
		 url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff) format('woff'),
		 url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans TC';
	font-style: normal;
	font-weight: bold;
	src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff2) format('woff2'),
		 url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff) format('woff'),
		 url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.otf) format('opentype');
}




@font-face {
	font-family: MyCustomFont;
	src: local(Heiti TC), local("微軟正黑體"),local(LiSong Pro Light),local("儷宋 Pro"),local(SimSun),local("宋體");
	/* no unicode-range; default to all characters */
}

/* Latin characters 專用 */
@font-face {
	font-family: MyCustomFont; /* 同樣的 font-family */
	unicode-range: U+00-024F;  /* Latin, Latin1 Sup., Ext-A, Ext-B */
	src: local(Helvetica Neue),     /* OS X preferred */
	   local(Helvetica),         /* Other OS */
	   local(Arial);         /* Other OS */
}

/* 注音符號專用 */
@font-face {
	font-family: MyCustomFont;      /* 同樣的 font-family */
	unicode-range: U+3100-312F;     /* Bopomofo */
	src: local(Heiti TC), local("微軟正黑體"),local("儷黑 Pro"),local(LiSong Pro Light),local("儷宋 Pro"),local(SimSun),local("宋體");
}

/* 日文假名專用 */
@font-face {
	font-family: MyCustomFont;            /* 同樣的 font-family */
	unicode-range: U+3040-30FF;           /* Hiragana, Katakana */
	src: local(Hiragino Kaku Gothic Pro), /* OS X */
	   local(Meiryo);                   /* Windows Vista+ */
}

p{
	font-family: 'Noto Sans TC', 'Noto Sans SC', Noto Sans CJK TC, "sourcehansans-tc", MyCustomFont,"微軟正黑體", sans-serif;
	letter-spacing: 1px;
	font-size: 14px;
	color: #1a1a1a;
	font-weight: 300;
}

h1,h2,h3,h4,h5,h6,label,span,a,li,div,input,entry-content,button,#button_crop_recortar{
	font-family: 'Noto Sans TC', 'Noto Sans SC', Noto Sans CJK TC, "sourcehansans-tc", MyCustomFont,"微軟正黑體", sans-serif;
	text-shadow: none;
	font-weight: 300;
	color: #1a1a1a;
}

input:placeholder{
	font-family: 'Noto Sans TC', 'Noto Sans SC', Noto Sans CJK TC, "sourcehansans-tc", MyCustomFont,"微軟正黑體", sans-serif;
}

@media (max-width: 600px) {
	p{
		font-size: 13px;
	}
}


h1,h2,h3,h4,h5,h6{
	color: #1a1a1a;
}

.num_style{
	font-family: 'Work Sans', sans-serif;
	font-weight: 200;
}


.img_full_responsive{
	display: block;
	max-width: none;
	width: 100%;
	height: auto;
}

body{
	margin: 0px;
	width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	padding-top: 60px;
}

*::selection{
	background-color: #dd0012;
	color: white;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 1100px;
	box-sizing: border-box;
}

img{
	border-style:none;
}

a,
form{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}

@media (max-width: 1200px) {
	.container{
		width: 970px;
	}
}
@media (max-width: 992px) {
	.container {
		width: 750px;
	}
}
@media (max-width: 768px) {
	.container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
}

.left {
    float: left;
}

.right {
    float: right;
}

.h100p{
	height: 100%;
}

.w100p{
	width: 100%;
}

.w95p{
	width: 95%;
}

.w50p{
	width: 50%;
}

.section{
	width: 100%;
	float: left;
	position: relative;
}

.w150{
	width: 150px;
}

.w333{
	width: 333px;
}

.w320{
	width: 320px;
}

.w_margin{
	width: 550px;
	margin-left: 430px;
}

@media (max-width: 1200px) {
	.w_margin{
		width: 550px;
		margin-left: 330px;
	}
}
@media (max-width: 992px) {
	.w_margin{
		width: 550px;
		margin-left: 160px;
	}
}
@media (max-width: 768px) {
	.w_margin{
		width: 100%;
		margin-left: 0px;
	}
}

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

ul.no_style li{
	padding-left: 0px;
}

ul.underline_style li{
	border-bottom: 1px solid #c0c1c1;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	float: left;
}

ul.underline_style.underline_padding_in_a li{
	padding-top: 0px;
	padding-bottom: 0px;
}

ul.underline_style.underline_padding_in_a li a{
	padding-top: 8px;
	padding-bottom: 10px;
}

ul.dot_list{
	list-style: disc;
	margin: 0px;
}

ul.dot_list > li{
	padding-top: 8px;
	padding-bottom: 8px;
}

ul.dot_list > li:first-child{
	padding-top: 0px;
}

ul.dot_list > li:last-child{
	padding-bottom: 0px;
}

ul.list_padding_5 > li{
	padding-top: 5px;
	padding-bottom: 5px;
}

@media (max-width: 420px) {
	ul.dot_list{
		padding-left: 20px;
	}
}

.icon{
	background-repeat: no-repeat;
	display: block;
}

.hide{
	display: none;
}

.hide_text{
	text-indent: -99999px;
}

.link_for_block{
	display: block;
}

input {
    -webkit-appearance: none;
}

input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color:#acacad;
	font-size: 12px;
}

input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color:#acacad;
	opacity:1;
	font-size: 12px;
}

input::-moz-placeholder { /* Mozilla Firefox 19+ */
	color:#acacad;
	opacity:1;
	font-size: 12px;
}

input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color:#acacad;
	font-size: 12px;
}

textarea:focus, input:focus{
    outline: none;
}

input.text_input{
	font-size: 13px;
	padding: 0px 0px 0px 14px;
	color: #646464;
	background-color: #f3f3f3;
	border: 1px solid #fff;
	border-radius: 0px;
	transition: 400ms border ease, 400ms background-color ease;
}

input.text_input.input_style{
	font-size: 13px;
	padding: 10px 14px 10px 14px;
	border-radius: 5px;
	border: 1px solid #666;
	background-color: #fff;
	box-sizing: border-box;
}

input.text_input:focus,
textarea.text_input:focus {
 	border: 1px solid #838383;
 	background-color: #f8f8f8;
}

input.text_input.input_style:focus{
	border: 1px solid #95000d;
}

input.text_input:hover,
textarea.text_input:hover {
 	background-color: #f8f8f8;
}

input.text_input.input_style:hover{
	border: 1px solid #dd0012;
}

input.text_button{
	cursor: pointer;
	display: block;
	background-color: #f3f3f3;
	border: 1px solid #fff;
	border-radius: 0px;
	transition: 400ms background-color ease;
}

input.text_button.icon{
	text-indent: -9999px;
}

input.text_button:hover,
input.text_button:focus{
 	background-color: #d6d6d6;
}

input.text_button:active{
 	background-color: #b9b9b9;
}

input.file_input{
	position: relative;
	cursor: pointer;
	margin-left: -1px;
}

input.file_input[type="file"]::-webkit-file-upload-button{
	cursor: pointer;
	display: block;
	background-color: #666;
	border: 1px solid #fff;
	border-radius: 0px;
	transition: 400ms background-color ease;
	text-indent: -9999px;
	position: relative;
	width: 95px;
	padding: 10px 15px;
	border-radius: 5px;
    -webkit-appearance: none;
}

input.file_input:before{
	content: "請選擇檔案";
	position: absolute;
	left: 0px;
	top: 0px;
	color: #fff;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 10px 15px;
	line-height: 15px;
	font-size: 13px;
}

input.file_input:hover[type="file"]::-webkit-file-upload-button{
 	background-color: #dd0012;
}

input.file_input:active[type="file"]::-webkit-file-upload-button{
 	background-color: #95000d;
}

input.submit_style{
	cursor: pointer;
	display: block;
	background-color: #dd0012;
	border: 1px solid #fff;
	padding: 5px 28px 5px 28px;
	border-radius: 0px;
	border-radius: 5px;
	margin-top: 10px;
	transition: 400ms all ease;
}

input.submit_style:hover{
	background-color: #95000d;
	transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05) rotate(0.02deg);
    -ms-transform: scale(1.05) rotate(0.02deg);
}

input.submit_style:active{
	transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9) rotate(0.02deg);
    -ms-transform: scale(0.9) rotate(0.02deg);
}

textarea.text_input.input_style{
	font-size: 13px;
	padding: 10px 14px 10px 14px;
	border-radius: 5px;
	min-height: 43px;
	border: 1px solid #666;
	box-sizing: border-box;
	transition: 400ms border ease, 400ms background-color ease;
}

textarea.text_input.input_style:hover{
	border: 1px solid #dd0012;
}

textarea.text_input.input_style:focus{
	border: 1px solid #95000d;
}

.input_style .nice-select{
	border: 1px solid #666;
}

@media (max-width: 992px) {
	.mobile_type.earier_change input::-webkit-input-placeholder{
		font-size: 16px;
	}
	.mobile_type.earier_change input:-moz-placeholder{
		font-size: 16px;
	}
	.mobile_type.earier_change input::-moz-placeholder{
		font-size: 16px;
	}
	.mobile_type.earier_change input:-ms-input-placeholder {
		font-size: 16px;
	}
	
	.mobile_type.earier_change input.text_input {
	 	border: 0px;
	 	margin-top: 1px;
	 	margin-right: 1px;
	}
	
	.mobile_type.earier_change input.text_input:focus {
	 	border: 0px;
	}
	
}

@media (max-width: 768px) {
	input::-webkit-input-placeholder{
		font-size: 16px;
	}
	input:-moz-placeholder{
		font-size: 16px;
	}
	input::-moz-placeholder{
		font-size: 16px;
	}
	input:-ms-input-placeholder {
		font-size: 16px;
	}
	
	input.text_input {
	 	border: 0px;
	 	margin-top: 1px;
	 	margin-right: 1px;
	}
	
	input.text_input:focus {
	 	border: 0px;
	}
	
	input.submit_style{
		width: 100%;
		padding: 10px 28px 10px 28px;
	}
	
	input.submit_style:hover,
	input.submit_style:active{
		transform: scale(1);
	    -webkit-transform: scale(1);
	    -moz-transform: scale(1) rotate(0.02deg);
	    -ms-transform: scale(1) rotate(0.02deg);
	}
}

.b_bg{
	background-color: #000;
}

.d_bg{
	background-color: #222;
}

.w_bg{
	background-color: #fff;
}

.lgy_bg{
	background-color: #fafafa;
}

.lmgy_bg{
	background-color: #f5f5f5;
}

.mgy_bg{
	background-color: #eeefef;
}

.dgy_bg{
	background-color: #444;
}

.o_b_bg{
	background-color: #231815;
	opacity: 0.92;
}

.lgy_wd{
	color: #fafafa;
}

.mlgy_wd{
	color: #c0c1c1;
}

.mmlgy_wd{
	color: #969797;
}

.mgy_wd{
	color: #727171;
}

.mdgy_wd{
	color: #666;
}

.dgy_wd{
	color: #444;
}

.b_wd{
	color: #000;
}

.w_wd{
	color: #fff;
}

.w_wd *{
	color: #fff;
}

.bl_wd{
	color: #009991;
}

.y_wd{
	color: #ea8f00;
}

.r_wd{
	color: #dd0012;
}

.ws_28{
	font-size: 28px;
}

.ws_24{
	font-size: 24px;
}

.ws_21{
	font-size: 21px;
}

.ws_18{
	font-size: 18px;
}

.ws_16{
	font-size: 16px;
}

.ws_15{
	font-size: 15px;
}

.ws_14{
	font-size: 14px;
}

.ws_13{
	font-size: 13px;
}

.ws_12{
	font-size: 12px;
}

.ws_10{
	font-size: 10px;
	 -webkit-text-size-adjust : none;
}

.wst_light{
	font-weight: light;
}

@media (max-width: 768px) {
	.ws_28{
		font-size: 18px;
	}
}

.wa_justify{
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	word-wrap: break-word;
}

.wa_center{
	text-align: center;
	display: inline-block;
}

.wa_left{
	text-align: left;
}

.wa_right{
	text-align: right;
}

img.ob_fit{
	width: 100%;
	height: 100%;
}

.ob_fit.ob_fit_cover{
	object-fit:cover;
}

.ob_fit.ob_fit_cotain{
	object-fit:contain;
}

.ob_fit.ob_po_center{
	object-position:center center;
}

.bg_fit.bg_fit_cover{
	background-size: cover;
}

.bg_fit.bg_fit_cotain{
	background-size: contain;
}

.bg_fit.bg_po_center{
	background-position: center center;
}

figure{
	padding: 0px;
	margin: 0px;
}

.dis_drag{
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	user-drag: none;
}

label{
	text-shadow: none;
}
 
a *{
	cursor: pointer;
}

a.no_style{
	text-decoration: none;
}

a.hover_link,
a.hover_link *{
	transition: 400ms color ease, 400ms opacity ease;
}

a.hover_link.hover_link_r:hover,
a.hover_link.hover_link_r:hover *{
	color: #dd0012;
}

a.hover_link.hover_link_r:active,
a.hover_link.hover_link_r:active *{
	color: #95000d;
}

a.hover_link.hover_link_w:hover,
a.hover_link.hover_link_w:hover *{
	color: #fff;
}

a.hover_link.hover_link_w:active,
a.hover_link.hover_link_w:active *{
	color: #9b9b9b;
}
 
 .no_cursor,
.no_cursor *{
	cursor: default;
}

a.link_btn{
	width: 167px;
	height: 47px;
	border-radius: 47px;
	font-size: 14px;
	color: #333333;
	display: block;
	margin: 0 auto;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	border: 1px solid #000;
	position: relative;
	overflow: hidden;
	transition:400ms all ease;
}

a.link_btn:after{
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	z-index: -3;
	left: 0px;
	top: 0px;
}

a.link_btn span{
	width: 100%;
	height: 100%;
	color: #333333;
	position: relative;
	padding-top: 12px;
	float: left;
	display: block;
	transition:400ms all ease;
}

a.link_btn span:before{
	background-color: #666;
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	z-index: -2;
	left: 0px;
	top: 0px;
	width: 0px;
	transition:400ms all ease;
}

a.link_btn span:after{
	background-color: #333;
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	z-index: -1;
	left: 0px;
	top: 0px;
	width: 0px;
	transition-delay: 300ms;
	transition:600ms all ease;
}

.home #section_2 a.link_btn span:before{
	background-color: #333;
}
.home #section_2 a.link_btn span:after{
	background-color: #000;
}

a.link_btn:hover span:before{
	width: 120%;
}

a.link_btn:hover span:after{
	width: 120%;
}

a.link_btn:hover span{
	color: white;
}

a.link_btn:hover{
	border: 1px solid #fff;
}


/*--------------------------------------------------------
----------------------------------------------------------
手機版本切換
----------------------------------------------------------
--------------------------------------------------------*/

.normal_type {
    display: block;
}

.display_inline .normal_type{
    display: inline-block;
}

.mobile_type {
    display: none;
}

@media (max-width: 992px) {
    .normal_type.earier_change {
        display: none;
    }

    .mobile_type.earier_change {
        display: block;
    }
}

@media (max-width: 768px) {
    .normal_type,
    .display_inline .normal_type
    {
        display: none;
    }

    .mobile_type {
        display: block;
    }
    
    .display_inline .mobile_type {
	    display: inline-block;
    }
}

@media (max-width: 420px) {
	.hide_for_s_mobile_type{
		display: none;
	}
}

@media (max-width: 320px) {
	.hide_for_sm_mobile_type{
		display: none;
	}
}

/*--------------------------------------------------------
----------------------------------------------------------
互動設定
----------------------------------------------------------
--------------------------------------------------------*/

.action_hover{
	opacity: 1;
	transition: 400ms ease opacity;
}

.action_hover:hover:not(.active){
	opacity: 0.7;
}

.action_hover:active:not(.active){
	opacity: 0.5;
}

@media (max-width: 768px) {
	.m_action_disable{
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: color 0 ease-in;
		transition: none;
	}

	.action_hover.m_action_disable{
		opacity: 1;
	}
}

.multi_pics{
	display: block;
}

.multi_pics .multi_icon{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.multi_pics .multi_icon:after{
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 0;
	opacity: 1.0;
	-moz-opacity:1.0;
	transition: 400ms opacity ease;
}

.multi_pics .multi_icon:before{
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	opacity: 0.0;
	-moz-opacity:0.0;
	transition: 400ms opacity ease;
}

.multi_pics:hover .multi_icon:after{
	opacity: 0;
}
.multi_pics_to_active.active .multi_icon:after{
	opacity: 0;
}

.multi_pics:hover .multi_icon:before{
	opacity: 1;
}
.multi_pics_to_active.active .multi_icon:before{
	opacity: 1;
}

.multi_pics:active .multi_icon:before,
.multi_pics:focus .multi_icon:before{
	opacity: 0.6;
}
.multi_pics:hover .multi_icon:after{
	opacity: 0.6;
}

@media (max-width: 768px) {
	.multi_pics:active .multi_icon:before{
		opacity: 1;
	}
	.multi_pics:active .multi_icon:after{
		opacity: 0;
	}
	.multi_pics:hover .multi_icon:after{
		opacity: 0;
	}
	.multi_pics:hover .multi_icon:before{
		opacity: 1;
	}
}





/*--------------------------------------------------------
----------------------------------------------------------
讀取樣式
----------------------------------------------------------
--------------------------------------------------------*/
div.ui-loader{
	display: none;
}
#loading{
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #fff;
	top: 0px;
	left: 0px;
	z-index: 10;
	display: none;
}

#loading .spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
}

.lt-ie10 #loading{
	background-image: url(../images/loading.gif);
	background-repeat: no-repeat;
	background-position: center center;
	-ms-background-position: center center;
}

.lt-ie10 #loading .spinner{
	display: none;
}

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


.column_text p{
	-webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    text-align: justify;
    font-size: 14px;
	line-height: 24px;
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width: 992px) {
	.column_text p{
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.column_text p{
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		font-size: 13px;
		line-height: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}



.isotope_section #isotop_container #iso_container:after {
	content: '';
	display: block;
	clear: both;
}

.isotope_section #isotop_container  .load-more-posts{
	margin: 0 auto;
	display: block;
	font-size: 14px;
	color: #000;
	text-align: center;
	width: 125px;
	height: 45px;
	border: 1px solid #5a5a5a;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	margin-top: 40px;
	margin-bottom: 60px;
	transition: 400ms all ease;
}

.isotope_section #isotop_container  .load-more-posts.disabled{
	opacity: 0.3;
	cursor: default;
}

.isotope_section #isotop_container  .grid_sizer{
	height: 195px;
	width: 25%;
	padding: 7px;
	box-sizing: border-box;
	position: relative;
}

.isotope_section #isotop_container  .iso_item_box{
	height: 195px;
	width: 25%;
	padding: 7px;
	box-sizing: border-box;
	position: relative;
/* 	transition: 400ms all ease; */
}

.isotope_section #isotop_container  .iso_item_box.doubleWidth{
/* 	width: 550px; */
	width: 50%;
}

.isotope_section #isotop_container  .iso_item_box.doubleHeight{
	height: 390px;
}

.isotope_section #isotop_container  .iso_item_box .iso_item{
	width: 100%;
	height: 100%;
	position: relative !important;
}

.iso_item{
	border: 1px solid #999999;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: 400ms all ease;
	transition-delay: 0s;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
}

.iso_item.other_hover .iso_box{
	opacity: 0.4;
	
}

.iso_item .iso_box{
	transition: 1000ms all ease;
}

.iso_item.menu_item .iso_box{
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.iso_item.menu_item .iso_box a{
	width: 100%;
	height: 100%;
	display: block;
}

.iso_item.menu_item .iso_box a label{
	color: #4d4d4d;
	font-size: 18px;
	position: absolute;
	left: 30px;
	bottom: 30px;
	line-height: 22px;
	letter-spacing: 3px;
	transition: 400ms all ease;
	z-index: 2;
	-webkit-backface-visibility: hidden;
}

.iso_item.menu_item:hover .iso_box a label{
	color: #fff;
}

.iso_item.menu_item .iso_box .menu_icon{
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 1;
}

.iso_item.menu_item .iso_box svg *{
	transition: 400ms all ease;
}

.iso_item.menu_item:hover .iso_box svg *{
	fill: #fff;
}

.iso_item.gallery_item .iso_box{
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.iso_item.gallery_item .iso_box .top_icons{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0%;
	z-index: 2;
	transition: 400ms all ease;
	opacity: 0;
}

.iso_item.gallery_item .iso_box .top_icons .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0%;
	z-index: 1;
	background-color: rgba(0,0,0,0.5);
}

.iso_item.gallery_item .iso_box .top_icons .zoom{
	position: absolute;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -50px;
	color: white;
	z-index: 2;
	font-size: 40px;
	text-align: center;
} 

.iso_item.gallery_item .iso_box .top_icons .zoom .fa{
	transform: rotate(-45deg);
}

.iso_item.gallery_item .iso_box .top_icons .social_media{
	position: absolute;
	width: 100%;
	height: 35px;
	bottom: 20px;
	left: 0px;
	text-align: center;
	margin: 0 auto;
	transition: 400ms all ease;
	transform: translateY(10px);
	z-index: 2;
}

.iso_item.gallery_item .iso_box .top_icons .social_media .icon{
	background-color: rgba(255,255,255,0.4);
	border-radius: 30px;
	width: 30px;
	height: 30px;
	display: inline-block;
	transition: 400ms all ease;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,0);
	margin-left: 2px;
	margin-right: 2px;
}

.iso_item.gallery_item .iso_box .top_icons .social_media .icon:hover{
	background-color: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.4);
}

.iso_item.gallery_item .iso_box .top_icons .social_media .icon a{
	color: white;
	margin-top: 1px;
	float: left;
	width: 100%;
	text-align: center;
}

.iso_item.gallery_item:hover .iso_box .top_icons{
	opacity: 1;
}

.iso_item.gallery_item:hover .iso_box .top_icons .social_media{
	transform: translateY(0px);
}

.iso_item.gallery_item .iso_box .gallery_isotope{
	position: absolute;
	width: 120%;
	height: 120%;
	left: -10%;
	top: -10%;
	z-index: 1;
	transition: 400ms all ease;
}

.iso_item.gallery_item:hover .iso_box .gallery_isotope{
/*
	filter: blur(5px);
	-webkit-filter: blur(5px);
*/
}

.iso_item.gallery_item .iso_box .gallery_isotope .iso_pic{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	box-shadow: -0px -0px 10px rgba(0,0,0,0.5);
	background-color: #333;
}

.iso_item.gallery_item .iso_box .gallery_isotope .iso_pic *{
	width: 100%;
	height: 100%;
	opacity: 0.8;
	transition: 400ms opacity ease;
}

.iso_item.gallery_item .iso_box .gallery_isotope .iso_pic.top *{
	opacity: 1;
}

@media (max-width: 992px) {
	.isotope_section #isotop_container  .grid_sizer,
	.isotope_section #isotop_container  .iso_item_box{
		height: 195px;
		width: 33.333%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleWidth{
		width: 33.333%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleHeight{
		height: 390px;
		width: 33.333%;
	}
}

@media (max-width: 600px) {
	.isotope_section #isotop_container  .grid_sizer,
	.isotope_section #isotop_container  .iso_item_box{
		height: 190px;
		width: 100%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleWidth{
		width: 100%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleHeight{
		height: 190px;
		width: 100%;
	}
}

@media (max-width: 330px) {
	.isotope_section #isotop_container  .grid_sizer,
	.isotope_section #isotop_container  .iso_item_box{
		height: 170px;
		width: 100%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleWidth{
		width: 100%;
	}
	
	.isotope_section #isotop_container  .iso_item_box.doubleHeight{
		height: 190px;
		width: 100%;
	}
}