:root {
	--main-accent-bg-color: #2ecc71;
	--main-nav-color: #ffffff;
	--header-bg-color: #000000;
	--footer-bg-color: #000000;
	--content-button-bg-color: #2ecc71;
	--content-button-color: #ffffff;
	--offsets: 30px
}

.container {
	max-width: 1440px;
	padding: 0 var(--offsets);
	margin: 0 auto
}

.container-full {
	max-width: 100%
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

p {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	margin-top: 1rem
}

a {
	font-size: 1rem;
	font-weight: 400;
	color: var(--main-accent-bg-color)
}

a:hover {
	text-decoration: none
}

ol, ul {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	padding-left: 25px;
	margin-top: 1rem
}

img {
	max-width: 100%;
	height: auto
}

h1 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.5rem;
	margin-bottom: 1rem
}

h2 {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2.3rem;
	margin-bottom: 1rem
}

h3 {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.1rem;
	margin-bottom: 1rem
}

h4 {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.9rem;
	margin-bottom: 1rem
}

h5 {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.7rem;
	margin-bottom: 1rem
}

h6 {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	margin-bottom: 1rem
}

.wrapper > .wp-block-table, .wrapper > blockquote, .wrapper > .wp-block-heading, .wrapper > .wp-block-list, .wrapper > .wp-block-paragraph  {
	padding: 0 var(--offsets);
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto
}

main > .wrapper:first-child {
	color: #fff;
}

main > .wrapper:first-child a {
	color: #fa4d00;
}

.wrapper blockquote, blockquote {
	padding: 1rem var(--offsets) 1rem 2rem;
	border-left: 5px solid var(--main-accent-bg-color);
	background-color: #f0f8ff;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	margin-top: 1rem
}

.wrapper > :last-child {
	margin-bottom: 2rem
}

table {
	border: 1px solid var(--main-accent-bg-color);
	margin-top: 1rem
}

table th {
	padding: .5rem 1rem;
	text-align: center;
	background-color: var(--main-accent-bg-color);
	color: #fff
}

table td {
	padding: .5rem 1rem;
	border: 1px solid var(--main-accent-bg-color)
}

.wrapper {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

html {
	font-size: 17px
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
	overflow-x: hidden
}

.accent-button {
	display: inline-block;
	text-decoration: none;
	border: none;
	outline: 0;
	background: 0 0;
	padding: .6rem 1.2rem;
	font-size: 1.2rem;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.accent-button.fill-button {
	background: var(--main-accent-bg-color);
	border: 2px solid var(--main-accent-bg-color)
}

.accent-button.fill-button:hover {
	-webkit-filter: brightness(105%);
	filter: brightness(105%)
}

.accent-button.outline-button {
	color: rgba(255, 255, 255, .5);
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, .5)
}

.accent-button.outline-button:hover {
	background-color: rgba(255, 255, 255, .1)
}

.content-button {
	margin-top: 2rem
}

.content-button.alight-left {
	text-align: left
}

.content-button.align-right {
	text-align: right
}

.content-button.align-center {
	text-align: center
}

.content-button a, .content-button button {
	background: var(--content-button-bg-color);
	display: inline-block;
	border: 2px solid var(--content-button-bg-color);
	padding: .7rem 2rem;
	font-size: 1.2rem;
	border-radius: 5px;
	color: var(--content-button-color);
	-webkit-transition: 150ms;
	-o-transition: 150ms;
	transition: 150ms;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	cursor: pointer;
	text-decoration: none
}

.content-button a:hover, .content-button button:hover {
	-webkit-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95)
}

.page-header {
	background-color: var(--header-bg-color)
}

.page-header__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: .5rem 0
}

.page-header__logo {
	max-width: 150px;
	width: 100%
}

.page-header__buttons, .page-header__nav {
	margin: 0 auto
}

.page-header__buttons a {
	font-weight: 400
}

.page-header__buttons a, .page-header__buttons button {
	margin: 1rem
}

.page-header__burger {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 35px;
	height: 25px
}

.page-header__burger span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--main-accent-bg-color);
	border-radius: 20%;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.page-header__burger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotateZ(45deg);
	-ms-transform: translateY(11px) rotate(45deg);
	transform: translateY(11px) rotateZ(45deg)
}

.page-header__burger.active span:nth-of-type(2) {
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0)
}

.page-header__burger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotateZ(-45deg);
	-ms-transform: translateY(-11px) rotate(-45deg);
	transform: translateY(-11px) rotateZ(-45deg)
}

.main-nav {
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch
}

.main-nav__list {
	height: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.main-nav__list > li {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.main-nav__list > li:hover > a::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1)
}

.main-nav__list > li:hover .sub-menu {
	opacity: 1;
	pointer-events: auto
}

.main-nav__list > li > span.active__link {
	color: grey
}

.main-nav__list > li > a, .main-nav__list > li > span {
	font-size: 1.2rem;
	text-decoration: none;
	margin: 0 .5rem;
	padding: .5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	color: var(--main-nav-color)
}

.main-nav__list > li > a::after, .main-nav__list > li > span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-accent-bg-color);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.main-nav .menu-item-has-children {
	position: relative
}

.main-nav .menu-item-has-children .sub-menu__arrow {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-35%);
	-ms-transform: translateY(-35%);
	transform: translateY(-35%);
	right: -11px;
	padding: 0 0 0 40px;
	text-align: right
}

.main-nav .menu-item-has-children .sub-menu__arrow svg {
	max-width: 15px;
	width: 100%;
	height: auto;
	fill: var(--main-accent-bg-color);
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.main-nav .menu-item-has-children.active .sub-menu__arrow svg {
	-webkit-transform: rotateZ(180deg);
	-ms-transform: rotate(180deg);
	transform: rotateZ(180deg)
}

.main-nav .menu-item-has-children.active .sub-menu {
	display: block;
	position: relative;
	opacity: 1;
	pointer-events: auto;
	top: 0;
	margin-top: 0;
	padding: 0 1rem
}

.main-nav .menu-item-has-children.active .sub-menu::before {
	display: none
}

.main-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: .5rem;
	padding: .5rem 1rem;
	list-style: none;
	background-color: var(--header-bg-color);
	border-radius: 5px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms;
	z-index: 100
}

.main-nav .sub-menu::before {
	content: "";
	position: absolute;
	top: -.5rem;
	left: 0;
	height: .5rem;
	width: 100%;
	background-color: transparent
}

.main-nav .sub-menu a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	color: var(--main-nav-color);
	margin: .5rem 0;
	white-space: nowrap
}

.main-nav .sub-menu:hover {
	color: var(--main-accent-bg-color)
}

.columns {
	padding: 2rem 0
}

.columns__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: -1rem
}

.columns__container.reversed {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.columns__item {
	margin: 1rem
}

.columns__item img {
	display: block;
	margin: 0 auto
}

.columns.align-center .columns__container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.columns.align-top .columns__container {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.columns.align-bottom .columns__container {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

.columns.align-stretch .columns__container {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.columns.col-1 .columns__item {
	width: calc(100% - 2rem)
}

.columns.col-2 .columns__item {
	width: calc(100% / 2 - 2rem)
}

.columns.col-3 .columns__item {
	width: calc(100% / 3 - 2rem)
}

.columns.col-4 .columns__item {
	width: calc(100% / 4 - 2rem)
}

.columns.col-5 .columns__item {
	width: calc(100% / 5 - 2rem)
}

.columns.col-6 .columns__item {
	width: calc(100% / 6 - 2rem)
}

.wp-block-columns {
	max-width: calc(1380px + var(--offsets) + var(--offsets));
	padding: 2rem var(--offsets);
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	grid-gap: 30px
}

.wp-block-columns .wp-block-column {
	margin: 0
}

.wp-block-columns.col-1 {
	-ms-grid-columns:(1fr) [ 1 ];
	grid-template-columns:repeat(1, 1fr)
}

.wp-block-columns.col-2 {
	-ms-grid-columns:(1fr) [ 2 ];
	grid-template-columns:repeat(2, 1fr)
}

.wp-block-columns.col-3 {
	-ms-grid-columns:(1fr) [ 3 ];
	grid-template-columns:repeat(3, 1fr)
}

.wp-block-columns.col-4 {
	-ms-grid-columns:(1fr) [ 4 ];
	grid-template-columns:repeat(4, 1fr)
}

.wp-block-columns.col-5 {
	-ms-grid-columns:(1fr) [ 5 ];
	grid-template-columns:repeat(5, 1fr)
}

.wp-block-columns.col-6 {
	-ms-grid-columns:(1fr) [ 6 ];
	grid-template-columns:repeat(6, 1fr)
}

.wp-block-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.wp-block-column > * {
	-webkit-box-flex: 1;
	-ms-flex: 1 1;
	flex: 1 1
}

.wp-block-column > :not(:first-child) {
	margin-top: 30px
}

.wp-block-column .row {
	padding: 0
}

.icon-blocks {
	padding: 2rem 0
}

.icon-blocks__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.icon-blocks__item {
	background-color: var(--main-accent-bg-color);
	width: calc(100% / 6);
	padding: 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #fff
}

.icon-blocks__item:hover .icon-blocks__image {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px)
}

.icon-blocks__image {
	text-align: center;
	margin-top: 2rem;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.icon-blocks__image img {
	max-width: 100px
}

.icon-blocks__content {
	text-align: center;
	margin: 1rem 0 0;
	color: #fff;
	font-size: .9rem
}

.review {
	background-color: #f9f9f9;
	border-radius: 10px;
	padding: 1rem;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.review__text {
	margin-top: 0;
	color: rgba(33, 33, 33, .7);
	font-weight: 500;
	margin-bottom: .5rem
}

.review__user {
	margin-top: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.review__user-image {
	max-width: 60px;
	border-radius: 50%
}

.review__user-name {
	margin-top: 0;
	margin-left: 1rem;
	color: #6ec1e4;
	font-size: 1.1rem;
	font-weight: 600
}

.show-posts {
	background: #fbfbfb
}

.show-posts__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	padding-bottom: 10px;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms;
	background-color: #fff
}

.show-posts__item:hover {
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1)
}

.show-posts__item:hover .show-posts__image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.show-posts__image {
	height: 150px;
	overflow: hidden
}

.show-posts__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.show-posts__title {
	color: var(--main-accent-bg-color);
	margin-top: 1rem;
	padding: 0 10px;
	font-size: 1.2rem;
	line-height: 1.7rem
}

.show-posts__text {
	margin-top: 0;
	margin-bottom: .5rem;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0 10px
}

.show-posts__link {
	text-decoration: underline;
	color: var(--main-accent-bg-color);
	margin-top: auto;
	padding: 0 10px
}

.show-posts__hidden-link {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 2
}

.video {
	max-width: 650px
}

.video.align-center {
	margin: 0 auto
}

.video.align-right {
	margin-left: auto
}

.video__container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-color: #000
}

.video__preview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.video__button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: 0 0;
	border: none
}

.video__button-shape {
	fill: #212121;
	fill-opacity: .8
}

.video__button-icon {
	fill: #fff
}

.video__button:focus {
	outline: 0
}

.video__button:focus .video__button-shape, .video__button:hover .video__button-shape {
	fill: red;
	fill-opacity: 1
}

.video__button:hover {
	cursor: pointer
}

.video__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none
}

.page-footer {
	background-color: var(--header-bg-color)
}

.page-footer__list {
	margin-top: 0;
}

.page-footer__list a {
	font-size: 1.1rem;
	color: var(--main-nav-color);
	text-decoration: none
}

.page-footer__list a:hover {
	color: var(--main-accent-bg-color)
}

.page-footer__list .sub-menu {
	margin: .2rem 0
}

.page-footer__text {
	color: var(--main-nav-color);
	font-size: .9rem;
	line-height: 1.4rem
}

.page-footer .columns__item > * {
	margin-bottom: 1rem
}

.page-footer .columns__item * {
	color: var(--main-nav-color)
}

.faq__item {
	position: relative;
	padding: 1rem;
	background-color: #f9f9f9;
	border-radius: 10px
}

.faq__toggle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0
}

.faq__question {
	margin: 0;
	cursor: pointer
}

.faq__answer {
	height: auto;
	max-height: 0;
	overflow: hidden;
	margin: 0
}

.faq__answer.active {
	max-height: 1000px;
	margin-top: 1rem
}

.toc {
	display: inline-block;
	padding: .5rem 1rem;
	margin: 1rem 0;
	background-color: #f3f4f4;
	border-radius: 10px
}

.toc.active .toc__list {
	max-height: 1000px;
	margin-top: 1rem
}

.toc.active .toc__title::after {
	-webkit-transform: translateY(-30%) rotateZ(180deg);
	-ms-transform: translateY(-30%) rotate(180deg);
	transform: translateY(-30%) rotateZ(180deg)
}

.toc__title {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0;
	color: #333;
	display: inline-block;
	padding-right: 15px;
	position: relative;
	cursor: pointer
}

.toc__title::after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	transform: translateY(-30%);
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8.7px 5px 0;
	border-color: var(--main-accent-bg-color) transparent transparent transparent;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.toc__list {
	margin-top: 0;
	height: auto;
	max-height: 0;
	overflow: hidden
}

.toc__link {
	display: inline-block;
	color: var(--main-accent-bg-color);
	padding: .3rem 0
}

.page-single {
	max-width: 1440px;
	margin: 0 auto 3rem;
	padding: 0 10px
}

.breadcrumbs {
	padding: .5rem 0
}

.breadcrumbs__list {
	list-style: none;
	margin-top: 0;
	padding: 0 var(--offsets);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.breadcrumbs__item {
	margin-right: 10px
}

.breadcrumbs__current, .breadcrumbs__link {
	font-size: .9rem;
	text-decoration: none;
	color: var(--main-accent-bg-color)
}

.breadcrumbs__separator {
	color: var(--main-accent-bg-color)
}

.promocode {
	padding: 1rem 0
}

.promocode__container {
	max-width: 670px;
	margin: 0 auto;
	background-color: #f5f5f5;
	padding: 1rem 2rem
}

.promocode__title {
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.6rem;
	text-align: center
}

.promocode__controls {
	margin-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 3px;
	background-color: #fff;
	border-radius: 8px
}

.promocode__value {
	font-size: 2rem;
	font-weight: 700;
	margin-left: 10%
}

.promocode__button {
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	outline: 0;
	text-decoration: none;
	text-align: center;
	padding: .6rem 1rem;
	width: 100%;
	max-width: 200px;
	margin-left: auto;
	border-radius: 7px;
	background-color: var(--main-accent-bg-color);
	border: 2px solid var(--main-accent-bg-color);
	cursor: pointer
}

.promocode__button:hover {
	background-color: #fff;
	color: var(--main-accent-bg-color)
}

.promocode__text {
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 400;
	text-align: center
}

.promocode__bottom {
	display: block;
	margin: 1.2rem auto 0;
	max-width: 300px;
	width: 100%;
	padding: .6rem 1rem;
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	outline: 0;
	text-align: center;
	text-decoration: none;
	background-color: #f23e71;
	border: 2px solid #f23e71;
	border-radius: 7px;
	cursor: pointer
}

.promocode__bottom:hover {
	background-color: #fff;
	color: #f23e71
}

.mobile-button {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
}

.mobile-button a {
	font-weight: 400;
	font-size: 1.2rem
}

.mobile-button__container {
	padding: 10px 1rem
}

.mobile-button__control {
	display: block;
	width: 100%
}

.background-block {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

.advantages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 1rem;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
	border-radius: 10px;
	height: 100%
}

.advantages__image {
	width: 150px;
	height: 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.advantages__title {
	margin-top: 1rem
}

.rating {
	padding: 1rem 0
}

.rating__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.rating__item {
	font-size: 1.3rem;
	padding: 0 .2rem;
	color: #888
}

.difference__element {
	padding: 1rem;
	border: 1px solid var(--main-accent-bg-color);
	border-radius: 10px
}

.difference__list {
	list-style: none;
	padding-left: 0
}

.difference__item {
	margin: 1rem 0;
	padding-left: 25px;
	position: relative
}

.difference__item::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

.difference__item_plus::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzY3LjgwNSAzNjcuODA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNjcuODA1IDM2Ny44MDU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIHN0eWxlPSJmaWxsOiMzQkI1NEE7IiBkPSJNMTgzLjkwMywwLjAwMWMxMDEuNTY2LDAsMTgzLjkwMiw4Mi4zMzYsMTgzLjkwMiwxODMuOTAycy04Mi4zMzYsMTgzLjkwMi0xODMuOTAyLDE4My45MDINCgkJUzAuMDAxLDI4NS40NjksMC4wMDEsMTgzLjkwM2wwLDBDLTAuMjg4LDgyLjYyNSw4MS41NzksMC4yOSwxODIuODU2LDAuMDAxQzE4My4yMDUsMCwxODMuNTU0LDAsMTgzLjkwMywwLjAwMXoiLz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRDRFMUY0OyIgcG9pbnRzPSIyODUuNzgsMTMzLjIyNSAxNTUuMTY4LDI2My44MzcgODIuMDI1LDE5MS4yMTcgMTExLjgwNSwxNjEuOTYgMTU1LjE2OCwyMDQuODAxIA0KCQkyNTYuMDAxLDEwMy45NjggCSIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)
}

.difference__item_minus::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiBjbGFzcz0iIj48Zz48ZWxsaXBzZSBzdHlsZT0iZmlsbDojRTA0RjVGOyIgY3g9IjI1NiIgY3k9IjI1NiIgcng9IjI1NiIgcnk9IjI1NS44MzIiIGRhdGEtb3JpZ2luYWw9IiNFMDRGNUYiIGNsYXNzPSIiLz48cmVjdCB4PSIxMTMuMiIgeT0iMjI4IiBzdHlsZT0iZmlsbDojRkZGRkZGIiB3aWR0aD0iMjg1LjY3MiIgaGVpZ2h0PSI1NiIgZGF0YS1vcmlnaW5hbD0iI0ZGRDA3RCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iI0ZGRDA3RCIvPjwvZz4gPC9zdmc+Cg==)
}

.comments {
	margin: 2rem -10px -10px
}

.comments .comment {
	margin: 10px
}

.comments .comment__author {
	font-size: 1.2rem;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 0
}

.comments .comment__date {
	font-size: .9rem;
	margin-left: 15px;
	color: #a2a2a2
}

.comments .comment__content {
	padding: 10px 0 0 10px;
	margin-left: 10px;
	border-left: 1px solid var(--main-accent-bg-color);
	margin-top: 0;
	font-size: 1rem;
}

.comments .comment__karma {
	margin-left: 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.comments .comment__karma .karma__control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 10px;
	cursor: pointer;
	outline: 0;
	border: none;
	width: 15px;
	height: 15px;
	line-height: 16px;
	border-radius: 50%;
	color: #fff;
	opacity: .1
}

.comments .comment__karma .karma__control.decrease {
	background-color: #dc3545
}

.comments .comment__karma .karma__control.increase {
	background-color: #28a745
}

.comments .comment__karma .karma__control:hover {
	opacity: 1
}

.comments .comment__karma .value {
	font-size: 1rem;
	color: #a2a2a2
}

.comments .comment__reply {
	background-color: transparent;
	border: none;
	outline: 0;
	cursor: pointer;
	color: #888
}

.comments .comment__child {
	padding-left: 20px;
	position: relative
}

.comment-footer {
	margin-top: 2rem
}

.comment-form-footer {
	margin: 3rem 0
}

.comment-form__title {
	text-align: center
}

.comment-form__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 20px auto 0;
	max-width: 700px
}

.comment-form__field {
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 5px;
	outline: 0;
	font-size: 1rem;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms
}

.comment-form__field:active, .comment-form__field:focus, .comment-form__field:hover {
	border: 1px solid var(--main-accent-bg-color)
}

.comment-form__field.error {
	border: 1px solid #dc3545;
	background-color: rgba(220, 53, 69, .05)
}

.comment-form__input {
	width: calc(100% / 2 - 20px);
	margin: 10px
}

.comment-form__textarea {
	width: calc(100% - 20px);
	margin: 10px;
	min-height: 100px
}

.comment-form__button {
	margin: 10px
}

.comment-form__alert {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	font-size: .8rem;
	color: #000;
	opacity: 0;
	-webkit-transition: opacity 250ms;
	-o-transition: opacity 250ms;
	transition: opacity 250ms;
	display: block;
	text-align: center;
	width: calc(100% - 20px)
}

.comment-form__alert.error {
	opacity: 1;
	color: #dc3545
}

.comment-form__alert.success {
	opacity: 1;
	color: #28a745
}

.page-404__title {
	text-align: center;
	font-size: 5rem;
	margin-top: 2rem
}

.page-404__subtitle {
	text-align: center;
	font-size: 2rem;
	margin-top: 2rem
}

.page-404__link {
	margin: 2rem 0;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.scroll-top {
	position: fixed;
	bottom: 70px;
	right: 15px
}

.scroll-top__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	background-color: #fa5800;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	font-size: 20px
}

@font-face {
	font-family: PF_Kids_Pro;
	font-style: normal;
	font-weight: 400;
	src: local(""), url(../fonts/PF_Kids_Pro.woff2) format("woff2")
}

.slider__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center
}

.slider__content {
	margin: 1rem auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.slider__title {
	font-family: PF_Kids_Pro, sans-serif;
	font-weight: 400;
	font-size: 4rem;
	line-height: 4.2rem;
	color: #202021;
	text-transform: uppercase;
	margin-bottom: 0;
	text-align: right
}

.slider__button {
	font-size: 1.2rem;
	padding: 1rem 6rem;
	border-radius: 31px;
	height: 67px;
	background: #03a528;
	border: 3px solid #03a528;
	margin-left: 4rem
}

.slider__button:hover {
	background: #fff;
	color: #03a528
}

.slider .swiper-pagination {
	position: relative;
	bottom: 0
}

.slider .swiper-pagination::after, .slider .swiper-pagination::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 100%;
	max-width: 400px;
	height: 10px;
	background-image: url(data:image/png;base64,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);
	background-repeat: repeat-x
}

.slider .swiper-pagination::before {
	left: calc(50% - 35px);
	-webkit-transform: translateY(-50%) translateX(-100%);
	-ms-transform: translateY(-50%) translateX(-100%);
	transform: translateY(-50%) translateX(-100%)
}

.slider .swiper-pagination::after {
	right: calc(50% - 35px);
	-webkit-transform: translateY(-50%) translateX(100%) rotateX(180deg);
	transform: translateY(-50%) translateX(100%) rotateX(180deg)
}

.small-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.small-icons__item {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 150px;
	flex: 1 1 150px;
	padding: 1rem 2rem;
	position: relative
}

.small-icons__item:not(:last-of-type):after {
	content: "";
	position: absolute;
	top: calc(50% - .5rem);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 40px;
	border-left: 1px dotted #cdcdcd
}

.small-icons__item a {
	text-decoration: none
}

.small-icons__image {
	width: 35px;
	height: 35px;
	padding: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid #0083c3;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto
}

.small-icons__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.small-icons__text {
	text-align: center;
	margin-top: 5px;
	font-weight: 600;
	text-decoration: none;
	color: #0083c3;
	font-size: 1rem
}

.author-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 1rem 0
}

.author-block_outlined {
	border: 1px solid var(--main-accent-bg-color);
	padding: 1rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 1rem
}

.author-block__avatar {
	width: 60px;
	height: 60px
}

.author-block__avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center
}

.author-block__avatar_scaled {
	width: 150px;
	height: 150px
}

.author-block__content {
	margin-left: 1rem;
	max-width: 600px
}

.author-block__name {
	font-size: 1rem;
	font-weight: 600
}

.author-block__description {
	font-size: .9rem;
	opacity: .8;
	margin-top: .5rem
}

.author-block__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	padding-left: 0;
	margin: .5rem -5px -5px
}

.author-block__social li {
	width: 25px;
	height: 25px;
	margin: 5px
}

.author-block__social li:hover {
	opacity: .7
}

.shared-items {
	margin: 2rem 0
}

.shared-items__title {
	margin: 15px 10px;
	font-size: 1.2rem;
	font-weight: 600
}

.shared-items__list {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: -2px;
	padding-left: 0
}

.shared-items__item {
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 150px;
	flex: 1 1 150px;
	margin: 2px
}

.shared-items__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: .5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 .5rem;
	background-color: #f1f1f1;
	border-radius: 10px
}

.shared-items__link svg {
	width: 30px;
	height: 30px
}

#cookie-law-div {
	z-index: 10000000;
	position: fixed;
	bottom: 3%;
	right: 2%;
	padding: 1em;
	max-width: 400px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .15);
	font-size: 15px;
	-webkit-box-shadow: rgba(23, 43, 99, .4) 0 7px 28px;
	box-shadow: rgba(23, 43, 99, .4) 0 7px 28px
}

#cookie-law-div a {
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, .5)
}

#cookie-law-div a:hover {
	opacity: .7
}

#cookie-law-div p {
	margin: 0;
	color: #000;
	padding-right: 50px
}

#cookie-law-div button {
	height: 20px;
	width: 20px;
	position: absolute;
	right: .5em;
	top: 20px;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	line-height: 1;
	color: #fff;
	background-color: #000;
	border: none;
	opacity: .6;
	font-size: 12px;
	cursor: pointer;
	border-radius: 50px
}

#cookie-law-div button:hover {
	opacity: 1
}

.acceptButton {
	width: 113px !important;
	background-color: green !important;
	top: 124px !important
}

@media (min-width: 1024px) {
	.main-nav .menu-item-has-children .sub-menu__arrow {
		pointer-events: none
	}
}

@media (max-width: 1300px) {
	.columns.col-6 .columns__item {
		width: calc(100% / 5 - 2rem)
	}

	.wp-block-columns.col-6 {
		-ms-grid-columns:(1fr) [ 5 ];
		grid-template-columns:repeat(5, 1fr)
	}
}

@media screen and (max-width: 1200px) {
	:root {
		--offsets: 20px
	}
}

@media (max-width: 1200px) {
	.columns.col-5 .columns__item, .columns.col-6 .columns__item {
		width: calc(100% / 4 - 2rem)
	}

	.wp-block-columns.col-5, .wp-block-columns.col-6 {
		-ms-grid-columns:(1fr) [ 4 ];
		grid-template-columns:repeat(4, 1fr)
	}
}

@media (max-width: 1050px) {
	.wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
		-ms-grid-columns:(1fr) [ 3 ];
		grid-template-columns:repeat(3, 1fr)
	}
}

@media (max-width: 1024px) {
	html {
		font-size: 16px
	}

	.page-header__container {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: var(--offsets) 0;
		position: relative
	}

	.page-header__logo {
		max-width: 100px
	}

	.page-header__nav {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.page-header__buttons {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.page-header__burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.main-nav {
		margin-left: calc(-100vw / 2 + 100% / 2) !important;
		margin-right: calc(-100vw / 2 + 100% / 2) !important;
		max-width: 100vw !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--header-bg-color);
		opacity: 0;
		pointer-events: none;
		-webkit-transition: opacity 250ms;
		-o-transition: opacity 250ms;
		transition: opacity 250ms
	}

	.main-nav.active {
		opacity: 1;
		pointer-events: auto;
		z-index: 9999
	}

	.main-nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 1rem
	}

	.main-nav__list > li {
		width: 100%
	}

	.main-nav__list > li > a, .main-nav__list > li > span {
		display: block;
		width: 100%;
		padding: .5rem 0;
		margin: 0
	}

	.main-nav__list > li > a::after, .main-nav__list > li > span::after {
		display: none
	}

	.main-nav .menu-item-has-children {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.main-nav .menu-item-has-children .sub-menu__arrow {
		right: 0;
		top: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		pointer-events: auto
	}

	.main-nav .sub-menu {
		display: none
	}

	.main-nav .sub-menu a {
		font-size: 1.2rem;
		font-weight: 300
	}
}

@media (max-width: 1000px) {
	.columns.col-3 .columns__item {
		width: calc(100% / 2 - 2rem)
	}

	.columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
		width: calc(100% / 3 - 2rem)
	}

	.icon-blocks__item {
		width: calc(100% / 3)
	}
}

@media screen and (max-width: 900px) {
	:root {
		--offsets: 16px
	}
}

@media (max-width: 900px) {
	.wp-block-columns.col-3, .wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
		-ms-grid-columns:(1fr) [ 2 ];
		grid-template-columns:repeat(2, 1fr)
	}
}

@media (max-width: 800px) {
	.columns.col-2 .columns__item {
		width: calc(100% - 2rem)
	}
}

@media (max-width: 750px) {
	.columns.col-3 .columns__item {
		width: calc(100% - 2rem)
	}

	.columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
		width: calc(100% / 2 - 2rem)
	}

	.wp-block-columns.col-2, .wp-block-columns.col-3, .wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
		-ms-grid-columns: 1fr;
		grid-template-columns:1fr
	}
}

@media (max-width: 700px) {
	html {
		font-size: 15px
	}

	.mobile-button {
		display: block
	}

	.slider__content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.slider__title {
		text-align: center
	}

	.slider__button {
		margin-left: 0;
		margin-top: 1rem
	}
}

@media screen and (max-width: 700px) {
	#cookie-law-div p {
		padding-bottom: 36px
	}

	.acceptButton {
		left: calc(50% - 60px)
	}
}

@media (max-width: 650px) {
	.main-nav .sub-menu {
		max-width: 100%
	}

	.main-nav .sub-menu a {
		font-size: 1rem
	}

	.icon-blocks__item {
		width: calc(100% / 2)
	}
}

@media (max-width: 600px) {
	.promocode__controls {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.promocode__button {
		max-width: none;
		margin-top: .5rem
	}

	.promocode__text {
		margin-left: 0;
		text-align: center
	}

	#cookie-law-div {
		border-radius: 0;
		max-width: 100%;
		right: 0;
		bottom: 0
	}
}

@media screen and (max-width: 600px) {
	.acceptButton {
		top: 100px !important
	}

	#cookie-law-div p {
		padding-bottom: 50px
	}
}

@media (max-width: 550px) {
	.page-header__buttons {
		margin: 0 -.2rem
	}

	.page-header__buttons a, .page-header__buttons button {
		margin: 0 .2rem
	}

	.columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
		width: calc(100% - 2rem)
	}

	.page-footer__logo {
		text-align: center
	}
}

@media (max-width: 500px) {
	html {
		font-size: 14px
	}

	.page-header__buttons {
		width: 100%;
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
		text-align: center;
		margin-top: 1rem
	}

	.comment-form__button, .comment-form__input {
		width: calc(100% - 20px)
	}
}

@media screen and (max-width: 400px) {
	.acceptButton {
		top: 127px !important
	}
}

.breadcrumbs{
	padding: 0;
	color: #fff;
	background-color: #013266;
}

.breadcrumbs__current, .breadcrumbs__link{
	color: #fff;
}

.breadcrumbs__separator{
	color: #fff;
}



.howToBlockContent__name{
	padding-top: 26px!important;
	margin-bottom: 10px;
}

.howToBlock p{
	margin-bottom: 10px;
}

.toc{
	width: 100%;
}

p.toc__title{
	margin-top: 0;
}

.screnshotsGall{
	display: flex;
}

.screnshotsGall__item{
	margin-right: 10px;
}

.screnshotsGall__item:last-child{
	margin-right: 0;
}

@media only screen and (max-width: 750px){


	.screnshotsGall{
		width: 100%;
		max-width: 980px;
		overflow-x: auto;
		padding-bottom: 15px;
	}

	.screnshotsGall__item{
		width: 80%;
		min-width: 320px;
		max-width: 325px;
		margin-right: 15px;
	}


}

.footer__social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__social-item {
	margin: 5px 10px;
}

.footer__social-link {
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 100%;
	outline: none;
	background-color: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer__social-link:hover {
	opacity: 0.7
}

.footer__social-link .get-image{
	margin: 0;
	width: 100%;
	height: 100%;
}

.footer__social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1000px) {
	.footer__social-list {
		flex-basis: 100%;
	}
}

/* bonus */
.get-image {
	margin: 0;
	display: flex;
}

.promocode {
	display: flex;
	gap: 8px;
	grid-row: 3/4;
	grid-column: 1/2;
}

.promocode-field {
	flex: 1 1;
	color: #F9CB16;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	border-radius: 8px;
	border: 2px dashed #F9CB16;
	padding: 12px;
	max-width: 220px;
}

.promocode .copy-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px 8px;
	border-radius: 8px;
	color: #fff;
	background: rgba(255, 255, 255, 0.10);
	border: none;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.bonus{
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	grid-template-columns: 1fr auto;
	border-radius: 12px;
	border: 2px solid #fa5800;
	background-color: #003266;
	padding: 20px;
	width: 100%;
	gap: 8px 12px;
	min-height: 240px;
	height: 100%;
}

.bonus._anim-border{
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: none;
}

.bonus._anim-border:before,
.bonus._anim-border:after{
	content: '';
	position: absolute;
	margin: auto;
}

.bonus._anim-border:before{
	width: 1000px;
	top: 0;
	height: 1000px;
	right: 0;
	bottom: 0;
	left: -200px;
	background-color: #003266;
	background: rgb(34,193,195);
	background: conic-gradient(#fa5800, rgb(0, 50, 102));
	animation: rotate 2s linear infinite;
	z-index: -1;
}

.bonus._anim-border:after{
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	background-color: #003266;
	border-radius: 12px;
	z-index: 0;
}


.bonus._anim-border > *{
	z-index: 1;
}

.bonus b,
.bonus strong{
	color: #fa5800;
	text-shadow: 0px 0px 8px rgba(250, 88, 0, 0.50);
}

.bonus .bonus__title{
	grid-row: 1/2;
	grid-column: 1/2;
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	text-transform: uppercase;
	margin: 0;
	color: #fff;
}

.bonus .bonus__description{
	grid-row: 2/3;
	grid-column: 1/2;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	color: #fff;
	margin-top: 0;
}

.bonus .get-image{
	grid-row: 1/-1;
	grid-column: 2/3;
	min-width: 146px;
}

.bonus .get-image img {
	object-fit: contain;
}

.bonus .promocode{
	margin-top: 12px;
	padding: 0;
}

.bonus__button {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 320px;
	justify-content: space-between;
	border-radius: 8px;
	grid-row: 4/5;
	grid-column: 1/2;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	border: none;
	width: fit-content;
	cursor: pointer;
}

.bonus__button._gift-btn {
	color: #fff;
	background-color: #fa5800;
	padding: 12px 12px 12px 64px;
	border: 1px solid #fa5800;
	transition: 0.2s ease-in-out;
}

.bonus__button._gift-btn:hover {
	background-color: transparent;
	border-color: #fff;
}

.bonus.accented .bonus__button {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff
}

.bonus.accented .bonus__button:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: var(--main-accent-bg-color)
}

.bonus__button._arrow-btn {
	color: #fff;
	background-color: transparent;
	border: 1px solid #fa5800;
	padding: 12px;
	transition: 0.2s ease-in-out;
}

.bonus__button._arrow-btn:hover {
	background-color: #fa5800;
	color: #fff;
}

.bonus__button._gift-btn:before {
	content: '';
	position: absolute;
	top: -2px;
	left: 6px;
	width: 52px;
	min-width: 52px;
	height: 52px;
	background-image: url(../images/mini-gift.webp);
	background-position: center;
	background-repeat: no-repeat;
	animation: move 2s infinite;
}

.bonus__button._arrow-btn:after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-image: url(../images/btn-arrows.svg);
	background-position: center;
	background-repeat: no-repeat;
}


@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

@keyframes move{
	50%{
		transform: translateY(-5px) rotate(15deg);
	}
	70%{
		transform: translateY(-5px) rotate(5deg)
	}
}


@media (max-width: 1200px) {
	.bonus .bonus__title {
		grid-row: 1/2;
		grid-column: 1/3;
	}

	.bonus .bonus__description {
		grid-row: 2/3;
		grid-column: 1/2;
	}

	.bonus .get-image {
		min-width: 78px;
		grid-row: 2/3;
		grid-column: 2/3;
		align-self: start;
		max-width: 110px;
	}

	.bonus .promocode {
		grid-row: 3/4;
		grid-column: 1/3;
	}

	.bonus .promocode-field {
		max-width: unset;
	}

	.bonus .bonus__button {
		grid-row: 4/5;
		grid-column: 1/3;
	}

	.bonus__button {
		min-width: unset;
		width: 100%;
	}
}

/* bonus */
/* winners */
.winners {
	margin-top: 1rem;
	display: flex;
}

.winners .winners__title {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 800;
	line-height: 24px;
	color: #fff;
	background-color: #003266;
	padding: 8px;
	border-radius: 4px 0 0 4px;
}

.winners .winners__rline {
	display: flex;
	align-items: center;
	flex: 1 1;
	background-color: #084e98;
	overflow: hidden;
	width: max-content;
	border-radius: 0 4px 4px 0;
}

.winners .winners__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding-left: 100%;
	animation: scroll 40s linear infinite;
}

.winners .winners__person {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #D2D2D2;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	white-space: nowrap;
	margin-left: 32px;
}

.winners .winners__person:before {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-image: url(../images/award.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.winners .winners__reward {
	color: #FFF;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	margin-right: 4px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - 3px));
	}
}
/* winners */
/* About block-table */
.about{
	border: unset;
	background-color: unset;
}

.about tbody{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about .about__about,
.about .about__game-types{
	flex: 0 1 330px;
}

.about .about__payment-methods{
	flex: 1 1;
}

.about tr{
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 12px;
	border: 2px solid #fa5c02;
	background: #003266;
	padding: 16px;
}

.about tr td{
	border: unset;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #fff;
	padding: 0;
}
.about tr td:first-child{
	font-size: 23px;
	font-weight: 800;
	line-height: 28px;
	margin: 0;
	padding: 0;
}

.about tr td p{
	color: #fff;
	margin: 0;
}

.about tr td p span{
	color: #fa5c02;
	font-weight: 800;
}

.about tr.about__about td p{
	padding: 16px 0;
}

.about tr.about__about td p:not(:last-child),
.about tr.about__game-types td p:not(:last-child){
	border-bottom: 1px solid rgba(250, 92, 2, 0.3);
}

.about tr.about__about td p:first-child,
.about tr.about__game-types td p:first-child{
	padding-top: 0;
}

.about tr.about__game-types td p{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.about tr.about__game-types td p:last-child{
	padding-bottom: 0;
}

.about .about__game-types img{
	max-width: 32px;
}

.about .about__payment-methods{
	min-width: 660px;
}

.about .about__payment-methods td:last-child{
	display: flex;
	flex-wrap: wrap;
}

.about .about__payment-methods td{
	display: flex;
}

.about .about__payment-methods td:last-child .col,
.about .about__payment-methods td:last-child .about__mindep,
.about .about__payment-methods td:last-child .about__minwit {
	flex: 1 1 50%;
}

.about .about__payment-methods td:last-child .about__currencies{
	flex: 1 1 100%;
	border-bottom: 1px solid rgba(250, 92, 2, 0.3);
	padding-bottom: 16px;
	padding-top: 16px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.about .about__payment-methods td:last-child .about__deposit,
.about .about__payment-methods td:last-child .about__withdrawal{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding-left: 0;
	margin-top: 12px;
}

.about .about__payment-methods td:last-child .about__mindep,
.about .about__payment-methods td:last-child .about__minwit{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding-top: 16px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.about .about__payment-methods td:last-child .about__mindep span,
.about .about__payment-methods td:last-child .about__minwit span{
	font-weight: 800;
}

.about .about__payment-methods img{
	max-width: 34px;
}

@media (max-width: 1100px) {
	.about .about__payment-methods td .col:not(:first-child){
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.about tr.about__about td p:last-child{
		padding-bottom: 0;
	}

	.about .about__game-types > td{
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}

	.about .about__game-types > td > p{
		flex: 1 1 calc(50% - 10px);
	}

	.about tr.about__about td p:not(:last-child),
	.about tr.about__game-types td p:not(:last-child){
		border-bottom: unset;
	}

	.about tr.about__game-types td p:last-child{
		padding-bottom: 12px;
	}

	.about .about__payment-methods td:last-child .col,
	.about .about__payment-methods td:last-child .about__mindep,
	.about .about__payment-methods td:last-child .about__minwit{
		flex: 1 1 50%;
		padding: 0;
	}

	.about .about__payment-methods td:last-child .about__mindep,
	.about .about__payment-methods td:last-child .about__minwit{
		margin-top: 16px;
	}

	.about .about__payment-methods td:last-child .col{
		flex: 1 1 100%;
		padding-bottom: 16px;
		margin-top: 16px;
	}

	.about .about__payment-methods td:last-child .about__mindep{
		border-right: 1px solid rgba(250, 92, 2, 0.3);
	}

	.about .about__payment-methods td:last-child .col:first-child{
		padding-top: 0;
		margin-top: 0;
	}

	.about .about__payment-methods td:last-child .col:last-child{
		padding-bottom: 0;
	}
}

.col{
	display: flex;
	flex-direction: column;
}

.about .about__payment-methods td .col{
	border-bottom: 1px solid rgba(250, 92, 2, 0.3);
	padding-bottom: 16px;
}

.about .about__payment-methods td .col:not(:last-of-type){
	border-right: 1px solid rgba(250, 92, 2, 0.3);
	padding-right: 16px;
}

.about .about__payment-methods td .col:not(:first-child){
	padding-left: 16px;
}

@media (max-width: 767px) {
	.about .about__payment-methods td .col:not(:first-child){
		padding-left: 0;
	}

	.about .about__payment-methods td .col:not(:last-of-type){
		border-right: unset;
	}
}

.about .about__bonuses{
	flex: 0 1 485px;
}

.about .about__bonuses-list{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about .about__bonuses-list li{
	padding: 6px 12px;
	border-radius: 4px;
	border: 1px solid #72AEE6;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.about .about__devices,
.about .about__support{
	flex: 1 1 ;
}

.about .about__devices-list,
.about .about__support-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.about .about__devices-list li,
.about .about__support-list li{
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 calc(50% - 20px);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.about .about__support img{
	max-width: 32px;
}

.about .about__devices img{
	max-width: 32px;
}

.about .about__software{
	min-width: 280px;
}

.about .about__software img{
	max-width: 146px;
}

.about .about__software td{
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 280px;
}

@media (max-width: 1460px) {
	.about .about__about,
	.about .about__game-types{
		flex: 0 1 auto;
	}

	.about .about__payment-methods{
		min-width: unset;
		flex: 1 1 50%;
	}
}

@media (max-width: 1100px) {
	.about .about__about,
	.about .about__game-types,
	.about .about__payment-methods,
	.about .about__bonuses{
		flex: 1 1 calc(50% - 20px);
	}

	.about .about__devices,
	.about .about__software,
	.about .about__support{
		flex: 1 1 30%;
	}

	.about .about__software{
		min-width: unset;
	}
}

@media (max-width: 767px) {
	.about .about__about,
	.about .about__game-types,
	.about .about__payment-methods,
	.about .about__bonuses,
	.about .about__devices,
	.about .about__software,
	.about .about__support{
		flex: 1 1 100%;
	}
}

/* slots */
.slots .slots__list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	flex-wrap: wrap;
	gap: 20px;
	padding: 0;
}

.slots .slots__item{
	position: relative;
	height: 220px;
	border-radius: 12px;
	border: 2px solid #fa5c02;
	overflow: hidden;
	transition: 0.2s;
}

.slots .get-image img{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 0;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.slots .slots__content{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 16px;
	background-color: rgba(0, 50, 102, 0.8);
	z-index: 1;
	transition: 0.2s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
}

.slots .slots__item:hover .slots__content{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.slots .slots__text{
	text-align: center;
	margin-top: 0;
	margin-bottom: 5px;
	color: #D2D2D2;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.slots .slots__title{
	text-align: center;
	font-size: 17px;
	font-weight: 800;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: auto;
	color: #fff;
}

.slots__button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 10px 10px 12px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	border: unset;
	width: auto;
	cursor: pointer;
}

.slots__button._cash{
	background: #fa5c02;
	border: 2px solid #fa5c02;
	color: #fff;
	margin-bottom: 8px;
	transition: 0.2s ease-in-out;
}

.slots__button._cash:hover{
	background: transparent;
}

.slots .slots__demo-button{
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .8);
	background-color: unset;
	transition: 0.2s ease-in-out;
}

.slots .slots__demo-button:hover{
	color: #000;
	background: #fff;
}

.slots__button._cash:after,
.slots .slots__demo-button:after{
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
}

.slots__button._cash:after{
	background-image: url("../images/Cash.svg");
}

.slots .slots__demo-button:after{
	background-image: url("../images/Play.svg");
}

@media (max-width: 1200px) {
	.slots .slots__list{
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 850px) {
	.slots .slots__list{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.slots .slots__list{
		grid-template-columns: 1fr;
	}

	.slots .slots__item{
		height: auto;
	}

	.slots .get-image img{
		position: relative;
	}

	.slots .slots__item .slots__content{
		position: relative;
		display: flex;
		height: auto;
		background-color: #003266;
		padding: 8px 12px 12px 12px;
		height: 100%;
	}

	.slots .slots__item .slots__content {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.slots .slots__text,
	.slots .slots__title{
		text-align: left;
	}

	.slots .slots__title{
		margin-bottom: 8px;
	}
}

/* Popup */
.popup{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 39, 23, 0.90);
	z-index: 990;
}

.popup._active{
	display: block;
}

.popup .popup__win{
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 860px;
	height: 580px;
	background-color: #F5A6B7;
	border-radius: 12px;
	overflow: hidden;
}

.popup .popup__header{
	display: flex;
	gap: 24px;
	padding: 12px;
}

.popup .popup__title{
	display: flex;
	align-items: center;
	color: #FFF;
	font-size: 23px;
	font-weight: 800;
	line-height: 28px;
}

.popup .popup__buttons{
	display: flex;
	align-items: center;
	flex: 1 1;
}

.popup .slots__button{
	min-width: 296px;
	margin-bottom: 0;
}

.popup .popup__cross{
	width: 44px;
	min-width: 44px;
	height: 44px;
	background-image: url("../images/cross.svg");
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.popup .popup__content{
	position: relative;
	flex: 1 1;
}

.popup .popup__content iframe{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.popup .popup__header{
		flex-wrap: wrap;
		gap: 8px;
	}

	.popup .popup__title{
		order: 1;
	}

	.popup .popup__buttons{
		order: 3;
		flex: 1 1 100%;
	}
	.popup .slots__button{
		width: 100%;
		min-width: unset;
	}

	.popup .popup__cross{
		order: 2;
		margin-left: auto;
	}
}

.cards .cards__list {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	gap: 20px;
	list-style: none;
}

.cards .cards__item {
	display: flex;
	gap: 16px;
	flex: 1 1 calc(50% - 10px);
	border-radius: 12px;
	border: 2px solid #fa5c02;
	background: #003266;
	overflow: hidden;
}

.cards .get-image {
	height: 100%;
}

.cards .get-image img {
	object-fit: cover;
}

.cards .cards__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 16px 16px 0;
}

.cards .cards__title {
	color: #fff;
	font-size: 23px;
	font-weight: 800;
	line-height: 28px;
	margin: 0;
}

.cards .cards__description {
	color: #D2D2D2;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	flex: 1 1;
	margin: 0;
}

.cards .bonus__button {
	width: fit-content;
}

@media (max-width: 1200px) {
	.cards .cards__item {
		flex: 1 1 100%;
	}
}

@media (max-width: 550px) {
	.cards .cards__content {
		flex: 1 1 70%;
	}
}

.page-header__buttons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.page-header__buttons a,
.page-header__buttons button,
.content-button a,
.content-button button {
	margin: 0;
	align-items: center;
	border: none;
	border-radius: 50px;
	color: #fff;
	display: flex;
	font-weight: 500;
	justify-content: center;
	font-size: 18px;
	line-height: 1.2;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}


.page-header__buttons .accent-button.fill-button {
	background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
	box-shadow: 0 10px 30px #fa410066;
	border: none;
	color: #fff;
}

.page-header__buttons .accent-button.fill-button:hover {
	background-image: linear-gradient(0deg,#fa5e00 0,#fa7c00);
	box-shadow: 0 20px 30px #fa410066;
}

.page-header__buttons .accent-button.outline-button {
	background-image: linear-gradient(0deg,#428cdc 0,#509aea 97%,#509aea);
	border: none;
	color: #fff;
}

.page-header__buttons .accent-button.outline-button:hover {
	background-image: linear-gradient(180deg,#428cdc 0,#509aea 97%,#509aea);
}

.content-button a,
.content-button button {
	background-image: linear-gradient(0deg,#87bc17,#88c504);
	box-shadow: 0 10px 30px #87bb1866;
}

.content-button a,
.content-button button {
	display: inline;
	width: fit-content;
}

.content-button a:hover,
.content-button button:hover {
	background-image: linear-gradient(0deg,#92c91d 0,#9ada0f);
	box-shadow: 0 20px 30px #87bb1866;
}

.main-nav .menu-item-has-children .sub-menu__arrow svg {
	fill: #fff;
}

.page-header__burger span {
	background-color: #fff;
}

.home .wp-container-3 + .cards {
	margin-top: -1.5rem;
}

@media (max-width: 767px) {
	.home .wp-container-3 + .cards {
		margin-top: -24px;
	}

	.wp-container-3 {
		gap: 20px !important;
	}
}

.wrapper > .wp-block-video {
	padding: 0 var(--offsets);
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

* + .wp-block-video {
	margin-top: 1rem;
}

@media (max-width: 600px) {
	.slots .slots__list {
		grid-template-columns: 1fr 1fr;
	}
}

* + .video-v2 {
	margin-top: 1rem;
}

.video-v2 {
	display: flex;
	align-items: center;
}

.video-v2__container {
	position: relative;
	width: 100%;
	max-width: 800px;
}

.video-v2.align-left {
	justify-content: flex-start;
}

.video-v2.align-center {
	justify-content: center;
}

.video-v2.align-right {
	justify-content: flex-end;
}

.video-v2__player {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 16/9;
}

.video-v2__button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.video-v2._active .video-v2__button {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.video-v2._active .video-v2__player {
	cursor: pointer;
}

.video-v2__button-shape {
	fill: rgba(0,0,0,0.6);
}

.video-v2__button-icon {
	fill: #ffffff;
}

.video-v2__button:hover .video-v2__button-shape {
	fill: #ff0000;
}

.video-v2__button svg path {
	transition: all 0.3s ease-in-out;
}

p + .container {
	margin-top: 1rem;
}

.page-footer {
	margin-top: 2rem;
}

.toc-auto {
	position: relative;
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 1rem 0;
	background-color: #f3f4f4;
	border-radius: 10px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}

.toc-auto__title {
	margin: 0;
}

.toc-auto.active .toc-auto__toggle {
	transform: rotate(180deg);
}

.toc-auto.active .toc-auto__toggle:after {
	display: none;
}

.toc-auto__toggle {
	background-color: transparent;
	border: none;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.toc-auto__toggle:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.toc-auto ul {
	flex-basis: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: none;
}

.toc-auto.active ul {
	display: block;
}

.toc-auto a {
	padding-bottom: 0.5rem;
}

.page-footer__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.page-footer__wrapper-links {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.footer__social-list {
	justify-content: center;
	align-items: center;
}

.other-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.other-links img {
	max-height: 30px;
	width: fit-content;
	object-fit: contain;
}

.footer__social-list {
	gap: 16px;
}

.footer__social-item {
	margin: 0;
}

.page-footer__copyright-text {
	margin: 0;
	grid-column: 1 / -1;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 16px;
}

.page-footer__logo img {
	margin: 0 auto;
	max-height: 60px;
	object-fit: contain;
}

.page-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px 32px;
	flex-wrap: wrap;
}

.page-footer__list a:hover {
	color: #fa5800;
}

.page-footer__dmca {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
}

@media (max-width: 767px) {
	.page-footer__container {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.page-footer__wrapper-links {
		flex-direction: column;
		gap: 16px;
	}

	.page-footer__logo {
		display: flex;
		justify-content: center;
	}
}

.lang-switch {
	margin: 0 0 0 12px;
	border-radius: 4px;
	padding: 8px;
	position: relative;
	border: 2px solid #fa5c02;
	background: #003266;
	display: flex;
	z-index: 200;
}

.lang-switch__list {
	margin-top: 0;
	padding-top: 8px;
	position: absolute;
	top: 100%;
	left: -2px;
	right: -2px;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	padding: 8px;
	border-radius: 0 0 4px 4px;
	border: 2px solid #fa5c02;
	border-top: none;
	background-color: #003266;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.lang-switch__item, .lang-switch__link {
	display: flex;
}

.lang-switch:hover {
	border-radius: 4px 4px 0 0;
	border-bottom-color: transparent;
}

.lang-switch:hover .lang-switch__list {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

@media (max-width: 550px) {
	.page-header__buttons .accent-button {
		flex-grow: 1;
	}
}
.cards .cards__content {
	flex: 1 1;
}

.bonus:not(:has(img)) {
	max-width: 450px;
	grid-template-columns: 1fr;
}


.bonus:not(:has(img)) .bonus__title {
	text-align: center;
}

.bonus:not(:has(img)) .bonus__description {
	text-align: center;
}

.bonus:not(:has(img)) .promocode-field {
	flex-grow: 1;
}

.bonus:not(:has(img)) .promocode .copy-btn {
	flex-grow: 1;
	justify-content: center;
}

.bonus:not(:has(img)) .bonus__button {
	width: 100%;
	justify-content: center;
	padding: 12px;
}

@media (max-width: 450px) {
	.bonus:not(:has(img)) .promocode {
		flex-direction: column;
	}
}

.copy-btn .copied {
	display: none;
}

.copy-btn.active .copied {
	display: block;
}

.copy-btn.active .copy {
	display: none;
}

* + .wp-block-heading {
	margin-top: 1rem;
}

/* Game */
.game-container:not(:first-child) {
	margin-top: 1rem;
}

.page .melbetappbd-wrapper:first-child > .game-container:last-child {
	padding-bottom: 2rem;
}

.game {
	position: relative;
	border-radius: 8px;
	box-shadow: var(--box-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	aspect-ratio: 1280.00/656.41;
	width: 100%;
	min-height: 280px;
}

.game > img {
	position: absolute;
	inset: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
}

.game:after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.88);
	z-index: 2;
}

.game > :not(img) {
	z-index: 3;
}

.game__link {
	background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
	box-shadow: 0 10px 30px #fa410066;
	border: none;
	color: #fff;
}

.game__demo {
	background-image: linear-gradient(0deg,#428cdc 0,#509aea 97%,#509aea);
	border: none;
	color: #fff;
}

/* Game popup */
.game-popup {
	position: fixed;
	inset: 0;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,.7);
	z-index: 900;
}

.game-popup._active {
	display: flex;
}

.game-popup__content {
	display: flex;
	flex-direction: column;
	background: #212121;
	color: #FFF;
	aspect-ratio: 1280.00/656.41;
	border-radius: 8px;
	width: 100%;
	max-width: 1200px;
	height: 100%;
	max-height: 700px;
}

.game-popup__header {
	display: flex;
	align-items: center;
	padding: 12px;
	gap: 4px;
}

.game-popup__title {
	font: var(--font-button);
	flex: 1 1;
}

.game-popup__close {
	display: block;
	width: 24px;
	height: 24px;
	background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="5.63623" y="16.9497" width="16" height="2" transform="rotate(-45 5.63623 16.9497)" fill="white"/><rect x="7.05029" y="5.63599" width="16" height="2" transform="rotate(45 7.05029 5.63599)" fill="white"/></svg>') no-repeat center / 100%;
	border: none;
}

.game-popup__body {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	flex: 1 1;
}

.game-popup__body iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border: unset;
}

.game-popup__footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px;
}

@media (max-width: 1024px) {
	.game-popup__content {
		width: 100%;
		height: 100%;
		max-width: unset;
		aspect-ratio: unset;
		border-radius: unset;
	}
}

/* WP BLOCK */
.wp-block-heading:not(.has-text-color) {
	color: var(--color-heading);
}

.wp-block-heading span {
	color: var(--primary-accent);
}

* + .wp-block-table {
	margin-top: 1rem;
}

.wp-block-table {
	overflow: auto
}

.wp-block-table table {
	overflow: hidden;
	border: none;
	border-collapse: collapse;
	width: 100%;
}

.wp-block-table thead {
	border: none
}

.wp-block-table td, .wp-block-table th {
	border: 1px solid #000;
	padding: 12px;
}

.wp-block-table th {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: #fff;
	background-color: #042e5d;
}


ol.wp-block-list,
ul.wp-block-list {
	display: flex;
	flex-direction: column;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 0 0 24px;
	gap: 8px;
}

* + ol.wp-block-list,
* + ul.wp-block-list {
	margin-top: 1rem;
}

* + .wp-block-image {
	margin-top: 1rem;
}

.has-text-align-center {
	text-align: center;
}
/* WP BLOCK */