* {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

a img {
	border: none;
}

b {
	font-weight: 900;
}

body {
	color: #2F0F0E;
}

.page {
	overflow-x: hidden;
}

.section {
	width: 100%;
	max-width: 1920px;
	min-width: 320px;
	margin: auto;
	position: relative;
}

.wrapper {
	padding: 15px;
	max-width: 1150px;
	position: relative;
	display: flex;
	margin: auto;
	flex-direction: column;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.wrapper.wrapper-wide {
	max-width: 1220px;
}

.button {
	display: flex;
	width: 195px;
	height: 46px;
	padding: 5px 15px;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	text-align: center;
	overflow: hidden;
	font-size: 15px;
	font-weight: 700;
	border: none;
	outline: none;
	cursor: pointer;
	text-transform: uppercase;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	border-radius: 8px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.button.button-anim {
	-webkit-animation: 1.2s ease-in-out 1.1s normal none infinite running trambling-animation;
	-moz-animation: 1.2s ease-in-out 1.1s normal none infinite running trambling-animation;
	-o-animation: 1.2s ease-in-out 1.1s normal none infinite running trambling-animation;
	animation: 1.2s ease-in-out 1.1s normal none infinite running trambling-animation;
}

@keyframes trambling-animation {
   0%, 50%, 100% {
     transform: rotate(0deg);
     -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
     -o-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
   }
   10%, 30% {
     transform: rotate(-2deg);
     -webkit-transform: rotate(-2deg);
     -moz-transform: rotate(-2deg);
     -o-transform: rotate(-2deg);
     -ms-transform: rotate(-2deg);
   }
   20%, 40% {
     transform: rotate(2deg);
     -webkit-transform: rotate(2deg);
     -moz-transform: rotate(2deg);
     -o-transform: rotate(2deg);
     -ms-transform: rotate(2deg);
   }
}

.button:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
 }

.button.button-orange {
	color: #2F0F0E;
	background-color: #F7BE1D;
}

.button.button-red {
	background-color: #AC0000;
}

.section-h2, h2 {
	font-size: 28px;
	line-height: 120%;
	font-weight: 700;
}

.section-h2 span, h2 span {
	color: #F7BE1D;
}

.container p,
p.container-p {
	font-size: 18px;
	margin-top: 10px;
	line-height: 25px;
}

.container p span,
p.container-p span {
	color: #F7BE1D;
	font-weight: 900;
}

.top-menu {
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	position: fixed;
	background: #2D0403;
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

.top-menu .wrapper {
	padding: 0 15px;
	flex-direction: row;
	align-items: center;
}

.top-menu .top-menu-logo a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}

.top-menu .top-menu-logo img {
	max-width: 79px;
}

.top-menu .top-menu-items {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: 35px;
}

.top-menu .top-menu-items li {
	list-style: none;
}

.top-menu .top-menu-items li a {
	text-decoration: none;
	display: block;
	padding: 20px 24px;
	font-size: 14px;
	position: relative;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 120%;
	color: #FFFFFF;
}

.top-menu .top-menu-items li a:before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 14px;
	height: 2px;
	border-radius: 2px;
	background: #F7BE1D;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.top-menu .top-menu-items li.active a:before,
.top-menu .top-menu-items li a:hover:before {
	left: 24px;
	right: 24px;
}

.top-menu .top-menu-items li > ul {
	position: absolute;
	z-index: 11;
	display: none;
	background: #2D0403;
}

.top-menu .top-menu-items li:hover > ul {
	display: block;
}

.top-menu .menu-burger-mobile {
	width: 42px;
	height: 42px;
	position: absolute;
	right: 15px;
	top: 20px;
	cursor: pointer;
	display: none;
}

.top-menu .menu-burger-mobile .burger-line {
	width: 22px;
	height: 2px;
	margin: 4px auto 0;
	border-radius: 2px;
	position: relative;
	background-color: #FFFFFF;
	transition-duration:0.2s;
	-o-transition-duration:0.2s;
	-moz-transition-duration:0.2s;
	-webkit-transition-duration:0.2s;
}

.top-menu .menu-burger-mobile .burger-line1 {
	margin-top: 14px;
}

.section1 {
	color: #FFFFFF;
	background: url("../img/section1_bg.webp") no-repeat bottom center / cover;
}

.section1 .wrapper {
	min-height: 560px;
	align-items: center;
	flex-direction: row;
	padding-right: 480px;
}

.section1 .wrapper:after {
	content: "";
	right: 0;
	position: absolute;
	width: 472px;
	height: 319px;
	background: url("../img/section1_img.webp") no-repeat top center / contain;
}

.section1 h1 {
	font-weight: 900;
	font-size: 32px;
}

.section1 p {
	margin-top: 8px;
}

.section1 h1 span,
.section1 p span {
	color: #F7BE1D;
}

.section1 .row-buttons {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
}

.section1 .row-buttons .button {
	margin-right: 24px;
}

.section2 .wrapper {
	padding-bottom: 0;
}

.drop-select {
	background-color: #FFE8A3;
	border-radius: 14px;
	overflow: hidden;
}

.drop-select .drop-select-default {
	font-size: 18px;
	line-height: 25px;
	padding: 18px 66px 18px 30px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	text-transform: uppercase;
	transition:all 400ms;
	-o-transition:all 400ms;
	-moz-transition:all 400ms;
	-webkit-transition:all 400ms;
}

.drop-select .drop-select-default:after {
	content: "";
	position: absolute;
	width: 18px;
	height: 11px;
	right: 30px;
	top: 50%;
	margin-top: -5px;
	background: url("../img/drop_icon.svg") no-repeat top center;
	transition:all 400ms;
	-o-transition:all 400ms;
	-moz-transition:all 400ms;
	-webkit-transition:all 400ms;
}

.drop-select.active .drop-select-default {
	background-color: #F7D783;
}

.drop-select.active .drop-select-default:after {
	transform:rotate(-180deg);
	-o-transform:rotate(-180deg);
	-ms-transform:rotate(-180deg);
	-moz-transform:rotate(-180deg);
	-webkit-transform:rotate(-180deg);
}

.drop-select .drop-select-container {
	display: none;
	color: #213D4A;
	padding: 18px 30px 18px;
	line-height: 22px;
	font-size: 16px;
	border-radius: 0 0 14px 14px;
}

.drop-select .drop-select-container ul,
.drop-select .drop-select-container ol {
	color: #2F0F0E;
	padding-left: 15px;
}

.drop-select .drop-select-container ul li,
.drop-select .drop-select-container ol li {
	margin-bottom: 30px;
	margin-top: 30px;
	font-size: 18px;
}

.drop-select .drop-select-container ul li:first-child,
.drop-select .drop-select-container ol li:first-child,
.drop-select .drop-select-container ul li:last-child,
.drop-select .drop-select-container ol li:last-child {
	margin-top: 0;
	margin-bottom: 0;
}

.drop-select .drop-select-container ul li a,
.drop-select .drop-select-container ol li a {
	color: #2F0F0E;
	text-decoration: none;
}

.drop-select .drop-select-container ul li a:hover,
.drop-select .drop-select-container ol li a:hover {
	text-decoration: underline;
}

.section2 .container {
	padding-left: 445px;
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	min-height: 520px
}

.section2 .container:before {
	content: "";
	position: absolute;
	width: 377px;
	height: 568px;
	left: 0;
	bottom: 0;
	background: url("../img/section2_img.webp") no-repeat top center / contain;
}

.section2 .container .column-buttons {
	margin-top: 24px;
}

.section3 {
	color: #FFFFFF;
	margin-top: -60px;
	background: url("../img/bg1.webp") no-repeat top center / cover;
}

.section3 .wrapper {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section3 .container {
	margin-top: 20px;
}

.section3 .container,
.section3 .container .items-group {
	display: flex;
	flex-direction: column;
}

.section3 .container .item {
	color: #FFFFFF;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 10px;
	margin: 7px;
	display: flex;
	padding: 15px;
	flex-grow: 1;
	position: relative;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

.section3 .container .item .item-sticker {
	width: 75px;
	height: 75px;
	z-index: 3;
	position: absolute;
	border-radius: 50%;
	left: -51px;
	top: -12px;
	display: flex;
	font-weight: 500;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	text-align: center;
	color: #FFFFFF;
	background-color: #AC0000;
}

.section3 .container .item .item-logo {
	width: 217px;
	height: 62px;
	margin-left: 20px;
}

.need-anim-scale,
.need-anim-scale-fast {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
}

.need-anim-pulse.active {
	-webkit-animation: pulse 3s forwards;
	-moz-animation: pulse 3s forwards;
	-o-animation: pulse 3s forwards;
	animation: pulse 3s forwards;
}

.need-anim-scale.active {
	-webkit-animation: leaves 2s forwards;
	-moz-animation: leaves 2s forwards;
	-o-animation: leaves 2s forwards;
	animation: leaves 2s forwards;
}

.need-anim-scale-fast.active {
	-webkit-animation: leaves 0.8s forwards;
	-moz-animation: leaves 0.8s forwards;
	-o-animation: leaves 0.8s forwards;
	animation: leaves 0.8s forwards;
}

@keyframes leaves {
	0% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	100% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
	25% {
		transform: scale(1.5);
		-webkit-transform: scale(1.5);
	}
	50% {
		transform: scale(2.0);
		-webkit-transform: scale(2.0);
	}
	50% {
		transform: scale(1.5);
		-webkit-transform: scale(1.5);
	}
	100% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		transform: rotate(-25deg);
		-webkit-transform: rotate(-25deg);
	}
}

.section3 .container .item .item-logo.logo-daddy {
	background: url("../img/logo_daddy.svg") no-repeat center center / contain;
}

.section3 .container .item .item-logo.logo-gama {
	background: url("../img/logo_gama.svg") no-repeat center center / contain;
}

.section3 .container .item .item-logo.logo-cat-casino {
	background: url("../img/logo_cat_casino.svg") no-repeat center center / contain;
}

.section3 .container .item .item-logo.logo-mostbet {
	background: url("../img/logo_mostbet.svg") no-repeat center center / contain;
}

.section3 .container .item .item-title,
.section3 .container .item .item-description {
	font-size: 18px;
	line-height: 23px;
	text-align: center;
	margin-left: 15px;
}

.section3 .container .item .item-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.section3 .container .item .item-buttons .button {
	margin-left: 15px;
}

.section4 .wrapper {
	padding-bottom: 30px;
}

.section4 .section-h2 {
	margin-top: 20px;
}

.section4 .container {
	margin-top: 20px;
}

.section4 .container .item {
	background: #FFE8A3;
	padding: 24px;
	margin-bottom: 8px;
	border-radius: 14px;
	text-align: center;
}

.section5 {
	color: #FFFFFF;
	background: url("../img/bg2.webp") no-repeat bottom center / cover;
}

.section-image-and-text .wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

.section-image-and-text.lines-effect .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}

.section-image-and-text .container {
	display: flex;
	flex-direction: row;
}

.section-image-and-text .container .item.item-img img {
	max-width: 540px;
	border-radius: 14px;
}

.section-image-and-text .container.image-first .item.item-info {
	margin-left: 34px;
}

.section-image-and-text .container.image-second .item.item-info {
	margin-right: 34px;
}

.section-image-and-text .container.image-middle {
	align-items: center;
}

.section-image-and-text .container .item.item-info .section-h2 {
	padding-bottom: 5px;
}

.section-image-and-text .container .item.item-info .column-buttons {
	margin-top: 24px;
}

.lines-effect:before,
.lines-effect:after {
	content: "";
	left: 0;
	right: 0;
	height: 30px;
	position: absolute;
	background: url("../img/repeat_line_bg.webp") repeat-x top left;
}

.lines-effect:before {
	top: 0;
}

.lines-effect:after {
	bottom: 0;
}

.lines-effect.lines-effect-top:after {
	display: none;
}

.lines-effect.lines-effect-bottom:before {
	display: none;
}

.section7 .wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

.section7 .items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 10px;
	justify-content: center;
}

.section7 .items .item {
	width: 258px;
	padding: 25px 15px;
	margin: 10px;
	font-size: 20px;
	line-height: 23px;
	border-radius: 10px;
	text-align: center;
	background: rgba(0, 0, 0, 0.55);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.section7 .items .item .item-img {
	height: 100px;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-webkit-transition-duration: 2s;
}

.need-anim-transform {
	bottom: -80px;
	visibility: hidden;
	position: relative;
}

.need-anim-transform.active {
	bottom: 0;
	visibility: visible;
}

.section7 .items .item .item-img.item-img1 {
	background-image: url("../img/section7_img1.webp");
}

.section7 .items .item .item-img.item-img2 {
	background-image: url("../img/section7_img2.webp");
}

.section7 .items .item .item-img.item-img3 {
	background-image: url("../img/section7_img3.webp");
}

.section7 .items .item .item-img.item-img4 {
	background-image: url("../img/section7_img4.webp");
}

.section7 .items .item .item-img.item-img5 {
	background-image: url("../img/section7_img5.webp");
}

.section7 .items .item .item-img.item-img6 {
	background-image: url("../img/section7_img6.webp");
}

.section7 .items .item .item-img.item-img7 {
	background-image: url("../img/section7_img7.webp");
}

.section7 .items .item .item-img.item-img8 {
	background-image: url("../img/section7_img8.webp");
}

.section7 .items .item .item-title {
	font-weight: 900;
	margin-top: 10px;
}

.section7 .items .item .item-description p {
	margin-top: 5px;
}

.section8 .wrapper {
	padding-bottom: 50px;
}

.section8 .items {
	display: flex;
	flex-direction: column;
}

.section8 .items .item {
	display: flex;
	flex-direction: row;
	margin-top: 24px;
}

.section8 .items .item .item-img {
	margin-top: 5px;
}

.section8 .items .item .item-img img {
	max-width: 226px;
	border-radius: 10px;
	vertical-align: bottom;
}

.section8 .items .item .item-info {
	margin-left: 35px;
}

.section8 .items .item .item-info .item-title {
	font-size: 42px;
	line-height: 100%;
	font-weight: 700;
}

.section8 .items .item .item-info p {
	font-size: 18px;
	line-height: 110%;
	margin-top: 10px;
}

.section8 .items .item .item-info a {
	color: #0A4377;
}

.section8 .items .item .item-info a:hover {
	text-decoration: none;
}

.section9 {
	color: #FFFFFF;
	background: url("../img/bg4.webp") no-repeat top center / cover;
}

.section9 .wrapper {
	padding-top: 50px;
	padding-bottom: 60px;
}

.section9 .container {
	margin-top: 15px;
}

.section9 .drop-select {
	background: rgba(0, 0, 0, 0.55);
	margin-top: 10px;
}

.section9 .drop-select.active .drop-select-default {
	background: none;
}

.section9 .drop-select .drop-select-default:after {
	background: url("../img/drop_icon_white.svg") no-repeat top center;
}

.section9 .drop-select .drop-select-container {
	color: #FFFFFF;
	padding-top: 0;
}

.section9 .drop-select .drop-select-container p:first-child {
	margin-top: 0;
}

.section-texture-bg {
	color: #FFFFFF;
	background: url("../img/bg3.webp") no-repeat center center / cover;
}

.section-light-yellow-bg {
	background-color: #EDE6D1;
}

.logo-center {
	text-align: center;
	background-color: #FFFFFF;
	padding: 10px 15px 10px;
}

.logo-center img {
	max-width: 172px;
	vertical-align: bottom;
}

.footer {
	color: #FFFFFF;
	background-color: #410504;
}

.footer .wrapper {
	padding-bottom: 48px;
}

.footer a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer .container {
	display: flex;
	flex-direction: row;
}

.footer .container.container-links {
	padding-top: 40px;
	justify-content: space-between;
}

.footer .container .links-group {
	width: 165px;
	padding: 0 15px 0;
}

.footer .container .links-group .links-group-title {
	font-size: 18px;
	text-transform: uppercase;
	line-height: 23px;
	font-weight: 500;
}

.footer .container .links-group .links-group-list li {
	list-style: none;
	margin-top: 8px;
	font-size: 14px;
	line-height: 23px;
	position: relative;
}

.footer .container .links-group .links-group-list li a:hover {
	text-decoration: underline;
}

.footer .container .links-group .links-group-list li a.link-lang {
	padding-left: 33px;
}

.footer .container .links-group .links-group-list li a.link-lang:before {
	width: 25px;
	height: 19px;
	content: "";
	left: 0;
	top: 50%;
	margin-top: -10px;
	position: absolute;
}

.footer .container .links-group .links-group-list li a.link-lang.pt:before {
	background: url("../img/flags/flag_br.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.fr:before {
	background: url("../img/flags/flag_fr.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.it:before {
	background: url("../img/flags/flag_it.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.es:before {
	background: url("../img/flags/flag_es.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.de:before {
	background: url("../img/flags/flag_de.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.tr:before {
	background: url("../img/flags/flag_tr.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.pl:before {
	background: url("../img/flags/flag_pl.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.el:before {
	background: url("../img/flags/flag_el.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.cs:before {
	background: url("../img/flags/flag_cs.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.hu:before {
	background: url("../img/flags/flag_hu.png") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.bn:before {
	background: url("../img/flag_bd.svg") no-repeat top center / contain;
}

.footer .container .links-group .links-group-list li a.link-lang.en:before {
	background: url("../img/flag_en.png") no-repeat top center / contain;
}

.footer .logos-list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	padding-top: 35px;
	padding-bottom: 35px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .logos-list li {
	list-style: none;
	margin: 0 20px 0;
}

.footer .logos-list li .logo-item {
	display: block;
}

.footer .logos-list li .logo-item.logo-item1 {
	width: 48px;
	height: 48px;
	background: url("../img/logo1.svg") no-repeat top center / contain;
}

.footer .logos-list li .logo-item.logo-item2 {
	width: 255px;
	height: 33px;
	background: url("../img/logo2.svg") no-repeat top center / contain;
}

.footer .logos-list li .logo-item.logo-item3 {
	width: 121px;
	height: 35px;
	background: url("../img/logo3.svg") no-repeat top center / contain;
}

.footer .logos-list li .logo-item.logo-item4 {
	width: 104px;
	height: 36px;
	background: url("../img/logo4.svg") no-repeat top center / contain;
}

.copyright {
	color: #FFFFFF;
	background-color: #2D0403;
}

.copyright .wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 14px;
	line-height: 23px;
}

.copyright .wrapper b {
	font-weight: 700;
}

.copyright .wrapper span {
	color: #F7BE1D;
}

.android-block {
	display: none;
	margin-top: 20px;
	margin-bottom: 20px;
}

.android-block.active {
	display: block;
}

.android-block-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 110%;
	text-align: center;
}

.android-block-link {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 52px;
	margin: auto;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	padding: 5px 10px 5px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #22B643;
	border-radius: 8px;
	margin-top: 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.android-block-link span {
	position: relative;
	padding-left: 42px;
}

.android-block-link span:before {
	content: "";
	position: absolute;
	width: 32px;
	height: 32px;
	left: 0;
	top: 50%;
	margin-top: -16px;
	background: url("../img/android_icon.svg") no-repeat top center / contain;
}

.arrow-top {
	display: none;
	width: 53px;
	height: 53px;
	position: relative;
	position: fixed;
	bottom: -53px;
	left: 20px;
	cursor: pointer;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.55);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

.arrow-top.active {
	bottom: 20px;
}

.arrow-top:before {
	content: "";
	width: 24px;
	height: 15px;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -12px;
	position: absolute;
	background: url("../img/arrow_top_icon.svg") no-repeat top center;
}
.header__lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.lang-current {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 16px 6px 12px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: border 0.2s;
}

.lang-current:hover, .lang-current:focus {
    border: 1.5px solid #888;
}

.lang-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 110%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 120px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 10;
}

.header__lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-btn {
    display: block;
    padding: 8px 16px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: #f2f2f2;
}

@media (min-width: 1025px) {
    .menu-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__lang-switcher {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .header__lang-switcher {
        display: none;
    }
    .mobile-lang-switcher {
        display: block;
        margin: 20px 0 20px 0;
        text-align: left;
    }
}
@media (min-width: 1025px) {
    .mobile-lang-switcher {
        display: none !important;
    }
}
.item-info {
	width:100%;
}
.page-content {
	padding-top: 100px!important;
	padding-bottom: 50px!important;
	min-height: 50vh!important;
}
.page-content h1 {
	font-size:2rem;
}
.page-content h2, .item-info h2, .container h2 {
	font-size:1.5rem;
	margin-top:10px;
}
.page-content h3, .item-info h3, .container h3 {
	font-size:1.2rem;
	margin-top:10px;
}
.page-content ul {
	margin-top:20px;
}
.page-content ul li {
	margin-left:20px;
}
.page-content p {
	margin-top:20px;
}
.item-info ul, .container ul {
	list-style: disc;
	margin-left: 20px;
	line-height: 21px;
}
.item-info ul li, .container ul li {
	margin-left: 20px;
	font-size:18px;
}
.item-info ol, .container ol {
	list-style: decimal;
	margin-left: 20px;
	line-height: 21px;
}
.item-info ol li, .container ol li {
	margin-left: 20px;
	font-size:18px;
}
.table-wrapper {
	overflow-x: auto;
}
table {
	width:100%;
	background-color:#fff;
	color:#000;
}
table td {
	padding:10px;
}
table tr {
	border-bottom:1px solid #000;
}
table tr:last-child {
	border-bottom:none;
}
table tr:nth-child(even) {
	background-color:#f2f2f2;
}	
table tr:hover {
	background-color:#f2f2f2;
}
table tr:hover td {
	background-color:#f2f2f2;
}