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

/*scrollbar-effects-css*/
/* Firefox */
* {
	scrollbar-width: auto;
	scrollbar-color: #dbaf6b #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: rgba(217,217,217,0.2);
    border-radius:25px;
}
*::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius:25px;
    border: 0px solid #d9d9d9;
    height: 11px !important;
}

/*video-play-effects-css*/
.video-play-button {
	width: 71px;
	height: 71px;
	float: left;
	border-radius: 50%;
	position: relative;
	z-index: 9;
}
.video-play-button:after {
	width: 89px;
	height: 89px;
	background: rgba(255,255,255,0.60);
	border-radius: 50%;
	display: block;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:before {
	width: 71px;
	height: 71px;
	background: rgba(255,255,255,0.60);
	border-radius: 50%;
	display: block;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-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;
}
 @-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-effects-css*/
.circle-effects1 {
	display: block;
	overflow: hidden;
	transition: all 0.25s ease-out 0s;
	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: -100%;
	left: 0;
	z-index: 10;
}
.circle-effects1:hover img { 
	opacity: 0;
}
.circle-effects1:hover .circle-row1 {
	opacity: 1;
	visibility: visible;
	bottom: 0;
}
.circle-effects1:hover .circle-row1 img { 
	opacity: 1;
}

/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	float: left;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	float: left;
	margin: 0 0 18px;
}
.checkbox1 a, .checkbox2 a {
	color: #000000;
	font-weight: 700;
}
.checkbox1 a:hover, .checkbox2 a:hover {
	color: #ff5e04;
}
.checkbox1 span, .checkbox2 span {
	font-size: 11px;
	font-weight: 400;
	color: #000000;
	letter-spacing: normal;
	line-height: 2.27;
	display: inherit;
	position: relative;
	top: -5px;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    display: initial;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
	background: none;
	border: 1px solid #000000;
	border-radius: 50%;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 5px;
    height: 5px;
    background: #000000;
	border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -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 {
	border: 1px solid #000000;
}

/*square-effect-css*/
.square-effect {
	overflow: hidden;
	cursor: pointer;
	display: block;
	position: relative;
}
.square-effect img {
	width: 100%;
	display: block;
	transition: all 0.25s ease-out 0s;
	-o-transition: all 0.25s ease-out 0s;
	-ms-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-webkit-transition: all 0.25s ease-out 0s;
}
.square-effect:hover img {
	transform: scale(1.08);
	transition: all 0.25s ease-out 0s;
	-o-transition: all 0.25s ease-out 0s;
	-ms-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-webkit-transition: all 0.25s ease-out 0s;
	filter: grayscale(100%);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
/*video-play-effects-css*/
.video-play-button {
	width: 41px;
	height: 41px;
}
.video-play-button:after {
	width: 59px;
	height: 59px;
}
.video-play-button:before {
	width: 41px;
	height: 41px;
}

/*circle-effects-css*/
a .circle-effects, .contact-btn1 .circle-effects { 
	width: 37px;
	margin: 0 0 0;
}

/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
}
.checkbox2 {
	width: 100%;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label { display:inline;}
}

@media screen and (min-width:481px) and (max-width:600px) {
/*video-play-effects-css*/
.video-play-button {
	width: 41px;
	height: 41px;
}
.video-play-button:after {
	width: 59px;
	height: 59px;
}
.video-play-button:before {
	width: 41px;
	height: 41px;
}

/*circle-effects-css*/
a .circle-effects, .contact-btn1 .circle-effects { 
	width: 37px;
	margin: 0 0 0;
}

/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
}
.checkbox2 {
	width: 100%;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label { display:inline;}
}

@media screen and (min-width:601px) and (max-width:767px) {
/*video-play-effects-css*/
.video-play-button {
	width: 41px;
	height: 41px;
}
.video-play-button:after {
	width: 59px;
	height: 59px;
}
.video-play-button:before {
	width: 41px;
	height: 41px;
}

/*circle-effects-css*/
a .circle-effects, .contact-btn1 .circle-effects { 
	width: 37px;
	margin: 0 0 0;
}

/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
}
.checkbox2 {
	width: 100%;
}
[type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label { display:inline;}
}

@media screen and (min-width:768px) and (max-width:900px) {
/*video-play-effects-css*/
.video-play-button {
	width: 61px;
	height: 61px;
}
.video-play-button:after {
	width: 79px;
	height: 79px;
}
.video-play-button:before {
	width: 61px;
	height: 61px;
}
.treatments-video-btn-box .video-play-button {
	width: 23px;
	height: 23px;
}
.treatments-video-btn-box .video-play-button:after {
	width: 37px;
	height: 37px;
}
.treatments-video-btn-box .video-play-button:before {
	width: 23px;
	height: 23px;
}

/*circle-effects-css*/
a .circle-effects, .contact-btn1 .circle-effects {
	width: 37px;
}
.instagram-wrapp h2 .circle-effects { 
	width: 27px;
	margin: 0 10px 0 0;
}

/*checkbox-effect-css*/
.checkbox1 {
	margin: 0 0 4px;
}
.checkbox2 {
	margin: 0 0 12px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 10px;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
/*video-play-effects-css*/
.video-play-button {
	width: 66px;
	height: 66px;
}
.video-play-button:after {
	width: 84px;
	height: 84px;
}
.video-play-button:before {
	width: 66px;
	height: 66px;
}
.treatments-video-btn-box .video-play-button {
	width: 27px;
	height: 27px;
}
.treatments-video-btn-box .video-play-button:after {
	width: 41px;
	height: 41px;
}
.treatments-video-btn-box .video-play-button:before {
	width: 27px;
	height: 27px;
}

/*circle-effects-css*/
a .circle-effects, .contact-btn1 .circle-effects {
	width: 37px;
}
.instagram-wrapp h2 .circle-effects { 
	width: 33px;
	margin: 0 12px 0 0;
}

/*checkbox-effect-css*/
.checkbox1 {
	margin: 0 0 6px;
}
.checkbox2 {
	margin: 0 0 15px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 10px;
}
}

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

}

@media screen and (min-width:1241px) and (max-width:1340px) {

}

@media screen and (min-width:1341px) and (max-width:1440px) {

}

@media screen and (-webkit-min-device-pixel-ratio:0) {

}