/*!
Theme Name: Mak Mel
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mak-mel
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Mak Mel is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


:root {
	--container: 1140px;
	--container-full: calc(100% - var(--gap) * 2);
	--header-height: 76px;
	--admin-bar: 32px;
	--gap: 20px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-esm: 13px;
	--h1-size: 38px;
	--h2-size: 30px;
	--h3-size: 24px;
	--h4-size: 22px;
	--h5-size: 20px;
	--h6-size: 18px;

	--black: #0A0A0A;
	--black-2: #221826;
	--pink: #F61881;
	--white: #FFFFFF;
	--grey: #6B5F70;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Exo 2', sans-serif;
	line-height: 1.35;
	color: var(--white);;
	background: var(--black);
}
a {
	color: var(--white);;
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--pink);;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	margin: calc(var(--gap) * 1.5) 0 var(--gap);
	line-height: 1;
	font-variant: lining-nums;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 var(--gap);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) * -1);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2 / 2);
	margin-bottom: var(--gap);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-38 {
	flex: 0 0 38%;
	max-width: 38%;
}
.form-field-24 {
	flex: 0 0 24%;
	max-width: 24%;
}
::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .6);
}
::-moz-placeholder {
	color: rgba(255, 255, 255, .6);
}
:-ms-input-placeholder {
	color: rgba(255, 255, 255, .6);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
    font-family: 'Exo 2', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: rgba(155, 155, 155, .56);
	border: none;
	color: var(--white);;
	-moz-border-radius: calc(var(--gap) / 2);
	-webkit-border-radius: calc(var(--gap) / 2);
	border-radius: calc(var(--gap) / 2);
	padding: calc(var(--gap) / 2) var(--gap);
	height: 60px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 90px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button .btn {
	width: 100%;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: 12px;
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: calc(var(--gap) / 2) var(--gap);
	font-size: var(--text-size-sm);
}
.form-field-policy {
	font-size: var(--text-size-sm);
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-full {
	width: 100%;
	max-width: var(--container-full);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 4);
	padding-bottom: calc(var(--gap) * 4);
	z-index: 1;
}
.section-lg {
	position: relative;
	padding-top: calc(var(--gap) * 8);
	padding-bottom: calc(var(--gap) * 8);
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
	z-index: 1;
}
.heading.center {
	text-align: center;
}
.heading .h2 {
	font-size: var(--h1-size);
	text-transform: uppercase;
	color: var(--pink);;
}
.heading.white .h2 {
	color: var(--white);;
}
.heading.white .h2 span {
	color: var(--pink);;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Exo 2', sans-serif;
	font-weight: 400;
	line-height: 1;
	border: 2px solid transparent;
	padding: var(--gap) calc(var(--gap) * 1.5);
	-moz-border-radius: calc(var(--gap) / 2);
	-webkit-border-radius: calc(var(--gap) / 2);
	border-radius: calc(var(--gap) / 2);
	outline: none;
	min-height: 60px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: #F61981;
	border-color: #F61981;
	color: var(--white);;
}
.btn-primary:hover {
	background-color: rgba(81, 70, 75, .82);
	border-color: #F61981;
	color: #F61981;
}
.btn-secondary {
	background-color: var(--white);;
	border-color: #F61981;
	color: #F61981;
}
.btn-secondary:hover {
	background-color: rgba(81, 70, 75, .82);
	border-color: #F61981;
	color: #F61981;
}
.btn-thirdy {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
	color: var(--white);;
}
.btn-thirdy:hover {
	background-color: #333333;
	border-color: #333333;
	color: var(--white);;
}
.btn-outline-thirdy {
	background-color: transparent;
	border-color: #dddddd;
	color: #555;
}
.btn-outline-thirdy:hover {
	background-color: transparent;
	border-color: #999999;
	color: #222222;
}
.btn.btn-link {
	min-height: auto;
	padding: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	font-family: 'Montserrat', sans-serif;
	color: #F61981;
}
.btn.btn-link:hover {
	color: var(--white);;
	text-decoration: underline;
}


button.swiper-navigation {
	position: absolute;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: #F61981;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	z-index: 1;
	transition: .5s;
}
button.swiper-navigation:hover {
	background: var(--black);
}
button.swiper-navigation:disabled {
	background: #F61981;
	opacity: .15;
	cursor: no-drop;
}
button.swiper-navigation.swiper-button-lock {
	display: none;
}
button.swiper-navigation.prev {
	left: calc(var(--gap) * -1);
}
button.swiper-navigation.next {
	right: calc(var(--gap) * -1);
}
button.swiper-navigation:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-down.svg);
    mask-image: url(images/expand-down.svg);
    background-color: var(--white);;
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
button.swiper-navigation.prev:before {
	transform: rotate(90deg);
}
button.swiper-navigation.next:before {
	transform: rotate(-90deg);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}
.soc-links li a:hover {
	background: var(--black);
}
.soc-links li a svg {
	flex: 0 0 25px;
	max-width: 25px;
	height: 25px;
}
.soc-links li a path {
	fill: var(--white);;
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--pink);;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--black);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);;
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: #F61981;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid #333333;
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	font-size: var(--h6-size);
	padding: 10px 0;
	text-decoration: none;
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: #F61981;
}
.mobile-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--white);;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > a:after {
	background-color: #F61981;
}
.mobile-menu li.menu-item-has-children.active > a:after {
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-dialog.modal-md {
	max-width: 640px;
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background: url(images/bg-2.jpg) center no-repeat;
	background-size: cover;
	outline: 0;
	border: 3px solid var(--pink);;
	padding: calc(var(--gap) * 1.5);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
    font-family: 'Exo 2', sans-serif;
	font-size: var(--h3-size);
	font-weight: 400;
	text-align: center;
	color: var(--pink);;
	margin: 0 0 calc(var(--gap) * 1.5);
}
.modal-description {
	font-family: 'Exo 2', sans-serif;
	font-size: var(--h6-size);
	font-weight: 400;
	text-align: center;
	margin: 0 0 calc(var(--gap) * 1.5);
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--white);;
}


/*
.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}*/
.alignleft {
	float: left;
	margin-right: calc(var(--gap) * 2.5);
	margin-bottom: var(--gap);
	max-width: calc(50% - var(--gap) * 2.5);
}
.alignright {
	float: right;
	max-width: calc(50% - var(--gap) * 2.5);
	margin-left: calc(var(--gap) * 2.5);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(50% - var(--gap) * 2.5);
	margin-bottom: var(--gap);
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}



.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	position: sticky;
	top: 0;
	background: var(--black);
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: var(--gap);
}
.header-logo {
	flex: auto;
	max-width: 162px;
}
.header-logo img {
	max-height: calc(var(--header-height) - var(--gap));
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: calc(var(--gap) * 1.333);
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: calc(var(--gap) / 1.667) 0;
	text-decoration: none;
}
.main-menu > li.current-menu-item > a {
	color: var(--pink);
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--white);;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu li.menu-item-has-children > a:hover:after,
.main-menu li.current-menu-item.menu-item-has-children > a:after {
	background-color: var(--pink);;
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	font-size: var(--text-size);
	padding: 0;
	list-style: none;
	background: #F5F5F5;
	width: max-content;
	max-width: 240px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--black);
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.25);
}
.main-menu ul li:hover > a {
	background: #494c4f;
	color: var(--white);;
}
.main-menu ul li.menu-item-has-children > a:after {
	transform: rotate(-90deg);
	background-color: var(--black);
}
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
	background-color: var(--white);;
}
.main-menu ul ul {
	top: 0;
	left: 100%;
}
.header-phone {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.header-phone a {
	font-weight: 600;
	text-decoration: none;
}
.header-phone span {
	color: var(--grey);
	font-size: var(--text-size-esm);
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/menu.svg);
    mask-image: url(images/menu.svg);
    background-color: var(--white);;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    transition: .5s;
}
.header-toggle button:hover {
	color: #494c4f;
}



.main {
	position: relative;
	z-index: 1;
}
.home .main,
.page-template-page-sections .main,
.single-services .main {
	margin-top: calc(var(--header-height) * -1);
}
.page-template-page-sections .main > *:first-child,
.single-services .main > *:first-child {
	padding-top: calc(var(--gap) * 8) !important;
}



.footer-main {
	position: relative;
	background: #1D1D1D;
	padding-top: calc(var(--gap) * 4);
	padding-bottom: calc(var(--gap) * 4);
	z-index: 1;
}

.legalDocuments-carousel {
	position: relative;
}
.legalDocuments-item__wrap {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.legalDocuments-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 3) / 4 / .8);
	height: calc((var(--container) - var(--gap) * 3) / 4 / .8);
	display: flex;
	align-items: center;
	justify-content: center;
}
.legalDocuments-item__image img {
	max-height: calc((var(--container) - var(--gap) * 3) / 4 / .8);
}
.legalDocuments-item__title {
	font-size: var(--h6-size);
	text-align: center;
}
.footer-wrap {
	position: relative;
	margin-top: calc(var(--gap) * 4);
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.footer-wrap:first-child {
	margin-top: 0;
}
.footer-info,
.footer-payment {
	flex: 0 0 calc(25% - var(--gap));
	max-width: calc(25% - var(--gap));
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: calc(var(--gap) / 2);
}
.footer-company {
	flex: 0 0 50%;
	max-width: 50%;
}
.footer-logo img {
	max-width: 180px;
	max-height: 40px;
}
.footer-phone {
	max-width: 180px;
	text-align: center;
	font-size: var(--h6-size);
	font-weight: 500;
}
.footer-phone a {
	display: inline-flex;
	padding: calc(var(--gap) / 1.667) 0;
	text-decoration: none;
}
.footer-payment-items {
	display: flex;
	gap: var(--gap);
	align-items: center;
	justify-content: center;
}
.footer-payment-item img {
	max-height: 48px;
}
.footer-company {
	line-height: 1.125;
}
.footer-company h3 {
    font-family: 'Exo 2', sans-serif;
	font-size: var(--h3-size);
	font-weight: 600;
}
.footer-company a {
	color: var(--pink);;
	text-decoration: none;
}
.footer-company a:hover {
	color: var(--white);;
}


.footer-bottom {
	position: relative;
	padding: calc(var(--gap) / 2) 0;
	z-index: 1;
}
.footer-bottom-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.copyright {
	font-family: 'Montserrat', sans-serif;
	font-size: calc(var(--text-size-sm) / 1.1667);
	margin: 0;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: calc(var(--text-size-sm) / 1.1667);
	font-family: 'Montserrat', sans-serif;
}
.footer-menu li {
	position: relative;
	z-index: 1;
}
.footer-menu li:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: rgba(255, 255, 255, .6);
	left: 0;
	bottom: 0;
	transition: .5s;
	z-index: -1;
}
.footer-menu li:hover:after,
.footer-menu li.current-menu-item:after {
	width: 100%;
}
.footer-menu li a {
	display: inline-block;
	padding: calc(var(--gap) / 2.5) calc(var(--gap) / 1.667);
	text-decoration: none;
}
.footer-menu ul {
	display: none;
}





.page-header {
	position: relative;	
	padding: calc(var(--gap) * 3) 0 calc(var(--gap) * 2);
}
.page-title {
	text-transform: uppercase;
}
.page-content {

}
.page-content ul,
.page-content ol {
	padding-left: var(--gap);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	font-weight: 400;
	font-family: 'Exo 2', sans-serif;
}



.reviewsGrid-items {
	margin: 0 0 calc(var(--gap) * -1);
	column-count: 4;
	column-gap: var(--gap);
}
.reviewsGrid-item {
	margin-bottom: var(--gap);
}


.singleBlog-wrap {
	overflow: hidden;
}
.singleBlog-title {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
	text-transform: inherit;
	font-size: var(--h2-size);
}
.singleBlog-image {
	float: left;
	margin-right: calc(var(--gap) * 2.5);
	margin-bottom: var(--gap);
	max-width: calc(50% - var(--gap) * 2.5);
}
.singleBlog-content {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
}



.blog-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
}
.blog-item__wrap {
	text-decoration: none;
	overflow: hidden;
}
.blog-item__image {
	float: left;
	max-width: 150px;
	margin: 0 calc(var(--gap) * 1.5) 0 0;
}
.blog-item__title {
	font-weight: 400;
    font-family: 'Exo 2', sans-serif;
	font-size: var(--h6-size);
	line-height: 1.2;
	margin: 0;
}
.blog-item__excerpt {
	margin-top: 4px;
	color: #8c8c8c;
	font-size: var(--text-size-sm);
}




.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 4);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 44px;
	height: 44px;
	color: var(--white);;
	background: #1D1D1D;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 calc(var(--gap) / 1.667);
	text-decoration: none;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--pink);;
	border-color: var(--pink);;
	color: var(--white);;
}




.relatedBlog-section {
	background: url(images/bg-1.jpg) no-repeat center top;
	background-size: cover;
}
.blogRelated-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.blogRelated-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.blogRelated-item__wrap {
	text-decoration: none;
	display: flex;
	gap: var(--gap);
	align-items: center;
	border-top: 1px solid #f9f9f9;
	padding-top: var(--gap);
}
.blogRelated-item:nth-child(1) .blogRelated-item__wrap,
.blogRelated-item:nth-child(2) .blogRelated-item__wrap {
	border-top: none;
}
.blogRelated-item__image {
	flex: 0 0 80px;
	max-width: 80px;
}
.blogRelated-item__title {
	font-weight: 400;
    font-family: 'Exo 2', sans-serif;
	font-size: var(--text-size);
	line-height: 1.2;
	margin: 0;
}
.blogRelated-item__date {
	color: #999;
	margin-top: 4px;
	font-size: var(--text-size-sm);
}



.feedback-wrap {
	background: rgba(164, 164, 164, .22);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	padding: calc(var(--gap) * 2) calc(var(--gap) * 4);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	overflow: hidden;
}
.feedback-heading {
	color: var(--pink);;
	text-align: center;
	font-size: var(--h2-size);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    margin-bottom: calc(var(--gap) * 1.5);
}




.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	text-align: center;
	line-height: 1;
	color: #333;
}
.error-404-button {
	text-align: center;
}



.hero-section.section {
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: calc(var(--gap) * 6.5);
}
.hero-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 3);
}
.hero-left {
	flex: 0 0 60%;
	max-width: 60%;
}
.hero-info {
	margin-bottom: calc(var(--gap) * 1.5);
	padding-bottom: calc(var(--gap) * 1.5);
	border-bottom: 1px solid var(--black-2);
}
.hero-info {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.25);
}
.hero-subheading {
	font-size: var(--text-size-sm);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 0;
}
.hero-heading {
	margin: 0;
	font-size: calc(var(--h1-size) * 1.65);
}
.hero-description {

}
.hero-bottom {

}
.hero-right {
	flex: 0 0 calc(40% - var(--gap) * 3);
	max-width: calc(40% - var(--gap) * 3);
}
.hero-video {
	aspect-ratio: 9 / 16;
	border: 1px solid var(--black-2);
}


/*.hero-section.section-lg {
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: calc(var(--gap) * 4);
	padding-bottom: calc(var(--gap) * 10);
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg img {
	object-position: bottom center;
}
.hero-info {
	padding: 0 10%;
}
.hero-heading {
	font-size: calc(var(--h1-size) * 3);
	font-weight: 500;
	color: var(--white);;
}
.hero-subheading {
	font-size: var(--h2-size);
	line-height: 1.1;
	max-width: 160px;
}
.heroServices-carousel {
	position: relative;
	margin: 0 var(--gap);
	padding: 0 var(--gap);
	z-index: 1;
}
.heroServices-swiper {
	width: 100%;
}
.heroServices-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pink);;
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	text-decoration: none;
	padding: calc(var(--gap) * 1.25) calc(var(--gap) * 1.75);
	min-height: 90px;
	text-align: center;
	z-index: 1;
}
.heroServices-item__wrap:hover {
	background: var(--black);
	color: var(--white);;
}
.heroServices-item__wrap:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap));
	height: calc(100% - var(--gap));
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.heroServices-item__wrap h4 {
	font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--h6-size);
    text-transform: uppercase;
}*/




.contentBlock-wrap {
	background: rgba(78, 78, 78, .4);
	max-width: 920px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-border-radius: calc(var(--gap) / 2);
	-webkit-border-radius: calc(var(--gap) / 2);
	border-radius: calc(var(--gap) / 2);
	padding: calc(var(--gap) * 2.5);
}
.contentBlock-content {
	line-height: 1.5;
}




.contentBlockImage-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.contentBlockImage-bg img {
	object-position: center bottom;
}
.contentBlockImage-wrap {
	display: flex;
	gap: var(--gap);
}
.contentBlockImage-image,
.contentBlockImage-content {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.contentBlockImage-image.align-right {
	order: 2;
}
.contentBlockImage-image img {
	-moz-border-radius: calc(var(--gap) / 2);
	-webkit-border-radius: calc(var(--gap) / 2);
	border-radius: calc(var(--gap) / 2);
}




.offers-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.offers-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.offers-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: rgba(78, 78, 78, .4);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: calc(var(--gap) * 1.5);
	z-index: 1;
}
.offers-item__title {
	font-size: var(--h4-size);
	color: #F61981;
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    font-weight: 400;
}
.offers-item__description {
	font-size: var(--text-size-sm);
	text-align: center;
	flex: auto;
}
.offers-item__button {
	text-align: center;
}




.steps-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.steps-bg img {
	object-position: center bottom;
}
.steps-description {
	font-size: var(--h4-size);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    margin: 0 0 calc(var(--gap) * 1.5);
}
.steps-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.steps-item {
	display: flex;
	gap: calc(var(--gap) / 1.333);
}
.steps-item__number {
	background-color: #F61981;
    border: 5px solid #FF98C9;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    flex: 0 0 40px;
    max-width: 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h2-size);
    line-height: 1;
    text-align: center;
}
.steps-item__info {
	flex: auto;
}
.steps-item__title {
	margin: 0 0 calc(var(--gap) / 2);
	padding-top: calc(var(--gap) / 2);
}
.steps-item__content {
	font-size: var(--text-size-sm);
	line-height: 1.25;
}
.steps-additional-content {
	margin-top: var(--gap);
	font-size: var(--text-size-sm);
}




.seo-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.seo-bg img {
	object-position: center bottom;
}
.seo-heading {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
	text-transform: inherit;
	font-size: var(--h2-size);
}
.seo-content {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
}



.banner-section {
	overflow: hidden;
}
.banner-wrap {
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) * 2);
}
.banner-left {
	flex: 0 0 calc(37% - var(--gap));
	max-width: calc(37% - var(--gap));
	padding-top: var(--gap);
}
.banner-heading {
	font-size: calc(var(--h1-size) * 1.36);
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.banner-content {
	padding-left: 20%;
	font-size: var(--h5-size);
}
.banner-right {
	position: relative;
	flex: 0 0 calc(63% - var(--gap));
	max-width: calc(63% - var(--gap));
	padding-right: 8%;
	z-index: 1;
}
.banner-image img {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}
.banner-caption {
	position: absolute;
	right: 0;
	bottom: calc(var(--gap) * 2);
	max-width: 390px;
	background: var(--pink);;
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: calc(var(--gap) * 1.8) calc(var(--gap) * 2.2);
	z-index: 1;
}
.banner-caption:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap));
	height: calc(100% - var(--gap));
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}




.advantagesList-section {
	overflow: hidden;
}
.advantagesList-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.advantagesList-bg img {
	object-position: center bottom;
}
.advantagesList-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.advantagesList-left {
	flex: 0 0 calc(40% - var(--gap));
	max-width: calc(40% - var(--gap));
}
.advantagesList-heading {
	font-size: var(--h1-size);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
}
.advantagesList-subheading {
	font-size: var(--h3-size);
	color: #F61981;
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    margin-top: 0;
}
.advantagesList-list {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	padding: 0;
	list-style: none;
}
.advantagesList-list li {
	display: flex;
	gap: calc(var(--gap) / 2);
}
.advantagesList-list li span {
	position: relative;
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 14px;
	margin-top: 2px;
	z-index: 1;
}
.advantagesList-list li span:before {
	content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #F61981;
    position: absolute;
    z-index: 0;
    left: 0px;
    border-radius: 2px;
}
.advantagesList-list li span:after {
	content: '';
	-webkit-mask-size: 24px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/done.svg);
    mask-image: url(images/done.svg);
    background-color: var(--white);;
    position: absolute;
    width: 14px;
    height: 14px;
    right: 0;
    top: 0;
    z-index: 1;
}
.advantagesList-right {
	position: relative;
	flex: 0 0 calc(60% - var(--gap));
	max-width: calc(60% - var(--gap));
	padding-right: 5%;
	z-index: 1;
}
.advantagesList-image img {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}
.advantagesList-caption {
	position: absolute;
	font-size: var(--text-size-sm);
	right: 0;
	bottom: calc(var(--gap) * 2);
	max-width: 350px;
	background: var(--pink);;
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap);
	z-index: 1;
}
.advantagesList-caption:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap) / 2);
	height: calc(100% - var(--gap) / 2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}





.team-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.team-bg img {
	object-position: center bottom;
}
.team-carousel {
	position: relative;
	z-index: 1;
}
.team-item__wrap {
	display: flex;
	flex-direction: column;
}
.team-item__image {
	text-align: center;
	height: 310px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-item__image img {
	max-height: 310px;
}
.team-item__content {
	position: relative;
	font-size: calc(var(--text-size) / 1.0667);
	background: var(--pink);;
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap) calc(var(--gap) / 1.25);
	min-height: 122px;
	margin-top: calc(var(--gap) * -1);
	z-index: 1;
}
.team-item__content:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap) / 2);
	height: calc(100% - var(--gap) / 2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}




.solution-section {
	background: #831549;	
}
.solution-carousel {
	position: relative;
	z-index: 1;
}
.solution-item__wrap {
	text-decoration: none;
}
.solution-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: calc((var(--container) - var(--gap) * 3) / 4 / .81);
	margin-bottom: calc(var(--gap) / 2);
}
.solution-item__image img {
	max-height: calc((var(--container) - var(--gap) * 3) / 4 / .81);
}
.solution-item__title {
	font-size: var(--h5-size);
	text-align: center;
}





.otherServices-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.otherServices-bg img {
	object-position: center bottom;
}
.otherServices-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gap);
}
.otherServices-item {
	flex: 0 0 calc(33% - var(--gap));
	max-width: calc(33% - var(--gap));
}
.otherServices-item__wrap {
	position: relative;
	background: var(--black);
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap) calc(var(--gap) / 1.25);
	height: 100%;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: .5s;
	z-index: 1;
}
.otherServices-item__wrap:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap) / 2);
	height: calc(100% - var(--gap) / 2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.otherServices-item__wrap:hover {
	background: var(--pink);;
}
.otherServices-item__title {
	font-weight: 400;
	font-size: var(--h3-size);
    font-family: 'Exo 2', sans-serif;
    margin: calc(var(--gap) * 2) 0 !important;
}
.otherServices-item__price {
	position: absolute;
	bottom: calc(var(--gap) / 2);
	right: var(--gap);
	font-size: var(--h6-size);
	opacity: .75;
	z-index: 1;
}
.modalOtherService-content,
.modalOtherService-content * {
	font-family: 'Montserrat', sans-serif;
}
.modalOtherService-content h2 {
	font-size: var(--h6-size);
	font-weight: 400;
	line-height: 1.5;
}
.modalOtherService-content h2 strong {
	font-weight: 600;
}
.modalOtherService-form {
	margin-top: calc(var(--gap) * 1.5);
}
.modalOtherService-form-heading {
    font-family: 'Exo 2', sans-serif;
	font-size: var(--h3-size);
	font-weight: 400;
	color: var(--pink);;
	text-align: center;
}
.modalOtherService-form iframe,
.modal-form iframe {
	height: auto !important;
}
.modal-form .form-field,
.modalOtherService-form .form-field {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}



.contract-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.contract-bg img {
	object-position: center bottom;
}
.contract-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.contract-left,
.contract-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.contract-left {
	padding-top: calc(var(--gap) * 3);
}
.contract-heading {
	margin-bottom: var(--gap);
	display: flex;
	align-items: flex-end;
	gap: var(--gap);
}
.contract-heading h1 {
	margin: 0;
	font-size: calc(var(--h1-size) * 1.36);
	text-transform: uppercase;
}
.contract-heading p {
	font-size: var(--h5-size);
	line-height: 1.1;
}
.contract-content {
	position: relative;
	border: 2px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 2);
	-webkit-border-radius: calc(var(--gap) / 2);
	border-radius: calc(var(--gap) / 2);
	padding: var(--gap) var(--gap) 0;
	z-index: 1;
}
.contract-content h2 {
	font-size: var(--h6-size);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
}
.contract-logo {
	position: absolute;
    max-width: 192px;
    right: -80px;
    bottom: -120px;
}
.contract-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--gap);
	margin-top: calc(var(--gap) * -1.5);
}



.ha-dual-btn {
	display: flex;
}
.ha-dual-btn-wrapper {
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: center;
}
.ha-dual-btn-wrapper a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.3rem 2.3rem;
	font-size: var(--text-size);
	line-height: 1.1;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
}
.ha-dual-btn-wrapper a.ha-dual-btn--left {
	background: #562dd4;
	color: var(--white);;
	-moz-border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	border-radius: 50px 0 0 50px;
}
.ha-dual-btn-wrapper a.ha-dual-btn--left:hover {
	background: #4423ab;
	color: var(--white);;
}
.ha-dual-btn-wrapper a.ha-dual-btn--right {
	background: #e2498a;
	color: var(--white);;
	-moz-border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	border-radius: 0 50px 50px 0;
}
.ha-dual-btn-wrapper a.ha-dual-btn--right:hover {
	background: #d6226e;
	color: var(--white);;
}
.ha-dual-btn-connector {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);
    color: #27374c;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%,-50%);
    transform: translate(50%, -50%);
}




/*.heroService-section {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.heroService-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.heroService-bg img {
	object-position: center bottom;
}
.heroService-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) * 2);
	padding: 0 6% 0 10%;
}
.heroService-left {
	flex: 0 0 calc(58% - var(--gap));
	max-width: calc(58% - var(--gap));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.heroService-right {
	flex: 0 0 calc(42% - var(--gap));
	max-width: calc(42% - var(--gap));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.heroService-heading {
	font-size: calc(var(--h1-size) * 1.36);
	line-height: 1;
	margin-bottom: calc(var(--gap) * 1.75);
	text-transform: uppercase;
}
.heroService-description {
	position: relative;
	background: var(--white);;
	width: max-content;
	max-width: 420px;
	font-size: var(--h5-size);
	line-height: 1.2;
	color: #F61981;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: calc(var(--gap) * 1.25);
	margin-bottom: calc(var(--gap) * 1.5);
	z-index: 1;
}
.heroService-description:before {
	content: '';
	position: absolute;
	border: 1px solid #F61981;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap) / 2);
	height: calc(100% - var(--gap) / 2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.heroService-form {
	margin-bottom: calc(var(--gap) * 1.5);
	max-width: 860px;
}
.heroService-contacts {
	position: relative;
	background: var(--white);;
	width: max-content;
	max-width: 360px;
	line-height: 1.2;
	color: #F61981;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: calc(var(--gap) * 1.25);
	margin-bottom: calc(var(--gap) * 1.75);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
	text-align: left;
	z-index: 1;
}
.heroService-contacts:before {
	content: '';
	position: absolute;
	border: 1px solid #F61981;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap) / 2);
	height: calc(100% - var(--gap) / 2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.heroService-contacts p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.heroService-contacts p svg {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
}*/





.counters-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.counters-bg img {
	object-position: center bottom;
}
.counters-bg:after {
	content: '';
	background: #F61981;
	opacity: .55;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.counters-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.counters-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.counters-item__title {
	font-size: calc(var(--h3-size) * 1.1);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    margin-bottom: calc(var(--gap) * 2);
}
.counters-item__value {
	font-size: var(--text-size);
}
.counters-item__value span {
	font-size: calc(var(--h1-size) * 1.36);
	font-weight: 600;
}





.imageBanner-section {
	background: #131313;
}
.imageBanner-wrap {
	position: relative;
	-moz-border-radius: calc(var(--gap) * 1.25);
	-webkit-border-radius: calc(var(--gap) * 1.25);
	border-radius: calc(var(--gap) * 1.25);
	padding: calc(var(--gap) * 5);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 580px;
	z-index: 1;
}
.imageBanner-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.imageBanner-image:after {
	content: '';
	background: #000000;
	opacity: .55;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.imageBanner-description {
	margin: 0;
	text-align: center;
	font-size: var(--h1-size);
	line-height: 1.2;
}





.steps2-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.steps2-bg img {
	object-position: center bottom;
}
.steps2-bg:after {
	content: '';
	background: #F61981;
	opacity: .55;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.steps2-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.steps2-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.steps2-item__number {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #F61981;
	border: 5px solid #FF98C9;
	font-size: calc(var(--h1-size) * 1.2);
}
.steps2-item__title {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--h3-size);
    font-weight: 400;
    margin: 0 0 calc(var(--gap) / 2);
}
.steps2-item__content {
	font-size: var(--text-size-sm);
}





.reviews-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-bg img {
	object-position: center bottom;
}
.reviews-bg:after {
	content: '';
	background: #F61981;
	opacity: .55;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.reviews-carousel {
	position: relative;
	z-index: 1;
}
.reviews-button {
	text-align: center;
	margin-top: calc(var(--gap) * 2);
}




.instagramBlock-section {
	background: #1D1D1D;
}
.instagramBlock-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.instagramBlock-left,
.instagramBlock-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.instagramBlock-image img {
	max-height: 70px;
}
.instagramBlock-description {
	font-size: var(--h6-size);
	margin-bottom: 0;	
}
.instagramBlock-video {
	position: relative;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
	z-index: 1;
}
.instagramBlock-video a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play.svg);
	mask-image: url(images/play.svg);
	background-color: var(--white);;
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: .75;
	transition: .5s;
	z-index: 2;
}
.instagramBlock-video a:hover:before {
	opacity: .9;
}





.faq-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.faq-bg img {
	object-position: center bottom;
}
.faq-bg:after {
	content: '';
	background: #F61981;
	opacity: .55;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.faq-items {
	position: relative;
	z-index: 1;
}
.faq-item {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--h5-size);
	padding: var(--gap) 0;
	line-height: 1.2;
	font-weight: 400;
	cursor: pointer;
	transition: .5s;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-left: 20px;
	background: var(--green);
	transition: .25s;
}
.active .faq-item__toggle {
	background: var(--white);
}
.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-up.svg);
    mask-image: url(images/arrow-up.svg);
    background-color: var(--white);;
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
    transition: .25s;
}
.active .faq-item__toggle:before {
	transform: rotate(0deg);
}
.faq-item__body {
	font-family: 'Montserrat', sans-serif;
	padding-bottom: var(--gap);
}





.fixedChats {
	position: fixed;
	right: var(--gap);
	bottom: calc(var(--gap) * 2);
	z-index: 49;
}
.fixedChats-list {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	right: 0;
	display: flex;
	gap: 10px;
	transition: .5s;
	z-index: -1;
}
.fixedChats.active .fixedChats-list {
	opacity: 1;
	visibility: inherit;
	right: 80px;
	z-index: 1;
}
.fixedChats-list > div {
	position: relative;
	z-index: 1;
}
.fixedChats-list .mobile {
	display: none;
}
@media (max-width: 991px) {
	.fixedChats-list .mobile {
		display: block;
	}
	.fixedChats-list .desktop {
		display: none;
	}
}
.fixedChats-list svg {
	width: 70px;
	height: 70px;
}
.fixedChats-button {
	position: relative;
	width: 70px;
	height: 70px;
	z-index: 1;
}
.fixedChats-button .getOpen,
.fixedChats-button .getClose {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.fixedChats-button .getClose {
	opacity: 0;
	z-index: -1;
}
.fixedChats-button .getOpen {
	opacity: 1;
	z-index: 1;
}
.fixedChats.active .fixedChats-button .getOpen {
	opacity: 0;
	z-index: -1;
}
.fixedChats.active .fixedChats-button .getClose {
	opacity: 1;
	z-index: 1;
}
.fixedChats-button button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .3s;
	z-index: 1;
}
.fixedChats.active .fixedChats-button .getOpen button {
	transform: rotate(360deg);
}
.fixedChats.active .fixedChats-button .getClose button {
	transform: rotate(360deg);
}
.fixedChats .on-text {
	pointer-events: none;
	background: var(--white);;
	color: var(--black);
	text-align: center;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px;
	box-shadow: 0 1.93465px 7.73859px rgba(0, 0, 0, .15);
	font-size: var(--text-size);
	font-family: 'Montserrat', sans-serif;
	line-height: 1.25;
	border-radius: 10px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: .5s;
}
.fixedChats .getOpen .on-text {
	opacity: 1;
}
.fixedChats.active .getOpen .on-text {
	opacity: 0;
}
.fixedChats.active .getClose:hover .on-hover-text,
.fixedChats-list > div:hover .on-hover-text {
	opacity: 1;
}
.fixedChats .on-text:before {
	content: '';
	position: absolute;
}
.fixedChats .on-text.left {
	top: calc(50% - 15px);
	right: calc(100% + 10px);
	left: auto;
	transform: none;
}
.fixedChats .on-text.left:before {
	top: 50%;
	right: -4px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid var(--white);;
	transform: translateY(-50%);
}
.fixedChats .on-text.top {
	bottom: calc(100% + 10px);
}
.fixedChats .on-text.top:before {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--white);;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
}




.relatedServices-section {
	background: #1D1D1D;
}
.relatedServices-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2);
}
.relatedServices-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pink);;
	color: var(--white);;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	text-decoration: none;
	padding: calc(var(--gap) * 1.25) calc(var(--gap) * 1.75);
	height: 100%;
	min-height: 90px;
	text-align: center;
	z-index: 1;
}
.relatedServices-item__wrap:hover {
	background: var(--black);
	color: var(--white);;
}
.relatedServices-item__wrap:before {
	content: '';
	position: absolute;
	border: 1px solid var(--white);;
	-moz-border-radius: calc(var(--gap) / 1.2);
	-webkit-border-radius: calc(var(--gap) / 1.2);
	border-radius: calc(var(--gap) / 1.2);
	width: calc(100% - var(--gap));
	height: calc(100% - var(--gap));
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.relatedServices-item__wrap h4 {
	font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--h6-size);
    text-transform: uppercase;
}





.modalPopupClosed_1-body {
	background: #111111;
	border: none;
	font-family: 'Montserrat', sans-serif;
}
.modalPopupClosed_1-label {
	margin-bottom: 12px;
}
.modalPopupClosed_1-label span {
	display: inline-block;
    background: #c0005a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.modalPopupClosed_1-heading {
	font-size: 13px;
	color: #999;
	line-height: 1.5;
	margin-bottom: 24px;
}
.modalPopupClosed_1-heading h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #f0f0f0;
	line-height: 1.2;
	margin-bottom: 0.4rem;
}
.modalPopupClosed_1-content {
	margin-bottom: 16px;
	font-size: 13px;
    color: #ccc;
    line-height: 1.4;
}
.modalPopupClosed_1-content ul {
	padding: 0;
	list-style: none;
}
.modalPopupClosed_1-content ul li {
    padding: 4px 0 4px 1.3rem;
    position: relative;
}
.modalPopupClosed_1-content ul li:before {
	content: "✓";
	color: #e0507a;
	position: absolute;
	left: 0;
	font-weight: 700;
}
.modalPopupClosed_1-button {
	margin-bottom: 12px;
}
.modalPopupClosed_1-button a {
	width: 100%;
}
.modalPopupClosed_1-close {
	text-align: center;
}
.modalPopupClosed_1-close span {
	display: inlin-block;
    text-align: center;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    transition: color 0.15s;
}
.modalPopupClosed_1-close span:hover {
	color: #888;
}





.modalPopupClosed_2-body {
	background: var(--white);;
	color: #444444;
	border: 1px solid #e8e8e8;
	font-family: 'Montserrat', sans-serif;
	padding: 0;
}
.modalPopupClosed_2-head {
	background: #fdf0f4;
    padding: 1.4rem 1.25rem 1rem;
    border-bottom: 1px solid #f0e0e6;
}
.modalPopupClosed_2-label {
    margin-bottom: 0.7rem;
}
.modalPopupClosed_2-label span {
	display: inline-block;
    background: #fce4ee;
    color: #b82a5c;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.modalPopupClosed_2-heading {
	font-size: 13px;
	line-height: 1.5;
}
.modalPopupClosed_2-heading h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}
.modalPopupClosed_2-main {
	padding: 1.1rem 1.25rem 1.4rem;
}
.modalPopupClosed_2-content {
	margin-bottom: 1rem;
	font-size: 13px;
    line-height: 1.4;
}
.modalPopupClosed_2-content ul {
	padding: 0;
	list-style: none;
}
.modalPopupClosed_2-content ul li {
    padding: 4px 0 4px 1.3rem;
    position: relative;
}
.modalPopupClosed_2-content ul li:before {
	content: "✓";
	color: #e0507a;
	position: absolute;
	left: 0;
	font-weight: 700;
}
.modalPopupClosed_2-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 1rem;
}
.modalPopupClosed_2-price-value {
	flex: 0 0 auto;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
}
.modalPopupClosed_2-price-text-1 {
	flex: 0 0 auto;
	font-size: 13px;
	color: #999;
}
.modalPopupClosed_2-price-text-2 {
	margin-left: auto;
	font-size: 12px;
	color: #aaa;
}
.modalPopupClosed_2-button {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.modalPopupClosed_2-button a {
	width: 100%;
}
.modalPopupClosed_2-close {
	text-align: center;
}
.modalPopupClosed_2-close span {
	display: inlin-block;
    text-align: center;
    font-size: 12px;
    color: #bbb;
    margin-top: 0.75rem;
    cursor: pointer;
}
.modalPopupClosed_2-close span:hover {
	color: #777;
}




.modalPopupClosed_3-body {
	background: var(--white);;
	border: none;
	font-family: 'Montserrat', sans-serif;
}
.modalPopupClosed_3-icon {
	font-family: Arial;
	text-align: center;
	margin-bottom: 1rem;
}
.modalPopupClosed_3-icon span {
	width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.modalPopupClosed_3-heading {
	font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}
.modalPopupClosed_3-heading h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.35;
	margin-bottom: 0.5rem;
}
.modalPopupClosed_3-content {
	font-size: 13px;
    color: #999;
    margin-bottom: 1.25rem;
}
.modalPopupClosed_3-button a {
	width: 100%;
}
.modalPopupClosed_3-close {
	text-align: center;
}
.modalPopupClosed_3-close span {
	display: inline-block;
	text-align: center;
	font-size: 13px;
	color: #bbb;
	margin-top: 1rem;
	cursor: pointer;
}
.modalPopupClosed_3-close span:hover {
	color: #888;
}





.video-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.video-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.video-item__wrap {
	position: relative;
	background: rgba(78, 78, 78, 0.4);
	-moz-border-radius: calc(var(--gap) * 1.5);
	-webkit-border-radius: calc(var(--gap) * 1.5);
	border-radius: calc(var(--gap) * 1.5);
	padding: var(--gap);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	text-decoration: none;
	z-index: 1;
}
.video-item__image {
	aspect-ratio: 9 / 16;
	overflow: hidden;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}
.video-item__wrap:hover .video-item__image img {
	transform: scale(1.05);
}
.video-item__title {
	margin: 0;
	text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--h4-size);
    font-weight: 400;
    color: var(--white);;
    transition: .5s;
}
.video-item__title:hover {
	color: var(--pink);;
}
.video-item__more {
	text-align: center;
}



.singleVideo-wrap {
	display: flex;
	gap: calc(var(--gap) * 1.5);
}
.singleVideo-left {
	flex: 0 0 calc(100% / 3 - var(--gap) * 1.5 / 2);
	max-width: calc(100% / 3 - var(--gap) * 1.5 / 2);
}
.singleVideo-video {
	position: sticky;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	top: 0;
	z-index: 2;
}
.singleVideo-video:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: .2;
	z-index: 1;
}
.singleVideo-video-play {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play.svg);
	mask-image: url(images/play.svg);
	background-color: var(--white);;
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: .75;
	transition: .5s;
	z-index: 2;
}
.singleVideo-video:hover .singleVideo-video-play {
	opacity: .9;
}
.singleVideo-right {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap) * 1.5 / 2);
	max-width: calc(100% / 3 * 2 - var(--gap) * 1.5 / 2);
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.singleVideo-content {
	font-family: 'Montserrat', sans-serif;
}




@media (max-width: 1599px) {
	/*.hero-info {
		padding: 0 8%;
	}
	.hero-heading {
		font-size: calc(var(--h1-size) * 2.25);
	}
	.hero-section.section-lg {
		padding-bottom: calc(var(--gap) * 8);
		gap: calc(var(--gap) * 2);
	}*/
	.banner-heading/*,
	.heroService-heading*/ {
		font-size: calc(var(--h1-size) * 1.25);
	}
	/*.heroService-wrap {
		padding: 0 2% 0 8%;
	}*/
}



@media (max-width: 1399px) {
	/*.hero-info {
		padding: 0 4%;
	}
	.hero-heading {
		font-size: calc(var(--h1-size) * 2);
	}
	.hero-section.section-lg {
		padding-bottom: calc(var(--gap) * 4);
	}
	.heroService-wrap {
        padding: 0 0 0 4%;
    }
    .heroService-left {
    	flex: 0 0 calc(62% - var(--gap));
    	max-width: calc(62% - var(--gap));
    }
    .heroService-right {
    	flex: 0 0 calc(38% - var(--gap));
    	max-width: calc(38% - var(--gap));
    }*/
}



@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--container-full: calc(100% - var(--gap) * 2);
		--gap: 16px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 26px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	/*.header-logo img {
		max-width: 120px;
	}
	.main-menu li a {
		padding: calc(var(--gap) / 1.667) calc(var(--gap) / 2);
	}*/
	.team-item__content {
		min-height: 114px;
	}
	.form-field-38 {
		flex: 0 0 35%;
		max-width: 35%;
	}
	.form-field-24 {
	    flex: 0 0 30%;
	    max-width: 30%;
	}
	.counters-item__title {
		margin-bottom: var(--gap);
	}
	.counters-item__value span {
		display: block;
		line-height: 1.1;
	}
	.imageBanner-wrap {
		min-height: 480px;
	}
	.solution-item__image {
		height: calc((var(--container) - var(--gap) * 2) / 3 / .81);
	}
	.solution-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 / .81);
	}
}



@media (max-width: 991px) {
	:root {
		--container: 690px;
		--container-full: calc(100% - var(--gap) * 2);
		--gap: 16px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	/*.header-wrap {
		height: 36px;
	}
	.header-logo img {
		max-width: 100%;
		max-height: 36px;
	}
	.main-menu {
		display: none;
	}
	.header-phone {
		font-size: var(--h4-size);
		margin-left: auto;
	}*/
	/*.hero-heading {
		font-size: calc(var(--h1-size) * 2.25);
	}
	.heroServices-item__wrap,*/
	.relatedServices-item__wrap {
		padding: calc(var(--gap) * 1) calc(var(--gap));
		min-height: 72px;
	}
	/*.heroServices-item__wrap:before,*/
	.relatedServices-item__wrap:before {
		width: calc(100% - var(--gap) / 2);
		height: calc(100% - var(--gap) / 2);
	}
	/*.hero-bg img {
		object-position: 68% bottom;
	}*/
	.contentBlockImage-wrap {
		flex-direction: column;
	}
	.contentBlockImage-image, .contentBlockImage-content {
		flex: auto;
		max-width: 100%;
	}
	.contentBlockImage-image.align-right {
		order: inherit;
	}
	.legalDocuments-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / .8);
		height: calc((var(--container) - var(--gap) * 2) / 3 / .8);
	}
	.legalDocuments-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 / .8);
	}
	.footer-wrap {
		flex-direction: column;
		align-items: center;
	}
	.footer-info, .footer-payment, .footer-company {
		flex: auto;
		max-width: 100%;
	}
	.footer-phone {
		font-size: var(--h4-size);
	}
	.footer-payment-item img {
		max-height: 28px;
	}
	.footer-bottom {
		padding-top: calc(var(--gap) * 2);
	}
	.footer-bottom-wrap {
		flex-direction: column;
	}
	.copyright {
		order: 3;
	}
	.footer-menu {
		flex-direction: column;
		gap: 4px;
		text-align: center;
		font-size: var(--text-size-sm);
	}

	.banner-wrap {
		flex-direction: column;
		padding-top: calc(var(--gap) * 2);
	}
	.banner-left,
	.banner-right {
		flex: auto;
		max-width: 100%;
	}
	.banner-content {
		padding-left: 12%;
	}
	/*.heroService-wrap {
		padding: 0 var(--gap);
	}
	.heroService-left {
		flex: 0 0 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.heroService-right {
		display: none;
		text-align: center;
		flex: 0 0 100%;
		max-width: 100%;
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
		left: 0;
		bottom: 0;
	}
	.heroService-image {
		height: 100%;
		text-align: center;
	}
	.heroService-form {
		max-width: 360px;
	}
	.form-field-38,
	.form-field-24 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.heroService-image:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--black);
		opacity: .4;
		bottom: 0;
		left: 0;
		z-index: 1;
	}*/
	.counters-items {
		margin-bottom: calc(var(--gap) * -1.5);
	}
	.counters-item {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.counters-item__title {
		margin-bottom: calc(var(--gap) / 2);
		text-align: center;
	}
	.counters-item__value {
		text-align: center;
	}
	.steps2-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantagesList-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.advantagesList-left,
	.advantagesList-right {
		flex: auto;
		max-width: 100%;
	}
	.offers-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.instagramBlock-wrap {
		flex-direction: column;
	}
	.instagramBlock-left, .instagramBlock-right {
		flex: auto;
		max-width: 100%;
	}
	.instagramBlock-image img {
		max-height: 48px;
	}
	.otherServices-item {
		flex: 0 0 calc(50% - var(--gap));
		max-width: calc(50% - var(--gap));
	}
	.reviewsGrid-item {
		width: calc(100% / 3);
	}

	.video-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
}



@media (max-width: 767px) {
	:root {
		--container: 510px;
		--container-full: calc(100% - var(--gap) * 2);
		--gap: 16px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	img.alignleft, img.alignright, img.aligncenter {
		float: none;
		margin: 0 0 var(--gap);
		display: block;
		max-width: 100%;
	}
	.imageBanner-wrap {
		padding: calc(var(--gap) * 2);
	}
	.solution-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / .81);
	}
	.solution-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / .81);
	}
	.blog-item__image {
		float: none;
		max-width: 100%;
		width: 100%;
		margin: 0 0 var(--gap);
	}
	.blog-item__title {
		font-size: var(--h5-size);
	}
	.singleBlog-image {
		float: none;
		margin-right: 0;
		max-width: 100%;
	}
	.blogRelated-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.feedback-wrap,
	.contentBlock-wrap {
		padding: calc(var(--gap) * 2) var(--gap);
	}
	.reviewsGrid-item {
		width: 50%;
	}
	.legalDocuments-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / .8);
		height: calc((var(--container) - var(--gap)) / 2 / .8);
	}
	.legalDocuments-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / .8);
	}

	.singleVideo-wrap {
		flex-direction: column;
	}
	.singleVideo-left,
	.singleVideo-right {
		flex: auto;
		max-width: 100%;
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2);
		--container-full: var(--container);
		--gap: 16px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	/*.header-phone {
		font-size: var(--h5-size);
	}*/
	/*.hero-heading {
		font-size: calc(var(--h1-size) * 1.75);
	}
	.hero-subheading {
		font-size: var(--h3-size);
	}*/
	.offers-item__wrap {
		padding: var(--gap);
	}
	.banner-caption {
		bottom: var(--gap);
		padding: var(--gap);
	}
	.banner-caption:before {
		width: calc(100% - var(--gap) / 2);
		height: calc(100% - var(--gap) / 2);
	}
	.advantagesList-caption {
		bottom: 0;
        position: relative;
        max-width: calc(100% - var(--gap) * 2);
        margin-left: var(--gap);
        margin-top: calc(var(--gap) * -4);
	}
	.otherServices-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.modal-dialog {
		max-width: var(--container);
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 5);
	}
	/*.hero-bg img {
        object-position: center top;
    }
    .hero-bg:after {
    	content: '';
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	top: 0;
    	left: 0;
    	background: var(--black);
    	opacity: .3;
    	z-index: 1;
    }
    .hero-section.section-lg {
    	padding-bottom: calc(var(--gap) * 2);
    	gap: var(--gap);
    }
    .heroService-left.section {
    	padding-bottom: calc(var(--gap) * 3);
    	padding-top: var(--gap);
    }
    .heroService-contacts {
    	margin-bottom: 0;
    }*/
    .relatedServices-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }

    .video-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
}