@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.container {
	max-width: 1095px;
	margin: 0 auto;
	padding: 0 15px;
}

.menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
}

.menu li {
	margin: 15px;
	color: #1f2128;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.menu li:hover {
	color: #cab1ff;
}

.menu li a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

body {
	background: #ededed;
}
body.hidden {
	overflow: hidden;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	padding: 9px 0;
	width: 100%;
	z-index: 9;
	transition: all 0.3s ease-in;
}

.wrapper .container {
	max-width: 1095px;
	padding: 0 15px;
}

header .row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.active .menu {
	top: 60%;
}

header .row .logo {
	text-decoration: none;
	width: auto;
	height: 45px;
}

header .row a.logo {
	transition: all 0.3s ease-in;
}

header .row a.logo:hover {
	transform: scale(1.05);
}

header .row .logo p,
header .row .logo img {
	display: flex;
	width: auto;
	height: 100%;
}

header .row .burger {
	display: none;
	align-items: center;
	height: 40px;
}

header .row .burger p {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	color: #1f2128;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header .row .burger .toggle {
	margin: 0 0 0 15px;
	width: 72px;
	height: 20px;
	background: url('../img/burger.png') center / contain no-repeat;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header.active .row .burger .toggle {
	width: 40px;
	height: 40px;
	background: url('../img/close.png') center / contain no-repeat;
}

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}

.wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1000px;
	background: url('../img/bg.png') center top / cover no-repeat;
	z-index: -1;
}

.inner {
	display: flex;
	flex-direction: column;
	padding: 186px 0;
}

.inner h1 {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px;
	color: #1f2128;
}

.inner h1 span {
	font-size: 96px;
	line-height: 96px;
}

.inner p {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: #1f2128;
}

.inner .btn {
	display: flex;
	justify-content: center;
	padding: 20px 60px;
	align-items: center;
	border-radius: 7px;
	background: var(
		--Gradient-1,
		linear-gradient(275deg, #64d33c 0%, #2aae6f 100%)
	);

	/* Inner Shadow */
	box-shadow: 0px 0px 26px 0px #6f9ef6 inset;
	text-decoration: none;
	align-self: center;

	color: #1f2128;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.inner .btn:hover {
	transform: scale(1.05);
}

.cnt {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.cnt h2 {
	margin: 0 0 35px 0;
	text-align: center;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	color: #1f2128;
}

.cnt h3 {
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: #1f2128;
}

.cnt p,
.cnt span,
.cnt ul,
.cnt ol,
.cnt table {
	margin: 0 0 20px 0;
}

.cnt ul,
.cnt ol {
	display: flex;
	flex-direction: column;
}

.cnt p,
.cnt span,
.cnt li,
.cnt td,
.cnt th {
	font-size: 16px;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

table td:nth-child(2n),
table td:nth-child(2n) {
	font-weight: 700;
}

.cnt p.img-text {
	display: flex;
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in;
}

.cnt p.img-text:hover {
	transform: scale(1.05);
}

.cnt p.img-text img {
	width: inherit;
	height: 100%;
}

.cnt li {
	align-self: center;
}

.cnt span {
	font-weight: 700;
	color: #a5aabe;
}

table {
	border-spacing: 0px 8px;
	width: 100%;
	overflow: auto;
	border-collapse: separate;
}
td,
th {
	padding: 3px;
	width: 30px;
	height: 25px;
	text-align: left;
}
th {
	text-align: center;
	padding: 9px;
	background-color: #fff;
	border-radius: 9px 0 0 9px;
}
th:nth-child(2n) {
	border-radius: 0 9px 9px 0;
	font-weight: 700;
}
td {
	text-align: center;
	padding: 9px;
	border-radius: 9px 0 0 9px;
}
td:nth-child(2n) {
	border-radius: 0 9px 9px 0;
}
tr {
	background-color: #f3f3f3;
}
tr:nth-child(2n) {
	background-color: #fff;
}

footer {
	margin: 55px 0 0 0;
	padding: 16px 0;
	background-color: #ededed;
}
footer .container {
	border-top: 1px solid var(--white-15, #c6c6c6);
}
.showcase__wrapper {
	margin: 0 0 30px 0;
}
.showcase {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px 0;
}

.showcase__item {
	width: 100%;
	height: 138px;
	display: flex;
	align-items: center;
	gap: 35px;
	background: #fff;
	padding: 10px;
	border-radius: 4px 0 0 4px;
}
.showcase__item:nth-child(2n) {
	border-radius: 0 4px 4px 0;
}
.showcase .showcase__item:nth-child(2) {
	justify-content: flex-end;
}
.showcase__item p {
	margin: 0;
	height: 116px;
}
.showcase__img {
	padding: 0 0 0 90px;
	position: relative;
}
.showcase__img::before {
	content: '1';
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 100%;
	border-radius: 4px;
	background: var(
		--Gradient-2,
		linear-gradient(187deg, #e63574 7.54%, #e82626 100.82%)
	);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: calc(36vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 800;
	line-height: calc(26vw / var(--resizer) * 100);
}
.showcase__title span {
	text-align: left;
	display: block;
	margin: 0 0 10px 0;
	color: #1f2128;
	font-size: calc(28vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 700;
	line-height: calc(28vw / var(--resizer) * 100);
}
.showcase__title .showcase__rating {
	display: flex;
	min-width: 145px;
}
.showcase__title .showcase__rating-item {
	max-width: 25px;
	max-height: 25px;
}
.showcase__title .showcase__rating-item p {
	height: 25px;
}
.showcase__rating {
	display: none;
	gap: 5px;
}

.showcase__rating-item {
	max-width: 18px;
	max-height: 18px;
}
.showcase__rating-item p {
	height: 18px;
}
.showcase__rating-item img {
	width: 100%;
	height: 100%;
}

.showcase__btn {
	padding: 23px 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: calc(16vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 400;
	line-height: calc(25vw / var(--resizer) * 100);
	border-radius: 7px;
	background: var(
		--Gradient-1,
		linear-gradient(275deg, #64d33c 0%, #2aae6f 100%)
	);

	/* Inner Shadow */
	box-shadow: 0px 0px 26px 0px #6f9ef6 inset;
}
.inner.not-found h1 {
	color: #1f2128;
	text-align: center;
	font-size: 215px;
	font-style: normal;
	font-weight: 700;
	line-height: 185px;
}
.inner.not-found h1 span {
	color: #1f2128;
	text-align: center;
	font-size: 215px;
	font-style: normal;
	font-weight: 700;
	line-height: 185px;
	color: #e63574;
}
.inner.not-found h2 {
	color: #1f2128;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 40px 0;
}
.inner.not-found .btn {
	color: #fff;
	border-radius: 7px;
	background: var(
		--Gradient-1,
		linear-gradient(275deg, #64d33c 0%, #2aae6f 100%)
	);

	/* Inner Shadow */
	box-shadow: 0px 0px 26px 0px #6f9ef6 inset;
}
