*{
	box-sizing: border-box;
}


h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
h6::-moz-selection,
p::-moz-selection,
strong::-moz-selection,
em::-moz-selection,
a::-mos-selection,
button::-mos-selection,
img::-moz-selection,
div::-moz-selection{
	background: #93302E;
	color: #fff;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection,
strong::selection,
em::selection,
a::selection,
button::selection,
img::selection,
div::selection{
	background: #93302E;
	color: #fff;
}

body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-track {
  background: rgba(194, 194, 194, 0.5);
}
body::-webkit-scrollbar-thumb {
  background: #552524;
}

/*body{*/
/*    opacity: 0;*/
/*    transition: opacity 1s ease-out;*/
/*}*/

/*body.show{*/
/*    opacity: 1;*/
/*}*/

.contact_form_wrapper{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 9999999;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: rgba(0, 0, 0, 0.5);

	opacity: 0;
	visibility: hidden;
	padding-top: 100px;

	transition: all .4s ease-out;
}

.contact_heading{
	font-size: 220.689655%;
	line-height: 1.35;
	color: #1A1A1A;

	text-align: center;

	margin-bottom: 42px;

	font-family: Prata;
}

.contact_form_wrapper.open{
	opacity: 1;
	visibility: visible;
	padding-top: 0;
}

.contact_form{
	max-width: 400px;
	width: 100%;
	padding: 45px;
	padding-right: 24px;
	padding-left: 24px;

	border: 2px solid #93302E;
	background: #fcfcfc;

	position: relative;

	opacity: 0;
	visibility: hidden;
}

.contact_form_wrapper.open .contact_form{
	opacity: 1;
	visibility: visible;
}

.contact_form .acf-field  input[type="text"],
.contact_form .acf-field  textarea{
	border-bottom: 1px solid #93302E;
	border-radius: 0;
	resize: none;
	width: 100%;
	padding: 14px 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.4;
	color: #1A1A1A;
}

.acf-fields > .acf-field{
	padding: 0;
	border-top: none!important;
}
.acf-form-submit{
	text-align: center;
}

.acf-label label{
	font-family: "Prata";
	font-size: 100%;
	font-weight: normal !important;
	position: static;
}

.acf-required{
	display: none;
}

.acf-form-submit{
	display: flex;
	justify-content: center;
}

.acf-form-submit input{
	display: inline-block;
	border: 1px solid #632826;
	text-align: center;
	padding: 18px 45px 16px;
	text-transform: uppercase;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	line-height: 1.2;
	letter-spacing: 0.16em;
	background-color: #632826;
	color: #fff;
	transition: background-color .4s ease-out, color .4s ease-out, transform .4s ease-out, opacity .4s ease-out !important;
	cursor: pointer;
	border-radius: 25px;
	opacity: 1;
}

.acf-form-submit input:hover{
	background-color: #ffffff;
	color: #632826;
}
.acf-field .acf-label{
  color: #555050;
  opacity: 0.6;
  font-size: 18px;
  line-height: 160%;
}

.contact_form_wrapper .close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  opacity: 0.3;
  z-index: 50;
  transition: all .4s ease-out;
}
.contact_form_wrapper .close:hover {
  opacity: 1;
}
.contact_form_wrapper .close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 100%;
  display: block;
  width: 2px;
  background-color: #292929;
}
.contact_form_wrapper .close:before {
  transform: rotate(45deg);
}
.contact_form_wrapper .close:after {
  transform: rotate(-45deg);
}

.right-popup .close-btn{
	/* box-shadow: none !important; */
	transition: all .4s ease-out;
}

.right-popup .close-btn:hover{
	background-color: #fff;
}

.right-popup.show .close-btn{
	box-shadow: 0 4px 36px rgba(0, 0, 0, 0.25)
}

.home-banner-slider svg,
.home-banner-slider svg image{
	width: 100%;
	height: 100%;
}

.slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.slider__slides {
	z-index: 1;
	position: relative;
	height: 100%;
}
.slider__control {
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 5%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	cursor: pointer;
}
.slider__control--right {
	left: 95%;
}
.slider__control:hover {
	background-color: #2da6ff;
}
.slider__control-line {
	position: absolute;
	left: 23px;
	top: 50%;
	width: 3px;
	height: 14px;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.slider__control-line:nth-child(2) {
	-webkit-transform: translateY(1px) rotate(-135deg);
	transform: translateY(1px) rotate(-135deg);
}
.slider__control--right .slider__control-line {
	left: 37px;
	-webkit-transform-origin: 1px 0;
	transform-origin: 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.slider__control--right .slider__control-line:nth-child(2) {
	-webkit-transform: translateY(1px) rotate(135deg);
	transform: translateY(1px) rotate(135deg);
}
.slider__control-line:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #e2e2e2;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
.slider__control:hover .slider__control-line:after {
	background-color: #fff;
}
.slider__control.a--rotation .slider__control-line:after {
	-webkit-animation: arrowLineRotation 0.49s;
	animation: arrowLineRotation 0.49s;
}
.slider__control.a--rotation .slider__control-line:nth-child(1):after {
	-webkit-animation: arrowLineRotationRev 0.49s;
	animation: arrowLineRotationRev 0.49s;
}

/*@-webkit-keyframes arrowLineRotation {
	to {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@keyframes arrowLineRotation {
	to {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}
@-webkit-keyframes arrowLineRotationRev {
	to {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}
@keyframes arrowLineRotationRev {
	to {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}*/
.slide {
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150vmax;
	height: 150vmax;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	-webkit-transition: -webkit-clip-path 0s 1.75s ease-out;
	transition: -webkit-clip-path 0s 1.75s ease-out;
	transition: clip-path 0s 1.75s ease-out;
	transition: clip-path 0s 1.75s ease-out, -webkit-clip-path 0s 1.75s ease-out;
	-webkit-clip-path: circle(0 at 120vw 50%);
	clip-path: circle(0 at 120vw 50%);
}
/*.slide.s--prev {*/
/*	-webkit-clip-path: circle(0 at 30vw 50%);*/
/*	clip-path: circle(0 at 30vw 50%);*/
/*}*/
.slide.s--active {
	z-index: 1;
	-webkit-transition: -webkit-clip-path 1.75s ease-out;
	transition: -webkit-clip-path 1.75s ease-out;
	transition: clip-path 1.75s ease-out;
	transition: clip-path 1.75s ease-out, -webkit-clip-path 1.75s ease-out;
	-webkit-clip-path: circle(120vmax at 120vw 50%);
	clip-path: circle(120vmax at 120vw 50%);
}

.slide .slide-body-content,
.slide .slide-subtitle,
.slide .slide-title{
	transform: translateY(-50px);
	opacity: 0;

	transition: all 1s ease-out;
}

.slide.s--active .slide-subtitle{
	transition-delay: 1s;
}

.slide.s--active .slide-title{
	transition-delay: 1.25s;
}

.slide.s--active .slide-body-content{
	transition-delay: 1.5s;
}

.loaded .slide.s--active .slide-body-content,
.loaded .slide.s--active .slide-subtitle,
.loaded .slide.s--active .slide-title{
	transform: translateY(0);
	opacity: 1;
}

/*.slide.s--active.s--active-prev {*/
/*	-webkit-clip-path: circle(120vmax at 30vw 50%);*/
/*	clip-path: circle(120vmax at 30vw 50%);*/
/*}*/
.slide__inner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100vw;
	height: 100vh;
	margin-left: -50vw;
	margin-top: -50vh;
	background-size: cover;
	background-position: center center;
}
.slide__inner:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

}
.slide__content {
	position: absolute;
	left: 5%;
	top: 50%;
	margin-left: -30px;
	margin-top: 48px;
	max-width: 480px;
	color: #fff;
}
.slide__heading {
	margin-bottom: 20px;
	font-size: 60px;
}
.slide__text {
	font-size: 25px;
}
.slide__text a {
	color: inherit;
}

.banner-slider-block .slider__add__wrapper{
	position: absolute;
	bottom: 50px;
	display: flex;
	width: 100%;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	justify-content: space-between;
	align-items: flex-end;
}

.banner-slider-block .slider__dots{
	list-style: none;
	display: flex;
}

.banner-slider-block .slider__dots li{
	border: 1px solid transparent;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s ease-out;
	cursor: pointer;
}

.banner-slider-block .slider__dots li.active{
	border-color: #fff;
}

.banner-slider-block .slider__dots li.disable{
	pointer-event: none
}

.banner-slider-block .slider__dots li::before{
	content: '';
	width: 10px;
	height: 10px;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	background: var(--gray);
	opacity: 0.75;
	transition: all .4s ease-out;
	cursor: pointer;
}

.banner-slider-block .slider__dots li.active::before{
	opacity: 1;
}

.slider__control{
	visibility: hidden;
}

.slider .min_slider{
	width: 305px;
	height: 169px;
	position: relative;
	overflow: hidden;
}

.slider .min_slider .min_slider__slides{
	width: 100%;
	height: 100%;
	z-index: 1;
	position: relative;
}

.slider .min_slider .min_slide{
	width: 150%;
	height: 150%;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	-webkit-transition: -webkit-clip-path 0s 1.75s ease-out;
	transition: -webkit-clip-path 0s 1.75s ease-out;
	transition: clip-path 0s 1.75s ease-out;
	transition: clip-path 0s 1.75s ease-out, -webkit-clip-path 0s 1.75s ease-out;
	-webkit-clip-path: circle(0 at 325px 50%);
	clip-path: circle(0 at 325px 50%);;
}

.social-links-container{
	position: static !important;
	transform: none !important;
	margin-bottom: 50px;
}

.min_slide__inner{
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: cover;
	background-position: center center;
}

.slider .min_slider .min_slide.s--active {
	z-index: 1;
	-webkit-transition: -webkit-clip-path 1.75s ease-out;
	transition: -webkit-clip-path 1.75s ease-out;
	transition: clip-path 1.75s ease-out;
	transition: clip-path 1.75s ease-out, -webkit-clip-path 1.75s ease-out;
	-webkit-clip-path: circle(325px at 325px 50%);
	clip-path: circle(325px at 325px 50%);
}

.min_slider__control{
	display: none;
}

.stat-bar{
	overflow: visible !important;
	overflow-x: hidden;
}
.banner-slider-block .slider__add__wrapper
.stat-bar-rating{
	background-color: #552524 !important;
	height: 119%;
}

.left-service-list{
	padding-right: 16px;
}

.about_intro {
	/*overflow: hidden;*/
}

/*.sly-slider-wrapper{*/
/*    display: flex;*/
/*    flex-shrink: 0;*/
/*}*/

.team-slide-content{
	max-width: 433px;
	width: 100%;
	float: left;
}

@media screen and (max-width: 1600px){
	/*body{*/
		/*font-size: 12px;*/
	/*}*/
}

@media screen and (max-width: 1400px){
	.banner-slider-block .slider__add__wrapper{
		bottom: 8px;
	}
}

@media screen and (max-width: 1315px){

	.slide-content{
		width: 60%;
	}

	.slider__add__wrapper{
		padding: 0 40px;
	}

	.slider__add__wrapper .slider__dots{
		padding: 0;
	}

	.right-popup{
		width: 95%;
		right: calc(-95% - 56px);
	}
}

@media screen and (max-width: 768px){
	.stat-levels{
		display: none;
	}

	.slide-content{
		width: 100%;
	}

	.slide-body-content{
		padding-left: 0;
	}

	h1, .h1{
		font-size: 300%;
	}

	.right-popup{
		width: 95%
	}

	/*.team-slide-content{*/
	/*    width: 50vw;*/
	/*}*/

	.recording-container{
		padding-right: 24px;
		padding-left: 24px;
	}
}

.wpcf7-response-output{
	/* display: none !important; */
}

@media screen and (max-width: 576px){
	body,
	p{
		font-size: 16px !important;
		line-height: 1.5 !important;

	}


	.h1, .h2, .h3, .h4, .h5{
		line-height: 1.2;
	}

	h1, .h1{
		line-height: 1.2;
		font-size: 200%;
	}

	h2, .h2{
		font-size: 185.71428%;
	}

	h3, .h3{
		font-size: 150%;
	}

	h4, .h4{
		font-size: 135%;
	}

	h5, .h5 {
		font-size: 125%;
	}

	.text-18, h6, .h6{
		font-size: 16px;
	}

	/*.container-small .padd-top-bot-70{*/
	/*    padding-left: 0;*/
	/*    padding-right: 0;*/
	/*    padding-bottom: 24px;*/
	/*}*/

	.loyalty-description, .promotions-description{
		width: 100%;
		bottom: 0;
		left: 0;
		padding: 8px 16px 32px;
	}

	.pre-footer-block .bottom-section a{
		line-height: 1.5;
	}

	.services h2{
		margin-bottom: 24px;
	}

	.left-leaves, .right-leaves{
		pointer-events: none
	}

	.special-bottom-block,
	.pre-footer-block .width27{
		padding-bottom: 24px;
	}

	.special-bottom-block h2{
		font-size: 120%;
	}

	.special-bottom-block .btn{
		margin: 0;
	}

	.min_slider{
		display: none;
	}

	.banner-slider-block .slider__add__wrapper{
		bottom: 0;
		justify-content: center;
	}

	.gifts{
		padding: 24px 0;
		margin-bottom: 24px;
	}

	.popup, .popup_ask_us, .popup_certificate{
		border-radius: 0;
	}

	/*.team-slide-content{*/
	/*    width: 100vw;*/
	/*}*/
}

@media screen and (max-height: 768px){
	.bottom-menu-copyright-contacts{
		display: none;
	}
}

.before-after {
	font-size: 16px;
	padding: 0 100px;
	padding-top: 30px;
	line-height: 1.6;
	margin-bottom: 35px;
}

.before-after-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.before-after-row:nth-child(even) {
	margin-bottom: 30px;
}

.before-after-row:last-child {
	margin-bottom: 0;
}

.before-after-row > div {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 15px;
}

.img-before,
.img-after {
	padding-top: 133%;
	overflow: hidden;
	position: relative;
}

.img-before img,
.img-after img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

@media (max-width: 768px) {

	.before-after {
		padding: 0 24px 30px;
	}
}