@font-face {
	font-family: "Century Gothic";
	src: url(fonts/CenturyGothic.eot);
	src: url(fonts/CenturyGothic.eot?#iefix) format("embedded-opentype"), url(fonts/CenturyGothic.woff2) format("woff2"), url(fonts/CenturyGothic.woff) format("woff"), url(fonts/CenturyGothic.ttf) format("truetype"), url(fonts/CenturyGothic.svg#svgFontName) format("svg");
}

@font-face {
	font-family: OpenSans-Light;
	src: url(fonts/OpenSans-Light.eot);
	src: url(fonts/OpenSans-Light.eot?#iefix) format("embedded-opentype"), url(fonts/OpenSans-Light.woff2) format("woff2"), url(fonts/OpenSans-Light.woff) format("woff"), url(fonts/OpenSans-Light.ttf) format("truetype"), url(fonts/OpenSans-Light.svg#svgFontName) format("svg");
}

:root {
	--primary-color: #901d78;
	--light-gray: rgba(0, 0, 0, 0.5);
	--black: #000;
	--color-text: #fff;
	--color-link: #5f5f5f;
	/*--color-link-hover: #ff963b;*/
	--color-enter: #fff;
	--color-title: #fff;
	--color-subtitle: #5f5f5f;
	--color-menu-item: #000;
	/*--color-menu-item-hover: #ff963b;*/
	--color-menu-item-hover-alt: #8544da;
	--color-content: #bf76b2;
	--color-content-fixed: #ddd;
	--font-alt: 200 6vw/1 'Spectral', serif;
	--color-next: #5f5f5f;
	--color-next-hover: #8544da;
}

*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius: 20px;
}


body,
html {
	padding: 0;
	margin: 0;
	font-family: "Century Gothic", sans-serif;
	position: relative;
	color: var(--black);
	background-color: #f0eeef;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-family: "Century Gothic", sans-serif;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	font-family: "Century Gothic", sans-serif;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-family: "Century Gothic", sans-serif;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-family: "Century Gothic", sans-serif;
}

button,
input,
input::placeholder,
select,
select option,
textarea,
textarea::placeholder {
	font-family: "Century Gothic", sans-serif;
}

.flex-between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.visibility {
	visibility: hidden;
}

.container {
	margin: 0 auto;
	width: 88.85416666%;
}

.overflow {
	overflow: hidden;
}

.d-none {
	display: none;
}

button {
	background: 0 0;
	border: none;
	padding: 0;
	margin: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

	button:active {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}

.btn {
	text-transform: uppercase;
	width: 263px;
	text-align: center;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	padding: 15px 0;
	border-radius: 0 25px 0 25px;
}

	.btn:hover {
		border-radius: 0;
	}

.btn_filled {
	color: #fff;
	background-color: var(--primary-color);
}

a {
	text-decoration: none;
}

	a:active,
	a:focus,
	a:hover,
	button:active,
	button:focus,
	button:hover {
		outline: 0 !important;
	}

.social-media-list {
	position: fixed;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 50%;
	right: 41px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99999999999999999;
}

.social-media-list__item {
	display: inline-block;
}

	.social-media-list__item svg path {
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}

	.social-media-list__item:hover svg path {
		fill: var(--primary-color);
	}

	.social-media-list__item:not(:last-child) {
		margin-bottom: 32px;
	}

.stiky-line {
	position: fixed;
	width: 2px;
	height: 100vh;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.05);
	right: 100px;
	z-index: 9999999999999999;
}

.lang-select {
	position: fixed;
	right: 35px;
	bottom: 40px;
	border: none;
	background-color: transparent !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	-o-text-overflow: "";
	text-overflow: "";
	text-transform: uppercase;
	z-index: 9999999999999999;
	color: #901d78;
}

	.lang-select::-ms-expand {
		display: none !important;
	}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.header-lang-select {
	border: none;
	background-color: transparent !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	-o-text-overflow: "";
	text-overflow: "";
	text-transform: uppercase;
	color: #901d78;
}

	.header-lang-select::-ms-expand {
		display: none !important;
	}

.header-social {
	display: none;
}

.header-lang-select {
	display: none;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
}

.logo {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.logo-img {
	width: 160px;
}

	.logo-img img {
		width: 100%;
	}

.logo-text {
	color: #fff;
	text-transform: lowercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 13px;
}

.logo-text_main {
	text-transform: uppercase;
	font-size: 24px;
}

.header-link {
	color: #fff;
	margin-right: 100px;
	line-height: 21px;
	overflow: hidden;
	position: relative;
}

	.header-link:after {
		content: "";
		width: 20%;
		height: 100%;
		position: absolute;
		left: auto;
		top: 0;
		bottom: 0;
		right: -20%;
		background-image: -o-linear-gradient(315deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
		background-image: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	}

	.header-link:hover:after {
		-webkit-transition: all 0.4s ease-out;
		-o-transition: all 0.4s ease-out;
		transition: all 0.4s ease-out;
		right: 100%;
	}

.hero-screen {
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-offer-wrapper {
	width: 100%;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero-offer {
	padding-left: 120px;
}

.page-title {
	text-transform: uppercase;
	font-size: 109px;
	color: var(--primary-color);
	max-width: 600px;
	line-height: 134px;
	letter-spacing: -0.055em;
}

.hero-offer__text {
	font-size: 18px;
	line-height: 22px;
	max-width: 545px;
	margin: 23px 0 46px;
	color: #fff;
}

.offer-btn {
	margin-right: 20px;
}

.btn.white_bg {
	background: #fff;
}

.menu-seciton {
	min-height: 100vh;
}

.menu-container {
	height: 100%;
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: flex-start;
}

.services-offer {
	margin-right: 35px;
	display: none;
}

	.services-offer.active {
		display: block;
		max-width: 400px;
	}

.services-offer__title {
	font-size: 50px;
	line-height: 62px;
	letter-spacing: -0.017em;
	margin-bottom: 50px;
	max-width: 400px;
}

.services-offer__text {
	letter-spacing: 0.04em;
	line-height: 22px;
	color: var(--light-gray);
	max-width: 400px;
	margin-bottom: 25px;
}

.menu-wrapper {
	position: relative;
}

.menu-animation-block {
	height: 500px;
	width: 500px;
}

.menu-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.menu-list__item-icon {
	width: 98px;
	height: 98px;
	overflow: hidden;
	border-radius: 50%;
	background: -o-linear-gradient(bottom right, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.8));
	background: -webkit-gradient(linear, right bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(255, 255, 255, 0.8)));
	background: linear-gradient(to top left, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.8));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 15px;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

	.menu-list__item-icon img,
	.menu-list__item-icon svg {
		width: 70%;
		height: 70%;
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}

		.menu-list__item-icon svg path {
			/*fill:#901d78;*/
			-webkit-transition: all 0.4s ease;
			-o-transition: all 0.4s ease;
			transition: all 0.4s ease;
		}

.menu-list__item-text {
	letter-spacing: 0.04em;
	line-height: 21px;
	color: var(--black);
	max-width: 150px;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.menu-list__item:nth-child(1) {
	top: -40px;
	right: -40%;
}

.menu-list__item:nth-child(2) {
	top: 15%;
	right: -60%;
}

.menu-list__item:nth-child(3) {
	top: 40%;
	right: -70%;
}

.menu-list__item:nth-child(4) {
	top: 65%;
	right: -70%;
}

.menu-list__item:nth-child(5) {
	top: 90%;
	right: -60%;
}

.menu-list__item:nth-child(6) {
	top: calc(100% + 60px);
	right: -40%;
}

.menu-list__item:nth-child(7) {
	top: calc(100% + 80px);
	right: 18%;
}


.menu-list__item:hover .menu-list__item-icon {
	/*background: -o-linear-gradient(bottom right, #901d78, #480f3c);
    background: -webkit-gradient(linear, right bottom, left top, from(#901d78), to(#480f3c));
    background: linear-gradient(to top left, #901d78, #480f3c);*/
	transform: scale(1.1)
}

.menu-list__item:hover svg {
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

	.menu-list__item:hover svg path {
		/*stroke: #fff;*/
	}

.menu-list__item:hover .menu-list__item-text {
	color: var(--primary-color);
}

.gallery-section {
	padding: 115px 0;
	min-height: 100vh;
}

.gallery__item:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: first;
}

.gallery__item:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: second;
}

.gallery__item:nth-child(3) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 3;
	grid-area: third;
}

.gallery__item:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
	-ms-grid-column-span: 3;
	grid-area: fourth;
}

.gallery__item:nth-child(5) {
	-ms-grid-row: 3;
	-ms-grid-column: 5;
	grid-area: fifth;
}

.gallery__item:nth-child(6) {
	-ms-grid-row: 3;
	-ms-grid-column: 7;
	grid-area: sixth;
}

.gallery {
	max-width: calc(100% - 55px);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 25% 15px 25% 15px 25% 15px 25%;
	grid-template-columns: 25% 25% 25% 25%;
	-ms-grid-rows: 300px 15px 300px;
	grid-template-rows: 300px 300px;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	row-gap: 15px;
	grid-template-areas: "first second fourth fourth" "third third fifth sixth";
}

.gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gallery__item {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

	.gallery__item:last-child:after {
		content: attr(data-restCount);
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		color: #fff;
		background-color: rgba(0, 0, 0, 0.7);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		font-size: 48px;
		line-height: 60px;
	}

.footer-wrapper {
	padding: 0px 0 0px;
	justify-content: center;
}

.footer-info {
	width: 275px;
	margin-right: 25px;
}

.footer-info__title {
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 40px;
}

.footer-info-block__title {
	margin-bottom: 20px;
	font-size: 14px;
}

.footer-info-block-link {
	display: block;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 17px;
	color: var(--light-gray);
}

.footer-map {
	width: calc(100% - 300px);
	height: 263px;
	background-color: var(--light-gray);
	max-width: 900px;
}

	.footer-map iframe {
		width: 100%;
		height: 100%;
	}

.footer-copy {
	padding: 35px 0;
	font-size: 14px;
	line-height: 17px;
	color: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-section {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #f0eeef;
	z-index: 9;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

	.service-section.opened {
		opacity: 1;
		visibility: visible;
	}

.service-overlay {
	width: 100%;
	position: relative;
	min-height: 100%;
}

.page-close-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 260px;
	height: 260px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 99999;
}

.page-close-circle {
	border: 1px solid #901d78;
	border-radius: 50%;
	width: calc(100% * 2);
	height: calc(100% * 2);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.page-close-text {
	font-size: 20px;
	letter-spacing: -0.014em;
	line-height: 24px;
	color: #901d78;
	max-width: 130px;
	margin-left: 50px;
	text-align: left;
}

.service-section__title {
	font-size: 45px;
	line-height: 56px;
	letter-spacing: -0.017em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-transform: rotateX(180deg) rotateY(180deg);
	transform: rotateX(180deg) rotateY(180deg);
	text-align: left;
	height: 100%;
	padding-top: 77px;
	text-transform: uppercase;
	width: 239px;
}

	.service-section__title span {
		max-height: 425px;
		display: block;
	}

.service-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(100% - 239px);
}

.service-list__item {
	width: 25%;
	position: relative;
	-webkit-backface-visibility: hidden;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
}

	.service-list__item:last-child {
		border: none;
	}

	.service-list__item:first-child {
		border-left: 1px solid rgba(0, 0, 0, 0.2);
	}

.flip-box {
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}

.flip-box-back,
.flip-box-front {
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	height: 100vh;
	min-height: 950px;
	-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-box-front {
	-ms-transform: rotateY(0);
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	background-color: #f0eeef;
}

.flip-box:hover .flip-box-front {
	-ms-transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-ms-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	background: -o-radial-gradient(#901d78, #480f3c);
	background: radial-gradient(#901d78, #480f3c);
	background-size: 200%;
	background-position: center;
}

.flip-box:hover .flip-box-back {
	-ms-transform: rotateY(0);
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box .inner {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 100px 30px 78px;
	outline: 1px solid transparent;
	-webkit-perspective: inherit;
	perspective: inherit;
	z-index: 2;
	transform: translateZ(60px) scale(0.94);
	-webkit-transform: translateZ(60px) scale(0.94);
	-ms-transform: translateZ(60px) scale(0.94);
	top: 0;
}

.service-list__item-count {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 22px;
	margin-bottom: 138px;
}

.flip-box-front .service-list__item-count {
	color: rgba(0, 0, 0, 0.5);
}

.service-list__item-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 75px;
}

	.service-list__item-icon img,
	.service-list__item-icon svg {
		width: 91px;
	}

.service-list__item-title {
	font-size: 22px;
	line-height: 27px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	max-width: 90%;
	margin-bottom: 52px;
}

.service-list__item-text {
	font-family: OpenSans-Light, sans-serif;
	line-height: 22px;
	letter-spacing: 0.04em;
}

.flip-box-front .service-list__item-text {
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 180px;
}

.flip-box-back .service-list__item-count,
.flip-box-back .service-list__item-text {
	color: rgba(255, 255, 255, 0.5);
}

.flip-box-back .service-list__item-icon svg path {
	fill: #fff;
}

.flip-box-back .service-list__item-title {
	color: #fff;
}

.service-list__item-arrow {
	width: 50px;
	position: absolute;
	bottom: 100px;
	left: 30px;
	opacity: 0.5;
}

.vertical-list {
	width: calc(100% - 239px);
	padding: 105px 0 78px;
}

.vertical-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: rgba(0, 0, 0, 0.5);
	padding: 26px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
	min-height: 146px;
}

.vertical-list__item-icon,
.vertical-list__item-text,
.vertival-list__item-count {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.vertical-list__item-icon,
.vertival-list__item-count {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.vertival-list__item-count {
	width: 10%;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.04em;
}

.vertical-list__item-icon {
	width: 30%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

	.vertical-list__item-icon img,
	.vertical-list__item-icon svg {
		width: 91px;
	}

		.vertical-list__item-icon svg path {
			fill: rgba(0, 0, 0, 0.5);
			-webkit-transition: fill 0.4s ease;
			-o-transition: fill 0.4s ease;
			transition: fill 0.4s ease;
		}

.vertical-list__item-text {
	display: inline-block !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 55%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 22px;
	line-height: 25px;
	text-align: left;
}

.vertical-list__item::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	opacity: 0;
	background: -o-linear-gradient(#901d78, #480f3c);
	background: -webkit-gradient(linear, left top, left bottom, from(#901d78), to(#480f3c));
	background: linear-gradient(#901d78, #480f3c);
}

.vertical-list__item:hover::after {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.vertical-list__item:hover .vertical-list__item-text,
.vertical-list__item:hover .vertival-list__item-count {
	color: rgba(255, 255, 255, 0.5);
}

.vertical-list__item:hover .vertical-list__item-icon svg path {
	fill: rgba(255, 255, 255, 0.5);
}

.vartical-list__item-title {
	width: 100%;
	margin-bottom: 29px;
	color: #000;
	text-transform: uppercase;
	font-size: 22px;
	line-height: 27px;
	-webkit-transition: color 0.4s ease;
	-o-transition: color 0.4s ease;
	transition: color 0.4s ease;
}

.vertical-list__item:hover .vartical-list__item-title {
	color: #fff;
}

.google-review-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
	margin-bottom: 25px;
}

.google-review {
	animation: pulse 7s infinite;
	box-shadow: none !important;
	display: flex !important;
	justify-content: center;
}


.enEynK {
	backdrop-filter: none !important;
	background-color: transparent !important;
}

.hhrtTp {
	display: none !important;
}

.hJMNZi {
	position: absolute !important;
	right: -50px !important;
}

.biZnhu {
	transform: translate(-108px, -50%) !important;
}

.eapps-widget-toolbar {
	opacity: 0 !important;
}



/*@keyframes pulse {
    0% {
        transform: scale(0.90);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.90);
    }
}*/

.reviews-google {
	width: 100px;
	height: 100px;
}

	.reviews-google img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.review-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 76px 0 100px;
}

/*.review-offer {
    width: calc(100% - 576px);
    padding: 0 120px 0 90px;
}*/

.review-offer__title {
	font-size: 50px;
	line-height: 62px;
	text-transform: uppercase;
	color: #000;
	max-width: 416px;
	margin-bottom: 35px;
}

.review-offer__text {
	font-family: OpenSans-Light, sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.5);
	max-width: 416px;
	margin-bottom: 35px;
}

.review-offer-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	align-items: center;
}

	.review-offer-btns .offer-btn {
		margin-bottom: 20px;
	}

.reviews-list {
	width: 576px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.reviews-list__item {
	max-width: 430px;
	padding: 45px 40px;
	background-color: #fff;
	width: 100%;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
	margin: 8px 0;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.reviews-list__item-content {
	width: calc(100% - 160px);
	margin-right: 39px;
}

.reviews-list__item-img {
	width: 121px;
	height: 121px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}

	.reviews-list__item-img img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
	}

.reviews-list__item-quote {
	margin-bottom: 18px;
}

.reviews-list__item-text {
	font-family: OpenSans-Light, sans-serif;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 10px;
}

.reviews-list__item-author {
	font-weight: 700;
	color: #901d78;
	line-height: 20px;
}

.slider-arr {
	position: absolute;
	bottom: -30px;
}

	.slider-arr.slick-disabled {
		opacity: 0.5;
	}

.slider-next {
	right: 0;
}

.slider-prev {
	left: 0;
}

.call-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999999999;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	opacity: 0;
	visibility: hidden;
}

	.call-modal-overlay.open {
		opacity: 1;
		visibility: visible;
	}

.call-modal-wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0.3);
	-ms-transform: translate(-50%, -50%) scale(0.3);
	transform: translate(-50%, -50%) scale(0.3);
	width: 80vw;
	max-height: 95vh;
	background-color: #f0eeef;
	z-index: 99999999999;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

	.call-modal-wrapper.open {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}

.call-modal {
	padding: 150px 0 100px;
	width: 100%;
	height: 100%;
	position: relative;
}

.call-modal-close {
	position: absolute;
	top: 36px;
	right: 36px;
}

.call-modal-content {
	width: 80%;
	margin: 0 auto;
}

.call-modal-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 50px;
	line-height: 62px;
	position: relative;
	margin-bottom: 100px;
}

.modal-quotes {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.form-wrapper {
	display: -ms-grid;
	display: grid;
	gap: 20px;
	margin-bottom: 30px;
	grid-template-areas: "name company" "email comment" "phone comment";
}

.name {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: name;
}

.email {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	grid-area: email;
}

.phone {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
	grid-area: phone;
}

.company {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: company;
}

.comment {
	-ms-grid-row: 3;
	-ms-grid-row-span: 3;
	-ms-grid-column: 3;
	grid-area: comment;
}

.form-input-wrapper {
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid #000;
}

	.form-input-wrapper legend {
		margin-left: 20px;
		padding: 0 10px;
		font-size: 14px;
		line-height: 19px;
		font-family: OpenSans-Light, sans-serif;
		color: #000;
	}

	.form-input-wrapper input,
	.form-input-wrapper textarea {
		width: 100%;
		height: 100%;
		border: none;
		background: 0 0;
		padding: 10px 15px;
	}

	.form-input-wrapper textarea {
		resize: none;
	}

.modal-btn {
	margin: 0 auto;
	display: block;
}

.service-list .slick-list {
	width: 100% !important;
	overflow: visible;
}

.service-overlay {
	overflow: hidden;
}

.error-section {
	padding: 100px 0;
}

.error-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.error-svg {
	max-width: 100%;
	margin-bottom: 61px;
}

.error-wrapper .btn {
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.thanks-text {
	text-align: center;
	letter-spacing: 0.04em;
	line-height: 19px;
}

.modal-loading {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255, 0.8);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

	.modal-loading.open {
		opacity: 1;
		visibility: visible;
	}

.dot-carousel {
	background-color: var(--primary-color);
	color: var(--primary-color);
	box-shadow: 9984px 0 0 0 var(--primary-color), 9999px 0 0 0 var(--primary-color), 10014px 0 0 0 var(--primary-color);
}

.outsourcing-benefits {
	padding: 200px 0 150px;
}

.outsourcing-benefits-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.outsourcing-benefits-list__item {
	width: 33.33333333%;
	display: flex;
	justify-content: center;
	margin-bottom: 79px;
}

	.outsourcing-benefits-list__item:nth-child(4) {
		justify-content: flex-end;
	}

	.outsourcing-benefits-list__item:nth-child(5) {
		justify-content: flex-start;
	}

.outsourcing-benefits-list__item-circle {
	width: 228px;
	max-width: 85%;
	position: relative;
	border: 1px solid #707070;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.outsourcing-benefits-list__item-circle-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 90%;
}

.outsourcing-benefits-list__item-circle::before {
	content: '';
	display: block;
	padding-top: 100%;
}

.outsourcing-benefits-list__item-count {
	font-size: 50px;
	line-height: 1.345em;
	text-align: center;
	margin-bottom: 8px;
	transition: all 0.4s ease;
}

.outsourcing-benefits-list__item-title {
	text-align: center;
	font-size: 15px;
	line-height: 1.333em;
	letter-spacing: 0.04em;
	transition: all 0.4s ease;
}

.outsourcing-benefits__title {
	text-transform: uppercase;
	font-size: 45px;
	line-height: 60px;
	margin-bottom: 100px;
	color: #000;
	text-align: center;
}

.outsourcing-benefits-list__item-circle:hover {
	background-color: #901D78;
	border-color: #901D78;
}

	.outsourcing-benefits-list__item-circle:hover .outsourcing-benefits-list__item-count,
	.outsourcing-benefits-list__item-circle:hover .outsourcing-benefits-list__item-title {
		color: #fff;
	}

/*-------------*/

.logo-animation {
	width: 500px;
	height: 500px;
	position: relative;
	z-index: 1;
}

	.logo-animation::before {
		position: absolute;
		content: '';
		top: -13px;
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
		height: 100%;
		opacity: 0;
		z-index: -1;
		background-image: linear-gradient(260deg, var(--primary-color), #a53692);
		animation: border-transform 10s linear infinite alternate forwards;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear;
	}

	.logo-animation::after {
		position: absolute;
		content: '';
		top: -13px;
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
		height: 100%;
		opacity: 1;
		z-index: -1;
		background-image: linear-gradient(160deg, var(--primary-color), #a53692);
		animation: border-transform 10s linear infinite alternate forwards;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear;
	}

	.logo-animation svg {
		max-width: 80%;
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 9999;
		height: 100%
	}

		.logo-animation svg path,
		.logo-animation svg rect {
			fill: #fff;
		}

.menu-animation-block {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-mobile-menu {
	display: none;
}

@-webkit-keyframes border-transform {
	0%,100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}

	14% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}

	28% {
		border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
	}

	42% {
		border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
	}

	56% {
		border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
	}

	70% {
		border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
	}

	84% {
		border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
	}
}

@keyframes border-transform {
	0%,100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}

	14% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}

	28% {
		border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
	}

	42% {
		border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
	}

	56% {
		border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
	}

	70% {
		border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
	}

	84% {
		border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
	}
}



/* Page transitions */


.content {
	width: 100%;
	height: 100vh;
	position: relative;
}

.content--intro {
	z-index: 999999999999;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}

.content__inner {
	width: 100%;
	height: 100vh;
	position: relative;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content--intro .content__inner {
	background: var(--color-content);
}

.content h2 {
	margin: 0;
}

.shape-wrap {
	position: relative;
	z-index: 10;
	margin: -5px 0 0 0; /* Hide the gap */
}

.shape {
	height: 100vh;
	width: 100%;
	display: block;
	fill: var(--color-content);
}

.content__title {
	font: var(--font-alt);
	color: var(--color-title);
	margin: 0;
	line-height: 1;
}

.content__title--filled {
	background: var(--color-content);
	padding: 0.25em 0.5em;
}

.content__title span {
	display: inline-block;
}

.content__subtitle {
	font: var(--font-alt);
	font-size: 1.5em;
	color: var(--color-subtitle);
	padding: 0.5em 0 0 0;
	margin: 0;
}

.enter, .explore {
	margin: 6vh 0 0 0;
	font-size: 1em;
	letter-spacing: 3px;
	cursor: pointer;
	font-weight: bold;
	white-space: pre;
	color: var(--color-enter);
	pointer-events: auto;
}

	.enter:hover,
	.enter:focus {
		color: var(--color-enter);
	}

	.enter span {
		display: inline-block;
	}

.explore {
	background: var(--color-subtitle);
	color: var(--color-title);
	padding: 0.5em 1em;
}

	.explore:hover,
	.explore:focus {
		background: var(--color-text);
	}

.menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}



.content__text {
	font-size: 1.85em;
	max-width: 800px;
	text-align: left;
}

	.content__text a {
		color: var(--color-menu-item);
	}

		.content__text a:hover,
		.content__text a:focus {
			color: var(--color-menu-item-hover);
		}

.fillin {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

	.fillin a {
		display: block;
		width: 100px;
		margin-top: 10px;
	}

.benefits-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.benefits-list__item {
	width: 20%;
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.benefits-list__item-img {
	max-width: 150px;
	margin-bottom: 20px;
	max-height: 150px;
	object-fit: contain;
	object-position: center;
}

#consMsg::placeholder {
	text-shadow: 0px 0px 10px rgba(221,160,221,1);
}
