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

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	float: right;
	border: 1px solid #45c3d3;
	background:#45c3d3;
	border-radius: 50%;
	margin: -2px 0 0 10px;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 40px;
	height: 40px;
	background: rgba(69,195,211,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: 26px;
	height: 26px;
	background: rgba(69,195,211,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: 5px solid #3c444c;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	margin: 6px 7px;
}
 @-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: 26px;
	float: left;
	margin: 0 0 0;
	position: relative;
	z-index: 99;
}
.scroll-effect1 a span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 26px;
	border: 1px solid #f6e0d5;
	border-radius: 50px;
	box-sizing: border-box;
	margin: 0 0 0;
}
.scroll-effect1 a:after {
	content: "";
	width: 14px;
	height: 7px;
	background: /*url(../images/scroll1-down-arrow.svg)*/ no-repeat center / 100% 100%;
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	margin: 0 auto 0;
}
.scroll-effect1 a span::before {
	position: absolute;
	top: 4px;
	right: 0;
	left: 0;
	content: '';
	width: 4px;
	height: 6px;
	margin: 0 auto 0;
	background: #f6e0d5;
	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;
}
}

/* Image-effect */
.image-effect1 {
	overflow: hidden;
	cursor: pointer;
}
.image-effect1 img {
	filter: none;
	-o-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-o-transition: all .8s ease-in-out;
	-ms-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
}
.image-effect1:hover img {
	filter: gray;
	-o-filter: gray;
	-ms-filter: gray;
	-moz-filter: gray;
	-webkit-filter: gray;
	filter: grayscale(1);
	-o-filter: grayscale(1);
	-ms-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	transform: scale(1.04);
	-o-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-webkit-transform: scale(1.04);
}


/*Smartphone css*/
@media screen and (max-width: 480px) {

}

@media screen and (min-width:481px) and (max-width:600px) {

}

@media screen and (min-width:601px) and (max-width:767px) {

}

@media screen and (min-width:768px) and (max-width:900px) {

}

@media screen and (min-width:901px) and (max-width:1024px) {

}

@media screen and (min-width:1025px) and (max-width:1240px) {

}