*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}
html,
body {
	width: 100%;
	height: 100%;
}
html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}
a[class] {
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
input,
button,
textarea,
select {
	font: inherit;
	outline: none;
}
summary {
	display: block;
}
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-size: var(--body-fsz);
	font-family: var(--body-ff), sans-serif;
	background-color: var(--body-bgc);
	color: var(--body-c);
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	border: none;
	background-color: transparent;
}
button:hover {
	cursor: pointer;
}
ul {
	list-style: none;
}
.o-center {
	margin: 0 auto;
}
:root {
	--body-bgc: inherit;
	--body-c: inherit;
	--body-fsz: 16px;
	--body-ff: 'Ubuntu';
	--transition-f: 0.2s all ease-in-out;
	--header-height: 56px;
	--section-inner: 10px;
	--border-r: 5px;
}
:root {
	--yellow-100: #fbb71a;
	--yelow-200: #ef9b00;
	--yellow-gradient: linear-gradient(
		to right,
		var(--yellow-100),
		var(--yelow-200)
	);
	--purple-100: #160a03;
	--purple-200: #26150d;
	--purple-300: #250a25;
	--purple-400: #32221b;
	--purple-500: #a35229;
	--purple-600: #1f0e36;
	--black: #111517;
	--gray-100: #0e0c12;
	--gray-200: #160a03;
	--gray-300: #95979d;
	--gray-400: #ece9f3;
	--gray-500: #f6f5f8;
	--gray-10: rgba(255, 255, 255, 0.1);
	--gray-50: rgba(255, 255, 255, 0.5);
	--gray-70: #160a03b3;
	--white: #ffffff;
	--blue: #95a6e4;
	--blue-70: color-mix(in srgb, var(--blue) 70%, transparent);
	--blue-100: #2a2e3c;
}
@media (min-width: 1024px) {
	:root {
		--header-height: 86px;
	}
}
@media (min-width: 1440px) {
	:root {
		--section-inner: calc((100% - 1250px) / 2);
	}
}
@font-face {
	font-family: 'Ubuntu';
	src:
		url('../fonts/Ubuntu-Regular.woff2') format('woff2'),
		url('../fonts/Ubuntu-Regular.woff') format('woff');
	font-display: swap;
	font-weight: 400;
}
@font-face {
	font-family: 'Ubuntu';
	src:
		url('../fonts/Ubuntu-Bold.woff2') format('woff2'),
		url('../fonts/Ubuntu-Bold.woff') format('woff');
	font-display: swap;
	font-weight: 700;
}
h1 {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
}
ol {
	list-style: none;
}
.o-brake {
	word-break: break-all;
}
.o-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	transition: var(--transition-f);
	height: 40px;
	padding: 0 10px;
	font-weight: 700;
}
.o-btn--yellow--fill {
	background: var(--yellow-gradient);
	color: var(--black);
}
.o-btn--yellow--border {
	--btn-size: 40px;
	position: relative;
	height: var(--btn-size);
	background: transparent;
	border-radius: var(--border-r) 0 0 var(--border-r);
	border: 1px solid var(--yellow-100);
	color: var(--white);
	margin-right: var(--btn-size);
}
.o-btn--yellow--border::after,
.o-btn--yellow--border::before {
	content: '';
	position: absolute;
	right: calc(var(--btn-size) * -1);
	display: block;
	height: var(--btn-size);
	width: var(--btn-size);
}
.o-btn--yellow--border::before {
	background: var(--yellow-gradient);
	border-radius: 0 var(--border-r) var(--border-r) 0;
}
.o-btn--yellow--border.lazyloaded::after {
	background: url(../images/right-arrow-bg.svg) center no-repeat;
}
.o-btn--yellow--border::after {
	background-size: 26px 26px;
}
.o-btn--yellow--border:hover {
	background: var(--yellow-100);
	color: var(--black);
}
.o-btn--secondary {
	border: 1px solid var(--gray-400);
	color: var(--gray-200);
}
.o-btn--promocode {
	border: 1px dashed var(--gray-300);
	text-transform: uppercase;
}
.o-btn--promocode:disabled {
	color: var(--gray-200);
	cursor: text;
}
.o-btn--promocode:disabled:hover {
	background-color: transparent;
}
.o-btn--promocode:active {
	background-color: var(--gray-300);
}
.o-icon {
	--icon-size: 1.5rem;
	width: var(--icon-size);
	height: var(--icon-size);
	transition: var(--transition-f);
}
.o-small-brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	background-color: var(--gray-10);
	padding: 10px;
	border-radius: var(--border-r);
}
.o-small-brand .o-btn {
	font-size: clamp(0.75rem, 3vw, 1rem);
}
.o-small-brand__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	width: 50px;
	height: 50px;
	background-color: var(--white);
	border: 2px solid var(--white);
	border-radius: 25px;
}
.o-small-brand__info {
	text-align: center;
}
.o-small-brand__name {
	font-size: 0.75rem;
}
.o-small-brand__bonus {
	color: var(--yellow-100);
}
.o-bold {
	font-weight: 700;
}
.o-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.o-list > p {
	font-weight: 700;
	font-style: italic;
	font-size: 1.25rem;
}
.o-list ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.o-list ul li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.o-list ul li p:first-of-type {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 600;
	font-size: 1.125rem;
}
.o-list ul li p:first-of-type::before {
	content: '';
	display: block;
	width: 20px;
	height: 14px;
	background-size: contain;
}
.o-list.o-arrow-yellow ul li p:first-of-type.lazyloaded::before {
	background: url(../images/Yellow-arrow.svg) center no-repeat;
}
.o-list.o-arrow-purple ul li p:first-of-type.lazyloaded::before {
	background: url(../images/Purple-arrow.svg) center no-repeat;
}
.o-list.o-pros ul li p:first-of-type::before {
	width: 30px;
	height: 30px;
	background-color: #16af00;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.o-list.o-pros ul li p:first-of-type.lazyloaded::before {
	-webkit-mask-image: url(../images/green-1.svg);
	mask-image: url(../images/green-1.svg);
}
.o-list.o-cons ul li p:first-of-type::before {
	width: 30px;
	height: 30px;
	background-color: #ad0000;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.o-list.o-cons ul li p:first-of-type.lazyloaded::before {
	-webkit-mask-image: url(../images/red.svg);
	mask-image: url(../images/red.svg);
}
.o-table {
	overflow-x: auto;
}
.o-table--info table {
	width: 100%;
}
.o-table table {
	background: #feeee7;
	border-radius: var(--border-r);
	border-collapse: collapse;
	overflow: hidden;
}
.o-table table th,
.o-table table td {
	padding: 8px 20px;
}
.o-table table th {
	background-color: #a16345;
	color: var(--white);
	font-weight: 600;
}
.o-table table caption {
	border-radius: var(--border-r) var(--border-r) 0 0;
	background-color: var(--purple-500);
	color: var(--white);
	font-weight: 700;
	padding: 10px;
}
.o-table table tr:nth-of-type(2n) {
	background-color: var(--gray-400);
}
.o-table table tr:nth-of-type(2n) th {
	background-color: var(--purple-500);
}
.o-pros-and-cons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.o-pros-and-cons .o-pros,
.o-pros-and-cons .o-cons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
	background-color: var(--white);
	padding: 1rem;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	border-top: 3px solid var(--border-color);
}
.o-pros-and-cons .o-pros p,
.o-pros-and-cons .o-cons p {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 1.25rem;
	border-bottom: 1px solid var(--gray-400);
	padding-bottom: 0.5rem;
	font-weight: 700;
}
.o-pros-and-cons .o-pros p::before,
.o-pros-and-cons .o-cons p::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
}
.o-pros-and-cons .o-pros p.lazyloaded:before,
.o-pros-and-cons .o-cons p.lazyloaded:before {
	background: var(--up-icon);
	background-size: contain;
}
.o-pros-and-cons .o-pros ul li,
.o-pros-and-cons .o-cons ul li {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.o-pros-and-cons .o-pros ul li::before,
.o-pros-and-cons .o-cons ul li::before {
	content: '';
	display: block;
	min-width: 1rem;
	height: 1rem;
}
.o-pros-and-cons .o-pros ul li.lazyloaded::before,
.o-pros-and-cons .o-cons ul li.lazyloaded::before {
	background: var(--down-icon);
}
.o-pros-and-cons .o-pros {
	--border-color: #4ac408;
	--up-icon: url(../images/ProsUp.svg);
	--down-icon: url(../images/ProsDown.svg);
}
.o-pros-and-cons .o-cons {
	--border-color: #e9391b;
	--up-icon: url(../images/ConsUp.svg);
	--down-icon: url(../images/ConsDown.svg);
}
.o-two-cols {
	display: grid;
	gap: 0.5rem;
}
.o-two-cols > div,
.o-two-cols table {
	width: 100%;
}
.o-two-cols img {
	margin: 0 auto;
}
.o-two-cols .o-info-box {
	width: 100%;
}
.o-section-heading {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid var(--gray-300);
	border-radius: var(--border-r);
	padding: 3rem 1rem 1rem 1rem;
	background-color: var(--white);
}
.o-section-heading h2 {
	position: absolute;
	top: -11px;
	margin: 0 auto;
	background-color: var(--purple-100);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 0 0 var(--border-r) var(--border-r);
	text-align: center;
}
.o-section-heading h2::before,
.o-section-heading h2::after {
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	width: 7px;
	height: 11px;
	border-style: solid;
	border-width: 11px 0 0 11px;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #a35229;
}
.o-section-heading h2::before {
	left: -11px;
	transform: rotateY(180deg);
}
.o-section-heading h2::after {
	right: -11px;
}
.o-section-heading--dark,
.o-section-heading--light {
	padding: 1rem;
	background-color: var(--background);
	color: var(--color);
	border: none;
}
.o-section-heading--dark h2,
.o-section-heading--light h2 {
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	padding: 0;
	background-color: transparent;
	color: var(--title-color);
}
.o-section-heading--dark h2::before,
.o-section-heading--dark h2::after,
.o-section-heading--light h2::before,
.o-section-heading--light h2::after {
	position: relative;
	top: 0;
	width: 40px;
	height: 20px;
	border: none;
	border-radius: var(--border-r);
	background: linear-gradient(270deg, rgba(149, 166, 228, 0) 0%, #95a6e4 100%);
}
.o-section-heading--dark {
	--background: var(--black);
	--color: var(--white);
	--title-color: var(--white);
}
.o-section-heading--dark .o-table {
	color: var(--black);
	width: 100%;
}
.o-section-heading--dark .o-table table {
	width: 100%;
}
.o-section-heading--dark .o-table table td {
	text-align: center;
}
.o-section-heading--dark .o-pros-and-cons {
	color: var(--black);
	width: 100%;
}
.o-section-heading--light {
	--background: transparent;
	--color: var(--black);
	--title-color: var(--black);
}
.o-section-heading__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.o-rounded {
	border-radius: 1000px;
}
.o-info-box {
	background-color: var(--white);
}
.o-info-box__title {
	background-color: var(--purple-600);
	color: var(--white);
	border-radius: var(--border-r);
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	padding: 0.75rem;
}
.o-info-box__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
}
.o-info-box__item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.o-info-box__item:last-of-type .o-info-box__row {
	border: none;
}
.o-info-box__head {
	font-weight: 700;
}
.o-info-box__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	border-bottom: 1px solid var(--gray-400);
	padding-bottom: 0.5rem;
}
.o-info-box__times {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.o-info-box__times span {
	display: flex;
	justify-content: center;
	text-align: center;
	background-color: var(--blue);
	border-radius: var(--border-r);
	padding: 0.25rem;
	text-transform: uppercase;
}
.o-info-box .o-payment {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.o-info-box .o-payment img {
	border-radius: 25px;
	-o-object-fit: cover;
	object-fit: cover;
}
.o-info-box .o-payment p {
	font-size: 0.875rem;
}
@media (min-width: 768px) {
	.o-pros-and-cons {
		flex-direction: row;
	}
}
@media (min-width: 1440px) {
	.o-two-cols {
		align-items: start;
		grid-template-columns: auto auto;
	}
	.o-two-cols--equal {
		grid-template-columns: 1fr 1fr;
	}
	.o-two-cols > div .o-table {
		width: auto;
		max-width: -webkit-fit-content;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
}
.c-header {
	position: relative;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: var(--header-height);
	padding: 0 var(--section-inner);
	background-color: var(--purple-100);
	color: var(--white);
}
.c-header__burger,
.c-header__sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--gray-10);
	border-radius: 0.25rem;
}
.c-header__burger span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: var(--gray-50);
	border-radius: 2px;
	transition: var(--transition-f);
}
.c-header__burger.js-active span {
	position: absolute;
}
.c-header__burger.js-active span:first-of-type {
	rotate: 45deg;
}
.c-header__burger.js-active span:nth-of-type(2) {
	width: 0;
}
.c-header__burger.js-active span:last-of-type {
	rotate: -45deg;
}
.c-header__sidebar .o-icon {
	transform: rotate(90deg);
}
.c-header__logo {
	position: absolute;
	left: calc(50% - 70px);
	width: 145px;
	height: 38px;
}
.c-header__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-header__menu {
	position: fixed;
	z-index: 2;
	top: var(--header-height);
	left: -100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 80vw;
	height: calc(100dvh - var(--header-height));
	padding: 10px;
	background-color: var(--purple-100);
	transition: var(--transition-f);
	overflow: auto;
}
.c-header__menu.js-active {
	left: 0;
}
.c-header__title {
	font-weight: 700;
	color: var(--yellow-100);
	text-align: center;
}
.c-header__links {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.c-header__link {
	display: flex;
	justify-content: space-between;
	gap: 0px;
	min-height: 40px;
	width: 100%;
	border: 1px solid var(--gray-10);
	border-radius: 0.25rem;
	padding-left: 0.75rem;
}
.c-header__link > a {
	display: flex;
	align-items: center;
}
.c-header__link > a::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-color: var(--white);
	-webkit-mask-image: url(../images/submenu_arrow.svg);
	mask-image: url(../images/submenu_arrow.svg);
}
.c-header__link > a > .o-icon {
	display: none;
}
.c-header__link a:hover {
	color: var(--yellow-100);
}
.c-header__dropdown {
	width: 40px;
	height: 40px;
	background-color: var(--yellow-100);
	border-radius: 0 0.25rem 0.25rem 0;
}
.c-header__dropdown::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--white);
}
.c-header__submenu {
	position: fixed;
	top: var(--header-height);
	left: -100vw;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
	width: 80vw;
	height: calc(100dvh - var(--header-height));
	padding: 10px;
	background-color: var(--purple-100);
	transition: var(--transition-f);
}
.c-header__submenu.js-active {
	left: 0;
}
.c-header__sublink:first-of-type {
	height: 40px;
	padding: 0 0.75rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.c-header__sublink a {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 0.25rem 0.75rem;
	width: 100%;
	border: 1px solid var(--gray-10);
	border-radius: 0.25rem;
}
.c-header__back {
	display: flex;
	align-items: center;
	color: var(--gray-300);
	font-size: 0.875rem;
	height: 100%;
}
.c-header__back::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-color: var(--gray-300);
	-webkit-mask-image: url(../images/submenu_arrow.svg);
	mask-image: url(../images/submenu_arrow.svg);
	rotate: 180deg;
}
.c-header__bg {
	position: fixed;
	z-index: 1;
	top: var(--header-height);
	left: -100vw;
	width: 100vw;
	height: calc(100dvh - var(--header-height));
	background-color: var(--gray-70);
}
.c-header__bg.js-active {
	left: 0;
}
@media (min-width: 1024px) {
	.c-header {
		justify-content: space-between;
		outline: 1px solid var(--gray-200);
	}
	.c-header__burger,
	.c-header__sidebar {
		display: none;
	}
	.c-header__logo {
		width: 268px;
		height: 41px;
		position: relative;
		left: 0;
	}
	.c-header__menu {
		position: relative;
		left: 0;
		margin-right: 1rem;
		top: 0;
		height: auto;
		width: auto;
		padding: 0;
		overflow: visible;
	}
	.c-header__title {
		display: none;
	}
	.c-header__links {
		flex-direction: row;
		gap: 0;
	}
	.c-header__link {
		position: relative;
		border: none;
		font-size: 0.75rem;
		padding-left: 0;
		height: var(--header-height);
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.c-header__link > a {
		position: relative;
		flex-direction: column;
		justify-content: center;
		gap: 0.25rem;
		padding: 0 1rem 0 0.5rem;
		color: var(--gray-400);
	}
	.c-header__link > a::before {
		content: '';
		border-top: 4px solid transparent;
		position: absolute;
		z-index: -1;
		display: block;
		inset: 0;
		transform: skew(-18deg);
		transition: var(--transition-f);
	}
	.c-header__link > a::after {
		content: none;
	}
	.c-header__link > a .o-icon {
		display: block;
		width: 24px;
		height: 24px;
		fill: var(--white);
	}
	.c-header__link > a:hover {
		color: inherit;
	}
	.c-header__link > a:hover::before {
		border-color: var(--blue);
		background-color: var(--blue-100);
	}
	.c-header__link:hover .c-header__submenu {
		display: flex;
	}
	.c-header__link:last-of-type:hover .c-header__submenu {
		left: auto;
		right: 0;
	}
	.c-header__submenu {
		display: none;
		position: absolute;
		left: -180px;
		width: 360px;
		height: auto;
		background-color: var(--blue-100);
		gap: 0.5rem;
	}
	.c-header__sublink:first-of-type {
		display: none;
	}
	.c-header__sublink a {
		justify-content: center;
		font-size: 1rem;
		color: var(--white);
		background-color: var(--purple-100);
		border: none;
		border-radius: 0;
	}
	.c-header__sublink a:hover {
		color: var(--blue);
	}
	.c-header__dropdown {
		display: none;
	}
}
section {
	padding: 0 var(--section-inner);
}
.c-first-screen {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 20px var(--section-inner);
	background-color: var(--purple-200);
	background-size: cover;
	color: var(--white);
}
.c-first-screen__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--gray-10);
	border-radius: var(--border-r);
	width: 100%;
	height: 38px;
	padding: 0.25rem;
}
.c-first-screen__info p {
	font-size: 13px;
	color: var(--gray-300);
}
.c-first-screen__info p a,
.c-first-screen__info p span {
	font-size: 0.875rem;
	color: var(--white);
	font-weight: 700;
}
.c-first-screen__info p a {
	text-decoration: underline;
}
.c-first-screen__author {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.c-first-screen__author img {
	min-width: 30px;
	border-radius: 100px;
}
.c-first-screen__wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.c-first-screen__island {
	display: grid;
	gap: 1rem;
}
.c-first-screen__island:first-of-type .o-btn.o-btn--yellow--border {
	--btn-size: 50px;
	font-size: 1.125rem;
	width: calc(100% - var(--btn-size));
}
.c-first-screen__hundred {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: 130px;
	overflow: hidden;
	transition: var(--transition-f);
}
.c-first-screen__toggle {
	color: var(--white);
	text-decoration: underline;
}
.c-first-screen__rating-title {
	align-items: center;
	display: flex;
	font-weight: bold;
	font-size: 14px;
	justify-content: center;
	width: 214px;
	height: 58px;
	background: url(../images/best-casinos-top2.svg) center no-repeat;
	margin: 0 auto;
}
.c-first-screen .o-small-brand__name {
	font-size: clamp(0.75rem, 3vw, 0.875rem);
}
.c-first-screen .o-small-brand__bonus {
	font-size: clamp(1rem, 3vw, 1.125rem);
	color: var(--yellow-100);
	max-width: 200px;
	font-weight: 700;
}
.c-breadcrumbs {
	display: flex;
	gap: 0.25rem;
	font-size: 13px;
}
.c-breadcrumbs li::after {
	content: '»';
	padding-left: 0.25rem;
}
.c-breadcrumbs li:last-of-type::after {
	content: none;
}
.c-content-wrapper {
	padding: 50px var(--section-inner);
}
.c-content {
	display: grid;
	gap: 1rem;
}
.c-content p > a {
	color: var(--purple-500);
	text-decoration: underline;
}
.c-content ol {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	counter-reset: ol;
}
.c-content ol li {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	counter-increment: ol;
}
.c-content ol li::before {
	content: counter(ol);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	border-radius: 15px;
	border: 1px solid var(--yellow-100);
	font-weight: 700;
	color: var(--yellow-100);
}
.c-main {
	padding-top: var(--header-height);
}
.c-faqs {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 2rem 1rem;
	background-color: var(--purple-100);
	color: var(--white);
	border-radius: var(--border-r);
}
.c-faqs h2 {
	color: var(--yellow-100);
	text-align: center;
}
.c-faqs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.c-faqs__item {
	width: 100%;
}
.c-faqs__item[open] .c-faqs__question::after {
	content: '-';
	transform: rotate(180deg);
}
.c-faqs__question,
.c-faqs__answer {
	padding: 1rem;
	color: var(--black);
	background-color: var(--white);
	border-radius: var(--border-r);
}
.c-faqs__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
	font-size: 1rem;
}
.c-faqs__question:hover {
	cursor: pointer;
}
.c-faqs__question::after {
	content: '+';
	font-size: 1.125rem;
	font-weight: 400;
	transition: var(--transition-f);
}
.c-faqs__answer {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.5rem;
}
.c-faqs__answer > ul {
	padding-left: 1.5rem;
	list-style-type: disc;
}
.c-sidebar {
	position: fixed;
	z-index: 1;
	top: -100%;
	width: calc(100% - (var(--section-inner) * 2));
	max-height: calc(100dvh - var(--header-height));
	overflow-y: auto;
	transition: var(--transition-f);
}
.c-sidebar::-webkit-scrollbar {
	width: 0.5rem;
	background-color: var(--gray-100);
}
.c-sidebar::-webkit-scrollbar-thumb {
	background-color: var(--gray-300);
	border-radius: 0.5rem;
}
.c-sidebar > div:not(:first-of-type) {
	position: relative;
	z-index: 2;
}
.c-sidebar.js-active {
	top: calc(var(--header-height) + 10px);
}
.c-sidebar.js-active .c-sidebar__bg {
	display: block;
}
.c-sidebar__bg {
	display: none;
	position: fixed;
	z-index: 1;
	top: var(--header-height);
	left: 0;
	width: 100%;
	height: calc(100dvh - var(--header-height));
	background: var(--gray-70);
}
.c-sidebar__rating {
	background-color: var(--purple-100);
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: var(--white);
	padding: 10px;
}
.c-toc-top {
	display: flex;
	gap: 0.25rem;
	overflow-x: auto;
	padding: 0 var(--section-inner);
	background-color: var(--gray-400);
}
.c-toc-top::-webkit-scrollbar {
	height: 0.5rem;
}
.c-toc-top::-webkit-scrollbar-thumb {
	background-color: var(--gray-300);
}
.c-toc-top a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 700;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 13px 8px;
}
.c-toc-top a:hover {
	background-color: var(--gray-300);
}
.c-toc-top a::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	width: 1px;
	height: 2rem;
	background-color: var(--gray-300);
	margin-left: 0.25rem;
}
.c-toc-top a img {
	--icon-size: 1.5rem;
	width: var(--icon-size);
	height: var(--icon-size);
}
.c-rating {
	--logo-width: 50%;
	--info-width: 50%;
	--bonus-width: 100%;
	--advantages-width: 100%;
	--cta-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	counter-reset: brands;
}
.c-rating__heading {
	display: none;
	justify-content: space-between;
	background-color: var(--purple-500);
	height: 40px;
	color: var(--white);
	font-weight: 700;
	border-radius: var(--border-r);
}
.c-rating__heading::after {
	content: '';
	display: block;
	width: var(--cta-width);
}
.c-rating__heading p {
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-rating__heading p:nth-of-type(1) {
	width: var(--logo-width);
}
.c-rating__heading p:nth-of-type(2) {
	width: var(--info-width);
}
.c-rating__heading p:nth-of-type(3) {
	width: var(--bonus-width);
}
.c-rating__heading p:nth-of-type(4) {
	width: var(--advantages-width);
}
.c-rating__item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: var(--gray-500);
	min-height: 110px;
	box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	counter-increment: brands;
}
.c-rating__item.js-hidden {
	display: none;
}
.c-rating__item::before {
	content: counter(brands);
	position: absolute;
	z-index: 1;
	display: flex;
	top: -5px;
	left: -10px;
	width: 47px;
	height: 38px;
	background: url(../images/new-ribbon.svg) center no-repeat;
	background-size: contain;
	font-size: 11px;
	font-weight: 700;
	color: var(--white);
	padding-left: 0.65rem;
	padding-top: 0.125rem;
}
.c-rating__group {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	align-self: stretch;
	justify-content: center;
}
.c-rating__logo {
	position: relative;
	width: var(--logo-width);
	background-color: var(--gray-400);
}
.c-rating__logo img {
	padding: 3px;
	width: 90px;
	height: 90px;
	border-radius: 45px;
	-o-object-fit: contain;
	object-fit: contain;
	background-color: #fff;
}
.c-rating__info {
	width: var(--info-width);
	background-color: var(--gray-400);
}
.c-rating__name {
	font-weight: 700;
	text-align: center;
}
.c-rating__rate {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 900;
}
.c-rating__stars {
	--brand-rate: 0%;
	width: 70px;
	height: 14px;
	background: linear-gradient(
		to right,
		var(--yellow-100) var(--brand-rate),
		var(--gray-300) var(--brand-rate)
	);
	-webkit-mask-image: url(../images/star.svg);
	mask-image: url(../images/star.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
}
.c-rating__bonus {
	width: var(--bonus-width);
	font-weight: 700;
	font-size: 1.125rem;
	padding: 0.5rem;
	text-align: center;
}
.c-rating__advantages {
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem;
	width: var(--advantages-width);
	padding-left: 0.25rem;
	padding: 0.5rem;
}
.c-rating__advantages li {
	display: flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	gap: 0.25rem;
}
.c-rating__advantages li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/check-icon-purple.svg);
}
.c-rating__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: var(--cta-width);
	padding: 0.5rem;
}
.c-rating__cta .o-btn {
	width: 100%;
}
.c-rating .o-btn.o-btn--secondary {
	margin: 0 auto;
}
.c-rating .o-btn.o-btn--secondary.js-active > .o-icon {
	transform: rotate3d(1, 0, 0, 180deg);
}
.c-rating .o-btn.o-btn--secondary > .o-icon {
	fill: var(--yellow-100);
}
.c-page-toc {
	display: flex;
	flex-direction: column;
	background-color: var(--purple-400);
	color: var(--white);
	padding: 1rem 0.625rem;
	border-radius: var(--border-r);
}
.c-page-toc__toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	font-size: 1.25rem;
	font-weight: 700;
	width: 100%;
	transition: var(--transition-f);
	border-bottom: 1px solid transparent;
}
.c-page-toc__toggle.js-active {
	padding-bottom: 0.5rem;
	border-color: var(--gray-300);
}
.c-page-toc__toggle.js-active::after {
	transform: rotate3d(1, 0, 0, 180deg);
}
.c-page-toc__toggle.lazyloaded::before {
	background: url(../images/toc-contents-icon.svg) center no-repeat;
}
.c-page-toc__toggle.lazyloaded::after {
	background: url(../images/toc-arrow.svg) center no-repeat;
	margin-left: auto;
}
.c-page-toc__toggle::before,
.c-page-toc__toggle::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background-size: contain;
	transition: var(--transition-f);
}
.c-page-toc__items {
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	max-height: 0;
	overflow: hidden;
	transition: var(--transition-f);
}
.c-page-toc__items.js-active {
	padding-top: 0.5rem;
}
.c-page-toc__items li {
	display: flex;
	flex: 0 0 100%;
	gap: 0.25rem;
}
.c-page-toc__items li.lazyloaded::before {
	background: url(../images/toc-arrow-right.svg) center no-repeat;
}
.c-page-toc__items li::before {
	content: '';
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background-size: contain;
	margin-top: 0.25rem;
}
.c-small-rating {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.c-small-rating__item {
	display: flex;
	flex: 0 0 100%;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(to bottom, var(--purple-500), var(--purple-300));
	color: var(--white);
	padding: 10px;
	border-radius: var(--border-r);
}
.c-small-rating__name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--yellow-100);
}
.c-small-rating__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
}
.c-small-rating__rate,
.c-small-rating__foundation {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	color: var(--gray-400);
}
.c-small-rating__rate p:not([class]),
.c-small-rating__foundation p:not([class]) {
	font-weight: 600;
}
.c-small-rating__logo {
	border: 2px solid var(--white);
	background-color: var(--white);
	border-radius: 50%;
}
.c-small-rating__title {
	font-size: 0.625rem;
}
.c-small-rating__stars {
	width: 70px;
	height: 14px;
	background: linear-gradient(
		to right,
		var(--yellow-100) var(--rate-width),
		transparent var(--rate-width)
	);
	-webkit-mask-size: contain;
	mask-size: contain;
}
.c-small-rating__stars.lazyloaded {
	-webkit-mask-image: url(../images/star.svg);
	mask-image: url(../images/star.svg);
}
.c-small-rating__bonus {
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
}
.c-small-rating__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 180px;
}
.c-small-rating__cta .o-btn {
	width: 100%;
}
.c-small-rating__cta .o-btn.o-btn--promocode {
	color: var(--gray-400);
}
.c-small-rating__cta .o-btn.o-btn--promocode:active,
.c-small-rating__cta .o-btn.o-btn--promocode:hover {
	color: var(--white);
}
.c-brand-fs {
	padding: 1rem var(--section-inner);
	background-color: var(--purple-100);
	color: var(--white);
}
.c-brand-fs h1 {
	padding: 0.5rem 1rem 0 1rem;
	background-color: var(--gray-70);
	border-radius: var(--border-r) var(--border-r) 0 0;
	font-size: clamp(22px, 3vw, 30px);
}
.c-brand-fs__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background-color: var(--gray-70);
	padding: 1rem;
	border-radius: 0 0 var(--border-r) var(--border-r);
}
.c-brand-fs__main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.c-brand-fs__set {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.c-brand-fs__subtitle {
	font-size: 0.75rem;
	color: var(--gray-300);
}
.c-brand-fs__text {
	font-weight: 600;
}
.c-brand-fs__stars {
	width: 70px;
	height: 14px;
	background: linear-gradient(
		to right,
		var(--yellow-100) var(--rating),
		transparent var(--rating) 100%
	);
	-webkit-mask-image: url(../images/star.svg);
	mask-image: url(../images/star.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
}
.c-brand-fs__logo {
	width: 70px;
	height: 70px;
	border-radius: 50px;
	border: 2px solid var(--white);
	background-color: var(--white);
}
.c-brand-fs__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-brand-fs__bonus {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}
.c-brand-fs__bonus > p:not([class]) {
	font-size: clamp(20px, 2.5vw, 24px);
	font-weight: 700;
}
.c-brand-fs__bonus .o-btn.o-btn--promocode {
	color: var(--white);
	width: 100%;
}
.c-brand-fs__title {
	color: var(--gray-300);
}
.c-brand-fs__advantages {
	margin: 0 auto;
}
.c-brand-fs__advantages ul {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.c-brand-fs__advantages ul li {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.c-brand-fs__advantages ul li.lazyloaded::before {
	background: url(../images/check-icon.svg);
}
.c-brand-fs__advantages ul li::before {
	content: '';
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background-size: contain;
}
.c-brand-fs .o-btn.o-btn--yellow--fill {
	font-size: 20px;
	width: 100%;
	height: 51px;
	padding: 10px 20px;
}
.c-page-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #95a6e4b3;
	padding: 0.25rem;
	border-radius: var(--border-r);
}
.c-page-author__avatar {
	min-width: 30px;
	height: 30px;
	border-radius: 15px;
	-o-object-fit: cover;
	object-fit: cover;
}
.c-page-author p {
	color: #2a2e3ccc;
	font-size: 0.875rem;
}
.c-page-author p:last-of-type {
	margin-left: auto;
}
.c-page-author p a {
	font-weight: 700;
	color: var(--black);
}
.c-bottom-brand {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 7;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.5rem var(--section-inner);
	background-color: var(--purple-100);
	color: var(--white);
	font-weight: 700;
}
.c-bottom-brand.js-active {
	display: flex;
}
.c-bottom-brand img {
	min-width: 50px;
	height: 50px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 25px;
	background-color: var(--white);
	padding: 0.25rem;
}
.c-bottom-brand__bonus {
	text-align: center;
	font-size: clamp(1rem, 2.5vw, 1.5rem);
}
.c-bottom-brand .o-btn {
	text-align: center;
}
@media (min-width: 768px) {
	.c-faqs__list {
		justify-content: space-between;
	}
	.c-faqs__item {
		width: calc(50% - 25px);
	}
	.c-rating {
		--logo-width: 33.33%;
		--info-width: 33.33%;
		--bonus-width: 33.33%;
	}
	.c-rating__bonus {
		background-color: var(--gray-400);
	}
	.c-page-toc__items li {
		flex: 0 0 calc(50% - 0.125rem);
	}
	.c-small-rating__item {
		flex: 0 0 calc(50% - (1.25rem / 2));
	}
}
@media (min-width: 1024px) {
	.c-first-screen {
		background: #26150d;
	}
	.c-first-screen__wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
	.c-first-screen__rating {
		min-width: 485px;
	}
	.c-first-screen__hundred {
		max-height: unset;
	}
	.c-first-screen__toggle {
		display: none;
	}
	.c-first-screen__island:first-of-type .o-btn.o-btn--yellow--border {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin: 0 auto;
	}
	.c-first-screen .o-btn.o-btn--yellow--border {
		--btn-size: 50px;
		font-size: 1.125rem;
	}
	.c-first-screen .o-small-brand__logo {
		border-radius: 35px;
		min-width: 70px;
		height: 70px;
	}
	.c-content-wrapper {
		display: grid;
		align-items: start;
		grid-template-columns: 1fr 300px;
		gap: 20px;
		background: #feeee7;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		background-attachment: fixed;
	}
	.c-faqs {
		margin: 0;
	}
	.c-sidebar {
		position: -webkit-sticky;
		position: sticky;
		top: calc(var(--header-height) - 1px);
		left: 0;
		width: 300px;
		margin: 0;
	}
	.c-toc-top {
		justify-content: space-between;
	}
	.c-toc-top a::after {
		content: none;
	}
	.c-brand-fs {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}
	.c-brand-fs h1 {
		background-color: transparent;
		padding: 0 0 0.5rem 0;
	}
	.c-brand-fs__content {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		border-radius: var(--border-r);
		padding: 0 0 1rem 0;
	}
	.c-brand-fs__main {
		position: relative;
		flex-direction: column;
		-moz-column-gap: 1rem;
		column-gap: 1rem;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		background-color: #2a2e3ccc;
		padding: 0.5rem 1rem;
		border-radius: var(--border-r) var(--border-r) 0 0;
	}
	.c-brand-fs__set:first-of-type {
		position: absolute;
		z-index: 1;
		top: -11px;
		left: 140px;
		align-items: center;
		justify-content: center;
		width: 140px;
		background-color: var(--gray-100);
		height: 100%;
		border-radius: 0 0 var(--border-r) var(--border-r);
	}
	.c-brand-fs__set:first-of-type .c-brand-fs__subtitle {
		font-size: 0.875rem;
	}
	.c-brand-fs__set:first-of-type .c-brand-fs__text {
		font-size: 1.5rem;
	}
	.c-brand-fs__set:first-of-type::before {
		content: '';
		position: absolute;
		top: 0;
		right: -11px;
		display: block;
		width: 9px;
		height: 11px;
		border-style: solid;
		border-width: 11px 0 0 11px;
		border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #a35229;
	}
	.c-brand-fs__set:last-of-type {
		flex-direction: row;
		gap: 0.25rem;
		padding-top: 0.5rem;
	}
	.c-brand-fs__subtitle {
		font-size: 0.875rem;
	}
	.c-brand-fs__logo {
		order: 0;
		width: 100px;
		height: 100px;
	}
	.c-brand-fs__bonus {
		align-items: flex-start;
		margin-left: 0.5rem;
	}
	.c-brand-fs__advantages {
		margin: 0;
	}
	.c-brand-fs .o-btn.o-btn--yellow--fill {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin-right: 0.5rem;
	}
}
@media (min-width: 1440px) {
	.c-rating {
		--logo-width: 130px;
		--info-width: 170px;
		--bonus-width: 200px;
		--advantages-width: 250px;
		--cta-width: 180px;
	}
	.c-rating__item {
		flex-wrap: nowrap;
	}
	.c-rating__heading {
		display: flex;
	}
	.c-rating__logo::after {
		content: '';
	}
	.c-rating__info {
		background-color: transparent;
	}
	.c-rating__bonus {
		background-color: transparent;
	}
	.c-rating__advantages {
		justify-content: flex-start;
	}
	.c-small-rating__item {
		flex: 0 0 calc(33.33% - (1.25rem / 1.333));
	}
	.c-brand-fs {
		padding-top: 0;
		background: -webkit-image-set(
			url(../images/brand-fs-bg.webp) type('image/webp'),
			url(../images/brand-fs-bg.jpg) type('image/jpeg')
		);
		background: image-set(
			url(../images/brand-fs-bg.webp) type('image/webp'),
			url(../images/brand-fs-bg.jpg) type('image/jpeg')
		);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.c-brand-fs__content {
		border-radius: 0;
		padding: 0 2rem 1rem 2rem;
	}
	.c-brand-fs__main {
		width: 280px;
		background-color: transparent;
	}
	.c-brand-fs__bonus,
	.c-brand-fs__advantages {
		align-self: stretch;
		padding-top: 1rem;
	}
	.c-brand-fs .o-btn.o-btn--promocode {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
.c-footer {
	background-color: var(--purple-100);
	color: var(--white);
	padding-top: 35px;
	padding-bottom: 90px;
}
.c-footer__logo {
	display: flex;
	justify-content: center;
}
.c-footer__sets {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem var(--section-inner);
}
.c-footer__set {
	display: flex;
	flex-direction: column;
}
.c-footer__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--yellow-100);
	text-transform: uppercase;
	border-bottom: 1px solid var(--gray-200);
	padding-bottom: 0.5rem;
}
.c-footer__title::after {
	content: '';
	display: block;
	width: 0.5rem;
	height: 0.25rem;
	border-top: 0.3em solid;
	border-right: 0.3em solid rgba(0, 0, 0, 0);
	border-bottom: 0;
	border-left: 0.3em solid rgba(0, 0, 0, 0);
	transition: var(--transition-f);
}
.c-footer__title.js-active::after {
	content: '';
	transform: rotate3d(1, 0, 0, 180deg);
}
.c-footer__links {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	max-height: 0;
	overflow: hidden;
	transition: var(--transition-f);
	padding: 0 0;
}
.c-footer__links.js-active {
	padding: 1rem 0;
}
.c-footer__copywrights {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.625rem;
	padding: 1rem 0;
	background-color: var(--purple-400);
}
.c-footer__copywrights li {
	width: 100%;
	text-align: center;
}
.c-footer__text {
	padding: 1rem 0;
	text-align: center;
}
@media (min-width: 768px) {
	.c-footer__sets {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.c-footer__set {
		width: calc(50% - 0.5rem);
	}
	.c-footer__copywrights li {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
@media (min-width: 1024px) {
	.c-footer__sets {
		gap: 0;
	}
	.c-footer__set {
		width: 25%;
	}
	.c-footer__set:first-of-type .c-footer__links,
	.c-footer__set:first-of-type .c-footer__title {
		padding-left: 0;
	}
	.c-footer__title {
		padding-left: 1rem;
		pointer-events: none;
		cursor: default;
	}
	.c-footer__title::after {
		content: none;
	}
	.c-footer__links {
		max-height: unset;
		padding: 1rem 0 1rem 1rem;
	}
}

@media (max-width: 768px) {
	.c-main {
		background: #feeee7;
	}
}
