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

/*circle-effects-css*/
.circle-effects1 {
	display: block;
	overflow: hidden;
	position: relative;
}
.circle-effects1 img {
	width: 100%;
	-webkit-transition: all 0.25s ease-out 0s;
	transition: all 0.25s ease-out 0s;
	display: block;
}
.circle-effects1 .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: 0;
	z-index: 10;
}
.circle-effects1:hover img, .invisalign-col4:hover .circle-effects1 img { 
	opacity: 0;
}
.circle-effects1:hover .circle-row1, .invisalign-col4:hover .circle-effects1 .circle-row1 {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
.circle-effects1:hover .circle-row1 img, .invisalign-col4:hover .circle-effects1 .circle-row1 img  { 
	opacity: 1;
}

/*play-hover*/
.video-play-button {
	width: 26px;
	height: 26px;
	float: left;
	border: 1px solid #98dedd;
	background:#98dedd;
	border-radius: 50%;
	display: block;
	transition: all 0.25s ease-out 0s;
	margin: 0 8.3px 0 0;
	position: relative;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 50px;
	height: 50px;
	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%);
	width: 36px;
	height: 36px;
	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%;
}
.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 9px solid #646566;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	transition: all 0.25s ease-out 0s;
	margin: 6px 9px;
}
 @-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;
}
}
.video-link:hover .video-play-button {
    border-color: #98dedd;
}
.video-link:hover .video-play-button span {
    border-left-color: #000000;
}


/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	float: left;
	margin: 0 0 15px;
}
.checkbox2 {
	width: 100%;
	float: left;
	margin: 0 0 32px;
}
.checkbox1 a, .checkbox2 a {
	color: #ffffff;
}
.checkbox1 a:hover, .checkbox2 a:hover {
	color: #98dedd;
}
.checkbox1 span, .checkbox2 span {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	line-height: 25px;
	display: inherit;
	position: relative;
	top: 0;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    line-height: 20px;
    display: inline;
    color: #666;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
	background: #98dedd;
	border: 1px solid #98dedd;
	border-radius: 50%;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #98dedd;
	border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    -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;
	border: 1px solid #98dedd;
}

/*contact-wrapp*/
.contact-wrapp .checkbox1 a, .contact-wrapp .checkbox2 a {
	color: #010101;
}
.contact-wrapp .checkbox1 a:hover, .contact-wrapp .checkbox2 a:hover {
	color: #fff;
}
.contact-wrapp .checkbox1 span, .contact-wrapp .checkbox2 span {
	font-size: 16px;
	font-weight: 400;
	color: #010101;
	line-height: 25px;
	display: inherit;
	position: relative;
	top: 0;
}
.contact-wrapp [type="checkbox"]:checked + label:before,
.contact-wrapp [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
	background: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 50%;
}
.contact-wrapp [type="checkbox"]:checked + label:after,
.contact-wrapp [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #98dedd;
	border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.effects {
  position: relative;
  width: 100%;
  color: #fff;
  background-color:#000;
}

.effects *,
.effects:before,
.effects:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.effects img {
  max-width: 101%;
  backface-visibility: hidden;
  vertical-align: top;
}

.effects:before,
.effects:after {
  position: absolute;
  content: '';
  top: 20px;
  right: 20px;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
}

.effects:before {
  width: 0;
  height: 1px;
}

.effects:after {
  height: 0;
  width: 1px;
}

.effects figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
}

.effects:hover img,
.effects.hover img {
  filter: alpha(opacity=20);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.effects:hover:before,
.effects.hover:before,
.effects:hover:after,
.effects.hover:after {
  opacity: 1;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.effects:hover:before,
.effects.hover:before {
  width: 40px;
}

.effects:hover:after,
.effects.hover:after {
  height: 40px;
}

/*square-effect-css*/
.square-effect1 {
	overflow: hidden;
	cursor: pointer;
	display: block;
	position: relative;
}
.square-effect1 img {
	width: 100%;
	display: block;
	-webkit-transition-duration: 500ms;
	-o-transition-duration: 500ms;
	transition-duration: 500ms;
	position: relative;
}

.square-effect1:hover .therapy-btn1 { color:#98dedd; background:#ffffff; border-color:#98dedd;}

.square-effect1:hover img {
	transition: all 0.4s ease-in-out;
	filter: grayscale(75%);
}
.square-effect1 .square-row1 {
	width: 100%;
	height: 100%;
	background:#98dedd no-repeat right bottom / 140%;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	opacity: 0;
	margin: 0 auto 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.square-effect1:hover .square-row1 {
	opacity: 1;
	filter: alpha(opacity=100);
}

/*testi-wrapp play-hover*/

.testi-wrapp .video-play-button {
	position: relative;
	display: block;
	width: 55px;
	height: 55px;
	float: left;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: none;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 0 8px 0 0;
}
.testi-wrapp .video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 38px;
	height: 38px;
	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;
}
.testi-wrapp .video-play-button:before {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: rgba(255,255,255);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.testi-wrapp .video-play-button:after, .testi-wrapp .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;
}
.testi-wrapp .video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 17px solid #ffffff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 13px 20px;
}

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

/*Smartphone css*/
@media screen and (max-width: 480px) {
.checkbox1 span, .checkbox2 span { color:#000000;}
.checkbox1 a, .checkbox2 a { color:#000000;}
.checkbox1 a:hover, .checkbox2 a:hover { color:#fff;}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
	background: #000000;
	border: 1px solid #000000;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    background: #000000;
}
[type="checkbox"]:checked + label:before {
	background: #ffffff;
	border: 1px solid #000000;
}
	
.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span { color:#ffffff;}
.sidbar-wrapp .checkbox1 a, .sidbar-wrapp .checkbox2 a { color:#ffffff;}
.sidbar-wrapp .checkbox1 a:hover, .sidbar-wrapp .checkbox2 a:hover { color:#000000;}
.sidbar-wrapp [type="checkbox"]:checked + label:before,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:before {
	background: #ffffff;
	border: 1px solid #ffffff;
}
.sidbar-wrapp [type="checkbox"]:checked + label:after,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:after {
    background: #ffffff;
}
.sidbar-wrapp [type="checkbox"]:checked + label:before {
	background: #000;
	border: 1px solid #ffffff;
}

.testi-wrapp .video-play-button:after, 
.testi-wrapp .video-play-button:before{ 
	display: none;
}
	
	
}

@media screen and (min-width:481px) and (max-width:600px) {
.checkbox1 span, .checkbox2 span { color:#000000;}
.checkbox1 a, .checkbox2 a { color:#000000;}
.checkbox1 a:hover, .checkbox2 a:hover { color:#fff;}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
	background: #000000;
	border: 1px solid #000000;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    background: #000000;
}
[type="checkbox"]:checked + label:before {
	background: #ffffff;
	border: 1px solid #000000;
}
	
.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span { color:#ffffff;}
.sidbar-wrapp .checkbox1 a, .sidbar-wrapp .checkbox2 a { color:#ffffff;}
.sidbar-wrapp .checkbox1 a:hover, .sidbar-wrapp .checkbox2 a:hover { color:#000000;}
.sidbar-wrapp [type="checkbox"]:checked + label:before,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:before {
	background: #ffffff;
	border: 1px solid #ffffff;
}
.sidbar-wrapp [type="checkbox"]:checked + label:after,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:after {
    background: #ffffff;
}
.sidbar-wrapp [type="checkbox"]:checked + label:before {
	background: #000;
	border: 1px solid #ffffff;
}
	
.testi-wrapp .video-play-button:after, 
.testi-wrapp .video-play-button:before{ 
	display: none;
}
		
}

@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) {

}
