@font-face {
	font-family: 'Tilda Sans';
	src: url('../fonts/TildaSans-Black.ttf') format('truetype');
	font-weight: 900;
	font-display: swap;
}

@font-face {
	font-family: 'Tilda Sans';
	src: url('../fonts/TildaSans-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-display: swap;
}

@font-face {
	font-family: 'Tilda Sans';
	src: url('../fonts/TildaSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Tilda Sans';
	src: url('../fonts/TildaSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Tilda Sans';
	src: url('../fonts/TildaSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}

:root {
	--primary: rgba(0, 0, 0, 1);
	--secondary: rgba(255, 255, 255, 1);
	--light-purple: rgba(169, 105, 249, 1);
	--dark-purple: rgba(62, 55, 159, 1);
	--light-blue: rgba(19, 207, 219, 1);

	--font-primary: 19px;
	--font-secondary: calc(var(--font-primary) - 2px);
	--font-additionaly: calc(var(--font-primary) + 4px);
	--font-title: calc(var(--font-primary) * 2);

	--primary-text: 'Tilda Sans', sans-serif;
}

body {
	z-index: -100000;
	position: relative;
}

html,
body,
input,
textarea,
button {
	font-family: var(--primary-text);
	font-size: var(--font-primary);
	font-weight: 700;
}

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

button {
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
}

a:active {
	color: initial;
}

ul {
	list-style: none;
	padding-left: 0;
}

h1,
h2,
h3,
p {
	margin: 0;
}

button {
	border: none;
	border-radius: 20px;
	padding: 6px 20px;
	cursor: pointer;
	color: var(--secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: normal;
}

button span {
	display: inline-block;
	transform: translateY(-1px);
	vertical-align: middle;
}

.header-wrapper {
	background: linear-gradient(
		90.5deg,
		rgba(255, 252, 252, 1) 10.97%,
		rgba(236, 236, 236, 1) 97.51%
	);
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

.header__logo {
	display: flex;
	align-items: center;
}

.header__logo img {
	width: 34px;
}

.header__button {
	background-color: var(--light-purple);
}

.burger {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
}

.burger__line {
	width: 100%;
	height: 4px;
	background-color: var(--light-blue);
	transition: background-color 0.3s ease-in-out;
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 245px;
	height: 100%;
	background-color: var(--secondary);
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	z-index: 100;
}

.menu__header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.menu__title {
	color: var(--light-purple);
}

.menu__close {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--primary);
	cursor: pointer;
}

.menu--active {
	transform: translateX(0);
}

.menu__list {
	list-style: none;
	padding: 0 20px;
}

.menu__item {
	margin: 15px 0;
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
}

.menu__link {
	color: var(--dark-purple);
	font-size: 18px;
}

.menu__icon {
	width: 10px;
	height: 10px;
}

.buttons__languages {
	padding: 5px;
	font-weight: 700;
	border: none;
	color: var(--dark-purple);
	background-color: transparent;
	cursor: pointer;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s 0.3s;
	z-index: 99;
}

.overlay--active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}

.header__button-login {
	visibility: hidden;
	position: absolute;
}

.web-menu {
	visibility: hidden;
	position: absolute;
}

.buttons__languages-web {
	visibility: hidden;
	position: absolute;
}

.buttons__languages-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__button-login-mobile {
	background-color: var(--light-blue);
	padding: 5px 20px;
}

.header__button-login-mobile-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.menu__item-click {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.submenu {
	display: none;
	position: absolute;
	background: transparent;
	list-style: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
	z-index: 1000;
	font-size: 17px;
}

.menu__item.active .submenu {
	display: block;
	position: static;
	opacity: 1;
	transform: translateY(0);
}

.submenu li {
	padding: 5px 20px;
}

.submenu li a {
	display: block;
	text-decoration: none;
	color: var(--dark-purple);
}

.menu__icon {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.menu__item.active .menu__icon {
	transform: rotate(180deg);
}

@media (min-width: 768px) {
	.header__buttons {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-left: -55px;
	}

	.header__button-login {
		visibility: visible;
		position: static;
		background-color: var(--light-blue);
	}

	.header__logo img {
		content: url('../images/logo.png');
		width: 90px;
	}

	.menu {
		width: 300px;
	}

	.header__button-login-mobile-wrapper {
		visibility: hidden;
	}
}

@media (min-width: 1024px) {
	.header-wrapper {
		width: 100%;
		min-height: 70px;
		background: linear-gradient(
			90.5deg,
			rgba(255, 252, 252, 1) 10.97%,
			rgba(236, 236, 236, 1) 97.51%
		);
		min-height: 70px;
		height: 1px;
	}

	.header__logo img {
		width: 120px;
	}

	.header {
		padding: 0 20px;
	}

	.header__container {
		display: flex;
		justify-content: space-between;
		height: 100%;
		align-items: center;
	}

	.burger {
		visibility: hidden;
		position: absolute;
	}

	.web-menu {
		visibility: visible;
		position: static;
		height: 100%;
		margin-left: -50px;
	}

	.web-menu__list {
		height: 100%;
		display: flex;
		margin: 0;
	}

	.web-menu__item {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	.submenu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: linear-gradient(
			90.5deg,
			rgba(255, 252, 252, 1) 60.97%,
			rgba(236, 236, 236, 1) 97.51%
		);
		list-style: none;
		padding: 10px 0;
		box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 1s ease, transform 1s ease;
		z-index: 1000;
	}

	.web-menu__item.active .submenu {
		display: block;
		opacity: 1;
		transform: translateY(0);
	}

	.submenu li {
		padding: 5px 20px;
	}

	.submenu li a {
		display: block;
		text-decoration: none;
		color: var(--dark-purple);
		font-size: 18px;
	}

	.menu__icon {
		margin-left: 5px;
		transition: transform 0.3s ease;
	}

	.web-menu__item.active .menu__icon {
		transform: rotate(180deg);
	}

	.menu__icon {
		margin-left: -15px;
	}

	.web-menu__item-link {
		color: var(--dark-purple);
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		padding: 0 20px;
	}

	.header__buttons {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.buttons__languages-web {
		visibility: visible;
		position: static;
		padding: 5px;
		font-weight: 700;
		border: none;
		color: var(--dark-purple);
		background-color: transparent;
		cursor: pointer;
	}

	.menu {
		display: flex;
	}

	.menu__list {
		display: flex;
		align-items: center;
		margin: 0;
	}

	.menu__item {
		padding: 0 20px;
	}

	.menu__item-link {
		color: var(--dark-purple);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu__item-link::after {
		content: '';
		width: 10px;
		height: 10px;
		background-image: url('../images/arrow.svg');
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 4px;
		transform: translateY(2px);
	}

	.buttons {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.buttons__login {
		background-color: var(--light-blue);
		padding: 10px 20px;
	}

	.buttons__register {
		background-color: var(--light-purple);
		padding: 10px 20px;
	}

	.buttons__languages {
		padding: 5px;
		font-weight: 700;
		color: var(--dark-purple);
		background-color: transparent;
	}

	.header__container {
		display: flex;
		justify-content: space-between;
		height: 100%;
		align-items: center;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
	}
}

@media (min-width: 1200px) {
	.web-menu {
		margin-left: 0;
	}

	.header__logo img {
		width: 150px;
	}

	.header {
		padding: 0;
	}
}

.intro {
	background: linear-gradient(
		104.29deg,
		rgba(168, 105, 249, 1) 22.24%,
		rgba(69, 57, 167, 1) 63.26%,
		rgba(34, 24, 74, 1) 93.67%
	);
	height: 875px;
	color: var(--secondary);
	text-align: center;
	padding: 20px 20px;
	position: relative;
	z-index: -1;
	overflow: hidden;
}

.intro__web {
	position: absolute;
	top: 540px;
	width: 150px;
	z-index: -4;
}

.intro__back {
	position: absolute;
	top: 720px;
	width: 300px;
	left: -100px;
	z-index: -4;
}

.intro__title {
	font-size: 49px;
	font-weight: 900;
}

.intro__wrapper-title {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 34px;
}

.intro__title--highlight {
	font-size: 75px;
}

.intro__icon {
	width: 30px;
	height: 30px;
	margin-top: 16px;
	margin-left: 5px;
}

.intro__icon-question {
	width: 30px;
	height: 30px;
	margin-left: 5px;
}

.intro__description {
	font-size: 20px;
	font-weight: 500;
	margin: 10px 0;
	margin-bottom: 20px;
}

.intro__info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(3, auto);
	gap: 0;
	margin-top: 20px;
	font-weight: 500;
	font-size: 18px;
	background: linear-gradient(155.41deg, #ffffff 24.13%, #dfdee5 96.78%);
	color: var(--dark-purple);
	border-radius: 20px;
	position: relative;
}

.intro__info::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -3px;
	border-radius: 22px;
	background: linear-gradient(357.17deg, #3e379f -6.46%, #13cfdb 30.73%);
}

.intro__info-item {
	display: contents;
}

.intro__info-item p {
	margin: 0;
	padding: 10px;
	border-bottom: 3px solid var(--light-blue);
	display: flex;
	align-items: center;
}

.intro__info-item p:first-child {
	justify-content: center;
	border-right: 3px solid var(--light-blue);
}

.intro__info-item p:last-child {
	justify-content: center;
}

.intro__info-item:nth-last-child(1) p {
	border-bottom: none;
}

.intro__button {
	height: 45px;
	border-radius: 80px;
	width: 250px;
	background-color: var(--light-blue);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
	z-index: 10;
	margin: 0 auto;
	margin-top: 30px;
}

.features {
	position: relative;
}

.features__image {
	width: 80%;
	margin-bottom: 20px;
	margin-top: 40px;
}

.features__browsers {
	position: absolute;
	top: 0;
}

.features__browser-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(221, 221, 221, 0.8);
	border-radius: 5px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 900;
}

.features__name {
	color: var(--dark-purple);
}

.features__browser {
	color: var(--light-blue);
}

.features__icon {
	width: 25px;
	height: 25px;
}

.features__icon-android {
	width: 25px;
	height: 30px;
}

.features__browser-mimic {
	width: 130px;
	height: 35px;
	margin-top: 54px;
	margin-left: 25px;
}

.features__browser-stealthfox {
	width: 150px;
	height: 35px;
	margin-top: 4px;
	margin-left: 75px;
}

.features__browser-android {
	height: 44px;
	width: 170px;
	margin-top: 4px;
	margin-left: 35px;
}

.description__container {
	visibility: hidden;
	position: absolute;
}

.intro__web-browser {
	visibility: hidden;
	max-width: 0;
}

.intro__back1 {
	visibility: hidden;
	max-width: 0;
}

.intro__back2 {
	visibility: hidden;
	max-width: 0;
}

.description__questions-wrapper {
	position: fixed;
	right: 5px;
	bottom: 7px;
	z-index: 1000;
}

.description__button--questions-img {
	max-width: 80px;
	min-width: 80px;
}

.description__button--questions {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.intro-wrapper {
	z-index: -10;
	position: sticky;
}

@media (min-width: 375px) {
	.features__browser-wrapper {
		font-size: 15px;
	}

	.intro__title--highlight {
		font-size: 85px;
	}

	.features__icon {
		width: 25px;
		height: 25px;
	}

	.features__icon-android {
		width: 25px;
		height: 30px;
	}

	.features__browser-mimic {
		width: 135px;
		margin-top: 60px;
		margin-left: 35px;
	}

	.features__browser-stealthfox {
		width: 155px;
		margin-top: 9px;
		margin-left: 120px;
	}

	.features__browser-android {
		width: 175px;
		margin-top: 9px;
		margin-left: 55px;
	}

	.intro__web {
		top: 520px;
		width: 200px;
	}

	.intro__back {
		top: 690px;
		width: 300px;
		left: -100px;
	}
}

@media (min-width: 425px) {
	.features__browser-wrapper {
		font-size: 18px;
	}

	.features__icon {
		width: 30px;
		height: 30px;
	}

	.features__icon-android {
		width: 30px;
		height: 35px;
	}

	.features__browser-mimic {
		width: 170px;
		height: 40px;
		margin-top: 60px;
		margin-left: 45px;
	}

	.features__browser-stealthfox {
		width: 175px;
		height: 50px;
		margin-top: 9px;
		margin-left: 145px;
	}

	.features__browser-android {
		width: 195px;
		margin-top: 14px;
		height: 50px;
		margin-left: 75px;
	}

	.features {
		max-width: 550px;
		margin: 0 auto;
	}

	.intro__web {
		top: 445px;
		width: 240px;
	}

	.intro__back {
		top: 690px;
		width: 350px;
		left: -100px;
	}
}

@media (min-width: 500px) {
	.features__browser-wrapper {
		font-size: 20px;
	}

	.features__icon {
		width: 32px;
		height: 32px;
	}

	.features__icon-android {
		width: 32px;
		height: 37px;
	}

	.features__browser-mimic {
		width: 185px;
		height: 45px;
		margin-top: 70px;
		margin-left: 70px;
	}

	.features__browser-stealthfox {
		width: 190px;
		height: 55px;
		margin-top: 12px;
		margin-left: 195px;
	}

	.features__browser-android {
		width: 215px;
		margin-top: 14px;
		height: 55px;
		margin-left: 105px;
	}
}

@media (min-width: 768px) {
	.features__browser-wrapper {
		font-size: 20px;
	}

	.description__button--questions-img {
		max-width: 100px;
		min-width: 100px;
	}

	.features__icon {
		width: 36px;
		height: 36px;
	}

	.features__icon-android {
		width: 36px;
		height: 41px;
	}

	.features__browser-mimic {
		width: 190px;
		height: 45px;
		margin-top: 70px;
		margin-left: 90px;
	}

	.features__browser-stealthfox {
		width: 190px;
		height: 55px;
		margin-top: 16px;
		margin-left: 250px;
	}

	.features__browser-android {
		width: 215px;
		margin-top: 16px;
		height: 55px;
		margin-left: 135px;
	}

	.intro__web {
		top: 430px;
		right: 20px;
		width: 300px;
	}

	.intro__back {
		top: 500px;
		width: 450px;
		left: -100px;
	}

	.intro {
		height: 840px;
	}
}

@media (min-width: 1024px) {
	.intro {
		visibility: hidden;
		position: absolute;
	}

	.description__container {
		visibility: visible;
		position: relative;
		overflow: hidden;
		padding: 0 40px;
		height: 740px;
	}

	.intro__web {
		visibility: hidden;
	}

	.intro__back {
		visibility: hidden;
	}

	.intro__web-browser {
		position: absolute;
		visibility: visible;
		max-width: 300px;
		right: 0px;
		top: 70px;
	}

	.intro__back1 {
		position: absolute;
		left: -240px;
		visibility: visible;
		max-width: 700px;
		top: 350px;
	}

	.intro__back2 {
		position: absolute;
		max-width: 700px;
		top: 280px;
		visibility: visible;
		left: 600px;
	}

	.intro-wrapper {
		background: linear-gradient(
			104.29deg,
			rgba(168, 105, 249, 1) 22.24%,
			rgba(69, 57, 167, 1) 63.26%,
			rgba(34, 24, 74, 1) 93.67%
		);
		color: var(--secondary);
		overflow: hidden;
		height: 580px;
	}

	.description__laptop-container {
		z-index: 5;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
	}

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

	.description__button--begin-work {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 22px;
		margin-top: 30px;
		width: 330px;
		height: 50px;
		border-radius: 30px;
	}

	.intro__icon {
		width: 40px;
		height: 40px;
		margin-left: -20px;
	}

	.description__logo {
		min-width: 570px;
		z-index: 5;
	}

	.description__title {
		margin-top: 40px;
		font-size: 46px;
		font-weight: 900;
	}

	.description__highlight {
		font-size: 80px;
		font-weight: 800;
	}

	.description__text {
		font-size: 22px;
		font-weight: 500;
		margin-top: 20px;
	}

	.description__details {
		display: grid;
		grid-template-columns: 1.2fr 1fr 1fr;
		grid-template-rows: min-content min-content;
		background: linear-gradient(155.41deg, #ffffff 24.13%, #dfdee5 96.78%);
		position: relative;
		color: var(--dark-purple);
		border-radius: 21px;
		background-clip: padding-box;
		font-weight: 900;
		border: 4px solid transparent;
		margin-top: 25px;
		font-weight: 500;
	}

	.description__details::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		margin: -3px;
		border-radius: 20px;
		background: linear-gradient(357.17deg, #3e379f -6.46%, #13cfdb 30.73%);
	}

	.web_detail {
		max-height: 50px;
		min-height: 50px;
	}

	.description__detail {
		display: grid;
		font-size: 18px;
		grid-template-rows: 1fr 0.5fr;
		border-right: 3px solid var(--light-blue);
	}

	.description__detail p {
		margin: 0;
		padding: 10px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		border-bottom: 3px solid var(--light-blue);
		background-color: transparent;
	}

	.description__detail:last-child {
		border-right: none;
	}

	.description__details p:last-child {
		border-bottom: none;
	}

	.description__icon {
		width: var(--font-primary);
		height: var(--font-primary);
		margin-top: 18px;
	}

	.description__browser-wrapper {
		background: rgba(221, 221, 221, 0.8);
		height: 75px;
		width: 400px;
		border-radius: 20px;
		display: flex;
		align-items: center;
		padding: 0 30px;
	}

	.description__laptop-wrapper {
		background-image: url('../images/lapTop1.png');
		background-size: contain;
		background-repeat: no-repeat;
		width: 400px;
		height: 325px;
		margin-top: 126px;
		padding-top: 4px;
		margin-left: 5px;
	}

	.features__icon {
		width: 40px;
		height: 40px;
	}

	.features__icon-android {
		width: 40px;
		height: 50px;
	}

	.description__browser-wrapper-first {
		margin-top: 40px;
		margin-left: 20px;
		width: 240px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.description__browser-wrapper-second {
		margin-top: 10px;
		margin-left: 150px;
		width: 290px;
		display: flex;
		height: 60px;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.description__browser-wrapper-third {
		margin-top: 10px;
		margin-left: 40px;
		height: 70px;
		width: 300px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.description__browser-name {
		color: var(--dark-purple);
		font-weight: 900;
		font-size: 24px;
		text-align: center;
	}

	.description__browser-type {
		color: var(--light-blue);
		font-weight: 900;
	}

	.description__questions-wrapper {
		position: fixed;
		right: 20px;
		bottom: 5px;
		z-index: 1000;
	}

	.description__button--questions {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (min-width: 1200px) {
	.description__questions-wrapper {
		position: fixed;
		right: 20px;
		bottom: -17px;
		z-index: 1000;
	}

	.description__questions-wrapper {
		position: fixed;
		right: 20px;
		bottom: 24px;
		z-index: 1000;
	}

	.intro-wrapper {
		height: 720px;
	}

	.intro__web-browser {
		width: 500px;
		right: -100px;
		top: 50px;
	}

	.intro__back1 {
		left: -400px;
		top: 400px;
	}

	.intro__back2 {
		top: 365px;
		left: 360px;
	}

	.description__container {
		padding: 0;
		overflow: visible;
	}

	.description__button--begin-work {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 30px;
		width: 400px;
		height: 60px;
		border-radius: 30px;
	}

	.description__logo {
		min-width: 650px;
		font-weight: 900;
	}

	.description__title {
		margin-top: 60px;
		font-size: 56px;
	}

	.description__highlight {
		font-size: 100px;
		font-weight: 800;
	}

	.description__text {
		font-size: 26px;
		font-weight: 500;
		margin-top: 35px;
	}

	.description__details {
		display: grid;
		grid-template-columns: 1.2fr 1fr 1fr;
		grid-template-rows: min-content min-content;
		border: 1px solid transparent;
		margin-top: 35px;
		font-weight: 500;
		border-radius: 19px;
	}

	.description__detail {
		display: grid;
		font-size: 20px;
		grid-template-rows: 1fr 0.5fr;
		border-right: 3px solid var(--light-blue);
	}

	.description__detail p {
		margin: 0;
		padding: 10px;
		text-align: center;
		border-bottom: 3px solid var(--light-blue);
		background-color: transparent;
	}

	.description__detail:last-child {
		border-right: none;
	}

	.description__details p:last-child {
		border-bottom: none;
	}

	.description__icon {
		width: var(--font-primary);
		height: var(--font-primary);
		margin-top: 18px;
	}

	.description__browser-wrapper {
		background: rgba(221, 221, 221, 0.8);
		height: 75px;
		width: 400px;
		border-radius: 20px;
		display: flex;
		align-items: center;
	}

	.description__laptop-wrapper {
		background-image: url('../images/lapTop1.png');
		background-size: contain;
		background-repeat: no-repeat;
		width: 652px;
		height: 452px;
		margin-top: 126px;
		padding-top: 4px;
	}

	.description__browser-wrapper-first {
		margin-top: 50px;
		margin-left: 42px;
		width: 350px;
	}

	.description__browser-wrapper-second {
		margin-top: 20px;
		margin-left: 210px;
	}

	.description__browser-wrapper-third {
		margin-top: 20px;
		margin-left: 80px;
		height: 90px;
	}

	.description__browser-name {
		color: var(--dark-purple);
		font-weight: 900;
		font-size: var(--font-title);
		text-align: center;
	}

	.description__browser-type {
		color: var(--light-blue);
		font-weight: 900;
	}
}

.advantages {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}

.advantages-dignity__block {
	display: block;
	max-width: 265px;
	height: 630px;
	background: linear-gradient(174.78deg, #ffffff 59.85%, #dfdee5 97.11%);
	margin-top: -60px;
	border-radius: 29px;
	padding: 20px;
	padding-left: 40px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	position: relative;
	background-clip: padding-box;
	border: 4px solid transparent;
}

.advantages-dignity__block::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: -4px;
	z-index: -1;
	border-radius: 28px;
	background: linear-gradient(
		357.17deg,
		#3e379f -6.46%,
		#13cfdb 14.6%,
		#a969f9 48.88%,
		#a969f9 94.34%
	);
}

.advantages-dignity__title {
	margin-top: 10px;
	font-size: 21px;
	font-weight: 900;
	line-height: 24px;
}

.advantages-dignity__block-icon {
	width: 36px;
	height: 36px;
}

.advantages-dignity__highlight {
	color: var(--light-purple);
}

.advantages-dignity__item {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	font-weight: 500;
	font-size: 17px;
	margin-top: 15px;
}

.advantages-dignity__icon {
	max-width: 13px;
	min-width: 13px;
	max-height: 13px;
	min-height: 13px;
	margin-top: 4px;
}

.advantages-minus__list {
	margin-left: -25px;
}

.advantages-minus__block {
	display: block;
	max-width: 265px;
	height: 510px;
	background: rgba(34, 24, 74, 1);
	border-radius: 29px;
	padding: 20px;
	padding-left: 40px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	position: relative;
	color: var(--secondary);
	margin-top: 40px;
	background-clip: padding-box;
	border: 4px solid transparent;
}

.advantages-minus__block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: -4px;
	border-radius: 28px;
	z-index: -1;
	background: linear-gradient(
		348.02deg,
		#22184a -15.72%,
		#3e379f 11.93%,
		#13cfdb 85.26%,
		#a969f9 101.88%
	);
}

.advantages-minus__title {
	margin-top: 10px;
	font-size: 21px;
	font-weight: 900;
	line-height: 24px;
}

.advantages-minus__list p {
	font-size: 19px;
}

.advantages-minus__block-icon {
	width: 36px;
	height: 36px;
}

.advantages-dignity__list p {
	font-size: 19px;
}

.advantages-minus__highlight {
	color: var(--light-blue);
}

.advantages-minus__item {
	display: flex;
	gap: 1px;
	justify-content: flex-start;
	align-items: flex-start;
	font-weight: 500;
	font-size: 17px;
	margin-top: 15px;
}

.advantages-minus__icon {
	max-width: 13px;
	min-width: 13px;
	max-height: 13px;
	min-height: 13px;
	margin-top: 4px;
}

.advantages-minus__text {
	margin-left: 10px;
}

.advantages__button-psbl {
	margin-top: 30px;
	height: 45px;
	border-radius: 80px;
	width: 250px;
	background-color: var(--light-blue);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 35px;
}

.advantages__button {
	margin-top: 30px;
	height: 45px;
	border-radius: 80px;
	width: 250px;
	background-color: var(--light-blue);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 35px;
}

.advantages-dignity__list {
	margin-left: -24px;
}

@media (min-width: 375px) {
	.advantages-dignity__block {
		height: 540px;
		max-width: 320px;
	}

	.dynamicImage1Text {
		margin-left: -24px;
	}

	.privilege__important-icon {
		margin-left: -6px;
	}

	.advantages-minus__block {
		height: 460px;
		max-width: 320px;
	}
}

@media (min-width: 425px) {
	.advantages-dignity__block {
		height: 450px;
		margin-top: -75px;
		max-width: 350px;
	}

	.advantages-minus__block {
		height: 450px;
		max-width: 350px;
	}
}

@media (min-width: 768px) {
	.advantages {
		display: flex;
		justify-content: space-between;
	}

	.dynamicImage1Text {
		margin-left: 0px;
	}

	.advantages-dignity__blocks {
		display: flex;
		justify-content: center;
		gap: 15px;
	}

	.advantages-dignity__block {
		width: 300px;
		height: 490px;
		margin-top: -50px;
	}

	.advantages-minus__block {
		width: 300px;
		height: 490px;
		margin-top: -50px;
	}

	.advantages-minus__list {
		margin-top: 41px;
	}
}

@media (min-width: 1024px) {
	.advantages-dignity__blocks {
		width: 100%;
	}

	.advantages-dignity__block {
		min-width: 375px;
		max-width: 375px;
		height: 700px;
		margin-top: -45px;
		padding: 30px;
		padding-left: 65px;
		border-radius: 27px;
	}

	.advantages-dignity__block::before {
		top: -1px;
		left: -1px;
		right: -1px;
		bottom: -1px;
	}

	.advantages-minus__block::before {
		top: -1px;
		left: -1px;
		right: -1px;
		bottom: -1px;
	}

	.advantages-minus__block {
		min-width: 375px;
		max-width: 375px;
		height: 700px;
		margin-top: -45px;
		padding: 30px;
		padding-left: 65px;
		border-radius: 27px;
	}

	.advantages-dignity__title {
		margin-top: 10px;
		font-size: 30px;
		font-weight: 900;
		line-height: 32px;
		margin-top: 5px;
	}

	.advantages-minus__title {
		margin-top: 10px;
		font-size: 30px;
		font-weight: 900;
		line-height: 32px;
		margin-top: 5px;
	}

	.advantages-dignity__block-icon {
		width: 70px;
		height: 70px;
	}

	.advantages-minus__block-icon {
		width: 66px;
		height: 66px;
	}

	.advantages-dignity__list .advantages-dignity__text {
		margin-left: 10px;
		font-size: 22px;
		font-weight: 500;
		margin-top: 20px;
	}

	.advantages-minus__list .advantages-minus__text {
		margin-left: 10px;
		font-size: 22px;
		font-weight: 500;
		margin-top: 20px;
	}

	.advantages-dignity__icon {
		max-width: 20px;
		max-height: 20px;
		margin-top: 23px;
	}

	.advantages-minus__icon {
		max-width: 20px;
		max-height: 20px;
		margin-top: 4px;
		margin-top: 23px;
	}

	.advantages-minus__item {
		gap: 10px;
	}

	.advantages-dignity__list {
		margin-left: -40px;
	}

	.advantages-minus__list {
		margin-left: -40px;
		margin-top: 52px;
	}

	.advantages__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 22px;
		margin-top: 45px;
		margin-bottom: 50px;
		width: 330px;
		height: 50px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.advantages__button-psbl {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 22px;
		margin-top: 45px;
		margin-bottom: 50px;
		width: 330px;
		height: 50px;
		border-radius: 30px;
		color: var(--secondary);
	}
}

@media (min-width: 1200px) {
	.advantages-dignity__block {
		min-width: 530px;
		max-width: 530px;
		height: 750px;
		margin-top: -70px;
		padding: 30px;
		padding-left: 80px;
		border-radius: 27px;
	}

	.advantages__button-psbl {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 50px;
		width: 440px;
		height: 60px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.advantages-minus__block {
		min-width: 530px;
		max-width: 530px;
		height: 750px;
		margin-top: -70px;
		padding: 30px;
		padding-left: 80px;
		border-radius: 27px;
	}

	.advantages-dignity__title {
		margin-top: 10px;
		font-size: 34px;
		font-weight: 900;
		line-height: 40px;
		margin-top: 20px;
	}

	.advantages-minus__title {
		margin-top: 10px;
		font-size: 34px;
		font-weight: 900;
		line-height: 40px;
		margin-top: 20px;
	}

	.advantages-dignity__block-icon {
		width: 80px;
		height: 80px;
	}

	.advantages-minus__block-icon {
		width: 76px;
		height: 76px;
	}

	.advantages-dignity__list .advantages-dignity__text {
		margin-left: 10px;
		font-size: 26px;
		font-weight: 500;
		margin-top: 20px;
	}

	.advantages-minus__list {
		margin-top: 62px;
	}

	.advantages-minus__list .advantages-minus__text {
		margin-left: 10px;
		font-size: 26px;
		font-weight: 500;
		margin-top: 20px;
	}

	.advantages-dignity__icon {
		max-width: 20px;
		max-height: 20px;
		margin-top: 23px;
	}

	.advantages-minus__icon {
		max-width: 20px;
		max-height: 20px;
		margin-top: 4px;
		margin-top: 23px;
	}

	.advantages__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 50px;
		width: 440px;
		height: 60px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.advantages__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 50px;
		width: 440px;
		height: 60px;
		border-radius: 30px;
		color: var(--secondary);
	}
}

.possibilities {
	background: linear-gradient(
		102.03deg,
		#a869f9 0.75%,
		#4539a7 43.26%,
		#22184a 93.46%
	);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 20px;
	overflow: hidden;
	z-index: -2;
}

.possibilities__back {
	position: absolute;
	top: 2550px;
	left: -130px;
	z-index: -100;
}

.possibilities__message {
	position: absolute;
	top: -5px;
	right: -10px;
}

.possibilities__title-wrapper {
	text-align: center;
}

.possibilities__title {
	color: var(--secondary);
	font-size: 28px;
	margin-top: 90px;
	font-weight: 900;
}

.possibilities__highlight {
	color: var(--light-blue);
	font-weight: 900;
}

.privilege__title-wrapper .privilege__title {
	font-size: 28px;
}

.privilege__title-wrapper .privilege__subtitle {
	font-size: 19px;
	line-height: 24px;
}

.possibilities__block1 {
	height: 300px;
}

.possibilities__block2 {
	height: 300px;
}

.possibilities__block3 {
	height: 300px;
}

.possibilities__block4 {
	height: 550px;
}

.possibilities__block5 {
	height: 550px;
}

.possibilities__block {
	background-color: var(--secondary);
	max-width: 300px;
	padding: 24px;
	margin-top: 40px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	background: linear-gradient(174.78deg, #ffffff 40.46%, #dfdee5 97.11%);
	border-radius: 24px;
	background-clip: padding-box;
	border: 4px solid transparent;
	position: relative;
	padding-bottom: 30px;
}

.possibilities__block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 22px;
	z-index: -1;
	margin: -4px;
	background: linear-gradient(357.17deg, #3e379f -6.46%, #13cfdb 14.6%);
}

.possibilities__block-text {
	font-size: 19px;
}

.possibilities__block-icon {
	width: 50px;
	height: 50px;
}

.possibilities__block-title {
	color: var(--dark-purple);
	font-size: 24px;
	font-weight: 900;
	margin-top: 10px;
}

.possibilities__block-subtitle {
	font-weight: 500;
	margin-top: 20px;
	font-size: 19px;
}

.possibilities__block-list {
	font-size: 15px;
	font-weight: 500;
	margin: 0;
	padding-left: 22px;
}

.possibilities__block-item {
	margin-top: 10px;
}

.possibilities__button {
	margin-top: 50px;
	min-height: 45px;
	border-radius: 80px;
	width: 250px;
	background-color: var(--light-blue);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 35px;
}

.possibilities__back2 {
	visibility: hidden;
	position: absolute;
	max-width: 0;
	z-index: -100;
}

@media (min-width: 375px) {
	.possibilities__back {
		top: 1630px;
		left: -140px;
	}

	.possibilities__block1 {
		height: 260px;
	}

	.possibilities__block2 {
		height: 260px;
	}

	.possibilities__block3 {
		height: 260px;
	}

	.possibilities__block4 {
		height: 500px;
	}

	.possibilities__block5 {
		height: 500px;
	}
}

@media (min-width: 425px) {
	.possibilities__block4 {
		height: 450px;
	}

	.possibilities__block5 {
		height: 450px;
	}

	.possibilities__back {
		top: 2230px;
		left: -120px;
	}
}

@media (min-width: 768px) {
	.possibilities__title-wrapper-with-message {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.possibilities__block-list {
		padding-left: 16px;
	}

	.possibilities__back {
		visibility: hidden;
	}

	.possibilities__back2 {
		visibility: visible;
		top: 1150px;
		left: -30px;
		min-width: 500px;
		max-width: 500px;
	}

	.possibilities__title {
		margin-top: 0;
		margin-left: 185px;
	}

	.possibilities__message {
		position: static;
		margin-left: 60px;
	}

	.possibilities__wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-top: 15px;
	}

	.possibilities__block {
		margin-top: 0;
	}

	.possibilities__block4 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 3;
	}

	.possibilities__block5 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 3;
		grid-row-end: 6;
	}

	.possibilities__block1 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.possibilities__block2 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 4;
	}

	.possibilities__block3 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 4;
		grid-row-end: 6;
	}

	.possibilities__block1 {
		height: 277px;
	}

	.possibilities__block2 {
		height: 277px;
	}

	.possibilities__block3 {
		height: 277px;
	}

	.possibilities__button {
		z-index: 5;
	}

	.possibilities__message-img {
		margin-top: -20px;
	}
}

@media (min-width: 1024px) {
	.possibilities__block {
		min-width: 420px;
		max-width: 420px;
		padding: 30px;
	}

	.possibilities__wrapper {
		gap: 20px;
	}

	.possibilities__message-img {
		min-width: 170px;
		max-width: 170px;
	}

	.possibilities__back2 {
		top: 1300px;
		left: -30px;
		min-width: 500px;
		max-width: 500px;
	}

	.possibilities__title {
		color: var(--secondary);
		font-size: 30px;
		font-weight: 900;
	}

	.possibilities__block-title {
		color: var(--dark-purple);
		font-weight: 900;
		font-size: 35px;
		margin-top: 10px;
	}

	.possibilities__block-subtitle {
		font-weight: 500;
		margin-top: 20px;
		font-size: 22px;
	}

	.possibilities__block-item {
		margin-top: 20px;
	}

	.possibilities__block-list {
		font-size: 22px;
		margin: 0;
		padding-left: 22px;
	}

	.possibilities__block-icon {
		width: 55px;
		height: 55px;
	}

	.possibilities__block-text {
		font-size: 22px;
	}

	.possibilities__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 22px;
		margin-top: 45px;
		margin-bottom: 50px;
		width: 330px;
		height: 50px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.possibilities__block1 {
		height: 297px;
	}

	.possibilities__block2 {
		height: 297px;
	}

	.possibilities__block3 {
		height: 297px;
	}

	.possibilities__block4 {
		height: 490px;
	}

	.possibilities__block5 {
		height: 490px;
	}
}

@media (min-width: 1200px) {
	.possibilities__block {
		min-width: 530px;
		max-width: 530px;
		padding: 30px;
	}

	.possibilities__block-text {
		font-size: 26px;
	}

	.possibilities__back2 {
		top: 1170px;
		left: -330px;
		min-width: 1150px;
		max-width: 1150px;
		transform: rotate(4deg);
	}

	.possibilities__wrapper {
		gap: 35px;
	}

	.possibilities__title {
		font-size: 45px;
		font-weight: 900;
		margin-left: 240px;
	}

	.possibilities__block-title {
		font-size: 34px;
		margin-top: 10px;
	}

	.possibilities__block-subtitle {
		font-weight: 500;
		font-size: 26px;
	}

	.possibilities__block-item {
		margin-top: 26px;
	}

	.possibilities__block-list {
		font-size: 26px;
		margin: 0;
		padding-left: 28px;
	}

	.possibilities__block-icon {
		width: 60px;
		height: 60px;
	}

	.possibilities__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 50px;
		width: 440px;
		height: 60px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.possibilities__block1 {
		height: 332px;
	}

	.possibilities__block2 {
		height: 332px;
	}

	.possibilities__block3 {
		height: 332px;
	}

	.possibilities__block4 {
		height: 550px;
	}

	.possibilities__block5 {
		height: 550px;
	}
}

.eclips {
	position: absolute;
	z-index: 1;
	top: 320px;
	right: -110px;
	max-height: 750px;
}

.privilege__title-wrapper {
	text-align: center;
}

.privilege__title {
	color: var(--light-purple);
	font-size: 26px;
	font-weight: 900;
}

.privilege__highlight {
	color: var(--dark-purple);
	font-size: 26px;
	font-weight: 900;
}

.privilege__subtitle {
	font-weight: 400;
	color: var(--dark-purple);
	font-size: 14px;
	line-height: 20px;
	margin-top: 30px;
}

.image__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.slider-content {
	display: none;
	flex-direction: column;
	position: relative;
	background-clip: padding-box;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	margin-top: 40px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	background: linear-gradient(
		348.02deg,
		#22184a -15.72%,
		#3e379f 11.93%,
		#13cfdb 85.26%,
		#a969f9 101.88%
	);
	border-radius: 25px;
	width: 250px;
}

.slider-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 22px;
	margin: 4px;
	z-index: -1;
	background: rgba(34, 24, 74, 1);
}

.slider-content.active {
	transform: translateX(0);
	display: flex;
}

.slider-content.previous {
	transform: translateX(-100%);
}

.slider-content.next {
	transform: translateX(100%);
}

.slider-content__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.slider-content__title {
	color: var(--light-blue);
	width: 160px;
	font-size: 22px;
}

.slider-content__subtitle {
	color: var(--secondary);
	margin-top: 25px;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}

.slider-content__button {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: transparent;
	font-size: 14px;
	margin-top: 10px;
	font-weight: 500;
	gap: 20px;
	text-align: start;
	width: 245px;
}

.icon-wrapper {
	position: relative;
	width: 35px;
	height: 35px;
}

.slider-content__button.active {
	background-color: var(--light-blue);
}

.privilege-icon {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 35px;
	min-width: 35px;
	max-height: 35px;
	min-height: 35px;
}

.active-icon {
	z-index: 2;
	opacity: 0;
}

.inactive-icon {
	z-index: 1;
	opacity: 1;
}

.slider-content__button.active .active-icon {
	opacity: 1;
}

.slider-content__button.active .inactive-icon {
	opacity: 0;
}

.slider-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.image-area {
	margin-top: 20px;
}

.sliderButton {
	max-width: 150px;
	font-size: 16px;
}

.slider-btn {
	cursor: pointer;
	padding: 0;
	background-color: transparent;
}

.privilege__important {
	background-color: var(--light-purple);
	border-radius: 15px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	color: var(--secondary);
	font-weight: 500;
	font-size: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 100px;
	padding: 10px 18px;
	margin-top: 20px;
	text-align: center;
	margin-bottom: 70px;
	width: 250px;
}

.slider-content__button1 {
	max-height: 75px;
}

.slider-content__button2 {
	max-height: 160px;
}

.slider-content__button6 {
	max-height: 66px;
}

.slider-content__button7 {
	max-height: 220px;
}

.image__wrapper1 {
	position: absolute;
	visibility: hidden;
	z-index: 2;
}

.image__wrapper2 {
	position: absolute;
	visibility: hidden;
	z-index: 2;
}

@media (min-width: 375px) {
	.slider-content__button {
		width: 295px;
	}

	.slider-content {
		width: 290px;
	}
	.privilege__important {
		width: 290px;
	}

	.sliderButton {
		max-width: 190px;
	}

	.privilege__important-icon {
		max-width: 50px;
		min-width: 50px;
		max-height: 50px;
		min-height: 50px;
	}
}

@media (min-width: 425px) {
	.slider-content__button {
		width: 335px;
	}

	.slider-content {
		width: 340px;
	}

	.sliderButton {
		max-width: 230px;
	}

	.eclips {
		top: 310px;
	}
}

@media (min-width: 768px) {
	.slider-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		row-gap: 50px;
	}

	.sliderButton {
		max-width: 190px;
	}

	.slider-btn {
		position: absolute;
		visibility: hidden;
	}

	.slider-content {
		display: flex;
		position: relative;
		border-radius: 26px;
	}

	.slider-content::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 23px;
		z-index: -1;
		pointer-events: none;
		margin: 4px;
	}

	.image__wrapper1 {
		position: static;
		visibility: visible;
		max-width: 300px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.image__wrapper2 {
		position: static;
		visibility: visible;
		max-width: 300px;
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
		margin-top: 0;
	}

	.slider-content1 {
		max-width: 300px;
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.slider-content2 {
		max-width: 300px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 2;
		grid-row-end: 3;
		margin-top: -20px;
	}

	.image__wrapper {
		position: absolute;
		visibility: hidden;
	}

	.slider-content__button {
		width: 290px;
	}

	.image-slide1 {
		max-width: 310px;
	}

	.image-slide2 {
		max-width: 310px;
	}

	.eclips {
		top: 200px;
		min-height: 950px;
		right: 350px;
	}

	.privilege__important-icon {
		max-width: 50px;
		min-width: 50px;
		max-height: 50px;
		min-height: 50px;
	}

	.privilege__important {
		min-width: 300px;
		max-width: 300px;
		padding: 10px 10px;
	}
}

@media (min-width: 1024px) {
	.privilege__title-wrapper .privilege__title {
		font-size: 35px;
		margin-top: 30px;
	}

	.slider-content__button {
		gap: 30px;
	}

	.eclips {
		top: 350px;
		left: -650px;
		max-height: 1250px;
	}

	.image-slide1 {
		max-width: 400px;
	}

	.image-slide2 {
		max-width: 400px;
	}

	.privilege-icon {
		max-width: 45px;
		min-width: 45px;
		max-height: 45px;
		min-height: 45px;
	}

	.icon-wrapper {
		margin-bottom: 10px;
	}

	.sliderButton {
		max-width: 310px;
		font-size: 20px;
	}

	.privilege__title-wrapper .privilege__highlight {
		font-size: 35px;
	}

	.privilege__title-wrapper .privilege__subtitle {
		font-size: 22px;
		line-height: 25px;
		width: 800px;
	}

	.image__wrapper1 {
		position: static;
		visibility: visible;
		padding: 30px;
		min-width: 420px;
		max-width: 420px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 2;
		padding-top: 100px;
	}

	.image__wrapper2 {
		position: static;
		visibility: visible;
		padding: 30px;
		min-width: 420px;
		max-width: 420px;
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
		padding-top: 100px;
		margin-top: -50px;
	}

	.slider-content1 {
		min-width: 420px;
		max-width: 420px;
		grid-column-start: 2;
		padding: 30px;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.slider-content2 {
		min-width: 420px;
		max-width: 420px;
		padding: 30px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 2;
		grid-row-end: 3;
		margin-top: -20px;
	}

	.slider-content__title {
		font-size: 30px;
		width: 300px;
	}

	.slider-content__subtitle {
		font-size: 20px;
		line-height: 24px;
	}

	.slider-content__button {
		width: 415px;
		font-size: 20px;
		margin-top: 20px;
	}

	.privilege__important {
		font-size: 20px;
		min-width: 390px;
		max-width: 390px;
		padding: 10px 20px;
	}

	.privilege__important-icon {
		max-width: 50px;
		min-width: 50px;
		max-height: 50px;
		min-height: 50px;
	}
}

@media (min-width: 1200px) {
	.privilege__title-wrapper .privilege__title {
		font-size: 45px;
		margin-top: 30px;
	}

	.slider-content__button {
		gap: 40px;
	}

	.eclips {
		top: 350px;
		left: -800px;
		min-height: 1500px;
	}

	.image-slide1 {
		max-width: 500px;
	}

	.image-slide2 {
		max-width: 500px;
	}

	.privilege-icon {
		max-width: 50px;
		min-width: 50px;
		max-height: 50px;
		min-height: 50px;
	}

	.sliderButton {
		max-width: 400px;

		font-size: 24px;
	}

	.privilege__title-wrapper .privilege__highlight {
		font-size: 45px;
	}

	.slider-content__button6 {
		max-height: 90px;
	}

	.privilege__title-wrapper .privilege__subtitle {
		font-size: 26px;
		line-height: 30px;
		width: 800px;
		margin-bottom: 30px;
		margin-top: 40px;
	}

	.image__wrapper1 {
		position: static;
		visibility: visible;
		padding: 30px;
		min-width: 530px;
		max-width: 530px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.image__wrapper2 {
		position: static;
		visibility: visible;
		padding: 30px;
		min-width: 530px;
		max-width: 530px;
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	.slider-content1 {
		min-width: 530px;
		max-width: 530px;
		grid-column-start: 2;
		padding: 30px;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.slider-content2 {
		min-width: 530px;
		max-width: 530px;
		padding: 30px;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 2;
		grid-row-end: 3;
		margin-top: -20px;
	}

	.slider-content__title {
		font-size: 34px;
		width: 300px;
	}

	.slider-content__subtitle {
		font-size: 24px;
		line-height: 30px;
	}

	.slider-content__button {
		width: 520px;
		font-size: 24px;
		margin-top: 20px;
		padding: 20px;
	}

	.privilege__important {
		font-size: 24px;
		min-width: 480px;
		max-width: 480px;
		height: 100px;
		padding: 0px 30px;
	}

	.privilege__important-icon {
		max-width: 60px;
		min-width: 60px;
		max-height: 60px;
		min-height: 60px;
	}
}

.quality {
	background: linear-gradient(
		102.03deg,
		#a869f9 0.75%,
		#4539a7 43.26%,
		#22184a 93.46%
	);
	flex-direction: column;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	position: relative;
	overflow: hidden;
	z-index: -100;
}

.quality-back {
	position: absolute;
	max-width: 600px;
	top: 1900px;
	left: 50px;
	z-index: -10;
	filter: blur(2px);
}

.quality__title-wrapper {
	text-align: center;
	margin-top: 10px;
}

.quality__title {
	color: var(--secondary);
	font-size: 27px;
	font-weight: 900;
}

.quality__highlight {
	color: var(--light-blue);
	font-size: 26px;
	font-weight: 900;
}

.quality__subtitle {
	color: var(--secondary);
	font-weight: 400;
	font-size: 19px;
	line-height: 20px;
	margin-top: 30px;
}

.quality__button-block {
	background: linear-gradient(174.78deg, #ffffff 40.46%, #dfdee5 97.11%);
	border-radius: 24px;
	margin-top: 40px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	flex-direction: column;
	justify-content: flex-start;
	padding: 22px;
	position: relative;
	color: var(--primary);
	text-align: start;
	background-clip: padding-box;
}

.quality__button-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 26px;
	background: linear-gradient(357.17deg, #3e379f -6.46%, #13cfdb 14.6%);
	z-index: -1;
	margin: -4px;
}

.quality__icon-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.quality-icons-wrapper {
	position: relative;
	width: 40px;
}

.quality-privilege-icon {
	position: absolute;
	top: -2px;
	left: 0;
	max-width: 40px;
	min-width: 40px;
	max-height: 40px;
	min-height: 40px;
}

.quality-privilege-icon-guard {
	position: absolute;
	top: -1px;
	left: 5px;
	max-width: 32px;
	min-width: 32px;
	max-height: 40px;
	min-height: 40px;
}

.quality-inactive-icon {
	z-index: 1;
	opacity: 1;
}

.advantages-dignity__text1 {
	margin-top: -4px;
}

.quality-active-icon {
	z-index: 2;
	opacity: 0;
}

.quality__title-block {
	color: var(--dark-purple);
	font-weight: 900;
	font-size: 22px;
	margin-top: 10px;
	width: 100%;
}

.quality__subtitle-block {
	font-size: 19px;
	font-weight: 500;
	margin-top: 12px;
}

.quality__button {
	margin-top: 50px;
	min-height: 45px;
	border-radius: 80px;
	width: 250px;
	background-color: var(--light-blue);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 35px;
	z-index: 2;
}

.advantages-dignity__item1 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	font-weight: 500;
	font-size: 17px;
	margin-top: 15px;
}

.promotion__product-dignity__text {
	font-weight: 500;
	font-size: 17px;
	margin-right: auto;
}

.promotion__product-dignity__text1 {
	margin-top: 30px;
}

@media (min-width: 425px) {
	.quality-back {
		position: absolute;
		max-width: 600px;
		top: 1900px;
		left: 0;
		z-index: -10;
		filter: blur(2px);
	}
}
@media (min-width: 768px) {
	.quality__button-block-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.quality__button-block:hover::before {
		background: linear-gradient(357.17deg, #3e379f -6.46%, #a969f9 14.6%);
	}

	.quality__button-block:hover .quality-active-icon {
		opacity: 1;
	}

	.quality__button-block:hover .quality-inactive-icon {
		opacity: 0;
	}

	.quality__button-block:hover {
		background: var(--light-blue);
	}

	.quality__button-block:hover .quality__title-block {
		color: var(--secondary);
	}

	.quality-back {
		top: 700px;
		left: 400px;
		filter: blur(0px);
	}

	.quality__button-block {
		margin-top: 10px;
	}

	.quality__button-block1 {
		margin-top: 40px;
	}
	.quality__button-block2 {
		margin-top: 40px;
	}

	.quality__button-block {
		display: flex;
		justify-content: flex-start;
	}

	.quality__icon-wrapper {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.quality__button-block-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
	}

	.quality-back {
		min-width: 800px;
		top: 650px;
		left: 490px;
	}

	.quality__button-block3 {
		margin-top: 40px;
	}

	.quality__title {
		font-size: 35px;
		margin-top: 20px;
	}

	.quality__highlight {
		font-size: 35px;
	}

	.quality__subtitle {
		font-size: 20px;
		line-height: 24px;
	}

	.quality__title-block {
		font-size: 25px;
	}

	.quality__subtitle-block {
		font-size: 20px;
	}

	.quality__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 22px;
		margin-top: 45px;
		margin-bottom: 50px;
		width: 330px;
		height: 50px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.advantages-dignity__text1 {
		margin-top: -4px;
	}

	.advantages-dignity__item1 {
		align-items: flex-start;
		gap: 20px;
	}

	.web-menu__item-last {
		padding: 0;
		padding-right: 20px;
	}
}

@media (min-width: 1200px) {
	.quality__button-block-wrapper {
		display: grid;
		grid-template-columns: auto;
		max-width: 1200px;
		gap: 20px;
		margin-top: 25px;
		margin-right: 60px;
	}

	.digital-icon {
		max-width: 45px;
		min-width: 45px;
	}

	.digital-icon-wrapper {
		margin-top: 3px;
	}

	.quality-privilege-icon {
		position: absolute;
		top: -2px;
		left: 0;
		max-width: 55px;
		min-width: 55px;
		max-height: 55px;
		min-height: 55px;
	}

	.quality-privilege-icon-guard {
		position: absolute;
		top: -1px;
		left: 5px;
		max-width: 42px;
		min-width: 42px;
		max-height: 55px;
		min-height: 55px;
	}

	.quality-back {
		min-width: 1100px;
		top: 580px;
		left: 800px;
	}

	.quality__button-block1 {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.quality__button-block2 {
		grid-column-start: 4;
		grid-column-end: 7;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.quality__button-block3 {
		grid-column-start: 7;
		grid-column-end: 10;
		grid-row-start: 1;
		grid-row-end: 2;
		margin-top: 40px;
	}

	.quality__button-block4 {
		grid-column-start: 10;
		grid-column-end: 13;
		grid-row-start: 1;
		grid-row-end: 2;
		margin-top: 40px;
	}

	.quality__button-block5 {
		grid-column-start: 1;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 3;
		min-width: 361px;
		max-width: 361px;
	}

	.quality__button-block6 {
		grid-column-start: 5;
		grid-column-end: 9;
		grid-row-start: 2;
		grid-row-end: 3;
		min-width: 361px;
		max-width: 361px;
	}

	.quality__button-block7 {
		grid-column-start: 9;
		grid-column-end: 13;
		grid-row-start: 2;
		grid-row-end: 3;
		min-width: 361px;
		max-width: 361px;
	}

	.quality__title {
		font-size: 45px;
		margin-top: 25px;
	}

	.quality__highlight {
		font-size: 45px;
	}

	.quality__subtitle {
		font-size: 28px;
		line-height: 30px;
		max-width: 1100px;
		margin-top: 50px;
	}

	.quality__title-block {
		font-size: 30px;
		margin-top: 25px;
	}

	.quality__subtitle-block {
		font-size: 24px;
		margin-top: 20px;
		line-height: 30px;
	}

	.quality__button {
		background-color: var(--light-blue);
		box-shadow: 2px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
		font-size: 30px;
		margin-top: 50px;
		width: 440px;
		height: 60px;
		border-radius: 30px;
		color: var(--secondary);
	}

	.quality__button-block1 {
		max-width: 256px;
		min-width: 256px;
	}

	.quality__button-block2 {
		max-width: 256px;
		min-width: 256px;
	}

	.quality__button-block3 {
		max-width: 256px;
		min-width: 256px;
	}

	.quality__button-block4 {
		max-width: 256px;
		min-width: 256px;
	}
}

.privilege {
	background-color: #f4f4f4;
	background-clip: border-box;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 30px;
	overflow: hidden;
}

.promotion {
	background-color: #f4f4f4;
	background-clip: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.costback {
	position: absolute;
	visibility: hidden;
}

.promotion__header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.promotion__title-wrapper {
	font-size: 28px;
	font-weight: 900;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
	text-align: center;
}

.promotion__title {
	color: var(--light-purple);
}

.promotion__highlight {
	color: var(--dark-purple);
}

.promotion__subtitle {
	color: var(--dark-purple);
	font-weight: 400;
	font-size: 19px;
	margin-top: 20px;
}

.promotion__blocks {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	margin: 0 auto;
	margin-top: 50px;
}

.promotion__block {
	display: flex;
	border-radius: 32px;
	color: var(--secondary);
	font-size: 18px;
	box-sizing: border-box;
	font-weight: bold;
	width: 230px;
	height: 50px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	z-index: 1;
	position: relative;
	padding: 0;
	padding-bottom: 3px;
}

.promotion__block-one-mounth {
	justify-content: center;
	align-items: center;
}

.promotion__block-other {
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding-left: 10px;
}

.promotion__block.selected {
	background: linear-gradient(356.58deg, #3e379f -6.12%, #13cfdb 44.98%);
	font-weight: 700;
}

.promotion__block.selected::before {
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	margin: 4px;
	background: linear-gradient(0deg, #22184a, #22184a);
	position: absolute;
	z-index: -1;
}

.promotion__block.inactive {
	background: linear-gradient(0deg, #13cfdb, #13cfdb);
}

.promotion__discount {
	background: linear-gradient(0deg, #a969f9, #a969f9);
	border-radius: 30px;
	margin: 3px;
	width: 74px;
	min-height: 42px;
	max-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promotion__product {
	padding: 45px;
	margin-top: 50px;
	box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(
		357.17deg,
		#3e379f -6.46%,
		#13cfdb 14.6%,
		#a969f9 48.88%,
		#a969f9 94.34%
	);
}

.promotion__product::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 17px;
	background: linear-gradient(174.78deg, #ffffff 59.85%, #dfdee5 97.11%);
	margin: 5px;
	z-index: -1;
}

.team {
	margin-top: 15px;
}

.promotion-cost-wrapper {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.promotion__icon-wrapper {
	position: relative;
	width: 30px;
	height: 30px;
}

.promotion-privilege-icon {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 30px;
	min-width: 30px;
	max-height: 30px;
	min-height: 30px;
}

.promotion-inactive-icon {
	z-index: 1;
	opacity: 1;
}

.promotion-active-icon {
	z-index: 2;
	opacity: 0;
}

.promotion__icon-wrapper {
	position: relative;
	width: 30px;
	height: 30px;
}

.promotion__icon-wrapper-icon img {
	position: absolute;
	top: 6px;
	left: 0;
	min-width: 40px;
	min-height: 40px;
	max-width: 40px;
	max-height: 40px;
}

.persent-wrapper-active-icon {
	z-index: 2;
	opacity: 0;
}

.persent-wrapper-inactive-icon {
	z-index: 1;
	opacity: 1;
}

.promotion__icon-wrapper-button.selected .persent-wrapper-active-icon {
	opacity: 1;
}

.promotion__icon-wrapper-button.selected .persent-wrapper-inactive-icon {
	opacity: 0;
}

.promotion__product-title {
	color: var(--dark-purple);
	font-size: 25px;
	font-weight: 900;
	margin-right: auto;
}

.promotion__product-title1 {
	margin-top: 10px;
}

.promotion__product-title2 {
	margin-top: 15px;
}

.promotion__product-subtitle-first {
	margin-top: 10px;
}

.promotion__product-subtitle {
	color: var(--dark-purple);
	font-size: 18px;
	font-weight: 500;
}

.promotion__product-cost {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
	position: relative;
}

.promotion__product-cost p {
	font-size: 40px;
	color: var(--dark-purple);
}

.promotion__product-mounth {
	font-size: 16px;
	margin-top: -5px;
	color: var(--dark-purple);
	font-weight: 500;
}

.sale-icon-wrapper {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	top: -10px;
	left: 85px;
}

.sale-icon-wrapper p {
	font-size: 30px;
	color: var(--light-blue);
}

.sale-icon-wrapper::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 105%;
	height: 3px;
	background-color: var(--dark-purple);
	transform: translateY(-50%);
	z-index: 1;
}

.sale-icon {
	width: 20px;
	height: 20px;
}

.promotion__product-sale {
	font-size: 14px;
	color: var(--light-purple);
	font-weight: 500;
}

.infinity {
	font-size: 20px;
	position: relative;
	top: 4px;
}

.promotion__product-subtitle-infinity {
	line-height: 24px;
}

.scroll-to-top {
	position: fixed;
	display: none;
	bottom: 3px;
	left: 5px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.3s;
	z-index: 1000;
}

.scroll-to-top:hover {
	opacity: 1;
}

.scroll-to-top-img {
	min-width: 60px;
	max-width: 60px;
}

.promotion__product-button-send {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.25);
	background-color: var(--light-blue);
	font-size: 16px;
	width: 160px;
	height: 40px;
	margin-top: 30px;
}

.cost_trial {
	font-size: 55px;
	margin-top: -25px;
	color: var(--dark-purple);
}

.promotion-cost-wrapper-trial {
	gap: 20px;
}

#sevenDays {
	font-size: 35px;
}

.promotion-privilege-icon-trial {
	min-width: 50px;
	max-width: 50px;
}

.trial-icon-wrapper-img {
	min-width: 65px;
	max-width: 65px;
}

.promotion__icon-wrapper-trial {
	margin-top: -35px;
}

.promotion__product-button-trial {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.25);
	background-color: var(--light-blue);
	font-size: 16px;
	width: 220px;
	height: 50px;
	margin-top: 20px;
}

.promotion__product-cost-trial {
	display: flex;
	position: relative;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.trial-icon-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.trial-icon-wrapper p {
	font-size: 30px;
	color: var(--dark-purple);
	font-weight: 900;
}

.promotion-privilege-cost {
	font-size: 50px;
	color: var(--dark-purple);
}

.promotion-privilege-icon-trial {
	max-width: 40px;
	min-width: 40px;
	max-height: 40px;
	min-height: 40px;
}

.promotion__product-cost-title {
	font-size: 30px;
	color: var(--dark-purple);
	font-weight: 900;
	margin-top: 30px;
	text-align: center;
}

.pricing-table {
	z-index: 100;
}

.promotion__product-cost-subtitle {
	font-size: 16px;
	color: var(--dark-purple);
	font-weight: 500;
	text-align: center;
	margin-top: 15px;
}

.advantages-dignity__list-product {
	margin-top: 40px;
	margin-bottom: 20px;
}

.trial-icon-wrapper {
	margin-bottom: 20px;
}

.promotion__product-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.25);
	background-color: var(--light-blue);
	font-size: 16px;
	width: 160px;
	height: 40px;
	margin-top: 20px;
}

.trial-web-wrapper {
	position: absolute;
	visibility: hidden;
	max-width: 0;
	overflow: hidden;
}

.promotion__products5 {
	height: 240px;
}

.promotion__product-button-trial {
	width: 300px;
	min-height: 50px;
	border-radius: 30px;
	font-size: 20px;
}

@media (min-width: 768px) {
	.promotion__title-wrapper {
		font-size: 24px;
		margin-top: 50px;
	}

	.scroll-to-top-img {
		min-width: 75px;
		max-width: 75px;
	}

	.cost_trial {
		font-size: 50px;
		margin-top: -9px;
	}

	.promotion-cost-wrapper-trial {
		gap: 20px;
	}

	.trial-icon-wrapper {
		margin-top: 23px;
	}

	#sevenDays {
		font-size: 30px;
	}

	.promotion-privilege-icon-trial {
		min-width: 37px;
		max-width: 37px;
	}

	.trial-icon-wrapper-img {
		min-width: 65px;
		max-width: 65px;
	}

	.promotion__icon-wrapper-trial {
		margin-top: -20px;
	}

	.promotion__product:hover .promotion-active-icon {
		opacity: 1;
	}

	.promotion__product:hover .promotion-inactive-icon {
		opacity: 0;
	}

	.promotion__product:hover {
		background: linear-gradient(356.58deg, #3e379f -6.12%, #13cfdb 44.98%);
	}

	.promotion__product:hover::before {
		background: linear-gradient(0deg, #22184a, #22184a);
	}

	.promotion__product:hover #sevenDays {
		color: var(--secondary);
	}

	.promotion__product:hover .sale-icon-wrapper::before {
		background-color: var(--light-blue);
	}

	.promotion__product:hover .promotion__product-subtitle {
		color: var(--secondary);
	}

	.promotion__product:hover .promotion__product-cost-title {
		color: var(--secondary);
	}

	.promotion__product:hover .promotion__product-cost-subtitle {
		color: var(--secondary);
	}

	.promotion__product:hover .cost {
		color: var(--secondary);
	}

	.promotion__product:hover .promotion__product-mounth {
		color: var(--secondary);
	}

	.promotion__product:hover .advantages-dignity__list-product {
		color: var(--secondary);
	}

	.scroll-to-top {
		position: fixed;
		display: none;
		bottom: 15px;
		left: 15px;
	}

	.costback {
		top: 1050px;
		left: 300px;
		width: 800px;
		filter: blur(0px);
		visibility: visible;
	}

	.promotion__subtitle {
		font-size: 16px;
		margin-top: 0;
	}

	.promotion__blocks {
		flex-direction: row;
	}

	.promotion__block {
		font-size: 18px;
	}

	.promotion__products {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.promotion__product {
		margin-top: 20px;
	}

	.promotion__products1 {
		margin-top: 40px;
	}

	.promotion__products2 {
		margin-top: 40px;
	}

	.promotion__products5 {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 95%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 50px;
		max-height: 70px;
	}

	#sevenDays {
		margin-top: -5px;
	}

	.promotion__product-cost-trial {
		margin-top: 0;
	}

	.promotion__product-title4 {
		margin-top: 5px;
	}

	.promotion__product-button-trial {
		margin-top: 0;
		font-size: 19px;
	}

	.promotion-cost-wrapper-trial {
		margin-top: 10px;
	}

	.trial-web-wrapper {
		position: static;
		visibility: visible;
		width: 100%;
		background: linear-gradient(
			104.29deg,
			#a869f9 22.24%,
			#4539a7 63.26%,
			#22184a 93.67%
		);
		height: 200px;
		padding: 20px 100px;
		box-sizing: border-box;
		max-width: 100%;
	}

	.promotion__discount {
		min-height: 42px;
		max-height: 42px;
	}

	.trial-wrapper {
		display: flex;
		justify-content: center;
		gap: 50px;
		align-items: center;
	}

	.trial__title {
		color: var(--secondary);
		font-size: 30px;
		text-align: center;
	}

	.trial__title-highlight {
		color: var(--light-blue);
	}

	.trial__text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	.trial-web {
		position: relative;
	}

	.laptop {
		width: 230px;
	}

	.clock {
		position: absolute;
		width: 130px;
		right: -30px;
	}

	.trial__button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
		background-color: var(--light-blue);
		font-size: 20px;
		width: 270px;
		height: 50px;
	}
}

@media (min-width: 1024px) {
	.promotion__title-wrapper {
		font-size: 35px;
	}

	.promotion__icon-wrapper-trial {
		margin-top: 0px;
	}

	.promotion__product {
		gap: 0;
		justify-content: flex-start;
		min-width: 230px;
	}

	.promotion__product::before {
		top: -1px;
		left: -1px;
		right: -1px;
		bottom: -1px;
	}

	.promotion-cost-wrapper {
		margin-top: 60px;
	}

	.infinity {
		font-size: 30px;
	}

	.costback {
		top: 750px;
		left: 560px;
		width: 800px;
	}

	.promotion__product-cost-title {
		font-size: 40px;
	}

	.promotion__product-button-send {
		font-size: 26px;
		height: 60px;
		width: 280px;
		border-radius: 40px;
	}

	.promotion__product-cost-subtitle {
		font-size: 20px;
	}

	.promotion__products {
		display: flex;
		justify-content: center;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}

	.promotion__products4 {
		justify-content: flex-start;
		gap: 15px;
	}

	.promotion__product-mounth {
		font-size: 24px;
	}

	.promotion__product-sale {
		font-size: 22px;
	}
	.sale-icon-wrapper .sale-icon-text {
		font-size: 50px;
	}

	.sale-icon-wrapper .sale-icon {
		min-width: 38px;
		max-width: 38px;
		min-height: 38px;
		max-height: 38px;
	}

	.sale-icon-wrapper {
		left: 40px;
	}

	.promotion__icon-wrapper {
		min-width: 50px;
		min-height: 50px;
	}

	.sale-icon-text {
		font-size: 36px;
	}

	.promotion__product-button {
		font-size: 23px;
		height: 45px;
		width: 200px;
		border-radius: 40px;
	}

	.promotion__product-button-send {
		font-size: 23px;
		height: 45px;
		width: 200px;
	}

	.promotion-privilege-icon {
		min-width: 40px;
		max-width: 40px;
		min-height: 40px;
		max-height: 40px;
	}

	.promotion__product-subtitle {
		text-align: center;
	}

	.promotion-cost-wrapper {
		gap: 5px;
	}

	.promotion__product-cost {
		gap: 20px;
		align-items: center;
	}

	.cost {
		margin-top: -8px;
	}

	.promotion-cost-wrapper p {
		font-size: 50px;
	}

	.promotion__product-subtitle {
		font-size: 21px;
	}

	.advantages-dignity__text1 {
		font-size: 20px;
		font-weight: 500;
	}

	.promotion__product-cost-title {
		font-size: 35px;
	}

	.promotion__subtitle {
		font-size: 20px;
	}

	.promotion__blocks {
		flex-direction: row;
	}

	.promotion__block {
		font-size: 18px;
	}

	.promotion__products1 {
		margin-top: 40px;
		max-width: 200px;
	}

	.promotion__products2 {
		margin-top: 40px;
		max-width: 200px;
	}

	.promotion__products3 {
		margin-top: 40px;
		max-width: 200px;
	}

	.promotion__products4 {
		margin-top: 40px;
		max-width: 200px;
		gap: 0;
	}

	.promotion__products5 {
		width: 100%;
		margin-top: 10px;
		gap: 50px;
	}

	.trial-web-wrapper {
		height: 250px;
		padding: 20px 100px;
		box-sizing: border-box;
	}

	.trial-wrapper {
		gap: 100px;
	}

	.trial__title {
		font-size: 45px;
	}

	.trial__title-highlight {
		color: var(--light-blue);
	}

	.laptop {
		width: 300px;
	}

	.clock {
		position: absolute;
		width: 180px;
		right: -30px;
	}

	.promotion__discount {
		min-height: 42px;
		max-height: 42px;
	}

	.trial__button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		border-radius: 40px;
		box-shadow: 17px 20px 15.2px 0px rgba(0, 0, 0, 0.25);
		background-color: var(--light-blue);
		font-size: 30px;
		width: 350px;
		height: 60px;
	}

	.scroll-to-top {
		position: fixed;
		display: none;
		bottom: 2px;
		left: 15px;
	}

	.trial-icon-wrapper-img {
		max-width: 70px;
		min-width: 70px;
		max-height: 70px;
		min-height: 70px;
	}

	#sevenDays {
		font-size: 40px;
	}

	.promotion-cost-wrapper-trial {
		margin-top: 15px;
	}

	.promotion__product-button-trial {
		font-size: 23px;
		width: 450px;
		height: 55px;
		border-radius: 30px;
		margin-top: 25px;
	}

	.promotion__products5 {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.trial-icon-wrapper {
		margin-top: 50px;
	}

	.promotion-cost-wrapper-trial {
		margin-top: 37px;
	}

	.promotion__product-title-starter {
		margin-top: 5px;
	}

	.promotion__product-title2 {
		margin-top: 5px;
	}

	.promotion__product-title1 {
		margin-top: 5px;
	}

	.promotion__product-title4 {
		margin-top: 5px;
	}
}

@media (min-width: 1200px) {
	.promotion__title {
		font-size: 45px;
	}

	.scroll-to-top {
		position: fixed;
		display: none;
		bottom: 20px;
		left: 15px;
	}

	.promotion__product {
		max-width: 280px;
		min-width: 28px;
	}

	.costback {
		top: 865px;
		left: 900px;
		width: 800px;
	}

	.promotion__product-cost-subtitle {
		font-size: 24px;
	}

	.promotion__product-subtitle {
		font-size: 24px;
	}

	.team {
		min-height: 80px;
		min-width: 80px;
	}

	.promotion__product-title {
		font-size: 56px;
	}

	.advantages-dignity__text1 {
		font-size: 24px;
		margin-top: -5px;
	}

	.promotion__icon {
		min-height: 110px;
		min-width: 110px;
	}

	.promotion__icon-love {
		min-height: 80px;
		min-width: 80px;
	}

	.promotion__block {
		font-size: 24px;
		height: 70px;
		width: 260px;
	}

	.promotion__discount {
		min-height: 62px;
		max-height: 62px;
	}

	.promotion__subtitle {
		font-size: 24px;
		margin-top: 20px;
	}

	.promotion__products {
		margin-top: 40px;
		column-gap: 20px;
		max-width: 1200px;
		margin: 0 auto;
		gap: 7px;
	}

	.promotion__product {
		margin: 0;
		margin-top: 40px;
	}

	.trial-icon-wrapper {
		margin-top: 30px;
	}

	.trial-icon-wrapper-img {
		max-width: 70px;
		min-width: 70px;
		max-height: 70px;
		min-height: 70px;
	}

	#sevenDays {
		font-size: 40px;
	}

	.promotion-cost-wrapper-trial {
		margin-top: 15px;
	}

	.promotion__product-button-trial {
		font-size: 23px;
		width: 450px;
		height: 55px;
		border-radius: 30px;
		margin-top: 6px;
	}
}

.pricing-table {
	border: 1px solid #a06bff;
	border-radius: 15px;
	overflow: hidden;
	background: linear-gradient(174.78deg, #ffffff 59.85%, #dfdee5 97.11%);
	margin-top: 30px;
}

.pricing-table h2 {
	text-align: center;
	color: #6d34f2;
	padding: 20px 0;
	font-size: 22px;
}

.pricing-table table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
	border: 1px solid #a06bff;
	height: 40px;
	text-align: center;
	font-size: 19px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
	border-left: none;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
	border-right: none;
}

.pricing-table table tr:first-child th,
.pricing-table table tr:first-child td {
	border-top: none;
}

.pricing-table table tr:last-child th,
.pricing-table table tr:last-child td {
	border-bottom: none;
}

.pricing-table table tr:first-child th {
	border-bottom: 1px solid #a06bff;
}

.pricing-table table th,
.pricing-table table td {
	width: 200px;
	min-width: 40px;
}

.tablespan {
	font-size: 12px;
}

.pricing-table tr .table-title {
	font-size: 14px;
}

.pricing-table th {
	color: var(--dark-purple);
}

.pricing-table td {
	color: #333;
}

.pricing-table td.empty:before {
	content: '—';
}

.plusTable {
	min-width: 14px;
	max-width: 14px;
	min-height: 14px;
	max-height: 14px;
}

.pricing-table td.highlight {
	font-weight: bold;
}

.table-wrapper-web {
	position: absolute;
	visibility: hidden;
	max-width: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.table__title {
	text-align: center;
	z-index: 100;
}

.pricing-table .headerTable {
	font-weight: 900;
	color: var(--dark-purple);
}

@media (min-width: 768px) {
	.table-wrapper-web {
		position: static;
		visibility: visible;
		min-width: 720px;
		max-width: 1150px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.table-wrapper {
		position: absolute;
		visibility: hidden;
	}

	.tablespan {
		font-size: 14px;
	}

	.plusTable {
		min-width: 12px;
		max-width: 12px;
		min-height: 12px;
		max-height: 12px;
	}

	.table__title {
		margin-top: 50px;
	}

	.pricing-table {
		width: 100%;
	}

	.pricing-table th,
	.pricing-table td {
		border: none;
		border-right: 1px solid #a06bff;
		font-size: 14px;
	}

	.pricing-table table tr:first-child th {
		border-bottom: none;
	}

	.headerRow {
		border-top: 1px solid #a06bff;
	}

	.pricing-table table th,
	.pricing-table table td {
		width: 120px;
		min-width: 80px;
	}

	.pricing-table table th:first-child,
	.pricing-table table td:first-child {
		width: 200px;
		max-width: 200px;
		min-width: 200px;
	}
}

@media (min-width: 1024px) {
	.tablespan {
		font-size: 20px;
	}

	.table-wrapper-web {
		position: static;
		visibility: visible;
		min-width: 970px;
		max-width: 1150px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.plusTable {
		min-width: 15px;
		max-width: 15px;
		min-height: 15px;
		max-height: 15px;
	}

	.table-wrapper-web .table__title {
		margin-top: 65px;
		font-size: 35px;
	}

	.pricing-table th,
	.pricing-table td {
		font-size: 20px;
	}

	.pricing-table table th,
	.pricing-table table td {
		width: 160px;
		min-width: 110px;
	}

	.pricing-table table th:first-child,
	.pricing-table table td:first-child {
		width: 290px;
		max-width: 290px;
		min-width: 290px;
		padding: 20px;
	}
}

@media (min-width: 1200px) {
	.tablespan {
		font-size: 26px;
	}

	.table-wrapper-web {
		position: static;
		visibility: visible;
		min-width: 1190px;
		max-width: 1190px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.plusTable {
		min-width: 20px;
		max-width: 20px;
		min-height: 20px;
		max-height: 20px;
	}

	.table-wrapper-web .table__title {
		margin-top: 65px;
		font-size: 45px;
	}

	.pricing-table th,
	.pricing-table td {
		font-size: 26px;
	}

	.pricing-table table th,
	.pricing-table table td {
		width: 200px;
		min-width: 150px;
	}

	.pricing-table table th:first-child,
	.pricing-table table td:first-child {
		width: 380px;
		max-width: 380px;
		min-width: 380px;
		padding: 25px;
	}
}

@media (max-width: 480px) {
	.pricing-table th,
	.pricing-table td {
		padding: 8px;
	}
}

.table-wrapper {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.table__title {
	font-size: 28px;
	color: var(--light-purple);
	font-weight: 900;
}

.table__highlight {
	color: var(--dark-purple);
}

.choise__web {
	max-width: 0;
	visibility: hidden;
	position: absolute;
}

.choise {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	padding-bottom: 20px;
	background: rgba(34, 24, 74, 1);
	color: var(--secondary);
	text-align: center;
}

.slider__choise-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.dynamicImages {
	width: 100%;
}

.choise__title {
	font-size: 28px;
	margin-top: 20px;
	font-weight: 900;
}

.choise__highlight {
	color: var(--light-purple);
}

.choise__subtitle {
	font-size: 19px;
	font-weight: 400;
	margin-top: 10px;
}

.choise__pic {
	background: linear-gradient(174.78deg, #ffffff 40.46%, #dfdee5 97.11%);
}

.promotion__icon-container {
	position: relative;
	display: inline-block;
}

.first-icon {
	display: block;
}

.second-icon {
	display: none;
}

.choise__wrapper-image {
	min-width: 280px;
	min-height: 210px;
	border-radius: 22px;
	padding: 10px;
	padding-bottom: 50px;
	box-sizing: border-box;
	z-index: 1;
	position: relative;
	background: linear-gradient(357.17deg, #3e379f -6.46%, #13cfdb 14.6%);
}

.choise__wrapper-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 19px;
	margin: 4px;
	background: linear-gradient(174.78deg, #ffffff 40.46%, #dfdee5 97.11%);
	z-index: -1;
}

.choise__wrapper-text {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
	justify-content: center;
	gap: 20px;
	margin-left: 15px;
	text-align: start;
	font-size: 22px;
}

.choise__wrapper-title {
	color: var(--light-blue);
	font-size: 22px;
}

.choise__wrapper-subtitle {
	font-size: 19px;
	font-weight: 700;
	line-height: 22px;
}

.slider-btn-web {
	cursor: pointer;
	padding: 0;
	background-color: transparent;
}

@media (min-width: 375px) {
	.choise__wrapper-image {
		min-width: 90%;
	}
}

@media (min-width: 768px) {
	.choise {
		position: absolute;
		visibility: hidden;
	}

	.promotion__block {
		width: 135px;
		height: 40px;
	}

	.choise__wrapper-image {
		min-width: 356px;
	}

	.promotion__product:hover .first-icon {
		display: none;
	}

	.promotion__product:hover .second-icon {
		display: block;
	}

	.choise__wrapper {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		gap: 10px;
		margin-top: 30px;
	}

	.choise__wrapper-image {
		max-width: 360px;
	}

	.choise__web {
		position: static;
		visibility: visible;
		max-width: 100%;
		min-height: 400px;
		padding: 20px;
		background: rgba(34, 24, 74, 1);
		color: var(--secondary);
		text-align: center;
	}

	.slider-btn-web {
		margin-top: 70px;
	}

	.text-block-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.advantages__button {
		margin-left: 12px;
	}

	.text-block-wrapper {
		margin-top: -10px;
	}
}

@media (min-width: 1024px) {
	.choise__wrapper {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		gap: 10px;
		margin-top: 30px;
	}

	.choise__subtitle {
		font-size: 20px;
		margin-top: 20px;
	}

	.choise__wrapper {
		margin-top: 60px;
	}

	.text-block-wrapper {
		margin-top: -40px;
	}

	.choise__wrapper-title {
		font-size: 28px;
	}

	.choise__wrapper-subtitle {
		font-size: 20px;
		line-height: 26px;
	}

	.choise__title {
		font-size: 35px;
	}

	.choise__wrapper-image {
		max-width: 450px;
	}

	.choise__wrapper-text {
		margin-top: 50px;
	}

	.choise__web {
		position: static;
		visibility: visible;
		max-width: 100%;
		height: 550px;
		padding: 20px;
		background: rgba(34, 24, 74, 1);
		color: var(--secondary);
		text-align: center;
	}

	.slider-btn-web {
		margin-top: 70px;
	}
}

@media (min-width: 1200px) {
	.choise__wrapper {
		max-width: 1200px;
		margin: 0 auto;
		margin-top: 50px;
		gap: 40px;
	}

	.text-block-wrapper {
		margin-top: 0;
	}

	.choise__wrapper-subtitle {
		font-size: 24px;
		line-height: 26px;
	}

	.choise__wrapper-image::before {
		top: -1px;
		left: -1px;
		right: -1px;
		bottom: -1px;
	}

	.choise__wrapper-title {
		font-size: 32px;
	}

	.choise__web {
		height: 630px;
	}

	.choise__title {
		font-size: 45px;
		margin-top: 30px;
	}

	.choise__subtitle {
		font-size: 24px;
		margin-top: 20px;
	}

	.choise__wrapper-image {
		max-width: 650px;
	}

	.choise__wrapper-text {
		max-width: 550px;
	}
}

.questions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	padding-bottom: 20px;
	background: linear-gradient(150.68deg, #ffffff -7.45%, #eaeaea 83.36%);
}

.questions__title {
	font-size: 28px;
	margin-top: 30px;
	text-align: center;
	font-weight: 900;
}

.questions__highlight {
	color: var(--light-purple);
}

.questions__subtitle {
	font-size: 24px;
	font-weight: 400;
}

.questions__question {
	margin-top: 25px;
	font-size: 19px;
	font-weight: 900;
	display: flex;
	justify-content: flex-start;
	gap: 20px;
}

.questions__item.active .questions__answer {
	display: block;
}

.questions__question {
	cursor: pointer;
}

.questions__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	margin-top: 10px;
	border-left: 3px solid var(--primary);
}

.questions__question:hover {
	color: var(--light-purple);
}

.questions__answer p {
	font-size: 16px;
	margin-left: 20px;
}

.questions__item.active .questions__answer {
	max-height: 200px;
	opacity: 1;
}

@media (min-width: 768px) {
	.questions__question {
		margin-top: 30px;
	}
}

@media (min-width: 1024px) {
	.questions__question {
		margin-top: 30px;
	}

	.questions__answer p {
		margin-left: 20px;
		line-height: 24px;
		font-size: 17px;
	}

	.questions__title {
		font-size: 35px;
	}

	.questions__subtitle {
		font-size: 20px;
	}

	.questions__question img {
		height: 25px;
	}

	.questions__question p {
		font-size: 22px;
	}

	.questions__question-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
}

@media (min-width: 1200px) {
	.questions__question-wrapper {
		max-width: 1200px;
		margin: 0 auto;
	}

	.icon-starter {
		min-height: 105px;
	}

	.questions__title {
		font-size: 45px;
	}

	.questions__answer p {
		font-size: 20px;
	}

	.questions__subtitle {
		font-size: 26px;
	}

	.questions__question p {
		font-size: 24px;
	}

	.questions__question img {
		height: 30px;
	}

	.questions {
		min-height: 630px;
	}
}

.experts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	padding-bottom: 20px;
	background: linear-gradient(
		103.8deg,
		#a869f9 10.44%,
		#4539a7 48.17%,
		#22184a 93.63%
	);
}

.experts__title {
	text-align: center;
	color: var(--secondary);
	font-size: 28px;
	margin-top: 30px;
}

.experts__highlight {
	color: var(--light-blue);
}

.experts__subtitle {
	color: var(--secondary);
	font-size: 19px;
	font-weight: 400;
	margin-top: 20px;
	text-align: center;
}

.experts__slider-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	max-height: 150px;
	position: relative;
}

.experts__slider {
	display: flex;
	overflow: hidden;
	max-height: 150px;
	width: 80%;
}

.swiper-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	height: 50px;
	object-fit: contain;
}

.swiper-slide img {
	object-fit: contain;
}

.swiper-wrapper img {
	margin-right: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.slider-web,
.swiper-slide-web {
	position: absolute;
	visibility: hidden;
	max-width: 0;
}

@media (min-width: 768px) {
	.experts__slider-wrapper {
		margin-top: 30px;
	}
}

@media (min-width: 1024px) {
	.experts__title {
		font-size: 35px;
	}

	.experts__subtitle {
		font-size: 24px;
	}

	.experts__slider-wrapper,
	.experts__slider,
	.swiper-container,
	.swiper-slide {
		position: absolute;
		visibility: hidden;
		max-width: 0;
	}

	.slider-web {
		margin: 0 auto;
		max-width: 1200px;
		position: static;
		visibility: visible;
		display: flex;
		justify-content: center;
		margin-top: 40px;
		gap: 50px;
		margin-bottom: 50px;
	}
}

@media (min-width: 1024px) {
	.experts {
		height: 380px;
	}

	.experts__title {
		font-size: 44px;
		max-width: 1200px;
	}

	.experts__subtitle {
		font-size: 24px;
		max-width: 1200px;
	}

	.experts__slider-wrapper,
	.experts__slider,
	.swiper-container,
	.swiper-slide {
		position: absolute;
		visibility: hidden;
		max-width: 0;
	}

	.slider-web {
		margin: 0 auto;
		max-width: 1200px;
		position: static;
		visibility: visible;
		display: flex;
		justify-content: center;
		margin-top: 50px;
		gap: 50px;
		margin-bottom: 50px;
	}

	.swiper-slide-web {
		position: static;
		visibility: visible;
		max-width: 100%;
	}
}

.support {
	width: 100%;
	background: rgba(19, 207, 220, 1);
	color: var(--secondary);
	font-size: 28px;
	display: flex;
	align-items: center;
}

.support__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	padding-bottom: 20px;
}

.support__title {
	margin-top: 40px;
	text-align: center;
}

.support__highlight {
	color: var(--primary);
}

.support__subtitle {
	color: var(--primary);
	font-weight: 400;
	font-size: 19px;
	text-align: center;
	margin-top: 30px;
}

.support__button {
	margin-top: 30px;
	min-height: 45px;
	border-radius: 80px;
	width: 250px;
	background: linear-gradient(270.17deg, #3b2f8c 4.93%, #a869f9 99.83%);
	cursor: pointer;
	font-size: 18px;
	color: var(--secondary);
	box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
}

.suppot__img {
	margin-top: 5px;
	position: relative;
	margin-left: -30px;
}

.suppoty__addimg {
	position: absolute;
	top: -30px;
	left: -50px;
}

.title__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer__socials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	column-gap: 0;
}

@media (min-width: 375px) {
	.suppot__img img {
		min-width: 290px;
	}

	.slider__choise-wrapper {
		gap: 10px;
	}
}

@media (min-width: 425px) {
	.suppot__img img {
		min-width: 310px;
	}

	.slider__choise-wrapper {
		gap: 8px;
	}
}

@media (min-width: 768px) {
	.suppot__img img {
		min-width: 310px;
	}

	.support__container {
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 40px;
	}
}

@media (min-width: 1024px) {
	.support__title {
		font-size: 35px;
	}

	.support {
		min-height: 380px;
	}

	.suppot__img img {
		min-width: 400px;
	}

	.support {
		height: 300px;
	}

	.support__subtitle {
		font-size: 24px;
	}

	.support__button {
		margin-top: 40px;
		height: 50px;
		border-radius: 80px;
		width: 330px;
		cursor: pointer;
		font-size: 22px;
		color: var(--secondary);
		box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
		margin-bottom: 35px;
	}
}

@media (min-width: 1024px) {
	.support__button {
		margin-top: 40px;
		height: 60px;
		border-radius: 80px;
		width: 400px;
		cursor: pointer;
		font-size: 30px;
		color: var(--secondary);
		box-shadow: 7px 10px 6.5px 0px rgba(0, 0, 0, 0.25);
		margin-bottom: 35px;
	}
}

.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	padding-bottom: 50px;
	background: rgba(34, 24, 74, 1);
	color: var(--secondary);
	font-size: 26px;
}

.footer__item-title {
	color: var(--light-blue);
	font-weight: 700;
	margin-top: 35px;
	text-align: left;
}

.footer__item-subtitle {
	display: block;
	font-weight: 400;
	margin-top: 20px;
	font-size: 20px;
	text-align: left;
	cursor: pointer;
	color: var(--secondary);
}

.footer-img {
	margin-top: 40px;
	max-width: 170px;
}

.footer__script {
	margin-top: 40px;
	font-size: 14px;
}

.footer__socials {
	margin-top: 40px;
}

.footer-imgvk {
	max-width: 60px;
	min-width: 60px;
	padding: 0;
	background-color: transparent;
}

.footer-imgtg {
	max-width: 60px;
	min-width: 60px;
	padding: 0;
	background-color: transparent;
}

.footer-imgface {
	max-width: 60px;
	min-width: 60px;
	padding: 0;
	background-color: transparent;
}

.footer-imginst {
	max-width: 60px;
	min-width: 60px;
	padding: 0;
	background-color: transparent;
}

.promotion__product-subtitle4 {
	margin-top: 0px;
	text-align: center;
}

.promotion__product-button-send4 {
	margin-top: 40px;
}

.promotion__product-cost-title4 {
	margin-top: 20px;
}

.promotion__products4 {
	gap: 10px;
}

@media (min-width: 375px) {
	.footer__menu {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.footer__item-subtitle {
		text-align: left;
	}

	.footer__item1 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item2 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item3 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	.footer__item4 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 2;
		grid-row-end: 6;
	}

	.footer__item5 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 4;
		grid-row-end: 6;
	}

	.promotion__icon-wrapper-icon img {
		position: absolute;
		top: 0px;
		left: 0;
		min-width: 25px;
		min-height: 25px;
		max-width: 25px;
		max-height: 25px;
	}
}

@media (min-width: 768px) {
	.footer__menu {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
	}

	.footer__item-subtitle {
		text-align: start;
	}

	.promotion__products4 {
		gap: 0px;
	}

	.footer__item1 {
		grid-column-start: 3;
		grid-column-end: 4;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item2 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item3 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	.footer__item4 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 0;
		grid-row-end: 1;
		margin-left: 20px;
	}

	.footer__item5 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.footer__socials {
		position: absolute;
		right: 10px;
		bottom: 10px;
	}

	.footer {
		position: relative;
	}

	.footer__script {
		position: absolute;
		top: 400px;
	}

	.footer-img {
		position: absolute;
		top: 485px;
	}

	.promotion__product-subtitle4 {
		text-align: center;
		line-height: 23px;
		margin-top: 7px;
	}

	.promotion__product-cost-title4 {
		margin-top: 0;
	}
}

@media (min-width: 1024px) {
	.footer {
		height: 550px;
	}

	.footer__menu {
		gap: 20px;
	}

	.footer__item-subtitle {
		text-align: left;
	}

	.footer__socials {
		position: absolute;
		right: 50px;
		bottom: 70px;
	}

	.footer__item1 {
		grid-column-start: 3;
		grid-column-end: 4;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item2 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 0;
		grid-row-end: 2;
	}

	.footer__item3 {
		grid-column-start: 4;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.footer__item4 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 0;
		grid-row-end: 1;
	}

	.footer__item5 {
		grid-column-start: 0;
		grid-column-end: 1;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.footer__script {
		position: static;
	}

	.footer-img {
		position: static;
	}

	.promotion__product-subtitle4 {
		text-align: center;
		line-height: 25px;
		margin-top: 9px;
	}

	.promotion__product-subtitle-zero {
		margin-top: 3px;
	}

	.advantages-dignity__text14 {
		margin-top: 10px;
	}

	.promotion__product-cost-title4 {
		margin-top: 30px;
	}

	.advantages-dignity__list-product-custom {
		margin-top: 24px;
	}

	.promotion__product-button-send4 {
		margin-top: 52px;
	}

	.promotion__product {
		padding-bottom: 47px;
	}

	.promotion__products4 {
		padding-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.footer__socials {
		position: absolute;
		right: 250px;
		bottom: 60px;
	}

	.support__title {
		font-size: 45px;
	}

	.promotion__product-subtitle4 {
		text-align: center;
		line-height: 30px;
		margin-top: 9px;
	}

	.promotion__product-subtitle-infinity {
		margin-top: 3px;
	}

	.promotion__product-title4 {
		margin-top: 16px;
	}

	.advantages-dignity__text14 {
		margin-top: 10px;
	}

	.promotion__product-cost-title4 {
		margin-top: 30px;
	}

	.promotion-cost-wrapper p {
		font-size: 48px;
	}

	.promotion__product-button-send4 {
		margin-top: 40px;
	}

	.promotion__product {
		padding-bottom: 28px;
	}

	.advantages-dignity__list-product-custom {
		margin-top: 13px;
	}

	.promotion__products4 {
		padding-bottom: 0;
	}

	.container {
		max-width: 1300px;
	}

	.promotion-cost-wrapper-team {
		margin-top: 63px;
	}

	.promotion__product-button-send4 {
		margin-top: 51px;
	}

	.advantages-dignity__list-product-custom {
		margin-top: 25px;
	}
}

@media (min-width: 2500px) {
	.footer__socials {
		position: absolute;
		right: 800px;
		bottom: 60px;
	}

	.costback {
		top: 840px;
		left: 1400px;
		width: 800px;
	}

	.quality-back {
		min-width: 1100px;
		top: 550px;
		left: 1400px;
	}

	.intro__back1 {
		left: -100px;
		top: 400px;
	}

	.intro__back2 {
		top: 380px;
		left: 660px;
	}
}

.hidden {
	display: none;
}

.no-margin {
	margin-top: 0;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
}

.modal-content {
	background: linear-gradient(174.78deg, #ffffff 17.07%, #dfdee5 85.12%);
	padding: 30px 10px;
	border-radius: 20px;
	width: 90%;
	max-width: 300px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	text-align: center;
}

.modal-content::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -3px;
	border-radius: 22px;
	background: linear-gradient(
		357.17deg,
		#3e379f -6.46%,
		#13cfdb 14.6%,
		#a969f9 48.88%,
		#a969f9 94.34%
	);
}

.modal__buttons {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal__button1 {
	background: linear-gradient(
		356.58deg,
		#b98af6 -6.12%,
		#3e379f 56.15%,
		#3e379f 113.86%
	);
	box-shadow: 7px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
	max-width: 240px;
	min-width: 240px;
	margin: 0 auto;
	position: relative;
	height: 47px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__button1-wrapper {
	background: linear-gradient(270.17deg, #3b2f8c 4.93%, #a869f9 99.83%);
	box-shadow: 7px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
	max-width: 234px;
	min-width: 234px;
	border-radius: 18px;
	height: 41px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal__button1-wrapper:hover {
	background: linear-gradient(0deg, #22184a, #22184a);
}

.modal__button2 {
	background: linear-gradient(
		357.17deg,
		#3e379f -6.46%,
		#13cfdb 14.6%,
		#a969f9 48.88%,
		#a969f9 94.34%
	);
	box-shadow: 7px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
	max-width: 240px;
	min-width: 240px;
	color: var(--primary);
	margin: 0 auto;
	position: relative;
	height: 47px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__button2-wrapper {
	background: linear-gradient(174.78deg, #ffffff 59.85%, #dfdee5 97.11%);
	box-shadow: 7px 5px 6.5px 0px rgba(0, 0, 0, 0.25);
	max-width: 234px;
	min-width: 234px;
	border-radius: 18px;
	height: 41px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal__button2-wrapper:hover {
	background: linear-gradient(0deg, #22184a, #22184a);
	color: var(--secondary);
}

.register {
	color: var(--light-blue);
	text-decoration: none;
}

.close {
	position: absolute;
	right: 15px;
	top: 15px;
	color: var(--light-purple);
	font-size: 35px;
	cursor: pointer;
}

.close:hover {
	color: #000;
}

.modal-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo {
	margin-bottom: 5px;
}

.tagline {
	font-size: 14px;
	margin-top: 5px;
}

.welcome-text {
	color: var(--dark-purple);
	font-size: 24px;
	font-weight: bold;
	margin: 15px 0;
}

.input-label {
	font-weight: bold;
	color: var(--dark-purple);
	display: block;
	text-align: left;
	margin-bottom: 5px;
}

.input-field {
	width: 90%;
	padding: 10px;
	margin-bottom: 15px;
	border: none;
	border-bottom: 1px solid var(--primary);
	border-radius: 5px;
	font-size: 16px;
}

.submit-btn {
	background-color: var(--light-blue);
	color: var(--secondary);
	padding: 10px 0;
	width: 100%;
	border: none;
	border-radius: 40px;
	font-size: 18px;
	cursor: pointer;
	margin-top: 15px;
}

.submit-btn:hover {
	background-color: var(--light-blue);
}

.modal-footer {
	margin-top: 15px;
}

.register-text {
	color: var(--dark-purple);
	font-size: 16px;
}

.register-text a {
	color: var(--light-blue);
	text-decoration: none;
}

.register-text a:hover {
	text-decoration: underline;
}

body.modal-open {
	overflow: hidden;
}

.choise__wrapper-subtitle1 {
	position: absolute;
	visibility: hidden;
}

.modal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

@media (min-width: 425px) {
	.modal-content {
		padding: 40px;
	}
}

.promotion__product-subtitle-block {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 15px;
}

.promotion__product-free {
	color: var(--dark-purple);
	font-size: 40px;
	font-weight: 900;
	margin-top: 60px;
}

.promotion__product-subtitle-buttons {
	display: flex;
	flex-direction: row;
	gap: 2px;
}

.promotion__product-subtitle-button {
	background-color: var(--light-blue);
	width: 45px;
	border-radius: 9px;
}

.promotion__product-subtitle-block-second {
	margin-top: 0;
}

/*  */
.stepper {
	display: inline-block;
	border-radius: 10px;
	font-family: sans-serif;
	position: relative;
	background-color: var(--light-blue);
	width: 140px;
}

.stepper-controls {
	display: flex;
	align-items: center;
}

.stepper-button {
	padding: 10px;
	background-color: var(--light-blue);
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: var(--primary);
	width: 40px;
}

.value {
	padding: 10px;
	box-sizing: border-box;
	padding-bottom: 20px;
	font-size: 20px;
	font-weight: 400;
	color: var(--dark-purple);
	text-align: center;
	background-color: var(--secondary);
	width: 70px;
	height: 38px;
	cursor: pointer;
	user-select: none;
	border-radius: 10px;
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 500px;
	background: white;
	border: 1px solid #ccc;
	display: none;
	z-index: 100;
	overflow-y: scroll;
	border-radius: 10px;
}

.dropdown.show {
	display: block;
}

.dropdown div {
	padding: 8px;
	cursor: pointer;
}

.dropdown div:hover {
	background-color: #f0f0f0;
}

.pay {
	display: flex;
	flex-direction: column;
	height: 200px;
	align-items: center;
}

.pay__title {
	font-size: 28px;
	color: var(--dark-purple);
	margin-top: 45px;
}

.pay__subtitle {
	font-size: 19px;
	color: var(--primary);
	font-weight: 400;
	margin-top: 20px;
}

.pay__icons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 5px;
	margin-top: 20px;
	align-items: center;
}

@media (min-width: 375px) {
	.sale-icon-wrapper {
		font-size: 20px;
	}

	.promotion__product-sale {
		font-size: 18px;
	}

	.promotion__icon-wrapper-icon img {
		position: absolute;
		top: 0px;
		left: 0;
		min-width: 30px;
		min-height: 30px;
		max-width: 30px;
		max-height: 30px;
	}

	.dropdown {
		height: 400px;
	}
}

@media (min-width: 768px) {
	.promotion__products5 {
		justify-content: center;
		width: auto;
		max-height: 120px;
	}

	.promotion__title-wrapper .promotion__title {
		font-size: 28px;
	}

	.promotion__title-wrapper .promotion__subtitle {
		font-size: 19px;
		line-height: 24px;
	}

	.promotion__product-dignity__text1 {
		margin-top: 20px;
	}

	.pay {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		z-index: 1000;
	}

	.pay__subtitle {
		font-size: 18px;
	}

	.pay__title {
		margin-top: auto;
	}

	.pay__block {
		width: 300px;
	}

	.promotion__product:hover .promotion__product-title {
		color: var(--secondary);
	}

	.promotion__product:hover .promotion__product-free {
		color: var(--secondary);
	}

	.promotion__product:hover .promotion__product-dignity__text {
		color: var(--secondary);
	}

	.promotion__product:hover .sale-icon-wrapper {
		color: var(--secondary);
	}
}

@media (min-width: 1024px) {
	.promotion__title-wrapper .promotion__title {
		font-size: 35px;
	}

	.promotion__title-wrapper .promotion__subtitle {
		font-size: 22px;
		line-height: 24px;
	}

	.promotion__product-dignity__text1 {
		margin-top: 20px;
	}

	.pay {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		z-index: 1000;
		width: 90%;
	}

	.pay__subtitle {
		font-size: 18px;
	}

	.promotion__product-subtitle-member {
		margin-top: 5px;
	}

	.pay__title {
		margin-top: auto;
	}

	.pay__block {
		width: 300px;
	}

	.pay__img {
		min-height: 70px;
	}

	.pay__img-last {
		min-height: 40px;
	}

	.table-wrapper-web .table__title {
		margin-top: 30px;
	}

	.promotion__product-dignity__text {
		font-size: 20px;
	}

	.pay__subtitle {
		font-size: 20px;
	}

	.promotion__product-free {
		margin-top: 120px;
	}

	.promotion__product-button1 {
		margin-top: 60px;
	}

	.promotion__icon-wrapper-icon img {
		position: absolute;
		top: 12px;
		left: 0;
		min-width: 30px;
		min-height: 30px;
		max-width: 30px;
		max-height: 30px;
	}

	.promotion__product-button2 {
		margin-top: 30px;
	}

	.promotion-cost-wrapper p {
		font-size: 35px;
	}

	.promotion__product-button1 {
		margin-top: 40px;
	}

	.sale-icon-wrapper {
		display: flex;
		align-items: center;
		font-size: 30px;
		color: var(--primary);
		margin-left: 40px;
	}
}

@media (min-width: 1200px) {
	.promotion__title-wrapper .promotion__title {
		font-size: 45px;
	}

	.promotion__title-wrapper .promotion__subtitle {
		font-size: 26px;
		line-height: 24px;
	}

	.promotion__product-title {
		font-size: 30px;
	}

	.promotion__product-title5 {
		font-size: 30px;
		margin-top: -2px;
	}

	.promotion__product-dignity__text1 {
		margin-top: 20px;
	}

	.pay {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		z-index: 1000;
		min-width: 1100px;
		max-width: 1100px;
	}

	.promotion__icon-wrapper-icon img {
		position: absolute;
		top: 6px;
		left: 0;
		min-width: 40px;
		min-height: 40px;
		max-width: 40px;
		max-height: 40px;
	}

	.pay__subtitle {
		font-size: 18px;
	}

	.pay__title {
		margin-top: auto;
	}

	.pay__block {
		width: 300px;
	}

	.pay__img {
		min-height: 90px;
	}

	.pay__img-last {
		min-height: 50px;
	}

	.pay__title {
		font-size: 26px;
	}
	.pay__subtitle {
		font-size: 20px;
	}

	.promotion__product {
		min-width: 305px;
	}

	.promotion__product-free {
		margin-top: 120px;
	}

	.promotion__product-button1 {
		margin-top: 36px;
	}

	.promotion__product-button2 {
		margin-top: 25px;
	}

	.promotion__block {
		width: 170px;
		height: 50px;
	}

	.promotion__products5 {
		min-width: 93%;
		margin-top: 5px;
	}

	.pricing-table th {
		font-size: 20px;
	}

	.pricing-table td {
		font-size: 20px;
	}

	.tablespan {
		font-size: 20px;
	}

	.tablespantitle {
		font-size: 26px;
		font-weight: 800;
	}
}

.promotion__product-subtitle-button.active {
	background-color: var(--light-purple);
}

.sale-icon {
	width: 18px;
	height: 18px;
}
