/*
Theme Name: specialsalon
Description: Wordpress Theme for Special Salon
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: specialsalon
*/

@font-face {
    font-family: 'Mont-Light';
    src: url('./fonts/Mont-Light.eot');
    src: local('Mont Light'), local('Mont-Light'),
        url('./fonts/Mont-Light.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Mont-Light.woff2') format('woff2'),
        url('./fonts/Mont-Light.woff') format('woff'),
        url('./fonts/Mont-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Mont-Regular';
    src: url('./fonts/Mont-Regular.eot');
    src: local('Mont Regular'), local('Mont-Regular'),
        url('./fonts/Mont-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Mont-Regular.woff2') format('woff2'),
        url('./fonts/Mont-Regular.woff') format('woff'),
        url('./fonts/Mont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mont-SemiBold';
    src: url('./fonts/Mont-SemiBold.eot');
    src: local('Mont SemiBold'), local('Mont-SemiBold'),
        url('./fonts/Mont-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Mont-SemiBold.woff2') format('woff2'),
        url('./fonts/Mont-SemiBold.woff') format('woff'),
        url('./fonts/Mont-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Mont-Bold';
    src: url('./fonts/Mont-Bold.eot');
    src: local('Mont Bold'), local('Mont-Bold'),
        url('./fonts/Mont-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Mont-Bold.woff2') format('woff2'),
        url('./fonts/Mont-Bold.woff') format('woff'),
        url('./fonts/Mont-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mont-Heavy';
    src: url('fonts/Mont-Heavy.eot');
    src: local('Mont Heavy'), local('Mont-Heavy'),
        url('./fonts/Mont-Heavy.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Mont-Heavy.woff2') format('woff2'),
        url('./fonts/Mont-Heavy.woff') format('woff'),
        url('./fonts/Mont-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body{
	font-family: 'Mont-Regular', sans-serif;
	color: #1E1C1D;
	background: #ede7e7;
	overflow-x: hidden;
}


@media screen and (min-width: 576px) and (max-width: 1279px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 96%;
	}
}

@media screen and (min-width: 1280px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 1160px;
	}
}

/* ~~~~~~~ BTNS ~~~~~~~ */

.btn-wrapper{
	position: relative;
}

.btn, .btn:visited{
	display: inline-block;
	border: none;
	text-decoration: none;
	letter-spacing: 0;
	padding: 12px 25px;
	border-radius: 0;
	font-size: 16px;
	outline: none;
	position: relative;
	z-index: 1;
	text-decoration: none;
}

.btn-primary{
	position: relative;
	border-radius: 45px;
	background: #670B34;
	color: #D2B1B4;
	font-size: 20px;
	line-height: 113%;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
	background: #670B34;
	color: #D2B1B4;
	border: none;
}

.btn-secondary{
	background: rgba(245, 245, 245, 0.70);
	box-shadow: none;
	color: #670B34!important;
	border: none;
	padding: 16px 39px;
	border-radius: 45px;
	line-height: 113%;
	font-size: 20px;
	font-family: 'Mont-SemiBold';
	text-decoration: none!important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus{
	background: #670B34;
	color: #fff!important;
	border: none;
}

/* ~~~~~~~ HEADER ~~~~~~~ */

header{
	position: fixed;
	transition: all ease .3s;	
	width: 100%;
	top: 25px;
	z-index: 10001;
}

header.sticky{
	top: 15px;
}

.logo-mobile,
.logo-menu{
	margin-left: 20px;
}

.logo-menu{
	margin-bottom: 16px;
}

.horizontal-menu{
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.20);
	padding: 19px 20px 21px 20px;
	backdrop-filter: blur(40px);
	max-width: fit-content;
	margin: 0 auto;
}
@media(max-width:991px){
	.horizontal-menu{
		max-width: 1280px;
		padding: 19px 0 21px 0;
	}
}
.lang-item:last-of-type{
	position: relative;
}
.lang-item:last-of-type::after{
	content: "/";
	left: -11px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	color: #ffffff;
}
@media(min-width:992px){
	header.sticky .navbar-nav .lang-item:last-of-type::after {
		color: rgba(30, 28, 29, 0.60);
	}
}

.horizontal-menu.active{
	background: none;
	backdrop-filter: none;
}

header.sticky .horizontal-menu{
	margin: 0 auto;
}

.header-phone{
	position: absolute;
    border-radius: 0px 0px 16px 16px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(40px);
    width: 184px;
    height: 40px;
    text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
    bottom: -40px;
	right: calc(((100% - 1180px) / 2) + 60px);
}

.header-phone a:link{
	color: #fff;
	text-decoration: none;
}

header.sticky .header-phone a:link{
	color: rgba(30, 28, 29, 0.60);
}

.social a{
    display: inline-block;
    position: relative;
    width: 26px;
    height: 26px;
    margin-right: 26px;
}

.social a:last-child{
	margin-right: 0;
}

.social a::before{
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 26px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.social .facebook::before {
    background-image: url(imgs/icon-facebook.svg);
}

.social .instagram::before {
    background-image: url(imgs/icon-instagram.svg);
}

.social .telegram::before {
    background-image: url(imgs/icon-telegram.svg);
}

.social .fb-messenger::before {
    background-image: url(imgs/icon-fb-messenger.svg);
}

.social .tiktok::before {
    background-image: url(imgs/icon-tiktok.svg);
}

.social.social-light .facebook::before {
    background-image: url(imgs/icon-facebook_light.svg);
}

.social.social-light .instagram::before {
    background-image: url(imgs/icon-instagram_light.svg);
}

.social.social-light .telegram::before {
    background-image: url(imgs/icon-telegram_light.svg);
}

.social.social-light .fb-messenger::before {
    background-image: url(imgs/icon-fb-messenger_light.svg);
}

.social.social-light .tiktok::before {
    background-image: url(imgs/icon-tiktok_light.svg);
}

@media screen and (min-width: 992px) {
	header{
		z-index: 10;
	}

	header .btn-wrapper{
		text-align: center;
	}
	
	.header-action{
		justify-content: flex-end;
	}

	.horizontal-menu{
		margin: 20px auto 0;
	}

	.logo-mobile,
	.logo-menu{
		display: none;
	}
}

/* ~~~ NAV ~~~ */

.navbar{
	padding: 0;
	position: relative;
	z-index: 2;
}

.navbar-nav .menu-item.logo-item,
.menu-item-home:not(.lang-item){
	display: none;
}

.navbar-nav .menu-item.logo-item a,
.menu-item-home:not(.lang-item) a{
	opacity: 0;
}

.navbar-nav .menu-item a{
	color: #F5F5F5;
	text-decoration: none;
	font-size: 16px;
	display: block;
    padding: 22px 20px 10px;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

@media screen and (max-width: 576px) {
	.navbar-nav .menu-item a{
		color: #1E1C1D;
	}
}

.navbar-nav .menu-item a:hover,
.navbar-nav .menu-item a:focus,
.navbar-nav .menu-item a:active,
.navbar-nav .menu-item a.active,
.navbar-nav .current-menu-item a,
.navbar-nav .current-page-ancestor a,
header.sticky .navbar-nav .menu-item a:hover,
header.sticky .navbar-nav .menu-item a:focus,
header.sticky .navbar-nav .menu-item a:active,
header.sticky .navbar-nav .menu-item a.active,
header.sticky .navbar-nav .menu-item.current-menu-item a,
header.sticky .navbar-nav .menu-item.current-page-ancestor a{
	color: #670B34;
}

#navbarSupportedContent{
	position: fixed;
	top: 25px;
	left: 0;
	width: calc(100% - var(--bs-gutter-x));
	height: auto;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(40px);
	z-index: 10;
	border-radius: 16px;
	padding: 19px 0;
	margin: 0 calc(var(--bs-gutter-x)/ 2);
}

.navbar-toggler{
	padding: 0;
	border: 0;
    border-radius: 0!important;
    text-align: center;
    position: absolute;
	top: -26px;
    right: 20px;
    z-index: 9;
}

.navbar-toggler:focus{
	box-shadow: none;
}

.navbar-toggler-icon{
	background: none!important;
	width: auto;
	height: auto;
}

.navbar-toggler-icon .icon-bar{
	display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto 5px;
    background: #fff; 
    border-radius: 1px;
}

.navbar-toggler-icon .icon-bar:last-child{
	margin-bottom: 0;
}

.navbar-collapse.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

.close{
	width: 32px;
	height: 32px;
	text-align: center;
	position: absolute;
	top: 16px;
    right: 16px;
	z-index: 9999;
}

.close::before{
	content: '';
	position: absolute;
	width: 32px;
	height: 32px;
	top: 0;
    left: 0;
	background: url(imgs/close.svg) 50% 50% no-repeat;
	border: 0;
	outline: none;
	box-shadow: none;
	z-index: 9999;
}

/* ~~~ SUB MENU ~~~ */

.menu-item:hover ul.sub-menu{
	display: block;
}

.menu-item.menu-item-has-children::after{
	top: 50%;
	width: 10px;
	height: 7px;
	background-size: inherit;
	margin-top: -2px;
	right: 5px;
}

.menu-item ul.sub-menu{
	display: none;
	list-style: none;
	position: absolute;
	left: 0;
	margin: 0;
	padding: 8px 0 12px;
	background: linear-gradient(#0B1427, #0B1427) padding-box, linear-gradient(to bottom, #eff3f478, #eff3f42b) border-box;
	border: 1px solid transparent;
	border-radius: 12px;
	width: 160px;
}

.menu-item:hover ul.sub-menu li.menu-item{
	padding: 8px 12px;
}

.menu-item ul.sub-menu li.menu-item:hover{
	background: rgba(255, 255, 255, 0.06);
}

.menu-item ul.sub-menu li.menu-item a{
	font-size: 16px;
}

#menu-mainmenu > .menu-item.menu-item-has-children{
	padding-right: 20px;
}

#menu-mainmenu > .menu-item.menu-item-has-children > a{
	position: relative;
	width: max-content;
}

#menu-mainmenu > .menu-item.menu-item-has-children > a::before{
	content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 7px;
    top: 10px;
    right: -20px;
    background-size: inherit;
    background: url(imgs/caret.svg) no-repeat 0 0; 
}

@media screen and (min-width: 992px){
	#navbarSupportedContent{
		width: 100%;
		position: static;
		background: transparent;
		padding: 0;
		backdrop-filter: none;
		margin: 0;
	}

	.navbar-nav .menu-item{
		margin-right: 16px;
	}

	.navbar-nav .menu-item a{
		padding: 0;
		border-top: 0;
	}

	header.sticky .navbar-nav .menu-item a{
	color: rgba(30, 28, 29, 0.60);
}

	.navbar-nav .menu-item:last-child{
		margin-right: 0;
	}

	.navbar-nav .menu-item.logo-item,
	.menu-item-home:not(.lang-item){
		display: block;
		width: 27px;
		height: 26px;
		background: url(imgs/logo-favicon.svg) no-repeat 0 0;
		transition: all .3s ease;
	}

	.navbar-nav .menu-item.logo-item:hover,
	.menu-item-home:not(.lang-item):hover{
		background: url(imgs/logo-favicon-hover.svg) no-repeat 0 0;
	}

	.navbar-expand-lg,
	.navbar-expand-lg .navbar-nav,
	.navbar-expand-lg .navbar-collapse{
		justify-content: center;
		align-items: center;
	}
	
	#navbarSupportedContent .close{
		display: none;
	}
}

/* ~~~~~~~~~~~~~~~~ END OF HEADER ~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~ CONTENT ~~~~~~~~~~~~~~~~~ */

object{
	pointer-events: none;
}

h1, .h1, h2, .h2{
	font-size: 29px;
	font-family: 'Mont-Bold';
	font-size: 24px;
	letter-spacing: 2.64px;
	line-height: 113%;
	text-transform: uppercase;
	text-align: center;
}

h1.entry-title{
	margin-top: 100px;
}

h3, .h3{
	font-size: 21px;
}

h4, .h4{
	font-size: 21px;
}

h5, .h5{
	font-size: 19px;
}

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

a, a:link, a:visited, a:active{
	color: #222;
	text-decoration: underline;
}

a:hover, a:focus{
	text-decoration: none;
}

p{
	margin-bottom: 1.5em;
}

strong{
	font-family: 'Mont-SemiBold';
}

.dynamic-text-wrapper{
	text-align: center;
	background: #670B34;
	padding: 18px 0;
	width: 100%;
	display: flex;
	align-items: center;
	height: 90px;
}
  
#dynamic-text{
	font-family: 'Mont-Bold';
	color: #D2B1B4;
	font-size: 18px;
	letter-spacing: 1.44px;
	line-height: 130%;
	text-transform: uppercase;
	display: inline-block;
	border-right: 4px solid #D2B1B4;
	animation: blink-caret 0.75s step-end infinite;
}

.hrn{
	font-family: sans-serif;
}
  
@keyframes blink-caret {
	from,
	to {
	  border-color: transparent;
	}
	50% {
	  border-color: #D2B1B4;
	}
}

@media screen and (max-width: 576px){
	.mob-order-1{
		order: 1;
	}

	.mob-order-2{
		order: 2;
	}

	.mob-order-3{
		order: 3;
	}
}
	
@media screen and (min-width: 992px){
	h1, .h1, h2, .h2{
		font-size: 36px;
		line-height: 113%; /* 40.68px */
		letter-spacing: 3.96px;
		color: #1E1C1D;
		text-align: center;
		font-family: 'Mont-Bold';
	}

	h2, .h2{
		text-transform: uppercase;
	}
	
	h3, .h3{
		font-size: 24px;
	}

	.dynamic-text-wrapper{
		padding: 31px 0 24px;
		height: 83px;
	}

	#dynamic-text{
		font-size: 28px;
		letter-spacing: 2.24px;
		white-space: nowrap;
		overflow: hidden;
		line-height: 120%;
	}

	.entry-scroll-content{
		max-height: 500px;
		overflow-y: scroll;
		scrollbar-color: #670B34;
		scrollbar-width: 8px;
		padding-right: 36px;
	}
	
	.entry-scroll-content::-webkit-scrollbar{
		width: 1px;
		background-color: #555;
		border-radius: 10px;
		margin-top: 30px;
	}
	
	.entry-scroll-content::-webkit-scrollbar-thumb{
		background-color: #670B34;
		border-radius: 29px;
		width: 8px;
	}
	
	body::-webkit-scrollbar-track{
		background-color: #670B34;  
		width: 1px;
	}

	.hrn{
		font-family: monospace;
	}
}

.section{
	position: relative;
}

.text-bg-purple{
	background: #670B34;
    color: #D2B1B4;
    line-height: 110%;
    padding: 0 0.4em;
    border-radius: 1em;
}

@media screen and (min-width: 992px) {
	
}

/* ~~~ UTP ~~~ */

#utp{
	position: relative;
	margin-bottom: 56px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100vh;
	padding-bottom: 55px;
}

#utp::after{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
}

#utp .utp-content{
	position: relative;
	z-index: 1;
}

#utp .text-bg-purple{
	display: block;
    margin: 24px auto 0;
    width: 160px;
    padding: 5px;
}

#utp h1{
	font-family: 'Mont-Regular', sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 110%;
	text-transform: none;
}

#video-bg{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 24px;
	overflow: hidden;
}

#video-bg video{
	width: auto;
	height: 100vh;
}

#utp .utp-logo{
	display: none;
}

.logos-items{
	border-radius: 24px;
	background: #D2B1B4;
	height: auto;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
}

/*
.logos-items::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 24px;
	width: calc(100% - 48px);
	height: 1px;
	background: #F5F5F5;
}
*/

.logos-items .slick-track{
	display: flex;
}

.to-next-screen{
	display: none;
}

.logos-items .item img{
	transition: all .3s ease;
}

.logos-items .item > img:last-child,
.logos-items .item:hover > img:first-child{
	display: none;
}

.logos-items .item:hover > img:last-child{
	display: block;
}

.logos-items .item{
	margin: 0 20px;
	display: inline-flex!important;
	height: 120px;
	align-items: center;
}

@media screen and (max-width: 576px) {
	.logos-carousel-mobile .slick-slide > div .item{
		display: flex!important;
	}

	.logos-carousel-mobile .slick-slide div .item{
		align-items: center;
		max-width: 120px;
	}
}

@media screen and (min-width: 992px){
	#utp{
		margin: 20px 25px 40px;
		border-radius: 24px;
		height: calc(100vh - 60px);
		justify-content: center;
		padding-bottom: 0;
	}

	#video-bg video{
		width: 100%;
		height: auto;
	}

	#utp::after{
		border-radius: 24px;
		background: rgba(0, 0, 0, .45);
	}

	#utp h1{
		font-size: 60px;
		font-weight: 600;
		line-height: 110%;
		color: #fff;
		letter-spacing: 2px;
	}

	#utp .utp-logo{
		display: block;
		margin-bottom: 100px;
	}

	#utp .text-bg-purple{
		font-size: 51px;
		display: inline-block;
		margin: 0;
		width: 184px;
	}

	.to-next-screen{
		display: block;
		position: absolute;
		width: 148px;
		height: 50px;
		background: url(imgs/wave.svg) 0 0 no-repeat;
		left: 50%;
		margin-left: -74px;
		bottom: 0;
		z-index: 1;
	}
	
	.to-next-screen span{
		content: ' ';
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		width: 70px;
		height: 70px;
		border-radius: 50%;
		background: #D2B1B4;
		bottom: -35px;
		left: 50%;
		margin-left: -35px;
	}

	.logos-items{
		margin-top: 96px;
		height: 120px;
	}

	.logos-items .slick-track{
		align-items: center;
	}

	.logos-items::before{
		content: none;
	}

	.logos-items .item{
		margin: 0 40px;
	}
}

/* ~~~ MARQUEE ~~~ */

.marquee{
    white-space: nowrap;
    animation: marquee-scroll 27s linear infinite;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee:hover{
    animation-play-state: paused;
}

/* ~~~ OFFERS ~~~ */

#offers{
	margin-top: 56px;
}

#offers h2{
	margin-bottom: 20px;
}

.offers-items{
	margin-bottom: 56px;
}

.offers-items .item{
	height: 520px;
	border-radius: 18px;
	padding: 18px;
	margin-right: 8px;
	background-size: cover;
}

.offers-items .item .info-box{
	border-radius: 18px;
	border: 1px solid rgba(226, 222, 222, 0.20);
	background: rgba(103, 11, 52, 0.05);
	backdrop-filter: blur(10px);
	padding: 16px 24px;
	text-align: center;
}

.offers-items .item .info-box h3{
	color: #F5F5F5;
	font-family: 'Mont-Bold';
	font-size: 24px;
	font-weight: 800;
	line-height: 113%;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
}

.offers-items .item .info-box h3::after{
	content: ' ';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -67px;
	width: 135px;
	height: 1px;
	background: #F5F5F5;
}

.offers-items .item .info-box{
	color: #FFF;
	font-size: 12px;
	line-height: 130%;
	font-family: 'Mont-Regular';
}

.offers-items .item .info-box .logo{
	margin-top: 24px;
}

@media screen and (min-width: 992px) {
	#offers{
		margin-top: 96px;
	}

	#offers h2{
		margin-bottom: 50px;
	}

	.offers-carousel .slick-track{
		margin-left: calc((100% - 1160px) / 2);
	}

	.offers-items{
		margin-bottom: 96px;
		margin-left: 16px;
	}

	.offers-items .item{
		margin-left: 0;
		margin-right: 30px;
		width: 380px!important;
		height: 517px;
		border-radius: 24px;
		padding: 24px 30px;
		background-position: 0 80%;
		background-size: cover;
	}

	.offers-items .item .info-box h3{
		font-size: 26px;
		padding-bottom: 24px;
   		margin-bottom: 24px;
	}

	.offers-items .item .info-box{
		font-size: 15px;
		padding: 24px 38px;
	}
}

@media screen and (min-width: 1366px) {
	.offers-items .item{
		width: 400px!important;
		height: 544px;
		margin-right: 30px;
	}
}

@media screen and (min-width: 1600px) {
	.offers-items .item{
		width: 462px!important;
		height: 628px;
		margin-right: 43px;
	}

	.offers-items .item .info-box h3{
		font-size: 32px;
	}

	.offers-items .item .info-box{
		font-size: 16px;
	}
}

/* ~~~ ADVANTS ~~~ */

#advants{
	background: #D2B1B4;
	margin-bottom: 56px;
	padding: 43px 0 42px;
}

#advants h2{
	color: #670B34;
	line-height: 113%;
	letter-spacing: 3.96px;
	margin-bottom: 26px;
}

#advants .item{
	border-radius: 18px;
	background: rgba(245, 245, 245, 0.70);
	padding: 24px;
	text-align: center;
	margin: 0 auto;
	height: inherit!important;
}

@media screen and (max-width: 576px) {
	.page-template-page-service #advants{
		padding-bottom: 22px;
		margin-bottom: 0;
	}

	body.home #advants .item{
		width: 240px!important;
	}

	.page-template-page-service #advants .item{
		margin-bottom: 16px;
		padding: 16px 24px;
	}

	.page-template-page-service #advants .item:last-child{
		margin-bottom: 0;
	}

	.page-template-page-service #advants .item .icon{
		width: 56px;
		height: 56px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #670B34;
		border-radius: 50%;
		float: right;
	}

	.page-template-page-service #advants .item .icon img{
		width: 28px;
		height: 28px;
	}

	.page-template-page-service #advants .item .title{
		background: transparent;
		font-size: 20px;
		color: #670B34;
		text-align: left;
		display: block;
		padding: 16px 0 0 0;
		margin-bottom: 35px;
	}

	.page-template-page-service #advants .item .text{
		text-align: left;
		line-height: 130%;
	}

	#promotion{
		padding-bottom: 0;
	}
}

#advants .item .image{
	width: 180px;
	height: 180px;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 auto 24px;
}

#advants .item .image .icon{
	width: 80px;
	height: 80px;
	background: rgba(245, 245, 245, 0.40);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
}

#advants .item .title{
	padding: 5px 10px;
	background: #670B34;
	font-size: 18px;
	line-height: 100%;
	width: 100%;
	color: #D2B1B4;
	border-radius: 55px;
	display: inline-block;
	font-family: 'Mont-SemiBold';
	margin-bottom: 24px;
}

#advants .item .text{
	color: #1E1C1D;
	line-height: 100%;
	font-size: 14px;
}

.advants-carousel .slick-list{
	max-width: 984px;
	margin: 0 auto;
}

.advants-carousel .slick-track{
	display: flex!important;
}

.service-advants-carousel{
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.service-advants-carousel .item{
	flex-grow: 1;
    flex-basis: 0;
}

.service-advants-carousel .icon{
	margin: 0 auto 33px;
	width: 120px;
	height: 120px;
	backdrop-filter: blur(10px);
	background-color: #C8A098;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 992px) {
	#advants{
		padding: 50px 0 82px;
		margin-bottom: 80px;
	}

	#advants h2{
		margin-bottom: 60px;
	}

	body.home #advants .item{
		margin: 0 20px;
		padding: 24px;
		font-size: 16px;
	}

	#advants .item{
		margin: 0 10px;
		flex-grow: 1;
		flex-basis: 0;
		min-width: 0;
		padding: 24px 10px;
		font-size: 14px;
	}

	.page-template-page-service #advants .advants-items .item:first-child{
		margin-left: 0;
	}

	.page-template-page-service #advants .advants-items .item:last-child{
		margin-right: 0;
	}
}

/* ~~~ SERVICES ~~~ */

#services{
	margin-top: 20px;
	margin-bottom: 36px;
}

.service-items .item{
	border-radius: 12px;
	position: relative;
	margin-bottom: 24px;
	overflow: hidden;
	width: 338px;
	height: 338px;
	margin: 0 auto 20px;
}

.service-items .item img{
	border-radius: 12px;
	transition: all .5s ease;
}

.service-items .item:hover img{
	transform: scale(1.2);
}

.service-items .item h3{
	position: absolute;
	bottom: 24px;
	left: 50%;
	width: 288px;
	margin-left: -144px;
	border-radius: 24px;
	border: 1px solid #D2B1B4;
	background: rgba(103, 11, 52, 0.20);
	backdrop-filter: blur(10px);
	padding: 8px 24px;
	text-align: center;
	font-size: 21px;
	color: #F5F5F5;
	line-height: 113%;
	z-index: 2;
	transition: all .4s ease;
}

.service-items .item a{
	position: relative;
    display: block;
    z-index: 2;
	background: transparent;
}

.service-items .item .hover-shade{
	opacity: 0;
	transition: all .4s ease;
}

.service-items .item:hover .hover-shade{
	opacity: 1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	z-index: 1;
}

.service-items .item:hover h3{
	background: #670B34;
}

@media screen and (min-width: 992px) {
	#services{
		margin-top: 44px;
		margin-bottom: 96px;
	}

	.service-items .item{
		border-radius: 12px;
		position: relative;
		margin-bottom: 24px;
		overflow: hidden;
		width: auto;
		height: auto;
		margin: 0 0 24px;
	}
}

/* ~~~ Service Gallery ~~~ */

#service-gallery{
	margin-bottom: 56px;
}

#service-gallery h2{
	background: #C8A098;
	color: #F5F5F5;
	font-size: 28px;
	text-align: center;
	padding: 27px 0;
	margin-bottom: 44px;
}

#service-gallery .gallery .gallery-item img{
	border-radius: 10px;
}

.tos-caption{
	display: none;
}

@media screen and (max-width: 768px) {
	#service-gallery .gallery .gallery-item{
		margin: 0 0 16px;
	}
}

@media screen and (min-width: 1200px) {
	#service-gallery{
		margin-bottom: 96px;
	}

	#service-gallery .gallery .slider-item{
		position: relative;
		width: 100%;
		height: 1081px;
	}
	
	#service-gallery .gallery .gallery-item{
		position: absolute;
		text-align: left;
		max-width: max-content;
		margin-bottom: 0;
	}
	
	#service-gallery .gallery .gallery-item:nth-child(1){top: 0; left: 0;}
	#service-gallery .gallery .gallery-item:nth-child(2){top: 0; left: 330px;}
	#service-gallery .gallery .gallery-item:nth-child(3){top: 0; right: 0;}

	#service-gallery .gallery .gallery-item:nth-child(4){top: 392px; left: 0;}
	#service-gallery .gallery .gallery-item:nth-child(5){top: 392px; left: 330px;}

	#service-gallery .gallery .gallery-item:nth-child(6){bottom: 0; left: 0;}
	#service-gallery .gallery .gallery-item:nth-child(7){bottom: 0; left: 330px;}
	#service-gallery .gallery .gallery-item:nth-child(8){bottom: 0; right: 0;}
}

/* ~~~ CTA ~~~ */

.cta{
	background: #D2B1B4;
	padding: 40px 0 270px;
	margin-bottom: 56px;
}

.cta .text-bg-purple{
	padding: 16px 25px;
}

#promotion{
	background: #EEE7E8;
	padding-bottom: 240px;
}

#promotion .text-bg-purple{
	margin-top: 32px;
}

.cta h2{
	color: #670B34;
    line-height: 113%;
    letter-spacing: 3.96px;
	margin-bottom: 29px;
}

.cta-content{
	position: relative;
}

.cta-content::before{
	content: ' ';
	display: block;
	position: absolute;
	bottom: -250px;
    left: 0;
    width: 100%;
    height: 310px;
	background: url(imgs/gift-card.png);
	background-size: cover;
}

#promotion .cta-content::before{
	top: 0;
    right: 0;
    width: 100%;
    height: 253px;
	background: url(imgs/promo-cards.png);
	background-size: cover;
}

@media screen and (max-width: 576px) {
	#promotion .cta-content::before{
		right: inherit;
		top: inherit;
		left: -20%;
		bottom: -240px;
		width: 120%;
		height: 300px;
	}
}

.cta-content .info-box{
	max-width: 472px;
    border-radius: 18px;
    border: 1px solid rgba(226, 222, 222, 0.20);
    background: rgba(245, 245, 245, 0.20);
    backdrop-filter: blur(10px);
	text-align: center;
	font-size: 20px;
	line-height: 113%;
	color: #670B34;
	font-family: 'Mont-SemiBold';
	padding: 24px 38px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#promotion .cta-content .info-box{
	max-width: 524px;
	border-radius: 30px;
	border: 1px solid rgba(226, 222, 222, 0.20);
	background: rgba(210, 177, 180, 0.40);
	backdrop-filter: blur(10px);
	color: #1E1C1D;
	padding: 48px 38px;
	font-family: 'Mont-Regular';
}

.cta-content .info-box p{
	margin-bottom: 0;
}

.cta-content .info-box .btn{
	margin-top: 32px;
	margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
	.cta{
		padding: 53px 0 120px;
		margin-bottom: 96px;
	}

	.cta h2{
		margin-bottom: 60px;
	}

	.cta-content::before{
		bottom: inherit;
		left: inherit;
		top: -135px;
		right: 10px;
		width: 650px;
		height: 576px;
	}

	.cta .text-bg-purple{
		padding: 16px 39px;
		text-transform: uppercase;
	}

	#promotion{
		padding-bottom: 0;
	}

	#promotion .text-bg-purple{
		margin-top: 32px;
		margin-bottom: 32px;
	}
	
	#promotion .cta-content::before{
		top: -150px;
		right: 0;
		width: 791px;
		height: 572px;
	}

	.cta-content .info-box{
		max-width: 472px;
		min-height: 297px;
		border-radius: 18px;
		backdrop-filter: blur(10px);
		font-size: 26px;
		padding: 24px 38px;
		margin-left: 70px;
	}

	.cta-content .info-box .btn{
		margin-bottom: 0;
	}
}

/* ~~~ REVIEWS ~~~ */

#reviews{
	margin-bottom: 35px;
}

#reviews h2{
	margin-bottom: 25px;
}

#reviews .btn-wrapper{
	margin-top: 40px;
}

.reviews-wrapper{
	display: flex;
    justify-content: space-between;
}

.reviews-wrapper .item{
	background: #D2B1B4;
	border-radius: 24px;
	padding: 32px;
	margin: 0 24px 35px;
	text-align: center;
}

.reviews-wrapper .item .photo,
.reviews-wrapper .item .logo{
	text-align: center;
}

.reviews-wrapper .item .logo{
	margin: 24px 0;
}

.reviews-wrapper .item .photo img{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 24px;
}

.reviews-wrapper .item .review{
	color: #1E1C1D;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 18.156px;
}

.reviews-wrapper .item .name{
	color: #670B34;
	font-size: 17.292px;
	font-family: 'Mont-SemiBold';
	margin-bottom: 7px;
}

.reviews-wrapper .item .date{
	line-height: 13.833px;
	font-size: 12.104px;
}

/* ~~~ Google Reviews Widget Customize ~~~ */

.ti-widget.ti-goog .ti-col-3 .ti-review-item,
.ti-load-more-reviews-container{
	display: none!important;
}

.ti-widget.ti-goog .ti-col-3 .ti-review-item:nth-child(1),
.ti-widget.ti-goog .ti-col-3 .ti-review-item:nth-child(2),
.ti-widget.ti-goog .ti-col-3 .ti-review-item:nth-child(3){
	display: block!important;
}

#reviews .ti-widget.ti-goog .ti-review-item .ti-stars > *,
#reviews .ti-widget.ti-goog .ti-footer{
	display: none;
}

a.show-more-reviews{
	text-decoration: none;
	color: #D2B1B4;
}

#reviews .ti-widget.ti-goog .ti-review-item .ti-stars{
	position: relative;
	margin-bottom: 24px;
	height: 26px;
}

#reviews .ti-widget.ti-goog .ti-review-item .ti-stars::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 27px;
	height: 26px;
	background: url(imgs/logo-favicon.svg) no-repeat 0 0;
}

#reviews .ti-widget.ti-goog .ti-review-item>.ti-inner{
    border-radius: 24px!important;
    padding: 24px!important;
    text-align: center!important;
}

#reviews .ti-widget.ti-goog .ti-profile-img{
	display: flex;
    justify-content: center;
	margin: 0 !important;
	order: 2;
}

#reviews .ti-widget.ti-goog .ti-profile-img img{
	width: 80px!important;
	height: 80px!important;
	border-radius: 50%!important;
	border: 2px solid #f5f5f5!important;
}

#reviews .ti-widget.ti-goog .ti-widget-container .ti-name{
	padding: 0;
	color: #670B34;
    font-size: 17.292px;
    font-family: 'Mont-SemiBold';
	margin-top: 16px;
    margin-bottom: 7px;
}

#reviews .ti-widget.ti-goog .ti-widget-container .ti-date{
    line-height: 13.833px;
    font-size: 12.104px!important;
}

#reviews .ti-widget.ti-goog .ti-review-content{
	color: #1E1C1D;
    font-size: 12px;
    font-weight: 600;
    line-height: 18.156px;
	text-align: left;
}

#reviews .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button{
	background: #670B34!important;
    color: #D2B1B4!important;
    border: none!important;
	position: relative!important;
    border-radius: 45px!important;
    font-size: 20px!important;
    line-height: 113%!important;
	margin-top: 40px!important;
	padding: 12px 25px!important;
}

#reviews .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button:hover{
	background: #670B34!important;
    color: #D2B1B4!important;
    border: none!important;
	position: relative!important;
    border-radius: 45px!important;
    font-size: 20px!important;
    line-height: 113%!important;
	padding: 12px 25px!important;
}

@media screen and (min-width: 992px) {
	#reviews{
		margin-bottom: 96px;
	}

	#reviews h2{
		margin-bottom: 40px;
	}

	.reviews-wrapper .item{
		min-width: calc(33.3333% - 32px);
		width: calc(33.3333% - 32px);
	}

	.reviews-wrapper .item{
		margin: 0;
	}

	.reviews-wrapper .item:nth-child(2){
		margin: 0 48px;
	}

	.add-review-content{
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 22px;
		line-height: 150%;
		letter-spacing: 1.76px;
		text-transform: uppercase;
		color: #D2B1B4;
		font-family: 'Mont-SemiBold';
	}

	#reviews .ti-widget.ti-goog .ti-review-item>.ti-inner{
		background: #D2B1B4!important;
		padding: 32px!important;
	}

	#reviews .ti-widget.ti-goog .ti-review-header{
		display: block!important;
	}

	#reviews .ti-widget.ti-goog .ti-review-content{
		text-align: center;
	}

	#reviews .ti-widget.ti-goog .ti-review-item .ti-stars::before{
		left: 50%;
		margin-left: -13px;
	}

	#reviews .ti-widget.ti-goog .ti-profile-details{
		align-items: center;
	}

	#reviews .ti-widget.ti-goog .ti-profile-img{
		order: 1;
	}

	#reviews .ti-widget.ti-goog .ti-review-header{
		margin: 0 0 24px 0!important;
	}

	#reviews .ti-widget.ti-goog .ti-profile-img img{
		width: 116px!important;
		height: 116px!important;
	}
}

/* ~~~ ABOUT ~~~ */

#about{
	background: transparent;
	position: relative;
	margin-bottom: 56px;
}

#section-about h2{
	margin-bottom: 50px;
}

.about-wrapper{
	padding-top: 60px;
	padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
	.page-template-page-service #section-about h2{
		margin-bottom: 20px;
	}

	.page-template-page-service .about-wrapper{
		padding-top: 0;
		padding-bottom: 0;
	}

	.about-carousel .slick-track{
		display: flex!important;
	}

	.about-carousel .slick-slide{
		height: inherit!important;
	}

	.service-about .about-wrapper .entry{
		border-radius: 16px;
		background: #C8A098;
		padding: 24px;
	}

	.service-about .about-wrapper .entry > *:last-child{
		margin-bottom: 0;
	}

	.service-before-after.service-about .about-wrapper .entry{
		border-radius: 0;
		background: transparent;
		padding: 0;
	}

	body.home #about{
		background: #D2B1B4;
		padding: 40px 0 0;
	}

	body.home #about h2{
		text-align: center;
	}

	body.home #about .about-wrapper{
		padding: 0;
	}

	body.home #about .about-wrapper .entry{
		padding: 0 12px;
	}

	.page-template-page-service .about-carousel .slick-dots{
		top: inherit!important;
		bottom: -294px!important;
	}
}

.about-wrapper h2{
	text-align: left;
	margin-bottom: 22px;
}

.about-review-wrapp{
	background: #670B34;
	padding: 22px 0;
}

.about-review-wrapp .btn-secondary{
	border: 1px solid transparent;
}

.about-review-wrapp .btn-secondary:hover{
	border: 1px solid #D2B1B4;
}

#about.service-before-after .about-wrapper{
	padding: 24px;
	border-radius: 16px;
	background: #F5F5F5;
	margin-bottom: 20px;
}

.before-after-carousel .slick-dots{
	bottom: -24px;
	width: 100%;
}

.before-after-carousel .slick-dots li.slick-active button,
.before-after-carousel .slick-dots li:hover button{
	background: #670B34;
	width: 11px;
	height: 11px;
}

.before-after-carousel .slick-dots li button{
	border: 1px solid #670B34;
	width: 9px;
	height: 9px;
	background: transparent;
}

.before-after-carousel,
.before-after-carousel .slick-list,
.before-after-carousel .slick-track{
	height: 100%;
}

.before-after-carousel .item{
	display: flex!important;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.before-after-carousel .item > div{
	position: relative;
	margin-bottom: 20px;
	margin-left: 16px;
	margin-right: 16px;
}

.before-after-carousel .item img{
	border-radius: 16px;
	margin: 0;
}

.before-after-carousel .item span{
	display: inline-block;
	background: #670B34;
	border-radius: 55px;
	padding: 8px 16px;
	font-size: 18px;
	color: #D2B1B4;
	font-family: 'Mont-Bold';
	position: absolute;
    top: 20px;
    left: 20px;
}

@media screen and (max-width: 576px) {
	.add-review-content{
		text-align: center;
	}

	.add-review-content > div{
		color: #D2B1B4;
		font-size: 20px;
		text-transform: uppercase;
		margin-bottom: 11px;
	}

	.service-before-after .about-wrapper{
		border-radius: 16px;
		padding: 24px;
		margin-left: 16px;
		margin-right: 16px;
	}

	.about-carousel .item{
		display: flex!important;
		flex-direction: column;
	}

	.about-carousel .slick-dots{
		top: 315px!important;
		bottom: inherit!important;
	}

	body:not(.home) .about-carousel .slick-dots li.slick-active button,
	body:not(.home) .about-carousel .slick-dots li:hover button{
		background: #670B34;
		width: 11px;
		height: 11px;
	}

	body:not(.home) .about-carousel .slick-dots li button{
		border: 1px solid #670B34;
		width: 9px;
		height: 9px;
	}

	.about-wrapper h2{
		display: none;
	}

	.about-photo{
		width: calc(100% - 48px);
		height: 250px;
		border-radius: 16px;
		margin: 16px 24px 56px;
		display: flex;
		background-size: cover;
		background-position: 50% 50%;
	}

	.page-template-page-service .about-photo{
		margin: 16px 12px 56px;
		width: calc(100% - 24px);
	}
}

@media screen and (min-width: 992px) {
	#about{
		background: #D2B1B4;
		position: relative;
		margin-bottom: 96px;
		margin-left: 0;
		margin-right: 0;
		overflow: hidden;
	}

	.about-carousel .slick-list{
		overflow: visible;
	}

	#about.service-before-after{
		background: transparent;
	}

	#about.service-before-after .about-wrapper{
		padding: 35px 0 15px;
		position: relative;
		z-index: 3;
		margin-bottom: 0;
		border-radius: 0;
		background: transparent;
	}

	#about.service-before-after::before{
		content: ' ';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: calc(50% + 60px);
		height: 100%;
		background: #C8A098;
		border-radius: 0 16px 16px 0;
		z-index: 2;
	}

	.about-photo{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 45vw;
		height: calc(100% + 100px);
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: cover;
	}

	.service-about .about-wrapper{
		padding-top: 118px;
		padding-bottom: 100px;
	}

	.before-after-carousel .slick-dots{
		bottom: -35px;
		width: 472px;
		right: 0;
	}

	.before-after-carousel .item img{
		width: 472px;
		height: 242px;
		float: right;
	}

	.before-after-carousel .item > div{
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.about-carousel .slick-dots{
		text-align: left!important;
		left: calc((100% - 1136px) / 2);
	}
}

/* ~~~ TEAM ~~~ */

#team{
	margin-bottom: 56px;
}

#team h2{
	color: #670B34;
	margin-bottom: 45px;
}

.team-img{
	position: relative;
}

.team-img img{
	border-radius: 24px;
}

#show-team{
	display: none;
}

#show-team-btn.open{
	margin-top: 60px;
}

.team-wrapper{
	transition: all .3s ease;
	height: 0;
	opacity: 0;
}

.team-wrapper.show{
	margin-top: 40px;
	height: auto;
	opacity: 1;
}

.team-wrapper .item{
	text-align: center;
	margin: 0 16px 0 0;
}

.team-wrapper .item img{
	width: 240px;
	height: auto;
	border-radius: 50%;
	margin: 0 auto 35px;
}

.team-wrapper .item .name{
	font-size: 19px;
	color: #670B34;
	font-family: 'Mont-SemiBold';
	line-height: 120%;
}

.team-wrapper .item .position{
	font-size: 11.629px;
	line-height: 160%;
}

@media screen and (min-width: 992px) {
	#team{
		margin-bottom: 96px;
	}

	#team h2{
		margin-bottom: 60px;
	}

	#show-team{
		cursor: pointer;
		display: block;
		position: absolute;
		width: 136px;
		height: 50px;
		background: url(imgs/corners.png) 0 0 no-repeat;
		left: 50%;
		margin-left: -68px;
		bottom: 0;
	}
	
	#show-team span{
		cursor: pointer;
		position: relative;
		z-index: 1;
		top: 18px;
	}
	
	#show-team span.open img{
		transform: scale(-1,-1);
	}

	#show-team-btn{
		display: none;
	}

	.team-wrapper.show{
		margin-top: 80px;
	}

	.team-wrapper .item{
		margin: 0;
	}
}

/* ~~~ CONTACTS ~~~ */

#contacts h2{
	margin-bottom: 40px;
}

#contacts .contact-info{
	font-size: 18px;
	color: #670B34;
	line-height: 100%;
	font-family: 'Mont-SemiBold';
	padding: 40px 0 0;
	text-align: center;
}

#contacts .contact-info .address,
#contacts .contact-info .phone{
	margin-bottom: 24px;
}

#contacts .contact-info a{
	text-decoration: none;
	color: #670B34;
}

@media screen and (max-width: 576px){
	body:not(.home) footer .contact-info{
		display: none;
	}

	body:not(.home) footer{
		margin-top: 12px;
	}

	body:not(.home) footer .logo{
		margin-bottom: 0!important;
	}

	body:not(.home) #contacts .contact-info{
		border-radius: 12px;
		background: #F5F5F5;
		padding: 33px;
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media screen and (min-width: 992px){
	#contacts .contact-info{
		font-size: 28px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 47px 0;
	}

	#contacts .contact-info .address,
	#contacts .contact-info .phone{
		margin-bottom: 0;
	}

	.page-template-page-service #contacts .contact-info{
		display: none;
	}
}

/* ~~~ PRICE ~~~ */

#price{
	margin-top: 56px;
	margin-bottom: 56px;
}

#price h2{
	margin-bottom: 20px;
	color: #670B34;
}

.price-wrapper{
	padding: 0;
}

/* ~~~ Tabs Header ~~~ */

.price-tabs .tab-header .item{
	background: none;
	font-size: 10px;
	line-height: 100%;
	border-bottom: 1px solid #670B34;
	padding-bottom: 16px;
}

.price-tabs .tab-header .item.active{
	border-bottom: 2px solid #670B34;
}

.price-tabs .tab-header .item:not(.active){
	cursor: pointer;
}

.price-tabs .tab-header .item:last-child{
	margin-bottom: 0;
}

.price-tabs .tab-header .item .service-name{
	position: relative;
	font-size: 18px;
	color: #670B34;
	font-family: 'Mont-SemiBold';
	line-height: 100%;
	padding: 20px 0 0 30px;
	transition: all .3s ease;
}

.price-tabs .tab-header .item .service-name::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 21px;
	height: 18px;
	background: url(imgs/caret.svg) 0 0 no-repeat;
}

.price-tabs .tab-header .item.active .service-name::before{
	transform: scale(1,-1);
}

.price-tabs .tab-header .item .service-descr{
	display: none;
	padding-top: 14px;
}

.price-tabs .tab-header .item.active .service-descr{
	display: block;
}

.price-tabs .tab-body{
	position: relative;
}

.price-tabs .tab-body.desktop{
	display: none;
}

.price-tabs .price-header{
	position: absolute;
    top: -18px;
    right: 190px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: end;
}

@media screen and (min-width: 992px) {
	.price-tabs .price-header{
		right: 202px;
	}
	
	.price-tabs .tab-header .item.active{
		border-bottom: none;
	}
}

/* ~~~ Tabs Body ~~~ */

.price-tabs .tab-body .entry{
	display: none;
}

.price-tabs .tab-body .entry.active{ 
	display: block;
}

.price-row{
	font-size: 14px;
	border-bottom: 1px solid #909090;
	padding: 20px 0;
	font-family: 'Mont-SemiBold';
	line-height: 100%;
	position: relative;
}

.price-row .subservice-name{
	max-width: 66%;
	margin-bottom: 10px;
}

.price-row .subservice-note{
	font-size: 12px;
	position: absolute;
	bottom: 25px;
	left: 42%;
}

.page-id-82 .tab-body .entry:nth-child(3) .price-row .subservice-note{
	font-size: 16px;
	color: #670B34;
}

.price-row .price-items{
	display: flex;
}

@media screen and (max-width: 576px){
    .price-row .price-items {
        max-width: 40%;
    }
}

.price-row .btn{
	font-size: 12px;
	color: #670B34;
	line-height: 100%;
	font-family: 'Mont-SemiBold';
	border: 1px solid #1E1C1D;
	border-radius: 55px;
	line-height: 100%;
	padding: 8px 16px;
	text-decoration: none;
	position: absolute;
    right: 0;
    bottom: 16px;
}

.price-row:last-child{
	border-bottom: 0;
}

.price-row .btn:hover{
	border: 1px solid #670B34;
	background: #670B34;
	color: #D2B1B4;
}

.price-row .price-item{
	padding: 0 10px;
	border-right: 1px solid #1E1C1D;
}

.price-row .price-item._empty{
	padding: 0;
	border-right: none;
	display: none;
}

.price-row .price-item:first-child{
	padding-left: 0;
}

.price-row .price-item:last-child{
	border-right: 0;
	padding-right: 0;
}

@media screen and (max-width: 576px) {
	.price-col-title{
		color: #1E1C1D;
		font-size: 6px;
		font-family: 'Mont-SemiBold';
		line-height: 1;
		text-align: center;
		margin-bottom: 6px;
	}
}

@media screen and (min-width: 992px) {
	#price{
		margin-top: 96px;
		margin-bottom: 96px;
	}

	.price-tabs .tab-body.desktop{
		display: block;
	}

	.price-tabs .tab-body.mobile{
		display: none;
	}

	.price-tabs .tab-body{
		width: calc(100% - 265px);
	}

	.price-wrapper{
		padding: 47px 34px 42px 58px;
		border-radius: 24px;
		background: #F5F5F5;
	}

	.price-tabs{
		display: flex;
	}

	.price-tabs .tab-header .item{
		margin-bottom: 45px;
		font-size: 14px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.price-tabs .tab-header{
		width: 265px;
		max-width: 265px;
		border-right: 1px solid #670B34;
		padding-right: 35px;
	}

	.price-tabs .price-header{
		padding-left: 274px;
	}

	.page-id-57 .price-tabs .price-header{
		right: 210px;
		margin-top: -16px;
	}

	.price-tabs .tab-header .item .service-name{
		font-size: 24px;
		color: #1E1C1D;
		margin-bottom: 16px;
		padding: 0;
		border-radius: 55px;
		display: inline-block;
		border-bottom: 0;
	}

	.price-tabs .tab-header .item .service-name::before{
		content: none;
	}

	.price-tabs .tab-header .item.active .service-name{
		background: #670B34;
		color: #D2B1B4;
		padding: 8px 16px;
		text-align: center;
	}

	.price-tabs .tab-header .item .service-descr{
		padding-top: 0;
	}

	.price-tabs .tab-body .entry{
		padding-left: 35px;
	}

	.price-row{
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 20px;
		border-bottom: 1px solid #670B34;
		padding: 20px 10px;
		font-family: 'Mont-SemiBold';
		line-height: 100%;
	}

	.price-row .subservice-note{
		position: static;
		float: right;
		padding-left: 3%;
	}

	.price-row .btn{
		font-size: 16px;
		position: static;
	}

	.price-tabs .price-header .price-col-title{
		display: block;
		color: #670B34;
		font-size: 12px;
		font-family: 'Mont-Bold';
		line-height: 100%;
		text-transform: lowercase;
		margin: 0 15px;
		width: 60px;
		text-align: center;
	}

	.page-id-88 .price-tabs .price-header .price-col-title{
		width: 100px;
	}

	.price-row .subservice-name{
		min-width: 270px;
		max-width: 270px;
		margin-bottom: 0;
	}

	.price-row .price-item{
		padding: 0 16px;
		text-align: center;
        white-space: nowrap;
	}

	.price-row .price-items{
		display: flex;
		justify-content: end;
		width: 35%;
	}

	.price-row .price-item:nth-child(1),
	.price-row .price-item:nth-child(3){
		min-width: 69px;
	}

	.price-row .price-item:nth-child(2){
		min-width: 94px;
	}
/*
	.page-id-57 .price-row .price-items{
		justify-content: start;
		padding-left: 84px;
		width: 36%;
	}
*/
}

/* ~~~ FOOTER ~~~ */

footer{
	margin-top: 45px;
}

.footer{
	position: relative;
	background: #670B34;
	text-align: center;
	padding: 38px 0 40px;
	margin-left: 20px;
	margin-right: 20px;
	border-radius: 12px;
}

footer .contact-info{
	text-align: center;
	font-size: 16px;
	line-height: 100%;
	color: #D2B1B4;
}

footer .contact-info a{
	color: #D2B1B4;
	text-decoration: none;
}

body:not(.home) footer .logo{
	margin-bottom: 40px;
}

footer .logo img{
	width: 118px;
}

footer .contact-info > *{
	margin-bottom: 16px;
}

.subfooter{
	height: 20px;
}

@media screen and (min-width: 992px){
	.footer{
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
		border-radius: 0;
		padding: 45px 0 0;
	}

	body.home .footer{
		padding: 45px 0 55px;
	}

	footer .col-md-6 .logo{
		text-align: right;
	}

	footer .col-md-6 .logo img{
		width: 176px;
	}

	footer .contact-info{
		text-align: left;
		font-size: 22px;
		line-height: 150%;
		color: #D2B1B4;
	}

	footer .contact-info > *{
		margin-bottom: 0;
	}

	body:not(.home) footer .contact-info{
		line-height: 120%;
	}

	body:not(.home) footer .contact-info .address,
	body:not(.home) footer .contact-info .phone{
		font-size: 16px;
		margin-left: 80px;
	}

	body:not(.home) footer .contact-info .address{
		margin-top: 52px;
	}

	body:not(.home) footer .contact-info .social{
		margin-top: 55px;
		margin-left: 20px;
	}

	footer .contact-info a{
		color: #D2B1B4;
		text-decoration: none;
	}

	footer .contact-info .social{
		margin-top: 16px;
	}

	footer .logo{
		margin-bottom: 0;
	}

	footer .logo img{
		width: 176px;
	}

	.subfooter{
		display: none;
	}
}

/* ~~~ FORM STYLES ~~~ */

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]), textarea{
	font-size: 15px;
	padding: 10px 15px 7px;
	box-shadow: none;
	display: inline-block;
	margin-bottom: 20px;
	width: 100%;
	border: 1px solid rgba(255,255,255, .8);
	background: rgba(255,255,255, .8);
	color: #000;
	border-radius: 3px;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus, textarea:focus{
	background: #fff;
	border: 1px solid #0071ce;
}

textarea{
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 164px;
	height: 164px;
	max-height: 164px;
}

::-webkit-input-placeholder{color: #000;}
::-moz-placeholder{color: #000;}
:-moz-placeholder{color: #000;}
:-ms-input-placeholder{color: #000;}

:focus::-webkit-input-placeholder{color: transparent}
:focus::-moz-placeholder {color: transparent}
:focus:-moz-placeholder{color: transparent}
:focus:-ms-input-placeholder{color: transparent}

@media screen and (min-width: 992px) {
	.inputs-row{
		display: flex;
		justify-content: space-between;
	}
	
	.inputs-row .item{
		padding: 0 10px;
		width: 100%;
	}
	
	.inputs-row .item:first-child{
		padding-left: 0;
	}
	
	.inputs-row .item:last-child{
		padding-right: 0;
	}
}

/* ~~~ CUSTOM ACCEPTANCE ~~~ */

.wpcf7-acceptance{
	display: inline-block;
	font-size: 15px;
	margin-bottom: 20px;
	text-align: left;
}

.wpcf7-acceptance span.wpcf7-list-item{
	margin: 0;
}

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.wpcf7-acceptance label{
	font-size: 14px;
	display: inline-flex;
	align-items: top;
	user-select: none;
}

.wpcf7-acceptance label::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #111;
	margin-top: 2px;
    margin-right: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

.wpcf7-acceptance label a{
	text-decoration: underline!important;
}

label.has-cheked-input::before{
	background-image: url("imgs/accept-check.svg");
}

/* ~~~ SOME CF7 STYLES HERE ~~~ */

div.wpcf7-response-output {
	margin: 1em 0.5em 1em;
	padding: 0.2em 1em;
	font-size: 12px;
	line-height: 1.2em;
	text-align: center;
	clear: both;
}

div.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpcf7-form-control-wrap {
	position: relative;
}

span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 12px;
	font-weight: normal;
	display: block;
	position: absolute;
	top: -5px;
	right: 0;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 100;
	border: 1px solid #ff0000;
	background: #fff;
	padding: .2em .8em;
}

.grecaptcha-badge,
.cky-btn-revisit-wrapper{
	opacity: 0;
}

.wpcf7 input[name="order-item"],
.wpcf7-spinner{
	display: none !important;
}

.wpcf7 p{
	margin-bottom: 0;
}

/* ~~~ SLICK THEME.CSS HERE ~~~ */

/* Arrows */
.slick-prev,
.slick-next{
	font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(226, 222, 222, 0.20);
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
	z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
}

.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before{
    opacity: 1;
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before{
    opacity: .6;
}

.slick-prev::before,
.slick-next::before{
    content: '';
	display: block;
	position: absolute;
	width: 29px;
	height: 29px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url(imgs/arrow.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev::before{
	transform: scale(-1,1);
}

.slick-prev{
	left: 10px;
}

.slick-next{
    right: 10px;
}

.slick-slide img{
	margin: 0 auto;
}

@media screen and (min-width: 992px){		
	.slick-prev,
	.slick-next{
		width: 70px;
		height: 70px;
	}
	
	.slick-prev{
		left: -15px;
	}

	.slick-next{
		right: -15px;
	}
}

/* Dots */

.slick-dots{
    position: absolute;
    bottom: 0;
	margin-bottom: 0;
    display: block;
    width: calc(100% - 40px);
	margin-left: 20px;
	margin-right: 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots > li:only-child{
    display: none;
}

.about-carousel .slick-dots{
    text-align: center;
	bottom: 55px;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 22px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 9px;
    height: 9px;
	border-radius: 50%;
	padding: 0;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    outline: none;
    background: #F5F5F5;
	position: relative;
    z-index: 2;
}

.slick-dots li button:hover{
	width: 11px;
    height: 11px;
	background: #F5F5F5;
	border: 1px solid #f5f5f5;
	margin-left: -1px;
}

.slick-dots li.slick-active button{
    background: transparent;
	border: 1px solid #f5f5f5;
}

@media screen and (max-width: 576px) {
	.slick-dots li button{
		background: transparent;
	}
}

/* ~~~ Carousel Wide Dots ~~~ */

.carousel-wide-dots .slick-dots li{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 7px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.carousel-wide-dots .slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 40px;
    height: 7px;
	border-radius: 29px;
	padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    background: transparent;
	position: relative;
    z-index: 2;
}

.carousel-wide-dots .slick-dots li button:hover{
	background: transparent;
}

.carousel-wide-dots .slick-dots li.slick-active button{
    background: #670B34;
	margin: 0 10px;
}

.carousel-wide-dots{
	padding-bottom: 30px;
}

.carousel-wide-dots .slick-dots::after{
	content: ' ';
	display: block;
	position: absolute;
	bottom: 5px;
	left: 0;
    right: 0;
    margin: auto;
	width: 100%;
	max-width: 1160px;
	height: 4px;
	background: rgba(103, 11, 52, 0.26);
	border-radius: 5px;
}

.carousel-wide-dots .slick-dots li.slick-active::before,
.carousel-wide-dots .slick-dots li.slick-active::after{
	content: ' ';
	display: block;
	position: absolute;
	bottom: 1px;
	width: 10px;
	height: 6px;
	background: url(imgs/radius6.svg) 0 0 no-repeat;
	z-index: 1;
}

.carousel-wide-dots .slick-dots li.slick-active::before{
	left: 2px;
}

.carousel-wide-dots .slick-dots li.slick-active::after{
	right: -18px;
	transform: scale(-1,1);
}

@media screen and (max-width: 576px) {
	.page-template-page-service .offers-carousel.carousel-wide-dots .slick-dots li.slick-active::before,
	.page-template-page-service .offers-carousel.carousel-wide-dots .slick-dots li.slick-active::after{
		bottom: 0;
	}

	.service-photo-carousel.carousel-wide-dots .slick-dots li,
	.service-photo-carousel.carousel-wide-dots .slick-dots li button{
		width: 40px;
	}
}

@media screen and (min-width: 992px) {
	.carousel-wide-dots .slick-dots li.slick-active::before,
	.carousel-wide-dots .slick-dots li.slick-active::after{
		bottom: 0;
	}
}

.team-carousel.carousel-wide-dots .slick-dots li,
.team-carousel.carousel-wide-dots .slick-dots li button{
	width: 17px;
}

.service-photo-carousel.carousel-wide-dots{
	padding-bottom: 14px;
}

.tos-wrapper.tos-fixed{
	z-index: 10002!important;
}

.tos-close span:after,
.tos-close span:before{
	width: 12px!important;
	height: 12px!important;
}

@media screen and (min-width: 992px){
	.slick-dots{
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.carousel-wide-dots .slick-dots li,
	.carousel-wide-dots .slick-dots li button{
		width: 160px;
	}

	.team-carousel.carousel-wide-dots .slick-dots li,
	.team-carousel.carousel-wide-dots .slick-dots li button{
		width: 60px;
	}

	.carousel-wide-dots,
	.service-photo-carousel.carousel-wide-dots{
		padding-bottom: 62px;
	}
}

/* ~~~ MODAL STYLES ~~~ */

body.modal-open{
	overflow: visible!important;
	padding-right: 0!important;
}

.modal-body form{
	text-align: center;
}

.modal-dialog{
	width: 90%;
	max-width: 400px;
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: none;
	margin: 5% auto;
	background: #0071ce;
	color: #fff;
}

.modal-dialog.modal-text{
	max-width: 800px;
}

.modal-dialog a{
	color: #fff;
}

.modal-content{
	border: none;
	box-shadow: none;
	background: transparent;
}

.modal-content .btn{
	margin-top: 10px;
}

.modal-header{
	border: none;
}

.modal-body{
	margin: 0 15px;
	padding: 0 1rem;
}

.modal-content .form-title{
	font-size: 21px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.modal input, .modal textarea{
	margin-bottom: 15px!important;
}

.modal div.wpcf7-response-output{
	text-align: center;
}

.modal-full{
	width: 100%!important;
	max-width: 100%;
	height: 100%;
	background: rgba(255,255,255,1);
	top: 0;
	left: 0;
}

/* ~~~ WP DEFAULT STYLES ~~~ */

img.size-full, img{
	width: auto;
	height: auto;
	max-width: 100%;
}

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
    margin: auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pagination h2.screen-reader-text{
	display: none;
}

.nav-links .page-numbers{
	font-size: 17px;
	display: inline-block;
	background: #0099cc;
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
}

.nav-links .page-numbers:hover{
	background: #f7941c;
}

.nav-links .current,
.nav-links .current:hover{
	background: none;
	color: #323232;
}

/* ~~~ WP DEFAULT GALLERY ~~~ */

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media(max-width:991px){
	.navbar-nav{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.navbar-nav .menu-item{
		width: 100%;
	}
	.navbar-nav .lang-item{
		width: max-content;
	}
	.lang-item:last-of-type::after {
		left: -4px;
		top: 23px;
		transform: none;
		color: #ffffff;
	}
}

@media(max-width:576px){
	.lang-item:last-of-type::after {
		color: #1E1C1D;
	}
}

.seo-text{
	padding: 2rem 0;
}
.seo-text__content{
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom: 8px;
}

.parent.show .seo-text__content{
	-webkit-line-clamp: initial;
}

.seo-text__btn{
	display: flex;
	justify-content: center;
	border: none;
	background-color: #670B34;
	color: #ffffff;
	text-transform: uppercase;
	margin-left: auto;
	margin-right: auto;
	padding: 8px 16px;
	border-radius: 8px;
	letter-spacing: .05em;
}

.seo-text__btn .less{
	display: none;
}

.parent.show .seo-text__btn .more{
	display: none;
}
.parent.show .seo-text__btn .less{
	display: block;
}

@media(min-width:1240px) and (max-width:1300px){
	.header .col-12{
		padding: 0;
	}
	.horizontal-menu{
		margin-top: 0;
	}
	header{
		top: 0;
	}
}