/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 25 2019 | 16:55:27 */
.hp_slider_img {
	position: absolute;
	object-fit: cover;
	max-height: 100%;
}
.hp_slider_wrapp {
	position: relative;
	width: 100vw;
	height: 100vh;
	min-height: 550px;
}
.hp_slider {
	/*background-image: url( '/s/homepage/v2/slide_3.jpg' );
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;*/
	transition: all .2s ease;
	overflow: hidden;
	z-index: 2;
}
.hp_slider_dim {
	background-color: rgba( 0, 0, 0, .5 );
	z-index: 3;
}
.hp_slider_bg {
	background-color: #000;
	z-index: 1;
}
.hp_slider, .hp_slider_bg, .hp_slider_dim {
	position: absolute;
	height: 100vh;
	width: 100vw;
	min-height: 550px;
	top: 0;
	left: 0;
}
.hp_slider_container {
	position: relative;
	z-index: 4;
}
.hp_slider_logo {
	position: relative;
	width: 300px;
	margin: 5% 0 0 18%;
}
.hp_slider_menu {
	position: relative;
	list-style-type: none;
	font-size: 2em;
	margin: 0 0 0 17%;
}
.hp_slider_menu li {
	margin: .5em 0;
}
.hp_slider_menu a {
	color: #eee;
	opacity: .8;
	transition: all .2s;
}
.hp_slider_menu a:hover {
	color: #fff;
	opacity: 1;
}
/* Search */
.hp_slider_search_wrapp {
	position: absolute;
	top: 5%;
	left: 62%;
	transition: .3s;
}
#hp_slider_search {
	transition: all .3s;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.6em;
}
#hp_slider_search_ico {
	max-width: 60px;
	max-height: 60px;
	left: -6px;
	fill: #fff;
}
#hp_slider_search::placeholder {
	color: #fff;
}
#hp_slider_search:-ms-input-placeholder { /* IE 10-11 */
	color: #fff;
}
#hp_slider_search::-ms-input-placeholder { /* MS Edge */
	color: #fff;
}

/* animation fade-in-out */
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: .1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .1;
  }
}

/* === Flex Box === */
.hp_flex {
	display: flex;
	flex-direction: row;
	margin: 10vw 0;
}
.hp_flex div {
	flex: 1;
}
.hp_flex_text_box {
	padding: 0 1em 0 1em;
}
.hp_flex_image_box {
	position: relative;
	overflow: hidden;
}
.hp_flex_video_box {
	text-align: center;
}
.hp_flex_video {
	width: 560px;
	height: 315px;
}
.hp_flex_image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	width: 110%;
	height: 110%;
	object-fit: cover;
	transition: all .5s;
}
.hp_flex_image:hover {
	transform: translate( -50%, -50% ) scale( 1.05 );
}

/* === Instafeed === */
.hp_instagram_header {
	margin: 6vw 0 0 0;
	border: none;
}
#instafeed {
	display: flex;
	flex-direction: row;
	margin: 5.5vw 0;
}
#instafeed a {
	align-items: center;
	position: relative;
	background: white;
	overflow: hidden;
	flex: 1;
}
#instafeed a img {
	transition: all 0.5s;
}
#instafeed a img:hover {
	transform: scale(1.05);
}
.hp_instagram_button {
	margin: 0 0 10vw 0;
}

/* responsive */
@media screen and (min-width: 1px) and (max-width: 780px) {
	.hp_slider_search_wrapp {
		position: relative;
		top: 0;
		left: 0;
	}
	.hp_slider_content {
		text-align: center;
	}
	.hp_slider_logo {
		margin: 0 auto;
	}
	.hp_slider_menu {
		margin: 0 auto;
		text-align: center;
	}
	/* flexbox */
	.hp_flex {
		flex-direction: column;
	}
	.hp_flex div {
		flex: none;
	}
	.hp_flex_image_box {
		height: 150px;
	}
	.hp_flex_rev {
		flex-direction: column-reverse;
	}
	#instafeed {
		flex-wrap: wrap;
	}
	#instafeed a {
		flex-basis: 50%;
	}
}