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

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	float: left;
	border: 2px solid #ffffff;
	border-radius: 50%;
	margin: 0 17px 0 0;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: rgba(252,105,42,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: 44px;
	height: 44px;
	background: rgba(254,80,108,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: 15px solid #ffffff;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	margin: 9px 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;
}
}
/* Square-effect */
.square-effect1 {
  background: #000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #000000 25%, #992385 50%, #992385 75%, #536df2 100%);
  background: -webkit-linear-gradient(-45deg, #000000 0%, #000000 25%, #992385 50%, #992385 75%, #536df2 100%);
  background: linear-gradient(135deg, #000000 0%, #000000 25%, #992385 50%, #992385 75%, #536df2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#992385', endColorstr='#536df2',GradientType=1 ); /* IE6-9 */
  background-size: 400% 400%;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  cursor: pointer;
  transition: .5s all;
}
.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;
}
.square-effect1 .square-bar1 {
  width: 100%; 
  float: left;
  overflow: hidden;
  position: relative;
  mix-blend-mode: screen;
}
.square-effect1:hover {
  background-position: 100% 100%;
}
.square-effect1:hover .enquer-box1 img {
	transform:none;
	transition:none;
}
.square-effect1:hover .pink-text {
  background: -webkit-linear-gradient(left, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: inherit;
}
/* circle-hover1 */
.circle-hover1 {
	border: 1px solid #eff0fc;
	border-radius: 40px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.circle-hover1 .circle-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow:hidden;
	position: absolute;
	z-index: 10;
	bottom: -40px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
}
.circle-hover1:hover {
	border: 1px solid #fc692b;
}
.circle-hover1:hover .circle-img {
	background: linear-gradient(to top, #eff0fc, #eff0fc);
	background: -webkit-linear-gradient(to top, #eff0fc, #eff0fc);
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
/*tab-css*/
.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	border-bottom: 1px solid #333;
	width: 100%;
}

.tabs a {
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 0px 21px;
	height: 31px;
	line-height: 31px;
	border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	background-color: #666;
	color: #ccc;
	overflow: hidden;
	position: relative;
}

.tab_last { border-right: 1px solid #333; }

.tabs a:hover {
	background-color: #ccc;
	color: #333;
}

.tabs a.active {
	background-color: #fff;
	color: #333;
	border-bottom: 1px solid #fff;
	display: block;
}

.tab_container {
	border: 1px solid #333;
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
	overflow: auto;
}

.tab_content {
	padding: 20px;
	display: none;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width: 480px) {
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		background-color: #ccc;
		color: #fff;
		border-top: 1px solid #333;
		margin: 0;
		padding: 5px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.d_active {
		background-color: #666;
		color: #fff;
	}
}

/*map-color*/
.map-color {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

/*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) {
.video-play-button { width:34px; height:34px; margin:0 11px 0 0;}
.video-play-button span { border-left:11px solid #ffffff; border-top:7px solid transparent; border-bottom:7px solid transparent; margin:8px 12px;}
.video-play-button:after { width:54px; height:54px;}
.video-play-button:before { width:38px; height:38px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.video-play-button { width:37px; height:37px; margin:0 14px 0 0;}
.video-play-button span { border-left:13px solid #ffffff; border-top:8px solid transparent; border-bottom:8px solid transparent; margin:8px 13px;}
.video-play-button:after { width:57px; height:57px;}
.video-play-button:before { width:41px; height:41px;}
}

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

}