@font-face {
	src: url("/assetsJuChur/fontsJuChur/montserrat-boldJuChur.woff2")
		format("truetype");
	font-family: "montserrat-boldJuChur";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/assetsJuChur/fontsJuChur/roboto-blackJuChur.woff2")
		format("truetype");
	font-family: "roboto-blackJuChur";
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/assetsJuChur/fontsJuChur/roboto-regularJuChur.woff2")
		format("truetype");
	font-family: "roboto-regularJuChur";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title-rob: "roboto-blackJuChur", sans-serif;
	--font-title: "montserrat-boldJuChur", sans-serif;
	--font-text: "roboto-regularJuChur", sans-serif;

	--color-header: #915e0d;
	--color-cart: linear-gradient(180deg, #101010 14.77%, #1d160f 100%);
	--color-cart-brown: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);
	--color-btn: #af200f;
	--color-text-platform: #e9e9e9;
	--color-text-gray: #bababa;
	--color-text-white: #ffffff;
	--color-text-black: #0e0e0e;

	--font-size36: 2.25rem;
	--font-size24: 1.5rem;
	--font-size18: 1.125rem;
	--font-size16: 1rem;
	--font-size12: 0.75rem;

	--transition: all ease-in-out 0.5s;
}

*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}

body {
	background-image: linear-gradient(
			180deg,
			rgba(16, 16, 16, 0.7) 0%,
			rgba(16, 16, 16, 0.9) 30.99%,
			#101010 55.51%,
			#101010 81.27%
		),
		url(/assetsJuChur/pictureJuChur/cubesJuChur.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
}

button {
	border: none;
	outline: none;
	cursor: pointer !important;
}

main,
footer {
	width: 100%;
	color: rgba(3, 3, 3, 1);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}

header {
	width: 100%;
}

.container__mainJuChur {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.visually-hiddenJuChur {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.headerJuChur {
	width: 100%;
	background: var(--color-cart);
}

.header__desclaimerboxJuChur {
	padding: 0.125rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	background: var(--color-header);
}

.header__ageJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/age-headerJuChur.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 21px;
	width: 100%;
	height: 10px;
}

.header__disclaimerJuChur {
	font-size: var(--font-size12);
	line-height: 120%;
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--color-text-white);
}

.padd8JuChur {
	padding: 0.5rem 0 !important;
}

.header_logoJuChur {
	max-width: 70px;
	width: 100%;
	height: 53px;
	margin-inline: auto;
}

/* Welcom Section */
.welcome-boxJuChur {
	position: relative;
	padding: 1rem 0 0;
}

.welcome--containerJuChur {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.125rem;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	background-image: linear-gradient(rgba(0, 0, 0, 0.51)),
		url(/assetsJuChur/pictureJuChur/chipsbgJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.welcome--containerJuChur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);

	border-radius: 18px;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	padding: 1px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
}

.welcome__blocksJuChur {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 577px;
	width: 100%;
	padding: 6.25rem 0 6.25rem 2rem;
}

.welcome---titleJuChur {
	font-family: var(--font-title);
	color: var(--color-text-white);
	font-weight: 700;
	font-size: var(--font-size36);
	line-height: 120%;
	position: relative;
	z-index: 2;
}

.welcome---listsJuChur {
	display: flex;
	gap: 0.5rem;
}

.welcome----listJuChur {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	max-width: 187px;
	width: 100%;
	background: var(--color-cart-brown);
	padding: 0.25rem 1rem;
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
	font-family: var(--font-title-rob);
	font-weight: 900;
	font-size: var(--font-size16);
	line-height: 100%;
	color: var(--color-text-black);
	position: relative;
	z-index: 2;
}

.welcome_iconJuChur {
	max-width: 28px;
	width: 100%;
	height: 28px;
}

.welcome_cardJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/icon-cardJuChur.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.welcome_lockJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/icon-lockJuChur.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.welcome_searchJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/icon-searchJuChur.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.welcome--imageboxlistJuChur {
	max-width: 539px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.welcome---rouletteJuChur {
	max-width: 427px;
	width: 100%;
	height: 385px;
	background-image: url(/assetsJuChur/pictureJuChur/roulette-flagJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

.welcome---smallblueJuChur {
	max-width: 45px;
	width: 100%;
	height: 45px;
	background-image: url(/assetsJuChur/pictureJuChur/chipswbJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 3;
	top: 8%;
	left: 25%;
}

.welcome---bigblueJuChur {
	max-width: 83px;
	width: 100%;
	height: 83px;
	background-image: url(/assetsJuChur/pictureJuChur/chipswbbig.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 3;
	bottom: 5%;
	right: 10%;
}

.welcome---biggreenJuChur {
	max-width: 100px;
	width: 100%;
	height: 100px;
	background-image: url(/assetsJuChur/pictureJuChur/chipsgwbigJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 3;
	top: 25%;
	left: 0%;
}

.welcome---smallgreenJuChur {
	max-width: 75px;
	width: 100%;
	height: 75px;
	background-image: url(/assetsJuChur/pictureJuChur/chipsgwJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 4;
	bottom: 0%;
	left: 40%;
}
.welcome---yellowoneJuChur {
	max-width: 68px;
	width: 100%;
	height: 68px;
	background-image: url(/assetsJuChur/pictureJuChur/chipsbyJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 4;
	bottom: 15%;
	left: 5%;
}

.welcome---yellowtwoJuChur {
	max-width: 68px;
	width: 100%;
	height: 68px;
	background-image: url(/assetsJuChur/pictureJuChur/chipsbyJuChur.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: 4;
	bottom: 25%;
	right: 25%;
}

@keyframes swingJuChur {
	0%,
	100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(3deg);
	}
	75% {
		transform: rotate(-3deg);
	}
}

.welcome---smallblueJuChur {
	animation: swingJuChur 4s ease-in-out infinite;
	transform-origin: center center;
}

.welcome---bigblueJuChur {
	animation: swingJuChur 5s ease-in-out infinite;
	transform-origin: center center;
	animation-delay: 0.5s;
}

.welcome---biggreenJuChur {
	animation: swingJuChur 3.5s ease-in-out infinite;
	transform-origin: center center;
	animation-delay: 1s;
}

.welcome---smallgreenJuChur {
	animation: swingJuChur 4.5s ease-in-out infinite;
	transform-origin: center center;
	animation-delay: 0.2s;
}

.welcome---yellowoneJuChur {
	animation: swingJuChur 3.8s ease-in-out infinite;
	transform-origin: center center;
	animation-delay: 0.8s;
}

.welcome---yellowtwoJuChur {
	animation: swingJuChur 4.2s ease-in-out infinite;
	transform-origin: center center;
	animation-delay: 1.5s;
}

/* Platform games */
.platform-boxJuChur {
	padding: 4.375rem 0;
}

.platform--listsJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.platform---listJuChur {
	padding: 1rem 2rem;
	background: var(--color-cart);
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.platform---listJuChur:hover {
	box-shadow: 0 0 20px var(--color-header);
}

.platform---listJuChur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);
	border-radius: 14px;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	padding: 1px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
}

.platform----leftJuChur {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	position: relative;
	z-index: 2;
}

.platform_unibetJuChur {
	max-width: 195px;
	width: 100%;
	height: 69px;
}
.platform_pokerstarsJuChur {
	max-width: 195px;
	width: 100%;
	height: 47px;
}

.platform----bonusboxJuChur {
	max-width: 190px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.platform_bonustitleJuChur {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: var(--font-size16);
	line-height: 22px;
	color: var(--color-text-platform);
}

.platform_bonustextJuChur {
	font-family: var(--font-title-rob);
	font-weight: 900;
	font-size: var(--font-size16);
	line-height: 120%;
	color: var(--color-text-platform);
}

.text-centerJuChur {
	text-align: center;
}

.platform----advantagesJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
	z-index: 2;
	max-width: 220px;
	width: 100%;
}

.platform_advantagJuChur {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.platform__iconJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/hand-rightJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 28px;
	width: 100%;
	height: 28px;
}

.platform----ratingJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 186px;
	width: 100%;
	align-items: center;
	position: relative;
	z-index: 2;
}

.platform----rating-mobJuChur {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 186px;
	width: 100%;
	align-items: center;
	position: relative;
	z-index: 2;
}

.platform_starsboxJuChur {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	max-width: 186px;
	width: 100%;
	margin-inline: auto;
}

.platform_ratingnumJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size24);
	line-height: 100%;
	text-align: center;
	color: var(--color-text-platform);
}

.platform_ratingnum-mobJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size24);
	line-height: 100%;
	text-align: center;
	color: var(--color-text-platform);
}

.platform----btnboxJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 189px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.platform_btnJuChur {
	width: 100%;
	height: 52px;
	background: var(--color-btn);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 19px;
	-webkit-border-radius: 19px;
	-moz-border-radius: 19px;
	-ms-border-radius: 19px;
	-o-border-radius: 19px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size18);
	line-height: 100%;
	text-align: center;
	color: var(--color-text-white);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.platform_btnJuChur:hover {
	box-shadow: 0 0 20px var(--color-btn);
}

.platform_paymetsboxJuChur {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.platform__paymentJuChur {
	max-width: 35px;
	width: 100%;
	height: 24px;
}

/* Why us */
.whyus--titleJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size24);
	line-height: 100%;
	text-align: center;
	color: var(--color-text-platform);
}

.whyus-containerJuChur {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.whyus--infoJuChur {
	display: flex;
	gap: 1.5rem;
}

.whyus---infoJuChur {
	max-width: 608px;
	width: 100%;
}

.whyus----textboxJuChur {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.whyus_subtitleJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size18);
	line-height: 120%;
	color: var(--color-text-platform);
}

.whyus_textJuChur {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: var(--font-size16);
	line-height: 22px;
	color: var(--color-text-gray);
	position: relative;
	z-index: 2;
}

.whyus----benefitsJuChur {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.whyus_elemJuChur {
	background: var(--color-cart-brown);
	padding: 1rem;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	max-width: 292px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
}

.whyus_elemJuChur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);
	border-radius: 16px;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	padding: 1px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.whyus__imageJuChur {
	max-width: 66px;
	width: 100%;
	height: 66px;
	margin-inline: auto;
}

.whyus__crownJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/crownJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.whyus__chipsJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/chipsJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.whyus__crystallJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/crystallJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.whyus__cubeJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/cubeJuChur.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.heigh44JuChur {
	height: 44px;
}

.whyus__descriptionJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.text-blackJuChur {
	color: var(--color-text-black);
}

/* Feedback */
.feedback-listsJuChur {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	justify-content: center;
}

.feedback--listJuChur {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	padding: 1.5rem;
	max-width: 400px;
	width: 100%;
	background: var(--color-cart);
}

.feedback--listJuChur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);
	border-radius: 16px;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	padding: 1px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.feedback---topJuChur {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

.feedback---starsJuChur {
	max-width: 92px;
	width: 100%;
	display: flex;
	align-items: center;
}

.feedback----iconJuChur {
	max-width: 16px;
	width: 100%;
	height: 16px;
	background-image: url(/assetsJuChur/pictureJuChur/star-reviewsJuChur.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* FAQ */
.faq-boxJuChur {
	padding: 0 0 4.375rem;
}

.faq--accordionJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.faq---itemsJuChur {
	max-width: 100%;
	width: 100%;
	cursor: pointer;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	border: none;
	transition: all 0.5s ease-in;
	background: var(--color-cart);
	border-radius: 25px !important;
	-webkit-border-radius: 25px !important;
	-moz-border-radius: 25px !important;
	-ms-border-radius: 25px !important;
	-o-border-radius: 25px !important;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	position: relative;
	overflow: hidden;
}

.faq---itemsJuChur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(99.96deg, #fab565 0%, #ab7840 110.7%);
	border-radius: 25px;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	padding: 1px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
}

.faq---questionJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-s20);
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-blue);
}

.faq----topJuChur {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.faq----top_iconJuChur {
	max-width: 41px;
	width: 100%;
	height: 41px;
}

.faq--btnJuChur {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.accordion-iconJuChur {
	cursor: pointer;
	width: 41px;
	height: 41px;
	transition: transform 0.3s ease;
	display: inline-block;
}
.accordion-iconJuChur.plusJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/chevronJuChur.svg);
	transition: all 0.3s ease;
	transform: rotate(180deg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.accordion-iconJuChur.minusJuChur {
	background-image: url(/assetsJuChur/pictureJuChur/chevronJuChur.svg);
	transition: all 0.3s ease;
	transform: rotate(0deg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.faq----contentJuChur {
	width: 100%;
	position: relative;
	z-index: 2;
	max-width: 1150px;
}

.faq----contentJuChur {
	opacity: 0;
	transform: translateY(-10px) scale(0.95);
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	margin-top: 0;
}

.faq---itemsJuChur.active .faq----contentJuChur {
	opacity: 1;
	transform: translateY(0) scale(1);
	height: auto;
	margin-top: 10px;
}

.accordion-iconJuChur {
	transition: transform 0.3s ease-in-out;
}

.plusJuChur {
	transform: rotate(0deg);
}

.minusJuChur {
	transform: rotate(180deg);
}

/* Footer */
.footerJuChur {
	padding: 1.5rem 0;
	background: var(--color-cart);
}

.footer-containerJuChur {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer--ageJuChur {
	max-width: 62px;
	width: 100%;
	height: 30px;
	margin-inline: auto;
	background-image: url(/assetsJuChur/pictureJuChur/age-footerJuChur.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer--infoJuChur {
	display: flex;
	gap: 1.875rem;
}

.footer---elemsJuChur {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 605px;
	width: 100%;
}

.footer----elemJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer_titleJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size16);
	line-height: 120%;
	color: var(--color-text-white);
}

.footer_textJuChur {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: var(--font-size16);
	line-height: 22px;
	color: var(--color-text-gray);
}

.footer--parthersJuChur {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer---gtJuChur {
	max-width: 74px;
	width: 100%;
	height: 63px;
}
.footer---gamcareJuChur {
	max-width: 104px;
	width: 100%;
	height: 30px;
}
.footer---gamstopJuChur {
	max-width: 113px;
	width: 100%;
	height: 21px;
}
.footer---raigJuChur {
	max-width: 139px;
	width: 100%;
	height: 44px;
}
.footer---begambleJuChur {
	max-width: 169px;
	width: 100%;
	height: 30px;
}
.footer---gamblingJuChur {
	max-width: 112px;
	width: 100%;
	height: 112px;
}

.footer--navmenuJuChur {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
}

.footer---navlinkJuChur a {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size16);
	line-height: 100%;
	color: var(--color-text-white);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.footer---navlinkJuChur a:hover {
	color: #ab7840;
}

/* Modal cookies */
.cookie-modalJuChur {
	position: fixed;
	bottom: 0;
	right: 0;
	max-width: 420px;
	width: 100%;
	background: var(--color-cart);
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateY(100%);
	transition: transform 0.5s ease;
	border-top: 1px solid var(--color-white);
	border-radius: 10px;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.cookie-modalJuChur.activeJuChur {
	transform: translateY(0);
}

.cookie-contentJuChur {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-textJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cookie-textJuChur h2 {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-s24);
	line-height: 100%;
	color: var(--color-text-white);
}

.cookie-textJuChur p {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: var(--font-s14);
	line-height: 100%;
	color: var(--color-text-gray);
}

.cookie-buttonsJuChur {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.cookie-btnJuChur {
	width: 100%;
	display: flex;
	height: 48px;
	align-items: center;
	justify-content: center;
	background: var(--color-btn);
	box-shadow: 0px 2px 15px 0px #9e252a;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: var(--font-s20);
	line-height: 100%;
	color: var(--color-text-white);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.cookie-btnJuChur:hover {
	transform: translateY(-0.125rem);
	-webkit-transform: translateY(-0.125rem);
	-moz-transform: translateY(-0.125rem);
	-ms-transform: translateY(-0.125rem);
	-o-transform: translateY(-0.125rem);
}

.info-btnJuChur {
	background: transparent;
	box-shadow: none;
	border: 1px solid var(--color-btn);
}

/* Others Styles */
.privacy-containerJuChur,
.privacy--listsJuChur {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.privacy---listJuChur {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.privacy--titleJuChur {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--font-size36);
	line-height: 40px;
	color: var(--color-text-white);
	text-align: center;
}

.privacy----numberJuChur li {
	list-style-type: decimal;
	color: var(--color-text-gray);
	margin-left: 2rem;
}

.privacy----dottedJuChur li {
	list-style-type: disc;
	color: var(--color-text-gray);
	margin-left: 2rem;
}

/* Media */
@media screen and (max-width: 1260px) {
	.container__mainJuChur {
		padding: 0 1rem;
	}

	.whyus--infoJuChur {
		flex-direction: column;
	}

	.whyus---infoJuChur {
		max-width: 100%;
		width: 100%;
	}

	.whyus----textboxJuChur,
	.whyus----textboxJuChur li,
	.whyus----benefitsJuChur {
		width: 100%;
		max-width: 100%;
		justify-content: center;
	}
}
@media screen and (max-width: 1170px) {
	.platform----leftJuChur {
		gap: 1rem;
	}
	.platform----ratingJuChur {
		max-width: 115px;
		width: 100%;
	}
	.platform----bonusboxJuChur {
		max-width: 140px;
		width: 100%;
	}
}
@media screen and (max-width: 991px) {
	.welcome--imageboxlistJuChur,
	.platform----advantagesJuChur,
	.platform----ratingJuChur,
	.header__desclaimerboxJuChur {
		display: none;
	}

	.platform---listJuChur {
		flex-direction: column;
		max-width: 525px;
		width: 100%;
		margin-inline: auto;
		padding: 1rem;
		gap: 1rem;
	}

	.platform--listsJuChur {
		flex-wrap: wrap;
		flex-direction: row;
	}

	.platform----btnboxJuChur {
		max-width: 100%;
		width: 100%;
	}

	.platform_paymetsboxJuChur {
		justify-content: space-between;
	}

	.platform----rating-mobJuChur {
		display: flex;
		max-width: 100px;
		width: 100%;
		gap: 0.25rem;
	}

	.platform----infolinkJuChur {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		align-items: center;
	}

	.welcome__blocksJuChur {
		padding: 2rem 1rem;
	}

	.platform__starJuChur {
		max-width: 21px;
		width: 100%;
		height: 18px;
	}

	.platform_ratingnum-mobJuChur {
		font-size: var(--font-size18);
	}
	.platform_pokerstarsJuChur {
		max-width: 140px;
		width: 100%;
		height: 35px;
	}

	.platform----leftJuChur {
		justify-content: space-around;
		width: 100%;
	}
	.platform----bonusboxJuChur {
		max-width: 190px;
		width: 100%;
	}
	.platform_unibetJuChur {
		max-width: 150px;
		width: 100%;
		height: 50px;
	}

	.platform-boxJuChur {
		padding: 1.5rem 0;
	}

	.footer--infoJuChur {
		flex-direction: column;
	}
}

@media screen and (max-width: 680px) {
	.welcome---titleJuChur {
		font-size: var(--font-size24);
	}

	.welcome_benefitJuChur {
		font-size: 0.675rem;
	}

	.welcome----listJuChur {
		max-width: 140px;
		width: 100%;
	}

	.welcome---listsJuChur {
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer--navmenuJuChur,
	.footer--parthersJuChur {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.cookie-btnJuChur {
		height: 35px;
		font-size: var(--font-size12);
	}
}
@media screen and (max-width: 420px) {
	.platform_bonustitleJuChur,
	.platform_bonustextJuChur {
		font-size: var(--font-size12);
	}
	.platform_unibetJuChur {
		max-width: 100px;
		width: 100%;
		height: 35px;
	}
	.platform_pokerstarsJuChur {
		max-width: 100px;
		width: 100%;
		height: 25px;
	}
	.platform----bonusboxJuChur {
		max-width: 120px;
		width: 100%;
	}

	.whyus_elemJuChur {
		max-width: 100%;
		width: 100%;
	}
}
