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

/*circle-effect-css*/
.circle-effect1 {
	display: block;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.circle-effect1 img {
	width: 100%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	display: block;
}
.circle-effect1 .circle-row1 {
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow:hidden;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
	position: absolute;
	right: 0;
	bottom: -40px;
	z-index: 10;
}
.circle-effect1:hover img { 
	opacity: 0;
}
.circle-effect1:hover .circle-row1 {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
.circle-effect1:hover .circle-row1 img { 
	opacity: 1;
}

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	float: left;
	border: 2px solid #494949;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 0 15px 0 0;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 30px;
	height: 30px;
	background: rgba(73,73,73,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: 20px;
	height: 20px;
	background: rgba(73,73,73,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: "";
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	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: 7px solid #494949;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 6px 8px;
}

/*.banner-wrapp .banner-col3 .video-play-button:after, .banner-wrapp .banner-col3 .video-play-button:before { display:none;}
.banner-wrapp .banner-col4 .video-play-button:after, .banner-wrapp .banner-col4 .video-play-button:before { display:none;}*/

.testi-wrapp .video-play-button { width:40px; height:40px;}
.testi-wrapp .video-play-button:after { width:58px; height:58px;}
.testi-wrapp .video-play-button span { border-left: 12px solid #494949; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin: 8px 14px;}

 @-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;
}
}

/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	float: left;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	float: left;
	margin: 0 0 26px;
}
.checkbox1 a, .checkbox2 a {
	font-weight: 700;
	color: #373739;
}
.checkbox1 a:hover, .checkbox2 a:hover {
	color: #9b9ea6;
}
.checkbox1 span, .checkbox2 span {
	font-size: 16px;
	font-weight: 500;
	color: #373739;
	letter-spacing: 0;
	line-height: 27px;
	display: inherit;
	position: relative;
	top: -3px;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: initial;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
	background: none;
	border: 1px solid #9d9d9d;
	border-radius: 50%;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 9px;
    height: 9px;
    background: #494949;
	border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
[type="checkbox"]:checked + label:before {
    background: #ffffff;
}

.sidbar-wrapp .checkbox1 { margin:0 0 20px;}
.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span { font-size:15px;}

/*parallax-effect-css*/
.background { 
	background-repeat: no-repeat; 
	background-position: 50% 50%;
}
.fullscreen { 
	height: 100%; 
	overflow: hidden;
}

/*masonry-effect-css*/
.masonry-effect1 {
	cursor: pointer;
	overflow: hidden;
	position: relative;
}
.masonry-effect1 .masonry-row1 img {
	vertical-align: bottom;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.masonry-effect1:hover .masonry-row1 img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.masonry-effect1 .masonry-row1:before {
	display: block;
	background-color: rgba(0, 0, 0, 0.60);
	content: "";
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.masonry-effect1:hover .masonry-row1:before {
	opacity: 1;
	visibility: visible;
}
.masonry-effect1 .masonry-symbol1 {
	width: 54px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 4.4%;
	bottom: 6%;
	z-index: 2;
}
.masonry-effect1 .masonry-symbol1 img {
	width: 100%;
	display: block;
	margin: 0 0 0;
}
.masonry-effect1:hover .masonry-symbol1 {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.treatments-wrapp .masonry-effect1 p, .treatments-wrapp .masonry-effect1 h2 { 
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.treatments-wrapp .masonry-effect1:hover p, .treatments-wrapp .masonry-effect1:hover h2 { 
	color:#ffffff;
}
.treatments-col1 .masonry-symbol1 {
	left: 3.1%;
}
.treatments-col2 .masonry-symbol1 {
	left: 6.1%;
	bottom: 2.6%;
}
.treatments-col3 .masonry-symbol1 {
	left: 6.2%;
	bottom: 4.6%;
}
.treatments-col4 .masonry-symbol1 {
	left: 6.2%;
	bottom: 4.6%;
}

/* hover-effect-css */
.hovereffect {
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  background: #9b9ea6;
}
.hovereffect .overlay1 {
  position: absolute;
  overflow: hidden;
  width: 80%;
  left: 10%;
  bottom: 1%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}
.hovereffect:hover .overlay1 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.hovereffect:hover img {
	mix-blend-mode: multiply;
}
.hovereffect h3 {
  text-align: center;
  position: relative;
  font-size: 20px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}
.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h3 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
/*play-hover*/
.video-play-button {
	width: 22px;
	height: 22px;
	margin: 0 4px 0 0;
}
.video-play-button span {
	margin: 5px 7px;
}
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 12px;
	line-height: 23px;
	top: -5px;
}
[type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
	width: 17px;
	height: 17px;
}
[type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
	width: 7px;
	height: 7px;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
	padding-left: 28px;
}
/*masonry-effect-css*/
.masonry-effect1 .masonry-symbol1 {
	width: 34px;
}
.treatments-col1 .masonry-symbol1 {
	left: 6.1%;
	bottom: 2.6%;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
/*play-hover*/
.video-play-button {
	width: 22px;
	height: 22px;
	margin: 0 4px 0 0;
}
.video-play-button span {
	margin: 5px 7px;
}
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 12px;
	line-height: 23px;
	top: -5px;
}
[type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
	width: 17px;
	height: 17px;
}
[type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
	width: 7px;
	height: 7px;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
	padding-left: 28px;
}
/*masonry-effect-css*/
.masonry-effect1 .masonry-symbol1 {
	width: 34px;
}
.treatments-col1 .masonry-symbol1 {
	left: 6.1%;
	bottom: 2.6%;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
/*play-hover*/
.video-play-button {
	width: 22px;
	height: 22px;
	margin: 0 4px 0 0;
}
.video-play-button span {
	margin: 5px 7px;
}
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 12px;
	line-height: 23px;
	top: -5px;
}
[type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
	width: 17px;
	height: 17px;
}
[type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
	width: 7px;
	height: 7px;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
	padding-left: 28px;
}
/*masonry-effect-css*/
.masonry-effect1 .masonry-symbol1 {
	width: 34px;
}
.treatments-col1 .masonry-symbol1 {
	left: 6.1%;
	bottom: 2.6%;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
/*play-hover*/
.video-play-button {
	width: 22px;
	height: 22px;
	margin: 0 4px 0 0;
}
.video-play-button span {
	margin: 5px 7px;
}
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 13px;
	line-height: 24px;
}
/*masonry-effect-css*/
.masonry-effect1 .masonry-symbol1 {
	width: 34px;
}

.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span { font-size:12px; line-height:20px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
/*play-hover*/
.video-play-button {
	width: 22px;
	height: 22px;
	margin: 0 4px 0 0;
}
.video-play-button span {
	margin: 5px 7px;
}
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 22px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 14px;
	line-height: 25px;
}
/*masonry-effect-css*/
.masonry-effect1 .masonry-symbol1 {
	width: 54px;
}
}

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

}