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

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 44px;
	height: 44px;
	float: none;
	border: 2px solid #fff;
	border-radius: 50%;
	margin: 0 auto 0;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 54px;
	height: 54px;
	background: rgba(255,255,255,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(255,255,255,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: 13px solid #fff;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	margin: 8px 16px;
}
 @-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: #1e1e1e;
	border: 1px solid #1e1e1e;
	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;
}
}
/*bounce-effect1*/
.bounce {
	width: 100%;
	float: none;
	-moz-animation: bounce 4s infinite;
	-webkit-animation: bounce 4s infinite;
	animation: bounce 4s infinite; 
	display: inline-block;
	margin: 0 auto 0;
}
/* Square-effect */
.square-effect1 {
  background: #000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #000000 25%, #20449c 50%, #4167c4 75%, #6e91e9 100%);
  background: -webkit-linear-gradient(-45deg, #000000 0%, #000000 25%, #20449c 50%, #4167c4 75%, #6e91e9 100%);
  background: linear-gradient(135deg, #000000 0%, #000000 25%, #20449c 50%, #4167c4 75%, #6e91e9 100%);
  background-size: 400% 400%;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: .5s all;
}
.square-effect1 img {
	transition:transform 0.8s ease-in-out 0s;
}
.square-effect1 .square-img {
  width: 100%; 
  float: left;
  position: relative;
  mix-blend-mode: screen;
}
.square-effect1:hover {
  background-position: 100% 100%;
}
.square-effect1:hover img {
	transform:scale(1.08);
	transition:all 1.5s ease 0s;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
.square-effect1 {
	background: #20449c;
}
.square-effect1 img {
	transition: transform 0.8s ease-in-out 0s;
}
.square-effect1:hover img {
	transform: scale(1.08);
	transition: all 1.5s ease 0s;
	opacity: 0.5;
}
}
/*map-color*/
.map-color {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}