img:is([sizes='auto' i], [sizes^='auto,' i]) {
	contain-intrinsic-size: 3000px 1500px;
}

:where(.wp-block-button__link) {
	border-radius: 9999px;
	box-shadow: none;
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	text-decoration: none;
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline),
:root :where(.wp-block-button.is-style-outline > .wp-block-button__link) {
	border: 2px solid;
	padding: 0.667em 1.333em;
}

:root
	:where(
		.wp-block-button
			.wp-block-button__link.is-style-outline:not(.has-text-color)
	),
:root
	:where(
		.wp-block-button.is-style-outline
			> .wp-block-button__link:not(.has-text-color)
	) {
	color: currentColor;
}

:root
	:where(
		.wp-block-button
			.wp-block-button__link.is-style-outline:not(.has-background)
	),
:root
	:where(
		.wp-block-button.is-style-outline
			> .wp-block-button__link:not(.has-background)
	) {
	background-color: initial;
	background-image: none;
}

:where(.wp-block-columns) {
	margin-bottom: 1.75em;
}

:where(.wp-block-columns.has-background) {
	padding: 1.25em 2.375em;
}

:where(.wp-block-post-comments input[type='submit']) {
	border: none;
}

:where(.wp-block-cover-image:not(.has-text-color)),
:where(.wp-block-cover:not(.has-text-color)) {
	color: #fff;
}

:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
	color: #000;
}

:root :where(.wp-block-cover h1:not(.has-text-color)),
:root :where(.wp-block-cover h2:not(.has-text-color)),
:root :where(.wp-block-cover h3:not(.has-text-color)),
:root :where(.wp-block-cover h4:not(.has-text-color)),
:root :where(.wp-block-cover h5:not(.has-text-color)),
:root :where(.wp-block-cover h6:not(.has-text-color)),
:root :where(.wp-block-cover p:not(.has-text-color)) {
	color: inherit;
}

:where(.wp-block-file) {
	margin-bottom: 1.5em;
}

:where(.wp-block-file__button) {
	border-radius: 2em;
	display: inline-block;
	padding: 0.5em 1em;
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
	box-shadow: none;
	color: #fff;
	opacity: 0.85;
	text-decoration: none;
}

:where(.wp-block-group.wp-block-group-is-layout-constrained) {
	position: relative;
}

@keyframes show-content-image {
	0% {
		visibility: hidden;
	}

	99% {
		visibility: hidden;
	}

	to {
		visibility: visible;
	}
}

@keyframes turn-on-visibility {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes turn-off-visibility {
	0% {
		opacity: 1;
		visibility: visible;
	}

	99% {
		opacity: 0;
		visibility: visible;
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes lightbox-zoom-in {
	0% {
		transform: translate(
				calc(
					(-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
						var(--wp--lightbox-initial-left-position)
				),
				calc(-50vh + var(--wp--lightbox-initial-top-position))
			)
			scale(var(--wp--lightbox-scale));
	}

	to {
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes lightbox-zoom-out {
	0% {
		transform: translate(-50%, -50%) scale(1);
		visibility: visible;
	}

	99% {
		visibility: visible;
	}

	to {
		transform: translate(
				calc(
					(-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
						var(--wp--lightbox-initial-left-position)
				),
				calc(-50vh + var(--wp--lightbox-initial-top-position))
			)
			scale(var(--wp--lightbox-scale));
		visibility: hidden;
	}
}

:where(
		.wp-block-latest-comments:not(
				[style*='line-height'] .wp-block-latest-comments__comment
			)
	) {
	line-height: 1.1;
}

:where(
		.wp-block-latest-comments:not(
				[style*='line-height'] .wp-block-latest-comments__comment-excerpt p
			)
	) {
	line-height: 1.8;
}

:root :where(.wp-block-latest-posts.is-grid) {
	padding: 0;
}

:root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
	padding-left: 0;
}

ol,
ul {
	box-sizing: border-box;
}

:root :where(.wp-block-list.has-background) {
	padding: 1.25em 2.375em;
}

:where(
		.wp-block-navigation.has-background
			.wp-block-navigation-item
			a:not(.wp-element-button)
	),
:where(
		.wp-block-navigation.has-background
			.wp-block-navigation-submenu
			a:not(.wp-element-button)
	) {
	padding: 0.5em 1em;
}

:where(
		.wp-block-navigation
			.wp-block-navigation__submenu-container
			.wp-block-navigation-item
			a:not(.wp-element-button)
	),
:where(
		.wp-block-navigation
			.wp-block-navigation__submenu-container
			.wp-block-navigation-submenu
			a:not(.wp-element-button)
	),
:where(
		.wp-block-navigation
			.wp-block-navigation__submenu-container
			.wp-block-navigation-submenu
			button.wp-block-navigation-item__content
	),
:where(
		.wp-block-navigation
			.wp-block-navigation__submenu-container
			.wp-block-pages-list__item
			button.wp-block-navigation-item__content
	) {
	padding: 0.5em 1em;
}

@keyframes overlay-menu__fade-in-animation {
	0% {
		opacity: 0;
		transform: translateY(0.5em);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

:root :where(p.has-background) {
	padding: 1.25em 2.375em;
}

:where(p.has-text-color:not(.has-link-color)) a {
	color: inherit;
}

:where(.wp-block-post-comments-form) input:not([type='submit']),
:where(.wp-block-post-comments-form) textarea {
	border: 1px solid #949494;
	font-family: inherit;
	font-size: 1em;
}

:where(.wp-block-post-comments-form)
	input:where(:not([type='submit']):not([type='checkbox'])),
:where(.wp-block-post-comments-form) textarea {
	padding: calc(0.667em + 2px);
}

:where(.wp-block-post-excerpt) {
	box-sizing: border-box;
	margin-bottom: var(--wp--style--block-gap);
	margin-top: var(--wp--style--block-gap);
}

:where(.wp-block-preformatted.has-background) {
	padding: 1.25em 2.375em;
}

:where(.wp-block-search__button) {
	border: 1px solid #ccc;
	padding: 6px 10px;
}

:where(.wp-block-search__input) {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-transform: inherit;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
	border: 1px solid #949494;
	box-sizing: border-box;
	padding: 4px;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
	:where(.wp-block-search__button) {
	padding: 4px 8px;
}

:root :where(.wp-block-separator.is-style-dots) {
	height: auto;
	line-height: 1;
	text-align: center;
}

:root :where(.wp-block-separator.is-style-dots):before {
	color: currentColor;
	content: '···';
	font-family: serif;
	font-size: 1.5em;
	letter-spacing: 2em;
	padding-left: 2em;
}

:root :where(.wp-block-site-logo.is-style-rounded) {
	border-radius: 9999px;
}

:root :where(.wp-block-social-links .wp-social-link a) {
	padding: 0.25em;
}

:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
	padding: 0;
}

:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
	padding-left: 0.66667em;
	padding-right: 0.66667em;
}

:root :where(.wp-block-tag-cloud.is-style-outline) {
	display: flex;
	flex-wrap: wrap;
	gap: 1ch;
}

:root :where(.wp-block-tag-cloud.is-style-outline a) {
	border: 1px solid;
	font-size: unset !important;
	margin-right: 0;
	padding: 1ch 2ch;
	text-decoration: none !important;
}

:root :where(.wp-block-table-of-contents) {
	box-sizing: border-box;
}

:where(.wp-block-term-description) {
	box-sizing: border-box;
	margin-bottom: var(--wp--style--block-gap);
	margin-top: var(--wp--style--block-gap);
}

:where(pre.wp-block-verse) {
	font-family: inherit;
}

:root {
	--wp--preset--font-size--normal: 16px;
	--wp--preset--font-size--huge: 42px;
}

html :where(.has-border-color) {
	border-style: solid;
}

html :where([style*='border-top-color']) {
	border-top-style: solid;
}

html :where([style*='border-right-color']) {
	border-right-style: solid;
}

html :where([style*='border-bottom-color']) {
	border-bottom-style: solid;
}

html :where([style*='border-left-color']) {
	border-left-style: solid;
}

html :where([style*='border-width']) {
	border-style: solid;
}

html :where([style*='border-top-width']) {
	border-top-style: solid;
}

html :where([style*='border-right-width']) {
	border-right-style: solid;
}

html :where([style*='border-bottom-width']) {
	border-bottom-style: solid;
}

html :where([style*='border-left-width']) {
	border-left-style: solid;
}

html :where(img[class*='wp-image-']) {
	height: auto;
	max-width: 100%;
}

:where(figure) {
	margin: 0 0 1em;
}

html :where(.is-position-sticky) {
	--wp-admin--admin-bar--position-offset: var(
		--wp-admin--admin-bar--height,
		0px
	);
}

@media screen and (max-width: 600px) {
	html :where(.is-position-sticky) {
		--wp-admin--admin-bar--position-offset: 0px;
	}
}

.lasso-lite.lasso-container [data-tooltip]:before,
[data-tooltip]:after {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
		transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	transform: translate3d(0, 0, 0);
	pointer-events: none;
}

.lasso-lite.lasso-container [data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
	visibility: visible;
	opacity: 1;
}

.lasso-lite.lasso-container [data-tooltip]:before,
[data-tooltip]:after {
	bottom: 100%;
	left: 50%;
}

.lasso-lite.lasso-container [data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
	-webkit-transform: translateY(-12px);
	-moz-transform: translateY(-12px);
	transform: translateY(-12px);
}

.btn-base {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: none;
	border-radius: 0.3125rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 0.8125rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.03125rem;
	line-height: 1.21;
	min-width: 10.0625rem;
	padding: 0.96875rem 0.875rem 0.78125rem;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.btn-base:hover {
	cursor: pointer;
	outline: none;
}

.button-green {
	background: #e26d00;
	border-radius: 100px;
	box-shadow: 0px 4px 20px 0px #e22200;
	color: #fff;
}

.button-green:hover {
	background: #b46318;
	color: #fff;
}

.socials {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
}

.socials-item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background-color: #ffffff4d;
	border-radius: 50%;
	color: #ff9d00;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.socials-item svg {
	height: 1.25rem;
	width: 1.25rem;
}

.socials-item:hover {
	background-color: #a57ef0;
	color: #fff;
}

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	color: #e26d00;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

a:hover {
	color: #db3207;
}

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

:active,
:hover {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}

input {
	outline: none;
}

img,
svg,
video {
	display: block;
	height: auto;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font-family: Colfax, sans-serif;
}

h1 {
	font-size: 2.25rem;
}

@media only screen and (max-width: 991px) {
	h1 {
		font-size: 1.875rem;
	}
}

@media only screen and (max-width: 575px) {
	h1 {
		font-size: 1.75rem;
	}
}

h2 {
	font-size: 2.25rem;
}

@media only screen and (max-width: 991px) {
	h2 {
		font-size: 1.875rem;
	}
}

@media only screen and (max-width: 575px) {
	h2 {
		font-size: 1.75rem;
	}
}

h3 {
	font-size: 1.875rem;
}

@media only screen and (max-width: 575px) {
	h3 {
		font-size: 1.375rem;
	}
}

html {
	font-size: 16px;
}

@media only screen and (min-width: 992px) {
	html {
		font-size: 1.3vw;
	}
}

@media only screen and (min-width: 1200px) {
	html {
		font-size: 1.09814688vw;
	}
}

@media only screen and (min-width: 1440px) {
	html {
		font-size: 1vw;
	}
}

@media only screen and (min-width: 1800px) {
	html {
		font-size: 0.88vw;
	}
}

body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #381e00;
	background: #f0e9e1;
	font-family: Colfax, sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.21429;
	padding-top: 4.5rem;
}

.wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}

.wrapper-main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.container,
[class*='__container'] {
	margin: 0 auto;
	max-width: 76.875rem;
	padding: 0 0.9375rem;
	width: 100%;
}

.content-section {
	background-color: #f0e9e1;
	margin: 1.875rem 0 2.5rem;
}

.content-section.is-grey {
	background-color: #e1cfbb;
}

.content-section__container {
	max-width: 58.125rem;
}

.content-section img,
.content-section video {
	margin: 2.5rem 0;
}

.content-section a {
	text-decoration: underline;
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4 {
	color: #381e00;
	line-height: 1.333;
	margin: 1.5rem 0;
	word-break: break-word;
}

.content-section h1:first-child,
.content-section h2:first-child,
.content-section h3:first-child,
.content-section h4:first-child {
	margin-top: 0;
}

.content-section h1:last-child,
.content-section h2:last-child,
.content-section h3:last-child,
.content-section h4:last-child {
	margin-bottom: 0;
}

.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6,
.content-section ol,
.content-section p,
.content-section ul {
	color: #6d6154;
}

.content-section h5,
.content-section h6,
.content-section ol,
.content-section p,
.content-section ul {
	line-height: 133%;
	margin-bottom: 1rem;
}

.content-section h5:last-child,
.content-section h6:last-child,
.content-section ol:last-child,
.content-section p:last-child,
.content-section ul:last-child {
	margin-bottom: 0;
}

.content-section ol,
.content-section ul {
	padding-left: 1.5rem;
}

.content-section table {
	border-collapse: collapse;
}

.content-section table td {
	border: 1px solid #000;
	padding: 2px;
	color: #6d6154;
}

input[type='search']::-ms-clear,
input[type='search']::-ms-reveal {
	display: none;
	height: 0;
	width: 0;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.header {
	height: 80px;
	display: flex;
	align-items: center;
	background-color: #351c00;
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
	left: 0;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform 0.2s ease;
	transition: -webkit-transform 0.2s ease;
	transition: transform 0.2s ease;
	transition: transform 0.2s ease, -webkit-transform 0.2s ease;
	-o-transition: transform 0.2s ease;
	width: 100%;
	z-index: 100111;
}

@media only screen and (max-width: 991px) {
	.header {
		padding: 0.5rem 0;
	}
}

.header__container {
	max-width: 86.875rem;
}

.header__row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	align-items: center;
	justify-content: space-between;
}

.header__logo,
.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__logo {
	flex: 1 1 auto;
	position: relative;
	width: 8%;
	z-index: 3;
}

.header__logo img {
	height: 35px;
	width: 105px;
}

@media only screen and (max-width: 991px) {
	.header__logo {
		width: 50%;
	}
}

.header__menu {
	width: 80%;
}

@media only screen and (max-width: 991px) {
	.header__menu {
		display: none;
	}
}

.header__menu-list {
	-webkit-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}

@media only screen and (max-width: 1199px) {
	.header__menu-list {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-column-gap: 1.5rem;
		-moz-column-gap: 1.5rem;
		column-gap: 1.5rem;
		justify-content: space-between;
	}
}

.header__menu-link {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2e334a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.8125rem;
	font-weight: 500;
	height: 4.5rem;
}

.header__menu-item:hover .header__menu-link,
.header__menu-link.active {
	color: #169b19;
}

.header__menu-submenu {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	background: #fff;
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: -0.875rem;
	list-style: none;
	min-width: 15.625rem;
	opacity: 0;
	padding: 0.125rem;
	pointer-events: none;
	position: absolute;
	row-gap: 0.125rem;
	top: 100%;
	-webkit-transform: translateY(1rem);
	-ms-transform: translateY(1rem);
	transform: translateY(1rem);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	width: auto;
}

.header__menu-submenu-link {
	border-radius: 0.375rem;
	color: #70767d;
	display: block;
	font-weight: 700;
	padding: 0.75rem;
}

.header__menu-submenu-link.active,
.header__menu-submenu-link:hover {
	background-color: #edeeef;
	color: #169b19;
}

.header__menu-item {
	position: relative;
}

.header__menu-item:hover .header__menu-submenu {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

.header__search {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	width: 6.5%;
}

@media only screen and (max-width: 991px) {
	.header__search {
		display: none;
	}
}

.header__search-trigger {
	color: #2e334a;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: 1rem;
}

.header__search-trigger:hover {
	color: #169b19;
}

.header-search-panel {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 4.5rem;
	left: 0;
	padding: 0 2.5rem 0 21.875rem;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(-120%);
	-ms-transform: translateY(-120%);
	transform: translateY(-120%);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
	z-index: 2;
}

@media only screen and (max-width: 1799px) {
	.header-search-panel {
		padding-left: 15.625rem;
	}
}

@media only screen and (max-width: 1439px) {
	.header-search-panel {
		padding-left: 9.375rem;
	}
}

@media only screen and (max-width: 1199px) {
	.header-search-panel {
		padding-left: 6.25rem;
	}
}

@media only screen and (max-width: 767px) {
	.header-search-panel {
		padding-right: 3.625rem;
	}
}

.header-search-panel__form {
	width: 100%;
}

.header-search-panel__label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: 100%;
}

.header-search-panel__label-search {
	height: 0.9375rem;
	left: 0;
	position: absolute;
	top: 0.5rem;
	width: 0.9375rem;
}

.header-search-panel__label-search svg {
	color: #2e334a;
	height: 100%;
	width: 100%;
}

.header-search-panel__label-close {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background-color: #eef1f8;
	border-radius: 50%;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 2rem;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 2rem;
}

.header-search-panel__label-close:hover {
	background-color: #1f125f;
	color: #fff;
}

.header-search-panel__label-close svg {
	height: 0.75rem;
	width: 0.75rem;
}

.header-search-panel__input {
	border: none;
	font-size: 0.875rem;
	height: 2rem;
	min-width: 100%;
	padding-left: 1.875rem;
	width: 100%;
}

.header-search-panel__input::-webkit-input-placeholder {
	color: #948da9;
}

.header-search-panel__input::-moz-placeholder {
	color: #948da9;
}

.header-search-panel__input:-ms-input-placeholder {
	color: #948da9;
}

.header-search-panel__input::-ms-input-placeholder {
	color: #948da9;
}

.header-search-panel__input::placeholder {
	color: #948da9;
}

.header__lang {
	position: relative;
	width: 6%;
	z-index: 1;
}

@media only screen and (max-width: 991px) {
	.header__lang {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: flex-end;
		margin-left: auto;
		margin-right: 1.25rem;
		width: 3rem;
	}
}

.header__lang-label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 0.75rem;
	-moz-column-gap: 0.75rem;
	column-gap: 0.75rem;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 991px) {
	.header__lang-label {
		-webkit-column-gap: 0.5rem;
		-moz-column-gap: 0.5rem;
		column-gap: 0.5rem;
	}
}

.header__lang-label .header__lang-link {
	padding: 0;
}

.header__lang-label .header__lang-link:hover {
	background: unset;
}

@media only screen and (max-width: 991px) {
	.header__lang-label .header__lang-link-name {
		display: none;
	}
}

.header__lang-label-arrow svg {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 0.625rem;
}

.header__lang-list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	background: #fff;
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: none;
	opacity: 0;
	padding: 0.125rem;
	pointer-events: none;
	position: absolute;
	right: -0.875rem;
	row-gap: 0.125rem;
	top: 100%;
	-webkit-transform: translateY(1rem);
	-ms-transform: translateY(1rem);
	transform: translateY(1rem);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	width: calc(100% + 1.75rem);
}

@media only screen and (max-width: 991px) {
	.header__lang-list {
		right: -1.5rem;
		width: calc(100% + 2.35rem);
	}
}

.header__lang-link {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 0.375rem;
	color: #2e334a;
	-webkit-column-gap: 0.625rem;
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	height: 2.625rem;
	padding: 0 0.75rem;
}

.header__lang-link.active,
.header__lang-link:hover {
	background-color: #edeeef;
	color: #2e334a;
}

.header__lang-link-flag img {
	min-width: 1.75rem;
	width: 1.75rem;
}

.header__lang-link-name {
	font-size: 0.8125rem;
	font-weight: 500;
}

.header__trigger-mobile-menu {
	cursor: pointer;
	display: none;
	height: 1.875rem;
	position: relative;
	width: 1.875rem;
	z-index: 3;
}

.header__trigger-mobile-menu span {
	background-color: #fff;
	border-radius: 5px;
	display: block;
	height: 3px;
	position: absolute;
	right: 0;
	top: calc(50% - 1.5px);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 30px;
}

.header__trigger-mobile-menu span:first-child {
	top: calc(50% - 8px);
}

.header__trigger-mobile-menu span:nth-child(2) {
	width: 25px;
}

.header__trigger-mobile-menu span:nth-child(3) {
	top: calc(50% + 6px);
}

.header__trigger-mobile-menu:hover span:nth-child(2) {
	right: 5px;
}

@media only screen and (max-width: 991px) {
	.header__trigger-mobile-menu {
		display: block;
	}
}

.header-mobile {
	background: rgba(30, 24, 46, 0.95);
	height: 100dvh;
	left: 0;
	opacity: 0;
	padding-top: 4.5rem;
	pointer-events: none;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	visibility: hidden;
	width: 100 dvw;
	z-index: 2;
}

.header-mobile__wrap {
	max-height: calc(100dvh - 4.5rem);
	overflow-y: auto;
	padding: 0.625rem 1.25rem 1.5625rem;
	width: 100 dvw;
}

.header-mobile__menu-list {
	list-style: none;
	margin-bottom: 1.5625rem;
}

.header-mobile__menu-item {
	border-bottom: 0.0625rem solid hsla(0, 0%, 100%, 0.1);
}

.header-mobile__menu-item:last-child {
	border-bottom: none;
}

.header-mobile__menu-link {
	color: #fff;
	display: block;
	font-size: 1.0625rem;
	padding: 0.75rem 0;
}

.header-mobile__menu-link:hover {
	color: #169b19;
}

.header-mobile__menu-childrenWrapper {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.header-mobile__menu-childrenWrapper .header-mobile__menu-link {
	max-width: calc(100% - 41px);
	width: 100%;
}

.header-mobile__menu-childrenWrapper .submenu-trigger {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: hsla(0, 0%, 100%, 0.05);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 2.5625rem;
	justify-content: center;
	width: 2.5625rem;
}

.header-mobile__menu-childrenWrapper .submenu-trigger svg {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-mobile-submenu {
	display: none;
	list-style: none;
	padding-left: 0.625rem;
}

.header-mobile-submenu-link {
	border-bottom: 0.0625rem solid hsla(0, 0%, 100%, 0.1);
	color: #fff;
	display: block;
	font-size: 1.0625rem;
	padding: 0.625rem;
}

.header-mobile-submenu-link:last-child {
	border-bottom: none;
}

.header-mobile__search label {
	display: block;
	margin: 0;
}

.header-mobile__search-input {
	border: none;
	border-radius: 0.3125rem;
	font-size: 1rem;
	height: 3rem;
	min-width: 100%;
	padding-left: 1.25rem;
	width: 100%;
}

.footer {
	background: #351c00;
	overflow: hidden;
	padding: 2.6875rem 0 3.75rem;
}

@media only screen and (max-width: 767px) {
	.footer {
		padding: 2.8125rem 0;
	}
}

.footer__container {
	max-width: 86.875rem;
}

.footer__top {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	margin-bottom: 3.75rem;
}

@media only screen and (max-width: 767px) {
	.footer__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 2.8125rem;
		row-gap: 1.875rem;
	}
}

.footer__links {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 2.1875rem;
	-moz-column-gap: 2.1875rem;
	column-gap: 2.1875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	flex-wrap: wrap;
}

.footer__links-item {
	color: #ff9d00;
	font-size: 1rem;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.footer__links {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		order: 1;
	}

	.footer .socials {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
}

.footer__logo img {
	height: 35px;
	width: 105px;
}

.footer__bottom {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

@media only screen and (max-width: 767px) {
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 2.5rem;
	}
}

.footer__rights {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 48%;
	row-gap: 1.3125rem;
	width: 30.625rem;
}

.footer__rights-text {
	color: #ebd2b5;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 133%;
}

.footer__gamble {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 48%;
}

.footer__gamble > a > img {
	max-width: 180px;
}

.footer__gamble > img {
	height: 100%;
	max-height: 60px;
	width: auto;
}

@media only screen and (min-width: 992px) {
	.footer__gamble > a > img {
		width: 20.59vw;
	}
}

@media only screen and (max-width: 991px) {
	.footer {
		-webkit-column-gap: 1.875rem;
		-moz-column-gap: 1.875rem;
		column-gap: 1.875rem;
	}

	.footer img {
		max-height: 2.8125rem;
	}

	.footer > a > img {
		max-width: 10.625rem;
	}
}

@media only screen and (max-width: 767px) {
	.footer__gamble,
	.footer__rights {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		justify-content: center;
		max-width: 100%;
		text-align: center;
		width: 100%;
	}

	.footer__gamble {
		-webkit-column-gap: 1.875rem;
		-moz-column-gap: 1.875rem;
		column-gap: 1.875rem;
	}
}

@media only screen and (max-width: 575px) {
	.footer__gamble {
		-webkit-column-gap: 1.4375rem;
		-moz-column-gap: 1.4375rem;
		column-gap: 1.4375rem;
	}

	.footer__gamble > a > img {
		max-width: 9.375rem;
	}

	.footer__gamble img {
		max-height: 2.1875rem;
	}
}

.casino-table.is-top-padding,
.competitors-table.is-top-padding {
	padding-top: 25px;
}

.casino-table.is-bottom-padding,
.competitors-table.is-bottom-padding {
	padding-bottom: 25px;
}

.casino-table.is-grey,
.competitors-table.is-grey {
	background-color: #e1cfbb;
}

.casino-table__container,
.competitors-table__container {
	max-width: 62.5rem;
	position: relative;
	z-index: 2;
}

.casino-table__item,
.competitors-table__item {
	background: #d6bfa4;
	border: 1px solid #efdcc7;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 160px;
	min-height: 100%;
	position: relative;
	width: 100%;
	margin: 0 0 2px 0;
	border-radius: 20px;
}

@media only screen and (max-width: 767px) {
	.casino-table__item,
	.competitors-table__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
	}
}

.casino-table__item:last-child,
.competitors-table__item:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.casino-table__item-img,
	.competitors-table__item-img {
		padding: 20px;
	}
}

.casino-table__img,
.competitors-table__img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.casino-table__img,
	.competitors-table__img {
		border-radius: 8px;
		height: 10rem;
		width: 10rem;
	}
}

.casino-table__img-link,
.competitors-table__img-link {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
}

.casino-table__item-ttl,
.competitors-table__item-ttl {
	-webkit-box-flex: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 1;
	flex: 1 1;
	padding: 0 20px;
}

@media only screen and (max-width: 767px) {
	.casino-table__item-ttl,
	.competitors-table__item-ttl {
		padding: 0 20px 20px;
	}
}

.casino-table__item-ttl-inner,
.competitors-table__item-ttl-inner {
	color: #000;
	font-size: 1.25rem;
	font-weight: 700;
}

@media only screen and (max-width: 991px) {
	.casino-table__item-ttl-inner,
	.competitors-table__item-ttl-inner {
		font-size: 1rem;
	}
}

.casino-table__item-cnt,
.competitors-table__item-cnt {
	-webkit-box-flex: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 1;
	flex: 1 1;
	padding-right: 20px;
}

@media only screen and (max-width: 767px) {
	.casino-table__item-cnt,
	.competitors-table__item-cnt {
		padding: 0 20px 20px;
	}
}

.casino-table__item-cnt-li,
.competitors-table__item-cnt-li {
	color: #000;
	font-size: 1rem;
	list-style: none;
	padding-left: 1.5625rem;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.casino-table__item-cnt-li,
	.competitors-table__item-cnt-li {
		font-size: 0.875rem;
	}
}

.casino-table__item-cnt-li:before,
.competitors-table__item-cnt-li:before {
	background-image: url('/images/li-caret.svg');
	background-position: 50%;
	background-size: 16px;
	content: '';
	height: 1rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 1rem;
}

.casino-table__item-cta,
.competitors-table__item-cta {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 20px;
}

@media only screen and (max-width: 767px) {
	.casino-table__item-cta,
	.competitors-table__item-cta {
		padding: 0 20px 20px;
	}

	.casino-table__item-cta-inner,
	.competitors-table__item-cta-inner {
		width: 100%;
	}

	.casino-table__item-cta-inner .btn-base,
	.competitors-table__item-cta-inner .btn-base {
		display: block;
		width: 100%;
	}
}

.content-section .competitors-table.is-grey {
	overflow: hidden;
	position: relative;
}

.content-section .competitors-table.is-grey:before {
	background-color: #e1cfbb;
	bottom: 0;
	content: '';
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 500%;
	z-index: 1;
}

.content-section .competitors-table__img {
	margin: 0;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.content-section .competitors-table__img {
		border-radius: 8px;
		height: 10rem;
		width: 10rem;
	}
}

.content-section .btn-base {
	text-decoration: none;
}

@-webkit-keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}

@keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}

.latest-section {
	margin: 2.5rem 0;
}

.latest-section__container {
	max-width: 78.75rem;
}

.latest-section__row {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	border-bottom: 0.0625rem solid #efefef;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 1.875rem;
	row-gap: 2.5rem;
}

.latest-section__item {
	margin-right: 3.75rem;
	width: calc(33.33333% - 2.5rem);
}

.latest-section__item:last-child,
.latest-section__item:nth-child(3n) {
	margin-right: 0;
}

.latest-section__item-image {
	border-radius: 0.3125rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0.75rem;
	overflow: hidden;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.latest-section__item-image img {
	width: 100%;
}

.latest-section__item-image:hover {
	opacity: 0.9;
}

.latest-section__item-title {
	margin-bottom: 0.75rem;
}

.latest-section__item-title a {
	color: #2e334a;
}

.latest-section__item-title a:hover {
	color: #db3207;
}

.latest-section__item-date {
	color: #8d8c99;
	font-size: 0.8125rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.latest-section__item-text {
	color: #2e334a;
	margin-bottom: 1.25rem;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.latest-section__item-author {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 0.9375rem;
	-moz-column-gap: 0.9375rem;
	column-gap: 0.9375rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.latest-section__item-author-name {
	color: #e26d00;
}

@media only screen and (max-width: 991px) {
	.latest-section__item {
		margin-right: 1rem;
		width: calc(33.33333% - 0.66667rem);
	}
}

@media only screen and (max-width: 767px) {
	.latest-section__item {
		width: calc(50% - 0.5rem);
	}

	.latest-section__item:nth-child(3n) {
		margin-right: 1rem;
	}

	.latest-section__item:nth-child(2n) {
		margin-right: 0;
	}
}

@media only screen and (max-width: 575px) {
	.latest-section__item {
		margin-right: 0;
		width: 100%;
	}

	.latest-section__item:nth-child(3n) {
		margin-right: 0;
	}
}

/*# sourceMappingURL=latest.min.css.map*/

.contact__wrapper {
	background: -o-linear-gradient(271.78deg, #601dbc 1.46%, #1f125f 87.11%);
	background: linear-gradient(178.22deg, #601dbc 1.46%, #1f125f 87.11%);
	padding: 0 0 6.375rem;
}

.contact__container {
	max-width: 58.125rem;
}

.contact__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.contact__row-left {
	background-color: #fff;
	border-radius: 0.75rem 0 0 0.75rem;
	padding: 2.5rem;
	width: 56%;
}

.contact__row-right {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	background-color: #2d263f;
	border-radius: 0 0.75rem 0.75rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 2.5rem;
	width: 44%;
}

.contact__row-right .socials {
	margin-top: auto;
}

.contact__row-title {
	color: #151330;
	font-size: 1.875rem;
	font-weight: 900;
	margin-bottom: 2.5rem;
}

.contact__row-title.is-white {
	color: #fff;
}

@media only screen and (max-width: 991px) {
	.contact__row-left,
	.contact__row-right {
		width: 50%;
	}
}

@media only screen and (max-width: 767px) {
	.contact__row-left,
	.contact__row-right {
		width: 100%;
	}

	.contact__row-left {
		border-radius: 0.75rem 0.75rem 0 0;
	}

	.contact__row-right {
		border-radius: 0 0 0.75rem 0.75rem;
	}
}

@media only screen and (max-width: 575px) {
	.contact__row-left,
	.contact__row-right {
		padding: 2.5rem 1.875rem;
	}
}

@media only screen and (max-width: 359px) {
	.contact__row-left,
	.contact__row-right {
		padding: 1.875rem 1.25rem;
	}
}

.contact__heading {
	padding: 5.125rem 0 6.1875rem;
	position: relative;
	z-index: 1;
}

.contact__heading-caption {
	position: relative;
	z-index: 2;
}

.contact__heading-title {
	color: #fff;
	font-size: 1.875rem;
	margin-bottom: 1.5rem;
}

.contact__heading-subtitle {
	color: #a57ef0;
	font-size: 1rem;
}

.contact__heading-bg {
	bottom: -0.6rem;
	height: auto;
	position: absolute;
	right: 0;
	width: auto;
	z-index: 1;
}

@media only screen and (max-width: 575px) {
	.contact__heading {
		padding: 5rem 0;
		text-align: center;
	}
}

.contact__info {
	margin-bottom: 2.5rem;
}

.contact__info-item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #342d4a;
	border-radius: 0.375rem;
	color: #bfb4f6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0.75rem;
	min-height: 4rem;
	padding: 1rem 3.3125rem 1rem 3.5rem;
	position: relative;
}

.contact__info-item:last-child {
	margin-bottom: 0;
}

.contact__info-item:not(span):after {
	background-image: url(images/contact-info-arrow.svg);
	-webkit-filter: contrast(1);
	filter: contrast(1);
	height: 1rem;
	right: 1.25rem;
	width: 1rem;
}

.contact__info-item:before,
.contact__info-item:not(span):after {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-filter 0.2s ease;
	transition: -webkit-filter 0.2s ease;
	-o-transition: filter 0.2s ease;
	transition: filter 0.2s ease;
	transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}

.contact__info-item:before {
	height: 1.5rem;
	left: 1.25rem;
	width: 1.5rem;
}

.contact__info-item.marker:before {
	background-image: url(images/marker.svg);
}

.contact__info-item.phone:before {
	background-image: url(images/phone.svg);
}

.contact__info-item.envelope:before {
	background-image: url(images/envelope.svg);
}

.contact__info-item:not(span):hover {
	background-color: #a57ef0;
	color: #fff;
}

.contact__info-item:not(span):hover:after {
	-webkit-filter: contrast(10);
	filter: contrast(10);
}

/*# sourceMappingURL=contact.min.css.map*/

.faq-section {
	margin: 2.5rem 0;
}

.faq-section.is-grey {
	background-color: #e1cfbb;
}

.faq-section__title {
	margin-bottom: 1.25rem;
}

.faq-section__container {
	max-width: 58.125rem;
}

.faq-section__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 0.25rem;
}

.faq-section__item {
	width: 100%;
}

.faq-section__item-content,
.faq-section__item-heading {
	border: 1px solid #dadada;
}

.faq-section__item-heading {
	background-color: #f4f4f4;
	border-radius: 0.1875rem 0.1875rem 0 0;
	cursor: pointer;
	padding: 0.75rem 1.25rem 0.75rem 2.25rem;
	position: relative;
	-webkit-transition: background 0.3s ease, padding 0.3s ease;
	-o-transition: background 0.3s ease, padding 0.3s ease;
	transition: background 0.3s ease, padding 0.3s ease;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.faq-section__item-heading:before {
	background-image: url(images/arrow.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	height: 0.45rem;
	left: 1.5rem;
	opacity: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: opacity 0.3s ease, left 0.3s ease;
	-o-transition: opacity 0.3s ease, left 0.3s ease;
	transition: opacity 0.3s ease, left 0.3s ease;
	width: 0.2875rem;
}

.faq-section__item-heading:hover {
	background-color: #e9e9e9;
}

.faq-section__item-heading.active {
	background-color: #fff;
	padding: 0.75rem 1.25rem;
}

.faq-section__item-heading.active:before {
	left: 0;
	opacity: 0;
}

.faq-section__item-content {
	border-radius: 0 0 0.1875rem 0.1875rem;
	border-top: none;
	display: none;
	padding: 0.75rem 1.25rem;
}

.home-hero {
	background: #6f3b00;
}

.home-hero__container {
	max-width: 86.875rem;
}

.home-hero__wrap {
	min-height: 13.75rem;
	padding: 4.375rem 0 3.75rem;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.home-hero__wrap {
		padding: 2.5rem 0 0;
	}
}

.home-hero__content {
	color: #fff;
	max-width: 48.125rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

@media only screen and (max-width: 991px) {
	.home-hero__content {
		max-width: 50%;
	}
}

@media only screen and (max-width: 767px) {
	.home-hero__content {
		max-width: 100%;
	}
}

.home-hero__title {
	font-size: 2.0625rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.home-hero.block-hero-main .home-hero__title {
	font-weight: 400;
}

.home-hero__text {
	color: #ebd2b5;
	font-size: 1.0625rem;
	font-weight: 400;
}

.home-hero__bg {
	bottom: 0;
	height: auto;
	position: absolute;
	right: 0;
	width: 48%;
	z-index: 0;
}

@media only screen and (max-width: 991px) {
	.home-hero__bg {
		max-width: 50%;
		width: auto;
	}
}

@media only screen and (max-width: 767px) {
	.home-hero__bg {
		margin: 1.5625rem auto 0;
		max-width: 100%;
		position: relative;
	}
}

.home-hero--category .home-hero__content {
	margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
	.home-hero--category .home-hero__content {
		text-shadow: unset;
	}
}

.home-hero--category .home-hero__bg {
	height: 100%;
	opacity: 0.21;
	right: 50%;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
}

.related-section {
	background-color: #2d263f;
	color: #fff;
	padding: 3.125rem 0 4.375rem;
}

.related-section__container {
	max-width: 55rem;
}

.related-section__heading {
	margin-bottom: 2.5rem;
}

.related-section__item {
	border-bottom: 0.0625rem solid hsla(0, 0%, 85%, 0.12);
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
}

.related-section__item > a {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-column-gap: 1.875rem;
	-moz-column-gap: 1.875rem;
	column-gap: 1.875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 767px) {
	.related-section__item > a {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 1.25rem;
	}
}

.related-section__item > a:hover .related-section__item-title {
	color: #1aa81e;
}

.related-section__item:last-child {
	border-bottom: none;
}

.related-section__item-image {
	max-width: 17.5rem;
	min-width: 17.5rem;
	width: 100%;
}

.related-section__item-image picture {
	max-width: 100%;
}

@media only screen and (max-width: 767px) {
	.related-section__item-image {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 100%;
	}
}

.related-section__item-image img {
	border-radius: 0.375rem;
	max-width: 100%;
}

.related-section__item-caption {
	max-width: calc(100% - 17.5rem);
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.related-section__item-caption {
		max-width: 100%;
	}
}

.related-section__item-title {
	color: #dcd0ff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1rem;
}

.related-section__item-date {
	color: #766097;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.related-section__item-text {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #dcd0ff;
	display: -webkit-box;
	line-height: 1.428;
	margin-bottom: 20px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.related-section__item-author {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 1rem;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.related-section__item-author-avatar {
	border-radius: 50%;
	height: 2.5rem;
	overflow: hidden;
	width: 2.5rem;
}

.related-section__item-author-avatar img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.related-section__item-author-name {
	color: #fff;
}

/*! This file is auto-generated */
.wp-block-button__link {
	color: #fff;
	background-color: #32373c;
	border-radius: 9999px;
	box-shadow: none;
	text-decoration: none;
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #fff;
	text-decoration: none;
}

:root {
	--wp--preset--aspect-ratio--square: 1;
	--wp--preset--aspect-ratio--4-3: 4/3;
	--wp--preset--aspect-ratio--3-4: 3/4;
	--wp--preset--aspect-ratio--3-2: 3/2;
	--wp--preset--aspect-ratio--2-3: 2/3;
	--wp--preset--aspect-ratio--16-9: 16/9;
	--wp--preset--aspect-ratio--9-16: 9/16;
	--wp--preset--color--black: #000000;
	--wp--preset--color--cyan-bluish-gray: #abb8c3;
	--wp--preset--color--white: #ffffff;
	--wp--preset--color--pale-pink: #f78da7;
	--wp--preset--color--vivid-red: #cf2e2e;
	--wp--preset--color--luminous-vivid-orange: #ff6900;
	--wp--preset--color--luminous-vivid-amber: #fcb900;
	--wp--preset--color--light-green-cyan: #7bdcb5;
	--wp--preset--color--vivid-green-cyan: #00d084;
	--wp--preset--color--pale-cyan-blue: #8ed1fc;
	--wp--preset--color--vivid-cyan-blue: #0693e3;
	--wp--preset--color--vivid-purple: #9b51e0;
	--wp--preset--color--primary-blue: #008dcd;
	--wp--preset--color--dark-blue: #00355d;
	--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
		135deg,
		rgba(6, 147, 227, 1) 0%,
		rgb(155, 81, 224) 100%
	);
	--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
		135deg,
		rgb(122, 220, 180) 0%,
		rgb(0, 208, 130) 100%
	);
	--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
		135deg,
		rgba(252, 185, 0, 1) 0%,
		rgba(255, 105, 0, 1) 100%
	);
	--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
		135deg,
		rgba(255, 105, 0, 1) 0%,
		rgb(207, 46, 46) 100%
	);
	--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
		135deg,
		rgb(238, 238, 238) 0%,
		rgb(169, 184, 195) 100%
	);
	--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
		135deg,
		rgb(74, 234, 220) 0%,
		rgb(151, 120, 209) 20%,
		rgb(207, 42, 186) 40%,
		rgb(238, 44, 130) 60%,
		rgb(251, 105, 98) 80%,
		rgb(254, 248, 76) 100%
	);
	--wp--preset--gradient--blush-light-purple: linear-gradient(
		135deg,
		rgb(255, 206, 236) 0%,
		rgb(152, 150, 240) 100%
	);
	--wp--preset--gradient--blush-bordeaux: linear-gradient(
		135deg,
		rgb(254, 205, 165) 0%,
		rgb(254, 45, 45) 50%,
		rgb(107, 0, 62) 100%
	);
	--wp--preset--gradient--luminous-dusk: linear-gradient(
		135deg,
		rgb(255, 203, 112) 0%,
		rgb(199, 81, 192) 50%,
		rgb(65, 88, 208) 100%
	);
	--wp--preset--gradient--pale-ocean: linear-gradient(
		135deg,
		rgb(255, 245, 203) 0%,
		rgb(182, 227, 212) 50%,
		rgb(51, 167, 181) 100%
	);
	--wp--preset--gradient--electric-grass: linear-gradient(
		135deg,
		rgb(202, 248, 128) 0%,
		rgb(113, 206, 126) 100%
	);
	--wp--preset--gradient--midnight: linear-gradient(
		135deg,
		rgb(2, 3, 129) 0%,
		rgb(40, 116, 252) 100%
	);
	--wp--preset--font-size--small: 12px;
	--wp--preset--font-size--medium: 20px;
	--wp--preset--font-size--large: 20px;
	--wp--preset--font-size--x-large: 42px;
	--wp--preset--font-size--normal: 16px;
	--wp--preset--spacing--20: 0.44rem;
	--wp--preset--spacing--30: 0.67rem;
	--wp--preset--spacing--40: 1rem;
	--wp--preset--spacing--50: 1.5rem;
	--wp--preset--spacing--60: 2.25rem;
	--wp--preset--spacing--70: 3.38rem;
	--wp--preset--spacing--80: 5.06rem;
	--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
	--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
	--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
	--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
		6px 6px rgba(0, 0, 0, 1);
	--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
	gap: 0.5em;
}

:where(.is-layout-grid) {
	gap: 0.5em;
}

body .is-layout-flex {
	display: flex;
}

.is-layout-flex {
	flex-wrap: wrap;
	align-items: center;
}

.is-layout-flex > :is(*, div) {
	margin: 0;
}

body .is-layout-grid {
	display: grid;
}

.is-layout-grid > :is(*, div) {
	margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
	gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
	gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
	gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
	gap: 1.25em;
}

.has-black-color {
	color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
	color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
	color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
	color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
	color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
	color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
	color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
	color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
	color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
	color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
	color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
	color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
	background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
	background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
	background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
	background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
	background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
	background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
	background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
	background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
	background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
	background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
	background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
	background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
	border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
	border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
	border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
	border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
	border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
	border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
	border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
	border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
	border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
	border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
	border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
	border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
	background: var(
		--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple
	) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
	background: var(
		--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan
	) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
	background: var(
		--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange
	) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
	background: var(
		--wp--preset--gradient--luminous-vivid-orange-to-vivid-red
	) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
	background: var(
		--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray
	) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
	background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
	background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
	background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
	background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
	background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
	background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
	background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
	font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
	font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
	font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
	font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
	gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
	gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
	gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
	gap: 2em;
}

:root :where(.wp-block-pullquote) {
	font-size: 1.5em;
	line-height: 1.6;
}

[data-cky-tag] {
	visibility: hidden;
}

:root {
	--lasso-main: black !important;
	--lasso-title: black !important;
	--lasso-button: #22baa0 !important;
	--lasso-secondary-button: #22baa0 !important;
	--lasso-button-text: white !important;
	--lasso-background: white !important;
	--lasso-pros: #22baa0 !important;
	--lasso-cons: #e06470 !important;
}

.casinos_list-1 .odd {
	background-color: #f9f9f9;
}

.casinos_list-1 {
	background: #fff;
}

.casinos_list-1 tbody tr td:last-child {
	vertical-align: middle;
}

.casinos_list-1 .column-1 {
	vertical-align: middle;
}

.casinos_list-1 tr.odd:hover {
	background-color: #f3f3f3 !important;
}

.casinos_list-1 tbody tr:hover td {
	border-top: 0 !important;
}

.casinos_list-1 > tbody > .row-2 > .column-2 > .c__feature {
	margin-bottom: 0 !important;
}

.casinos_list-1 > tbody > tr > td.column-3 > br {
	display: none;
}

.casinos_list-1 > tbody > tr > .column-2 > .c__feature {
	width: 90% !important;
}

.review-table img {
	max-height: 55px;
	width: auto;
}

.perfmatters-lazy[data-src] {
	display: none !important;
}
.accordion {
	overflow: hidden;
	margin: auto;
}

.accordion-item {
	position: relative;
	border-radius: 3px;
	border: 1px solid #c5c5c5;
	margin: 0 0 3px 0;
}
.accordion-item::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 5px;
	width: 16px;
	height: 16px;
	background: url('/images/arrow-acc.svg') center center / cover no-repeat;
}

.accordion-button {
	margin: 0 !important;
	width: 100%;
	text-align: left;
	padding: 10px 25px;
	background: #f6f6f6;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: #6d6154;
	font-weight: 400;
}

.accordion-button.active {
	background: #ffffff;
}

.accordion-content {
	display: none;
	padding: 15px;
	background: #fff;
	color: #6d6154;
	border-top: 1px solid #c5c5c5;
	border-radius: 0 0 3px 3px;
}

.accordion-content.show {
	display: block;
}
.table {
	width: 100%;
	overflow-x: auto;
	margin: 30px 0;
}
.img-cov {
	width: 100%;
	height: 100%;
	margin: 30px 0;
}

.img-cov img {
	width: 100%;
	height: 100%;
}
