@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: #fff;
	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: #f3f3f3;
}
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;
	background-color: #121212;
}

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

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: #121212;
	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.webp') 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.webp') 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: 550px;
	background: url('../img/bg.webp') center 65px / cover no-repeat;
	z-index: -1;
}
.wrapper.not-found::after {
	height: 100%;
}
.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: #fff;
}

.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: #fff;
}

.inner .btn {
	display: flex;
	justify-content: center;
	padding: 20px 60px;
	align-items: center;
	background: var(--Grad, linear-gradient(96deg, #0748ae -0.93%, #de2035 100%));
	border-radius: 56px;
	text-decoration: none;
	align-self: center;
	box-shadow: 0px 0px 26px 0px rgba(0, 255, 163, 0.58) inset;

	color: #121212;
	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: #121212;
}

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

.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 {
    margin: 0 auto;
	display: flex;
	width: 70%;
	height: auto;
	transition: all 0.3s ease-in;
}

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

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

.cnt li {
	align-self: center;
}

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

table {
	width: 100%;
	overflow: auto;
	border-collapse: collapse;
}
td,
th {
	padding: 3px;
	width: 30px;
	height: 25px;
	text-align: left;
}
th {
	text-align: center;
	padding: 9px;
	border-bottom: 1px solid #0748ae;
	border-top: 1px solid #0748ae;
}
td {
	text-align: center;
	padding: 9px;
	border-bottom: 1px solid #0748ae;
}

footer {
	margin: 55px 0 0 0;
	padding: 16px 0;
	background-color: #121212;
}
.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: 88px;
	display: flex;
	align-items: center;
	gap: 17px;
	background: #121212;
	padding: 0 10px 0 0;
	border-radius: 10px 0 0 10px;
}
.showcase__item:nth-child(2n) {
	border-radius: 0 10px 10px 0;
}
.showcase .showcase__item:nth-child(2) {
	justify-content: space-between;
}
.showcase__item p {
	margin: 0;
	height: 88px;
}
.showcase__img {
	padding: 0 0 0 40px;
	position: relative;
}
.showcase__img::before {
	content: '1';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
	border-radius: 10px 0 0 10px;
	background: var(--Grad, linear-gradient(96deg, #0748ae -0.93%, #de2035 100%));
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: calc(30vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 800;
	line-height: calc(26vw / var(--resizer) * 100);
}
.showcase__title {
	color: #fff;
	font-size: calc(18vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 700;
	line-height: calc(28vw / var(--resizer) * 100);
}

.showcase__rating {
	display: flex;
	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: 18px 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: 9px;
	background: var(--Grad, linear-gradient(96deg, #0748ae -0.93%, #de2035 100%));
	box-shadow: 0px 9px 6px 0px rgba(255, 255, 255, 0.25) inset;
}
.inner.not-found h1 {
	color: #fff;
	text-align: center;
	font-size: 215px;
	font-style: normal;
	font-weight: 700;
	line-height: 185px;
}
.inner.not-found h2 {
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 40px 0;
}
.inner.not-found .btn {
	border-radius: 11px;
	background: var(--Grad, linear-gradient(96deg, #0748ae -0.93%, #de2035 100%));
	box-shadow: 0px 9px 6px 0px rgba(255, 255, 255, 0.25) inset;
	color: #fff;
}

.awou {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.awouItem {
    display: flex;
    flex-direction: column;
    width: 31%;
    margin: 10px;
    text-decoration: none;
}

.cnt .awouItem .img-text {
    width: 100%;
    height: 200px;
}

.awouItem .img-text img,
.awouItem .img-text picture {
    width: inherit;
    height: inherit;
}

.awouTitle {
    text-align: center;
    font-size: 16px;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}