@charset "utf-8";
/* CSS Document */

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 34px;
	height: 34px;
	float: none;
	border: 2px solid #016270;
	border-radius: 50%;
	margin: 0 auto 10px;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 54px;
	height: 54px;
	background: rgba(18,164,143,0.60);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:before {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 40px;
	height: 40px;
	background: rgba(18,164,143,0.60);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after, .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	z-index: -9;
}
.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 8px solid #016270;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	margin: 7px 13px;
}
 @-webkit-keyframes pulse-border {
 0% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}
 @keyframes pulse-border {
 0% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}
/*scroll-effect1*/
.scroll-effect1 {
	width: 100%;
	height: 40px;
	background: url(../images/scroll-thumb1.png) no-repeat center / cover;
	margin: 0 auto 0;
	position: relative;
	z-index: 99;
}
.scroll-effect1 a span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	margin: 0 0 0;
}
.scroll-effect1 a:after {
	content: "";
	width: 11px;
	height: 16px;
	background: url(../images/scroll-arrow1.png) no-repeat center / 100% 100%;
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	margin: auto;
}
.scroll-effect1 a:before {
	content: "";
	width: 5px;
	height: 9px;
	background: url(../images/scroll-dot1.png) no-repeat center / 100% 100%;
	position: absolute;
	top: -10px;
	right: 0;
	left: 0;
	margin: auto;
}
.scroll-effect1 a span::before {
	position: absolute;
	top: 10px;
	right: 0;
	left: -1px;
	content: '';
	width: 3px;
	height: 8px;
	margin: 0 auto 0;
	background: #d1b87a;
	border: 1px solid #d1b87a;
	border-radius: 50%;
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
	box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
 0% {
 -webkit-transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 -webkit-transform: translate(0, 10px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
@keyframes sdb10 {
 0% {
 transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 transform: translate(0, 10px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
/* Square-effect */
.square-effect1 {
	background: #000;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition: .5s all;
}
.square-effect1 img {
	transition: all 0.25s ease-out 0s;
}
.square-effect1 .square-bar1 {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
}
.square-effect1:hover .square-bar1 img {
	opacity: 0.50;
	transform: scale(1.08);
}
.square-effect1:hover {
	background-position: 100% 100%;
}
.square-effect1 .label {
	width: 100%;
	padding: 0 2% 0;
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
}
.square-effect1:hover .label {
	opacity: 1;
	visibility: visible;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
/*map-color*/
.map-color {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}