@charset "UTF-8";
/*обнуление*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

/*---------------------------------*/
body {
	color: #35474f;
	font-weight: 400;
	font-size: 16px;
	font-family: 'Manrope', sans-serif;
}

.wrapper {
	padding: 20px 0;
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 768px) {
	.wrapper {
		padding: 10px 0;
		gap: 10px;
	}
}
.container {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 556px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 748px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 972px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1180px;
	}
}
@media (min-width: 1344px) {
	.container {
		max-width: 1284px;
	}
}
.header__block {
	border-radius: 16px;
	padding: 24px 48px;
	background: #fcf9fb;
}
.header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__logo {
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	color: #9d63c6;
}
.header__nav {
	display: flex;
	align-items: center;
	gap: 56px;
}
.header__nav-link {
	font-weight: 500;
	font-size: 14px;
	color: #9d91a5;
}
.header__nav-link:hover {
	color: #000;
}
.top-mnu-mobile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	background: #f8f7fa;
	border-radius: 0 0 16px 16px;
	padding: 24px 26px 50px 26px;
}

.top-mnu-mobile__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-mnu-mobile__logo {
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	color: #9d63c6;
}

.top-mnu-mobile ul {
	margin-top: 32px;
}

.top-mnu-mobile ul li {
	margin-bottom: 24px;
}

.top-mnu-mobile ul li a {
	font-weight: 500;
	font-size: 14px;
	color: #91a59a;
	text-decoration: none;
	display: block;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.top-mnu-mobile ul li a:hover {
	color: #000;
}

.top-mnu-mobile ul li:last-child {
	margin-bottom: 0;
}

.top-mnu-mobile ul li:last-child a {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.top-mnu-mobile ul li:last-child a:hover {
	color: #000;
}

.top-mnu-mobile .mnu-close {
	cursor: pointer;
}

.burger-mnu {
	display: none;
	cursor: pointer;
}

.overlay {
	background: rgba(15, 15, 15, 0.25);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out;
	-o-transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out;
	transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out;
}

.overlay.active {
	visibility: visible;
	opacity: 1;
}

@media (max-width: 992px) {
	.header__nav {
		display: none;
	}
	.burger-mnu {
		display: block;
	}
}
@media (max-width: 768px) {
	.header__block {
		padding: 16px;
	}
}
.section-1__row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}
.section-1__left {
	flex: 0 0 calc(50% - 10px);
	background: #fcf9fb;
	border-radius: 16px;
	min-height: 576px;
	padding-left: 48px;
	padding-right: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section-1__left-format {
	border: 1px solid #9d63c6;
	border-radius: 100px;
	padding: 12px 16px;
	text-align: center;
	background: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	color: #9d63c6;
	display: inline-block;
	width: 100%;
	max-width: 143px;
	margin-bottom: 24px;
}
.section-1__left-title {
	font-weight: 500;
	font-size: 56px;
	line-height: 110%;
	color: #382c40;
	margin-bottom: 32px;
}
.section-1__left-title span {
	color: #b876e7;
	display: block;
}
.section-1__left-decr {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}
.section-1__left-decr-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.section-1__left-decr-item-icon {
	flex: 0 0 24px;
}
.section-1__left-decr-item-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 145%;
	color: #44354f;
	max-width: 291px;
}
.section-1__left-btn {
	display: block;
	max-width: 395px;
	width: 100%;
	background: #b876e7;
	border-radius: 1000px;
	padding: 24px 0;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

.section-1__right {
	flex: 0 0 calc(50% - 10px);
	min-height: 576px;
	display: flex;
}
.section-1__right-img {
	border-radius: 16px;
	width: 100%;
	object-fit: cover;
}

@media (max-width: 1343px) {
	.section-1__left {
		flex: 0 0 calc(60% - 10px);
	}
	.section-1__right {
		flex: 0 0 calc(40% - 10px);
	}
}

@media (max-width: 1200px) {
	.section-1__left {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (max-width: 992px) {
	.section-1__row {
		flex-direction: column;
	}
	.section-1__left {
		flex: 0 0 auto;
		width: 100%;
	}
	.section-1__right {
		flex: 0 0 auto;
		min-height: auto;
		width: 100%;
	}
	.section-1__left-title {
		font-size: 48px;
	}
}
@media (max-width: 768px) {
	.section-1__left {
		padding: 64px 16px;
		min-height: auto;
	}
	.section-1__left-format {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.section-1__left-title {
		font-size: 44px;
		margin-bottom: 24px;
	}
	.section-1__left-decr-item {
		gap: 8px;
	}
	.section-1__left-decr-item-text {
		font-size: 16px;
	}
	.section-1__left-decr {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.section-1__left-btn {
		max-width: 100%;
	}
	.section-1__row {
		gap: 10px;
	}
}

.section-2 {
}
.section-2__row {
	display: flex;
	gap: 20px;
}
.section-2__content {
	padding: 83px 45px;
	border-radius: 16px;
	background: #fcf9fb;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 calc(50% - 10px);
}
.section-2__content-title {
	max-width: 483px;
	font-weight: 500;
	font-size: 40px;
	line-height: 110%;
	color: #2c4035;
}
.section-2__content-title span {
	color: #b876e7;
}
.section-2__content-description {
	margin-top: 32px;
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #35454f;
	max-width: 526px;
}
.section-2__image {
	flex: 0 0 calc(50% - 10px);
}
.section-2__image img {
	border-radius: 16px;
	max-width: 100%;
}

@media (max-width: 992px) {
	.section-2__row {
		flex-wrap: wrap;
	}
	.section-2__content {
		flex: 0 0 100%;
	}
	.section-2__image {
		flex: 0 0 100%;
	}
	.section-2__image img {
		width: 100%;
	}
	.section-2__content-title {
		max-width: 100%;
	}
	.section-2__content-description {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.section-2__content {
		padding: 64px 16px;
	}
	.section-2__content-title {
		font-size: 30px;
	}
	.section-2__content-description {
		margin-top: 20px;
		font-size: 16px;
	}
	.section-2__row {
		gap: 10px;
	}
}

.section-3 {
}
.section-3__box {
	background: #fbfafc;
	padding: 90px 48px;
	border-radius: 16px;
}

.section-3__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	color: #2c4035;
	max-width: 719px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.section-3__title span {
	color: #b876e7;
}
.section-3__row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 48px;
}
.section-3__item {
	flex: 0 0 calc(50% - 10px);
	border: 1px solid #b876e7;
	border-radius: 16px;
	background: #fff;
	padding: 20px;
	display: flex;
	gap: 16px;
}
.section-3__item-icon {
	flex: 0 0 40px;
}
.section-3__item-text {
}
.section-3__item-text-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	color: #382c40;
}
.section-3__item-text-description {
	margin-top: 12px;
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #44354f;
	opacity: 0.8;
}
.section-3__last-item {
	flex: 0 0 100%;
	align-items: center;
}

@media (max-width: 992px) {
	.section-3__item {
		flex: 0 0 100%;
		align-items: start;
	}
	.section-3__row {
		margin-top: 32px;
		gap: 10px;
	}
	.section-3__item {
		padding: 16px;
	}
	.section-3__item-icon {
		flex: 0 0 56px;
	}
	.section-3__item-icon img {
		max-width: 100%;
	}
	.section-3__item-text {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.section-3__box {
		padding: 64px 16px;
	}
	.section-3__title {
		font-size: 30px;
		text-align: left;
	}
	.section-3__item {
		flex: 0 0 100%;
	}
	.section-3__item {
		flex-wrap: wrap;
	}
	.section-3__item {
		gap: 12px;
	}
	.section-3__item-text-title {
		font-size: 20px;
	}
	.section-3__item-text-description {
		font-size: 14px;
	}
}

.section-4__block {
	background: #fbfafc;
	display: flex;
	gap: 40px;
	padding-left: 48px;
	border-radius: 16px;
}
.section-4__left {
	flex: 0 0 554px;
}
.section-4__left-img {
	width: 100%;
	border-radius: 16px;
}
.section-4__right {
	flex: 0 1 662px;
	padding: 64px 0;
	align-self: center;
}
.section-4__right-attention {
	border: 1px solid #9d63c6;
	border-radius: 100px;
	max-width: 160px;
	width: 100%;
	padding: 12px 0;
	background: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	color: #9d63c6;
	margin-bottom: 24px;
}
.section-4__right-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	color: #382c40;
	margin-bottom: 32px;
}
.section-4__right-title span {
	color: #b876e7;
}
.section-4__right-descr {
	font-size: 18px;
	line-height: 140%;
	color: #44354f;
}

@media (max-width: 1344px) {
	.section-4__left {
		flex: 0 1 554px;
	}
	.section-4__left-img {
		height: 100%;
		object-fit: cover;
		object-position: left;
	}
}
@media (max-width: 992px) {
	.section-4__block {
		flex-direction: column;
		padding: 0;
		padding-bottom: 64px;
		gap: 32px;
	}
	.section-4__left {
		flex: 0 0 auto;
	}
	.section-4__right {
		flex: 0 0 auto;
		padding: 0 16px;
		order: 1;
	}
}
@media (max-width: 768px) {
	.section-4__right-attention {
		max-width: 85px;
		font-size: 14px;
		margin-bottom: 16px;
	}
	.section-4__right-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.section-4__right-descr {
		font-size: 14px;
	}
}

.section-5 {
}
.section-5__box {
	background: #f8f7fa;
	border-radius: 16px;
	padding-top: 90px;
	padding-bottom: 90px;
	text-align: center;
}
.section-5__box img {
	display: inline-block;
	max-width: 100%;
}
.section-5__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	text-align: center;
	color: #2c3940;
	margin-bottom: 48px;
	padding-left: 16px;
	padding-right: 16px;
}
.section-5__title span {
	color: #9d63c6;
}

@media (max-width: 768px) {
	.section-5__box {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.section-5__title {
		font-size: 32px;
		margin-bottom: 24px;
	}
}

.section-6__block {
	border-radius: 16px;
	background: #fbfafc;
	padding: 0 48px 0 0;
}
.section-6__top {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 32px;
}
.section-6__top-img {
	flex: 0 1 554px;
}
.section-6__top-img img {
	border-radius: 10px;
	width: 100%;
}
.section-6__top-info {
	flex: 0 1 405px;
}
.section-6__top-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	color: #382c40;
	margin-bottom: 20px;
}
.section-6__top-name {
	border: 1px solid #9d63c6;
	border-radius: 100px;
	padding-left: 24px;
	padding-right: 24px;
	background: #fff;
	font-weight: 600;
	font-size: 18px;
	height: 44px;
	line-height: 44px;
	display: inline-block;
	color: #9d63c6;
	margin-bottom: 32px;
}
.section-6__top-text {
	font-size: 18px;
	line-height: 140%;
	color: #3d354f;
}

@media (max-width: 992px) {
	.section-6__block {
		padding-right: 0;
	}
	.section-6__top-info {
		padding-left: 48px;
		padding-right: 48px;
	}
	.section-6__block {
		padding: 0 0 64px 0;
	}
	.section-6__top {
		flex-direction: column;
	}
	.section-6__top-img {
		flex: 0 0 auto;
	}
	.section-6__top-info {
		flex: 0 0 auto;
	}
	.section-6__row {
		flex-direction: column;
	}
	.section-6__item {
		flex: 0 0 auto;
	}
}
@media (max-width: 768px) {
	.section-6__block {
		padding: 0 0 64px 0;
	}
	.section-6__top-info {
		padding-left: 16px;
		padding-right: 16px;
	}
	.section-6__top {
		margin-bottom: 0;
		gap: 32px;
	}
	.section-6__top-title {
		margin-bottom: 16px;
		font-size: 20px;
	}
	.section-6__top-name {
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
		margin-bottom: 20px;
	}
	.section-6__top-text {
		font-size: 14px;
	}
	.section-6__item {
		padding: 16px;
	}
	.section-6__item-img {
		flex: 0 0 32px;
	}
	.section-6__item-img img {
		width: 32px;
	}
}

.tarifs__block {
	padding: 90px 48px;
	border-radius: 16px;
	background: #fbfafc;
}
.tarifs__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	color: #382c40;
	margin-bottom: 48px;
}
.tarifs__item {
	border: 1px solid #9d63c6;
	border-radius: 12px;
	padding: 24px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}
.tarifs__item-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 0 1 604px;
}
.tarifs__item-img {
	flex: 0 0 280px;
}
.tarifs__item-img img {
	width: 100%;
	border-radius: 10px;
}
.tarifs__item-format {
	border: 1px solid #9d63c6;
	max-width: 170px;
	width: 100%;
	text-align: center;
	padding: 12px 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	color: #9d63c6;
	margin-bottom: 16px;
	border-radius: 100px;
}
.tarifs__item-list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin-bottom: 16px;
}
.tarifs__item-list li:last-of-type {
	margin-bottom: 0;
}
.tarifs__item-list span {
	font-size: 14px;
	line-height: 140%;
	color: #35474f;
}
.tarifs__item-right {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 1 471px;
	gap: 20px;
}
.tarifs__price-old {
	font-weight: 500;
	font-size: 16px;
	line-height: 110%;
	text-decoration: line-through;
	color: #919fa5;
	text-align: center;
	margin-bottom: 10px;
}
.tarifs__price-new {
	font-weight: 700;
	font-size: 48px;
	line-height: 110%;
	text-align: center;
	color: #2c3a40;
	text-align: center;
}

.check-btn-box {
	flex: 0 0 320px;
}

.tariffs__button {
	background: #b876e7;
	border-radius: 1000px;
	padding: 21px 0;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-align: center;
	display: block;
	margin-bottom: 12px;
}

.checkbox {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin-bottom: 12px;
}
.checkbox:last-of-type {
	margin-bottom: 0;
}
.checkbox a {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: #919fa5;
	text-decoration: underline;
}
.checkbox a:hover {
	color: #9d63c6;
}
.checkbox span {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: #9791a5;
}

.custom-checkbox {
	position: relative;
	top: 5px;
}

@media (max-width: 1200px) {
	.tarifs__item {
		flex-direction: column;
		max-width: 612px;
		width: 100%;
		margin: 0 auto;
	}
	.tarifs__item-left {
		flex: 0 0 auto;
		flex-direction: column;
	}
	.tarifs__item-right {
		flex-direction: column;
		flex: 0 0 auto;
		align-items: flex-start;
	}
	.check-btn-box {
		flex: 0 0 auto;
	}
	.tarifs__item-img {
		flex: 0 0 auto;
		width: 100%;
	}
	.tarifs__price {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.tarifs__price-old {
		margin-bottom: 0;
	}
}
@media (max-width: 768px) {
	.tarifs__item {
		background: none;
		border: none;
		padding: 0;
	}
	.tarifs__title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.tarifs__item-left {
		margin-bottom: 0;
	}
	.tarifs__item-list li {
		margin-bottom: 12px;
	}
	.tarifs__price-new {
		font-size: 40px;
	}
	.tarifs__item {
		gap: 20px;
	}
	.tarifs__block {
		padding: 64px 16px;
	}
}
.section-7__block {
	padding: 90px 48px;
	border-radius: 16px;
	background: #fbfafc;
}
.section-7__text {
	font-weight: 500;
	font-size: 40px;
	line-height: 110%;
	text-align: center;
	color: #382c40;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 32px;
}
.section-7__text span {
	color: #9d63c6;
	display: block;
}
.section-7__btn {
	display: block;
	background: #b876e7;
	border-radius: 1000px;
	padding: 21px 0;
	max-width: 320px;
	width: 100%;
	margin: 0 auto;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	.section-7__block {
		padding: 64px 16px;
	}
	.section-7__text {
		font-size: 30px;
		margin-bottom: 32px;
	}
	.section-7__btn {
		width: 100%;
		text-align: center;
		display: block;
		max-width: 100%;
	}
}
.section-8__block {
	padding: 90px 48px;
	border-radius: 16px;
	background: #fbfafc;
}
.section-8__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	color: #2c3a40;
	margin-bottom: 48px;
}
.section-8__row {
	display: flex;
	gap: 20px;
}
.section-8__item {
	flex: 0 1 33.333%;
	border: 1px solid #9d63c6;
	border-radius: 16px;
	padding: 24px;
	background: #fff;
}
.section-8__person {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}
.section-8__name {
	font-weight: 500;
	font-size: 24px;
	line-height: 110%;
	color: #322c40;
	margin-bottom: 8px;
}
.section-8__age {
	font-weight: 500;
	font-size: 14px;
	line-height: 110%;
	color: #9791a5;
}
.section-8__text {
	font-size: 16px;
	line-height: 140%;
	color: #3d354f;
}

@media (max-width: 768px) {
	.section-8__item {
		padding: 16px;
	}
	.section-8__block {
		padding: 64px 16px;
	}
	.section-8__name {
		font-size: 20px;
	}
	.section-8__age {
		font-size: 12px;
	}
	.section-8__title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.section-8__person {
		margin-bottom: 8px;
		gap: 12px;
	}
	.section-8__text {
		font-size: 14px;
	}
}
.owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #9d63c6 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #9d63c6 !important;
}

.owl-next {
	background-image: url('/first/img/sect-8/arrow-next.svg') !important;
	background-size: 20px 20px !important;
	width: 56px;
	height: 56px;
	border-radius: 50% !important;
	background-color: #9d63c6 !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	position: relative;
	z-index: 89;
}

.owl-next span {
	display: none;
}

.owl-prev {
	background-image: url('/first/img/sect-8/arrow-prev.svg') !important;
	background-size: 20px 20px !important;
	width: 56px;
	height: 56px;
	border-radius: 50% !important;
	border: #9d63c6 1px solid !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	position: relative;
	z-index: 89;
}

.owl-prev span {
	display: none;
}

.owl-theme .owl-nav {
	max-width: 211px;
	margin: 12px auto 0 auto !important;
	display: flex;
	justify-content: space-between;
}

.owl-theme .owl-nav [class*='owl-'] {
	margin: 0 !important;
}

.owl-dots {
	position: relative;
	top: -20px;
	margin: -17px 0 0 0;
}

.owl-prev:hover {
	background-color: transparent !important;
}

.owl-dot {
	width: 17px !important;
	height: 17px !important;
	border: 1px solid transparent !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
}

.owl-dot.active {
	border-color: #9d63c6 !important;
}

.owl-theme .owl-dots .owl-dot span {
	margin: 0px !important;
	width: 7px !important;
	height: 7px !important;
}

.owl-dots {
	display: flex !important;
	justify-content: center;
	gap: 8px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
	display: none !important;
}

.section-9__block {
	padding: 90px 182px;
	border-radius: 16px;
	background: #fbfafc;
}
.section-9__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	color: #2c4035;
	margin-bottom: 48px;
}
.section-9__accardion {
	border-radius: 10px;
	padding: 20px 32px;
	background: #fff;
	margin-bottom: 20px;
	cursor: pointer;
}
.section-9__accardion:last-of-type {
	margin-bottom: 0;
}
.section-9__accardion-top {
	display: flex;
	align-items: center;
	gap: 16px;
}
.section-9__btn {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	background: #b876e7;
	border-radius: 100px;
	position: relative;
}
.section-9__btn span:first-of-type {
	width: 14px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 33%;
}
.section-9__btn span:last-of-type {
	width: 2px;
	height: 14px;
	background-color: #fff;
	position: absolute;
	top: 35%;
	left: 48%;
	transform: rotate(0deg);
	transition: all 0.5s;
}
.section-9__accardion-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	color: #2c3940;
}
.section-9__accardion-text {
	display: none;
	padding-left: 56px;
	margin-top: 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #35454f;
}

.section-9__accardion.active .section-9__btn span:last-of-type {
	transform: rotate(90deg);
	transition: all 0.5s;
}

@media (max-width: 992px) {
	.section-9__block {
		padding: 96px 40px;
	}
}
@media (max-width: 768px) {
	.section-9__block {
		padding: 64px 16px;
	}
	.section-9__title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.section-9__accardion {
		padding: 16px;
		margin-bottom: 10px;
	}
	.section-9__btn {
		width: 24px;
		height: 24px;
		flex: 0 0 24px;
	}
	.section-9__btn span:first-of-type {
		width: 9px;
		height: 1px;
		top: 48%;
		left: 32%;
	}
	.section-9__btn span:last-of-type {
		width: 1px;
		height: 9px;
		top: 32%;
		left: 48%;
	}
	.section-9__accardion-title {
		font-size: 14px;
	}
	.section-9__accardion-text {
		font-size: 12px;
		padding: 0;
	}
}
.section-10__block {
	padding: 90px 182px;
	background: #fbfafc;
	border-radius: 16px;
}
.section-10__title {
	font-weight: 500;
	font-size: 48px;
	line-height: 110%;
	color: #2c3a40;
	margin-bottom: 48px;
}
.section-10__text {
	font-size: 14px;
	line-height: 140%;
	color: #9791a5;
	margin-bottom: 12px;
}
.section-10__text:last-of-type {
	margin-bottom: 0;
}
.section-10__text a {
	color: #9791a5;
}
.section-10__text a:hover {
	color: #9a76e7;
}

@media (max-width: 992px) {
	.section-10__block {
		padding: 96px 40px;
	}
}
@media (max-width: 768px) {
	.section-10__block {
		padding: 64px 16px;
	}
	.section-10__title {
		font-size: 30px;
		margin-bottom: 32px;
	}
	.section-10__text {
		font-size: 12px;
	}
}
.footer__block {
	border-radius: 16px;
	padding: 48px;
	background: #fbf5ff;
}
.footer__top {
	padding-bottom: 32px;
	border-bottom: 1px solid #d5e0e4;
}
.footer__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 56px;
}
.footer__nav-link {
	font-weight: 500;
	font-size: 14px;
	line-height: 110%;
	color: #919fa5;
}
.footer__nav-link:hover {
	color: #758186;
}
.footer__bottom {
	margin-top: 48px;
}
.footer__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer__item {
	font-weight: 500;
	font-size: 14px;
	line-height: 110%;
	color: #919fa5;
}
.footer__item:first-of-type p {
	margin-bottom: 12px;
}
.footer__item:last-of-type p {
	margin-bottom: 8px;
}
.footer__item a {
	color: #919fa5;
}
.footer__item a:hover {
	color: #758186;
}
@media (max-width: 992px) {
	.footer__row {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
		gap: 30px;
	}
}
@media (max-width: 768px) {
	.footer__nav {
		flex-direction: column;
		gap: 12px;
	}
	.footer__bottom {
		margin-top: 32px;
	}
	.footer__row {
		gap: 20px;
	}
	.footer__nav-link {
		font-size: 12px;
	}
	.footer__item {
		font-size: 12px;
	}
	.footer__item:last-of-type p {
		margin-bottom: 8px;
	}
	.footer__block {
		padding: 32px 16px 48px 16px;
	}
}
a.disabled {
	pointer-events: none;
	cursor: default;
	opacity: 0.4;
}
