@charset "utf-8";
/* CSS Document */

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	float: left;
	border: 1px solid #c58a0b;
	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: 34px;
	height: 34px;
	background: rgba(28,27,77,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: 24px;
	height: 24px;
	background: rgba(28,27,77,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: 10px solid #c58a0b;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	margin: 3px 6px;
}

.treatin-wrapp .video-play-button span { border-left:10px solid #fff;}

.testi-wrapp .video-play-button { width:42px; height:42px; border:2px solid #002a5d;} 
.testi-wrapp .video-play-button span { border-left:14px solid #002a5d; border-top:10px solid transparent; border-bottom:10px solid transparent; margin:9px 15px;}

 @-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;
}
}

/* circle-hover1 */
.circle-hover1 {
	width: 100%;
	float: left;
	background: none;
	border: 1px solid rgba(28,27,77,0.50);
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	margin: 0 0 0;
	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, .offers-col2:hover .circle-hover1 {
	background: linear-gradient(to top, #1c1b4d, #1c1b4d);
	background: -webkit-linear-gradient(to top, #1c1b4d, #1c1b4d);
}
.circle-hover1:hover .circle-img, .offers-col2:hover .circle-hover1 .circle-img {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
/* Square-effect */
.square-effect1 {
  background: #000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #000000 25%, #c58a0b 50%, #ce9927 75%, #a1a4a7 100%);
  background: -webkit-linear-gradient(-45deg, #000000 0%, #000000 25%, #c58a0b 50%, #ce9927 75%, #a1a4a7 100%);
  background: linear-gradient(135deg, #000000 0%, #000000 25%, #c58a0b 50%, #ce9927 75%, #a1a4a7 100%);
  background-size: 400% 400%;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: .5s all;
}
.square-effect1 img {
	transition:transform 0.8s ease-in-out 0s;
}
.square-effect1:hover img {
	transition:all 1.5s ease 0s;
}
.square-effect1 .square-img {
  width: 100%; 
  float: left;
  position: relative;
  mix-blend-mode: screen;
}
.square-effect1:hover {
  background-position: 100% 100%;
}

/*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) {
.square-effect1 .square-img { background:#e6eaef;}
}

@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) {

}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
.square-effect1 {
	background: #c58a0b;
}
.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;
}
}