html,
body {
	font-family:
		'Comic Sans MS',
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		'Open Sans',
		'Helvetica Neue',
		sans-serif;
	margin: 0;
	padding: 0;

	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

form a {
	color: inherit;
}

.form-message {
	width: 100%;
	margin-top: 16px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

.form-message:empty {
	display: none;
}

.form-message--success {
	color: #138a2e;
}

.form-message--error {
	color: #c62828;
}

.captcha-message {
	display: block;
	margin: 200px auto 0;
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		'Open Sans',
		'Helvetica Neue',
		sans-serif;
	font-size: 20px;
	text-align: center;
}

form button[disabled] {
	cursor: wait;
	opacity: 0.75;
}

:root {
	--color-special: rgba(25, 255, 237, 1);
	--color-special-darken: rgb(0, 202, 186, 1);
}

form button {
	background: rgb(155, 64, 240);
	background: var(--color-special) !important;
	background: -o-linear-gradient(
		bottom,
		var(--color-special-darken) 0%,
		var(--color-special) 100%
	) !important;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(var(--color-special-darken)),
		to(var(--color-special))
	) !important;
	background: linear-gradient(
		0deg,
		var(--color-special-darken) 0%,
		var(--color-special) 100%
	) !important;
	background: linear-gradient(
		0deg,
		var(--color-special-darken) 0%,
		var(--color-special) 100%
	) !important;
	border: 0 !important;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

/* fade image in after load */
.lazyload,
.lazyloading {
	-webkit-filter: blur(4px);
	filter: blur(4px);
	transition:
		filter 400ms,
		-webkit-filter 400ms;
}

.lazyloaded {
	-webkit-filter: blur(0);
	filter: blur(0);
}

.btn-scrollToTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	outline: none;
	border: 0;
	background: none;
	z-index: 1000;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	display: none;
}

.btn-scrollToTop:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.btn-scrollToTop.active {
	display: block;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.header {
	-webkit-box-shadow: 0 10px 10px 0 rgba(230, 230, 230, 0.5);
	box-shadow: 0 10px 10px 0 rgba(230, 230, 230, 0.5);
}

.header__inner-logo {
	/* width: 50px; */
}

.header__inner-logo img {
	width: 100%;
	height: 100%;
}

/* button */
.header__inner-nav-link {
	font-weight: 600;
	cursor: pointer;
	outline: none;
	background: none;
	border: 0;
}

.header__inner-nav-link:hover {
	text-decoration: underline;
}

.header__inner-contacts-address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.header__inner-contacts-address a {
	color: inherit;
	text-decoration: none;
	font-weight: 500;
}

.header__inner-contacts-address a:hover {
	text-decoration: underline;
}

.header__inner-contacts-social {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__inner-contacts-social a {
	width: 30px;
	height: 30px;
	margin-left: 15px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.header__inner-contacts-social a img {
	width: 100%;
	height: 100%;
}

.header__inner-contacts-social a:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

@media screen and (max-width: 768px) {
	.header__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.header__inner-nav {
		padding: 15px 0;
	}

	.header__inner-contacts {
		padding: 0 0 20px 0;
	}
}

@media screen and (max-width: 575px) {
	.header__inner {
		position: relative;
	}

	.header__inner-logo {
		position: absolute;
		top: 50px;
		left: 40px;
		transform: translate(-50%, -50%);
	}

	.header__inner-logo img {
		padding-bottom: 0;
		padding: 5px;
	}

	.header__inner-contacts-social a {
		width: 25px;
		height: 25px;
	}

	.header__inner-contacts-address a {
		font-size: 14px;
	}

	.header__inner-contacts-social span {
		font-size: 16px !important;
	}

	.header__inner-nav {
		flex-direction: column;
		align-items: center;
		padding-top: 20px;
	}

	.header__inner-nav a {
		padding-bottom: 6px;
	}
}

@media screen and (max-width: 375px) {
}

@media screen and (max-width: 375px) {
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.section-intro {
	/* background: url('../img/gallery4.jpg') center no-repeat;
	background-size: cover;
	position: absolute;
	position: relative; */
	position: relative;
	height: 87vh;
	overflow: hidden;
}

.section-intro .carousel,
.section-intro .carousel .carousel-inner,
.section-intro .carousel .carousel-inner .carousel-item,
.section-intro .carousel .carousel-inner .carousel-item img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
}

.section-intro:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.introSwiper {
	height: 100%;
}

.intro__inner {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.intro__inner-left {
	color: #fff;
	width: 40%;
}

@media screen and (max-width: 992px) {
	.intro__inner-left {
		width: 100%;
	}

	.intro__inner > .container {
		padding: 0 12px !important;
	}
}

.intro__inner-left div p:nth-child(1) {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 40px;
}

.intro__inner-left div p:nth-child(2) {
	font-weight: 500;
	font-size: 24px;
}

span.text-uniq {
	color: rgba(207, 158, 253, 1);
	color: var(--color-special) !important;
}

span.text-uniq-darker {
	color: rgba(155, 64, 240, 1);
	color: var(--color-special-darken) !important;
	font-weight: 600;
}
.hero-buttons {
	display: flex;
}
.intro__inner-right-btn {
	display: block;
	margin-top: 40px;
	padding: 20px 60px;
	text-transform: uppercase;
	border: 0;
	border-radius: 20px;
	background: var(--color-special);
	background: -o-linear-gradient(bottom, var(--color-special-darken) 0%, var(--color-special) 100%);
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(var(--color-special-darken)),
		to(var(--color-special))
	);
	background: linear-gradient(0deg, var(--color-special-darken) 0%, var(--color-special) 100%);
	font-family: inherit;
	font-weight: 600;
	color: #fff;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.intro__inner-right-btn:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.intro__inner-right-btn.second {
	/* background: #8e4cbd;
	background: -o-linear-gradient(bottom, #8e4cbd 0%, #a85ecb 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(#8e4cbd), to(#a85ecb));
	background: linear-gradient(0deg, #8e4cbd 0%, #a85ecb 100%); */

	background: #fff;
	color: #8e4cbd;
	margin-left: 20px;
	padding: 20px 30px;
}

@media (max-width: 767px) {
	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.intro__inner-right-btn {
		width: 100%;
		/* ensure all buttons have equal height */
		padding: 20px 30px;
	}
	.intro__inner-right-btn.second {
		margin-left: 0;
		margin-top: 20px;
		text-align: center;
	}
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.features__inner {
	padding-top: 80px;
}

.features__inner-text h1 {
	font-size: 32px;
	text-align: center;
}

.features__inner-text p:nth-child(2),
.features__inner-text p:nth-child(3) {
	font-size: 18px;
	display: block;
	max-width: 850px;
	margin: 0 auto;
	margin-top: 20px;

	text-align: center;
}

.features__inner-text p:nth-child(3) {
	margin-top: 10px;
}

/* Сетка карточек */
.features__inner-grid {
	margin: 0 auto;
	margin-top: 50px;
}

.features__inner-grid h2 {
	text-align: center;
	font-size: 24px;
}

/* Колонка с карточкой */
.features__inner-grid .row .col {
	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;
	margin-top: 50px;
}

/* Карточка */
.features__inner-grid .row .col .card {
	border: 0;
	outline: 1px solid rgba(0, 0, 0, 0.1);
	/* outline-offset: 10px; */
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border-radius: 10px;
	overflow: hidden;
	height: 432px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;

	text-decoration: none;
	color: inherit;
}

.features__inner-grid .row .col .card:hover {
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

.features__inner-grid .row .col .card img {
	max-height: 70%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	z-index: 9;
}

.features__inner-grid .row .col .card .card-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.features__inner-grid .row .col .card .card-icon:hover {
	-webkit-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);
}

/* Текст в карточках.  */
.features__inner-grid .row .col .card .card-body {
	padding: 0 20px;
	padding-top: 30px;
	text-align: center;
	height: 30%;
	-webkit-box-shadow: 0px 50px 40px 40px rgba(255, 255, 255, 1);
	box-shadow: 0px 50px 40px 40px rgba(255, 255, 255, 1);
	position: relative;
	z-index: 10;
}

/* Текст в карточках. Заголовок */
.features__inner-grid .row .col .card .card-body p:nth-child(1) {
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}

/* Текст в карточках. Подзаголовок */
.features__inner-grid .row .col .card .card-body p:nth-child(2) {
	font-weight: 500;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.section-gallery {
	margin-top: 100px;
}

.gallery__inner h2 p:nth-child(2) {
	font-size: 20px;
}

.gallery__inner-grid {
	margin-top: 50px;
}

/* Элемент галереи */
.gallery__inner-grid-item {
	padding: 2px 2px;
	overflow: hidden;
}

.gallery__inner-grid .row {
	--bs-gutter-x: 0;
}

.gallery__inner-grid-item {
	border-radius: 5px;

	overflow: hidden;
}

.gallery__inner-grid-item img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition:
		transform 0.3s ease,
		-webkit-transform 0.3s ease;
	width: 100%;
	height: 250px;
	-o-object-fit: cover;
	object-fit: cover;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	border-radius: 5px;
}

.gallery__inner-grid-item:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.advantages__inner {
	margin-top: 100px;
}

.advantages__inner h2 p:nth-child(1) {
	margin: 0;
}

.advantages__inner h2 p:nth-child(2) {
	font-size: 20px;
	margin: 5px 0;
}

.advantages__inner-grid {
	margin-top: 50px;
}

.advantages__inner-grid .row div {
	margin-bottom: 10px;
}

.advantages__inner-grid-item {
	height: 250px;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid rgb(198, 196, 196, 0.1);
}

.advantages__inner-grid-item a {
	display: block;
	width: 90%;
	height: 100%;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
}

.advantages__inner-grid-item a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.advantages__inner-grid-item a:hover {
	width: 130%;
	cursor: pointer;
}

.advantages__inner-grid-item .text {
	color: #000;
	padding: 40px 15px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: 100%;
}

.advantages__inner-grid-item .text p:nth-child(1) {
	font-size: 20px;
	font-weight: 600;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.separator__form-makeOrder {
	margin: 100px 0;
	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;
}

.separator__form-makeOrder form {
	-webkit-box-shadow: 0 10px 5px 10px rgba(7, 243, 255, 0.2);
	box-shadow: 0 10px 5px 10px rgba(7, 243, 255, 0.2);
	padding: 80px 30px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.separator__form-makeOrder form:hover {
	-webkit-box-shadow: 0 10px 7px 13px rgba(7, 243, 255, 0.3);
	box-shadow: 0 10px 7px 13px rgba(7, 243, 255, 0.3);
}

.separator__form-makeOrder form input {
	padding: 10px 10px;
}

.separator__form-makeOrder form h4 {
	margin: 0 auto;
}

.separator__form-makeOrder form h4 p:nth-child(1) {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
}

.separator__form-makeOrder form h4 p:nth-child(2) {
	font-size: 14px;
	margin: 5px 0;
}

.separator__form-makeOrder form button {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 18px;
	max-height: 57px;
}

@media screen and (max-width: 992px) {
	.separator__form-makeOrder form button {
		width: 40% !important;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
	.form-bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: -20px;
	}

	.form-bottom > .form-check {
		width: 100% !important;
	}

	.separator__form-makeOrder form button {
		width: 100% !important;
		margin-top: 10px;
	}
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.section-price {
	background: url('/assets/img/price/bg.jpg') center repeat-y;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.section-price:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.9);
}

.section-write-us {
	margin-top: 20px;
	background-color: #fff;
	padding: 70px 0;
}

.write-us__inner {
	max-width: 760px;
	margin: 0 auto;
}

.write-us__inner h2 {
	margin-bottom: 16px;
}

.write-us__inner p {
	max-width: 620px;
	margin: 0 auto 28px;
	font-size: 18px;
	line-height: 1.5;
}

.write-us__socials {
	gap: 18px;
}

.write-us__social-link {
	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;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: #fff;
	-webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.write-us__social-link img {
	width: 34px;
	height: 34px;
}

.write-us__social-link:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

@media screen and (max-width: 576px) {
	.section-write-us {
		padding: 45px 0;
	}

	.write-us__inner p {
		font-size: 16px;
	}

	.write-us__socials {
		gap: 12px;
	}

	.write-us__social-link {
		width: 46px;
		height: 46px;
	}

	.write-us__social-link img {
		width: 29px;
		height: 29px;
	}
}

.price__inner h2 {
	position: relative;
	z-index: 3;
}

.price__inner-grid {
	position: relative;
	z-index: 3;
}

.price__inner-item {
	background-color: #fff;
	outline: 1px solid rgba(88, 88, 88, 0.1);
	outline-offset: -10px;
	-webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px 5px rgba(94, 94, 94, 0.1);
	border-radius: 20px;
	padding: 20px 0;
	width: 350px;
	height: 560px;
	margin-top: 50px;
	position: relative;
	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;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	background-color: #fff;
	overflow: hidden;
}

.price__inner-item img {
	position: absolute;
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
	width: 200px;
}

.price__inner-item .content {
	-webkit-box-shadow: 0 -10px 20px 0px rgba(9, 255, 251, 0.15);
	box-shadow: 0 -10px 20px 0px rgba(9, 255, 251, 0.15);
	position: relative;
	z-index: 2;
	padding: 30px;
	background-color: #fffffff2;
	overflow: hidden;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
	height: 100%;
	width: 100%;
	background-color: #fff;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
}

.price__inner-item .content.in-view {
	overflow: visible;
	-webkit-transform: translateY(2%);
	-ms-transform: translateY(2%);
	transform: translateY(2%);
}

.price__inner-item .content .content__title {
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 6px;
	font-weight: 700;
}

.price__inner-item .content__price {
	text-align: center;
}

.price__inner-item .content .content__inner {
	font-size: 14px;
	font-weight: 300;
	margin-top: 10px;
}

.price__inner-item .content .content__inner li {
	margin-bottom: 5px;
	line-height: 16px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.section-dop-price {
	margin-top: 150px;
	font-size: 15px;
}

.dop-price__inner {
	height: auto;
	background-color: rgba(255, 255, 255, 0.5);
	border: 3px solid rgba(250, 250, 250, 1);
	-webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
	padding: 50px 0;
	border-radius: 15px;
}

.dop-price__inner h2 {
	padding: 0 30px;
}

.dop-price__inner-grid {
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 20px;
}

/* DOP-PRICE SECTION STYLES */
.dop-price__title {
	margin-bottom: 60px;
}

.dop-price__category-header {
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 24px;
}

.dop-price__category-section {
	border-radius: 10px;
	padding: 30px;
}

.dop-price__category-shows {
	background: linear-gradient(135deg, rgba(0, 202, 186, 0.1), rgba(0, 202, 186, 0.05));
	border-left: 5px solid rgba(0, 202, 186, 1);
	color: rgba(0, 202, 186, 1);
}

.dop-price__category-masterclass {
	background: linear-gradient(135deg, rgba(155, 64, 240, 0.1), rgba(155, 64, 240, 0.05));
	border-left: 5px solid rgba(155, 64, 240, 1);
	height: 100%;
	color: rgba(155, 64, 240, 1);
}

.dop-price__category-parties {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
	border-left: 5px solid rgba(255, 193, 7, 1);
	height: 100%;
	color: rgba(255, 193, 7, 1);
}

.dop-price__category-other {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
	border-left: 5px solid rgba(76, 175, 80, 1);
	color: rgba(76, 175, 80, 1);
}

.dop-price__service-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid;
}

.dop-price__service-card:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.dop-price__service-card.shows {
	border-color: rgba(0, 202, 186, 0.15);
}

.dop-price__service-card.shows:hover {
	box-shadow: 0 8px 20px rgba(0, 202, 186, 0.2);
}

.dop-price__service-card.masterclass {
	border-color: rgba(155, 64, 240, 0.15);
}

.dop-price__service-card.masterclass:hover {
	box-shadow: 0 8px 20px rgba(155, 64, 240, 0.2);
}

.dop-price__service-card.parties {
	border-color: rgba(255, 193, 7, 0.15);
}

.dop-price__service-card.parties:hover {
	box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.dop-price__service-card.other {
	border-color: rgba(76, 175, 80, 0.15);
}

.dop-price__service-card.other:hover {
	box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.dop-price__service-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.dop-price__service-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dop-price__service-price {
	color: #111;
	font-size: 14px;
}

.dop-price__price-amount {
	font-weight: 600;
}

.dop-price__price-note {
	color: #111;
	font-size: 14px;
	margin-top: 5px;
}

.dop-price__masterclass-items {
	display: grid;
	gap: 15px;
}

.dop-price__masterclass-item {
	background: white;
	border-radius: 10px;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	color: #333;
	transition: all 0.3s ease;
}

.dop-price__masterclass-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dop-price__masterclass-item.shows {
	border: 1px solid rgba(0, 202, 186, 0.15);
}

.dop-price__masterclass-item.masterclass {
	border: 1px solid rgba(155, 64, 240, 0.15);
}

.dop-price__masterclass-item.parties {
	border: 1px solid rgba(255, 193, 7, 0.15);
}

.dop-price__masterclass-item.other {
	border: 1px solid rgba(76, 175, 80, 0.15);
}

.dop-price__masterclass-label {
	font-weight: 500;
	color: #333;
}

.dop-price__masterclass-price {
	font-weight: 700;
}

.dop-price__masterclass-item.masterclass .dop-price__masterclass-price {
	color: rgba(155, 64, 240, 1);
}

.dop-price__masterclass-item.shows .dop-price__masterclass-price {
	color: rgba(0, 202, 186, 1);
}

.dop-price__masterclass-item.parties .dop-price__masterclass-price {
	color: rgba(255, 193, 7, 1);
}

.dop-price__masterclass-item.other .dop-price__masterclass-price {
	color: rgba(76, 175, 80, 1);
}

.dop-price__parties-items {
	display: grid;
	gap: 15px;
	border-radius: 10px;
	padding: 16px;
	border: 1px solid rgba(255, 193, 7, 0.15);
	transition: all 0.3s ease;
}

.dop-price__parties-wrapper:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.dop-price__parties-tags {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.dop-price__parties-tag {
	font-weight: 500;
	color: #333;
	padding: 8px;
	background: rgba(255, 193, 7, 0.1);
	border-radius: 6px;
}

.dop-price__parties-tag.full {
	grid-column: span 2;
}

.dop-price__parties-divider {
	border-top: 2px solid rgba(255, 193, 7, 0.2);
	padding-top: 16px;
}

.dop-price__parties-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.dop-price__parties-duration {
	font-size: 15px;
	color: #111;
}

.dop-price__parties-price {
	color: rgba(255, 193, 7, 1);
	font-weight: 700;
	font-size: 18px;
}

.dop-price__parties-note {
	font-size: 15px;
	color: #111;
}

.content__inner-item {
	width: 100%;
	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-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 10px;
}

.content__inner-item:last-child {
	margin-right: 0;
}

.content__inner-item.bottom {
	max-width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.content__inner-item.bottom .content__inner-item__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 20px;
}

.content__inner-item__inner-right,
.content__inner-item__inner-left {
	margin: 0 30px;
}

.content__inner-item_category {
	text-align: center;
	margin: 30px 0;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
}

.content__inner-item__inner-item {
	padding: 10px 10px;
	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;
	width: 100%;
}

.content__inner-item__inner {
	position: relative;
	height: 100%;
}

.content__inner-item__inner:after {
	content: '';
	display: block;
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 1px;
	background-color: rgb(218, 218, 218);
}

.content__inner-item.bottom .content__inner-item__inner:after {
	display: none;
}

.content__inner-item__inner.total-price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: auto;
	margin-bottom: auto;
}

.content__inner-item__inner.total-price .total-price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-left: 1px solid rgba(170, 170, 170, 1);
	padding-left: 20px;
	margin-left: 10px;
	font-size: 14px;
	max-width: 150px;
	width: 100%;
}

.content__inner-item_price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-left: 1px solid rgb(170, 170, 170);
	padding-left: 20px;
	margin-left: 20px;
	max-width: 150px;
	width: 100%;
}

@media screen and (max-width: 992px) {
	.dop-price__inner-grid {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.content__inner-item.bottom .content__inner-item__inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
	}

	.content__inner-item__inner-right,
	.content__inner-item__inner-left {
		margin: 0;
		width: 100%;
	}

	.content__inner-item__inner.total-price .total-price {
	}
}

@media screen and (max-width: 768px) {
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.section-additionally {
	margin-top: 100px;
}

.additionally__inner h2 p:nth-child(2) {
	font-size: 20px;
}

.additionally__inner-grid {
	margin-top: 20px;
}

.additionally__inner-grid-item {
	-webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 290px;
	outline: 1px solid rgba(0, 0, 0, 0.1);
	outline-offset: -15px;
	border-radius: 10px;
	margin-top: 20px;
	position: relative;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.additionally__inner-grid-item:hover {
	-webkit-box-shadow: 0 5px 12px 7px rgba(0, 0, 0, 0.15);
	box-shadow: 0 5px 12px 7px rgba(0, 0, 0, 0.15);
	-webkit-transform: scale(1.005);
	-ms-transform: scale(1.005);
	transform: scale(1.005);
}

.additionally__inner-grid-item .item__img {
	overflow: hidden;
	height: 100%;
	width: 400px;
	padding: 50px 0 20px 20px;
	position: relative;
	z-index: 2;
}

.additionally__inner-grid-item .item__img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.additionally__inner-grid-item .item__text {
	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-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding: 50px 20px;
}

.additionally__inner-grid-item .item__text .item__text-title {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.8);
}

.additionally__inner-grid-item .item__number {
	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;
	padding: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-special-darken);
	background: -o-linear-gradient(bottom, var(--color-special-darken) 0%, var(--color-special) 100%);
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(var(--color-special-darken)),
		to((var(--color-special)))
	);
	background: linear-gradient(0deg, var(--color-special-darken) 0%, var(--color-special) 100%);
	color: #fff;
	position: relative;
	z-index: 3;
	font-weight: 700;
	position: absolute;
	top: -5px;
	left: -5px;
	font-size: 20px;
}

.additionally__inner-makeOrder button.btn {
	padding: 20px 40px;
	border-radius: 10px;
	background: var(--color-special);
	background: -o-linear-gradient(bottom, var(--color-special-darken) 0%, var(--color-special) 100%);
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(var(--color-special-darken)),
		to(var(--color-special))
	);
	background: linear-gradient(0deg, var(--color-special-darken) 0%, var(--color-special) 100%);
	font-size: 18px;
	border: 0;
	outline: 0;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.additionally__inner-makeOrder button:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

@media screen and (max-width: 425px) {
	.additionally__inner-grid-item {
		height: 290px;
		padding: 0 20px;
		/* flex-direction: column; */
	}

	.additionally__inner-grid-item .item__img {
		height: 100%;
		width: 100%;
		max-width: 250px;
		padding: 70px 10px;
		position: relative;
		z-index: 2;
	}

	.additionally__inner-grid-item .item__text {
		padding: 50px 0;
		width: 100%;
	}

	.additionally__inner-grid-item .item__text .item__text-title {
		font-size: 18px;
		margin-bottom: 10px;
		font-weight: 700;
		color: rgba(0, 0, 0, 0.8);
	}

	.additionally__inner-grid-item .item__text .item__text-descr {
		font-size: 14px;
	}
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* АДАПТАЦИЯ SECTION-DOP-PRICE */

@media screen and (max-width: 1024px) {
	.section-dop-price [style*='col-lg-4'] {
		flex-basis: 50% !important;
		max-width: 50% !important;
	}
}

@media screen and (max-width: 768px) {
	.section-dop-price h2 {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.section-dop-price [style*='col-lg-4'],
	.section-dop-price [style*='col-lg-6'] {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}

	.section-dop-price [style*='border-left'] {
		border-left: 3px solid !important;
		padding: 20px !important;
	}

	/* .section-dop-price h3 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .section-dop-price h4 {
    font-size: 14px !important;
  } */

	.section-dop-price span[style*='font-size: 14px'],
	.section-dop-price span[style*='font-size: 15px'] {
		font-size: 13px !important;
	}

	.section-dop-price .row.mb-5 {
		margin-bottom: 20px !important;
	}

	.section-dop-price .row.g-3 {
		gap: 15px !important;
	}
}

@media screen and (max-width: 480px) {
	.dop-price__category-section {
		padding: 30px 15px;
	}
	.dop-price__category-header {
		font-size: 22px;
	}
	.section-dop-price {
		padding: 40px 0 !important;
	}

	/* .section-dop-price h2 {
    font-size: 20px;
    margin-bottom: 30px;
  } */

	/* .section-dop-price h3 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .section-dop-price h4 {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  } */

	.section-dop-price [style*='padding: 30px'] {
		padding: 15px !important;
	}

	.section-dop-price [style*='padding: 20px'] {
		padding: 15px !important;
	}

	.section-dop-price span[style*='font-size'] {
		font-size: 12px !important;
	}

	.section-dop-price [style*='border-radius: 12px'] {
		border-radius: 8px !important;
	}

	.section-dop-price [style*='border-radius: 10px'] {
		border-radius: 6px !important;
	}

	.section-dop-price .row.g-3 {
		gap: 5px !important;
	}

	/* Для карточек - сделать один столбец */
	.section-dop-price [style*='col-md-6'] {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}

	/* Для параметров цены */
	.section-dop-price [style*='display: flex'] [style*='gap: 8px'] {
		gap: 6px !important;
	}

	/* Для элементов вечеринок */
	.section-dop-price [style*='grid-template-columns: repeat(2'] {
		grid-template-columns: 1fr !important;
	}
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.section-reviews {
	margin-top: 100px;
}

.section-reviews .swiper {
	margin-top: 70px;
	width: 100%;
	height: 100%;
}

.swiper-slide {
	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;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.reviews__inner-grid img[data-fancybox='reviews'] {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* #################################################### */
.footer {
	-webkit-box-shadow: 0 -10px 10px 0 rgba(230, 230, 230, 0.5);
	box-shadow: 0 -10px 10px 0 rgba(230, 230, 230, 0.5);
}

.footer__inner .row .column {
	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-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 10px 0;
}
