

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	background: #09203a;
}

ul {
	list-style-position: inside;
}

img {
	max-width: 100%;
}

iframe {
	max-width: 100%;
}

a {
	color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	display: block;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

.container {
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
}

.hide {
	display: none;
}

.flex_block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

.flex_column {
	flex-direction: column;
}

.flex_nowrap {
	flex-wrap: nowrap;
}

.justify_center {
	justify-content: center;
}

.justify_between {
	justify-content: space-between;
}

.justify_around {
	justify-content: space-around;
}

.justify_end {
	justify-content: flex-end;
}

.align_center {
	align-items: center;
}

.align_baseline {
	align-items: baseline;
}

.flex_row_reverse {
	flex-direction: row-reverse;
}

.flex_column_reverse {
	flex-direction: column-reverse;
}

.w_10 {
	width: 10%;
}

.w_14 {
	width: 14%;
}

.w_16 {
	width: 16.6666666%;
}

.w_20 {
	width: 20%;
}

.w_25 {
	width: 25%;
}

.w_30 {
	width: 30%;
}

.w_33 {
	width: 33.333333333%;
}

.w_35 {
	width: 35%;
}

.w_40 {
	width: 40%;
}

.w_50 {
	width: 50%;
}

.w_60 {
	width: 60%;
}

.w_70 {
	width: 70%;
}

.w_75 {
	width: 75%;
}

.w_80 {
	width: 80%;
}

.w_100 {
	width: 100%;
}

.cover-table {
	max-width: 100%;
	overflow: auto;
}

table th {
	text-align: left;
	padding: 10px;
	background: #ff6a26;
}

table td {
	padding: 10px;
}

table tr:nth-child(even) {
	background: #000c37;
}

#header {
	position: relative;
}

.mobile-nav {
	width: 100%;
	color: #fff;
	background: #20242d;
	list-style: none;
	overflow: hidden;
	height: 0;
	z-index: 9;
	box-sizing: border-box;
}

.mobile-nav--list {
	padding: 0;
}

.mobile-nav--item {
	opacity: 0;
	transform: translateY(40px);
	list-style: none;
	width: 100%;
}

.mobile-nav a,
.mobile-nav span {
	display: block;
	padding: 15px 15px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: .3s ease-in-out;
}

.mobile-nav span {
	background: #f55807;
	background-size: 2px 2px;
}

.mobile-nav--btn {
	display: none;
	width: 50px;
	height: 50px;
	position: relative;
	right: 0;
	top: 0;
	border: none;
	background: #2f3640;
	cursor: pointer;
	outline: none;
	transition: .3s ease-in-out;
	z-index: 10;
}

.mobile-nav--btn span {
	display: block;
	position: absolute;
	height: 2px;
	background: #fff;
	border-radius: 9px;
	opacity: 1;
	left: 10px;
	right: 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile-nav--btn span:nth-child(1) {
	top: 17px;
}

.mobile-nav--btn span:nth-child(2) {
	top: 25px;
}

.mobile-nav--btn span:nth-child(3) {
	top: 33px;
}

.active-nav .mobile-nav--btn span:nth-child(1) {
	top: 50%;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.active-nav .mobile-nav--btn span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.active-nav .mobile-nav--btn span:nth-child(3) {
	top: 50%;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.content {
	line-height: 1.8;
}

.content p {
	margin: 15px 0;
	font-size: 14px;
}

.content img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
}

.content ul,
.content ol {
	line-height: 1.6;
	margin: 0px 0px 15px 15px;
}

.content a {
	color: #a2bedc;
}

.content .alignnone {
	margin: 20px auto;
	float: none;
}

.content .aligncenter,
.content div.aligncenter {
	margin: auto;
}

.content .alignright {
	float: right;
	margin: 5px 0 20px 40px;
}

.content .alignleft {
	float: left;
	margin: 5px 40px 20px 0;
}

.content .aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.content a img.alignright,
.content img.alignright {
	float: right;
	margin: 5px 0 20px 40px;
}

.content a img.alignnone,
.content img.alignnone {
	float: none;
}

.content a img.alignleft,
.content img.alignleft {
	float: left;
	margin: 5px 40px 20px 0;
}

.content a img.aligncenter,
.content img.aligncenter {
	display: block;
	float: none;
	margin-left: auto;
	margin-right: auto;
}

.content .wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.content .wp-caption.alignnone {
	margin: 5px 40px 20px 0;
}

.content .wp-caption.alignleft {
	margin: 5px 40px 20px 0;
}

.content .wp-caption.alignright {
	margin: 5px 0 20px 40px;
}

.content .wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.content .wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.btn,
.download-btn {
	width: -moz-fit-content;
	width: fit-content;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 16px;
	padding: 13px 9px;
	box-shadow: 0 2px 0 #0000001c;
	background-color: #ff6526;
	background-image: linear-gradient(180deg, #ffb11a, #ff0036);
	transition: box-shadow .2s ease;
	border: none;
	border-radius: 3px;
	text-shadow: 0 2px 0 #000;
	margin-right: 10px;
}

.btn:hover,
.download-btn:hover {
	background-color: #f24600;
	background-image: linear-gradient(180deg, #e69800, #cc002b);
}

#header {
	z-index: 1;
	background: #091420;
	border-bottom: 1px solid #ada496;
}

#header .header-image {
	background-image: url(../image/big-bg.png);
	background-position: 0px center;
	background-repeat: no-repeat;
}

#header .header-line {
	padding: 50px 0 30px;
}

#header .header-line .logo-block {
	width: 200px;
}

#header .header-line .seti-header a {
	width: 35px;
	height: 35px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .header-line .seti-header a svg {
	fill: white;
}

#navigation {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -18px;
}

#navigation ul {
	padding: 0 30px;
	display: flex;
	justify-content: flex-end;
	list-style-type: none;
	flex-wrap: wrap;
	position: relative;
	left: -30px;
	right: -30px;
	border-radius: 35px;
	width: calc(100% + 60px);
	background: #e3deda;
	background: -moz-linear-gradient(top, #e3deda 0%, #aaa399 42%, #aaa399 55%, #efc384 100%);
	background: -webkit-linear-gradient(top, #e3deda 0%, #aaa399 42%, #aaa399 55%, #efc384 100%);
	background: linear-gradient(to bottom, #e3deda 0%, #aaa399 42%, #aaa399 55%, #efc384 100%);
	overflow: hidden;
}

#navigation .menu-item a,
#navigation .menu-item span {
	position: relative;
	padding: 9px 10px;
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	border-width: 0 1px;
	border-style: solid;
	border-image: linear-gradient(to bottom, #edc384, #ded8d4) 1 100%;
}

#navigation .menu-item a:hover,
#navigation .menu-item span:hover {
	background: #091420;
	color: #e7c28b;
}

#navigation .menu-item.current_page_item a,
#navigation .menu-item.current_page_item span {
	background: #091420;
	color: #e7c28b;
}

#topImage {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
}

#topImage .overlay_wrapper {
	position: relative;
}

#topImage .overlay_wrapper img {
	width: 100%;
	min-height: 250px;
	object-fit: cover;
}

#topImage .overlay_wrapper .bigImage-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	padding: 50px;
	display: flex;
	align-items: center;
	text-align: right;
}

#topImage .overlay_wrapper .bigImage-overlay .overlay_title {
	color: #fff;
	font-size: 36px;
	text-transform: uppercase;
	text-align: right;
	font-weight: 700;
	margin-bottom: 30px;
}

#topImage .overlay_wrapper .bigImage-overlay .bigImage-btn {
	background: #db0b2c;
	color: #fff;
	text-decoration: none;
	border-bottom: 4px solid #871628;
	border-radius: 25px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	padding: 10px 45px;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

#topImage .overlay_wrapper .bigImage-overlay .bigImage-btn:hover {
	background: #8f0101;
}

#breadcrumbs ol {
	padding: 30px 0 0px;
	font-size: 14px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

#breadcrumbs ol li {
	padding: 0px 3px;
	margin: 0px;
}

#breadcrumbs a {
	color: #fff;
	text-decoration: none !important;
}

#breadcrumbs a:hover {
	color: #fff;
}

#breadcrumbs span {
	color: #fff;
}

#main {
	overflow-x: hidden;
	position: relative;
}

#main .main-wrapper {
	position: relative;
	background: #132e4d;
	min-height: 400px;
	padding: 17px 22px 12px;
}

#benefits {
	padding: 30px 0;
}

#benefits .benefits_item .benefits-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fbfbfb;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-box-shadow: 0px 10px 26px -5px rgba(47, 128, 237, 0.43);
	-moz-box-shadow: 0px 10px 26px -5px rgba(47, 128, 237, 0.43);
	box-shadow: 0px 10px 26px -5px rgba(47, 128, 237, 0.43);
	transform: translateY(41%);
	position: relative;
}

#benefits .benefits_item .benefits-text {
	width: calc(100% - 80px);
	padding: 0 15px;
}

#benefits .benefits_item .benefits-text .benefits-title {
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0;
}

#benefits .benefits_item .benefits-text .benefits-desc {
	padding: 10px 0;
	line-height: 1.8;
}

#demoList {
	padding: 20px 0;
}

#demoList .demo_item {
	padding: 10px;
}

#demoList .demo_item a {
	display: block;
	text-decoration: none;
	color: white;
}

#demoList .demo_item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

#demoList .demo_item .slot_name {
	padding: 10px;
}

#demoList .demo_item .slot_wrapper {
	position: relative;
}

#demoList .demo_item .demo_button {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0000007a;
	transition: 0.5s all;
	opacity: 0;
}

#demoList .demo_item .demo_button .btn {
	margin: 0;
	transform: translate(0, 50px);
	transition: 0.5s all;
}

#demoList .demo_item .demo_button:hover {
	opacity: 1;
}

#demoList .demo_item .demo_button:hover .btn {
	transform: translate(0, 0px);
}

#partners {
	padding: 15px 0;
}

#partners .partner-item div {
	display: block;
	padding: 10px;
	align-items: center;
}

#partners .partner-item div img {
	opacity: 0.6;
}

#partners .partner-item div:hover img {
	opacity: 1;
}

#footer {
	padding: 25px 0 15px;
	position: relative;
}

#footer:before {
	content: '';
	position: absolute;
	width: calc(50% - 710px);
	height: 30px;
	background: url(../image/line.png) repeat-x;
	left: 0;
	filter: blur(1px);
	bottom: 37px;
}

#footer:after {
	content: '';
	position: absolute;
	width: calc(50% - 710px);
	height: 30px;
	background: url(../image/line.png) repeat-x;
	right: 0;
	filter: blur(1px);
	bottom: 37px;
}

#footer .footer-block-menu {
	text-transform: uppercase;
	padding: 0 20px;
	margin-bottom: 24px;
	position: relative;
}

#footer .footer-block-menu ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#footer .footer-block-menu ul li {
	list-style-type: none;
}

#footer .footer-block-menu ul li a,
#footer .footer-block-menu ul li span {
	padding: 10px 18px;
	display: block;
	text-decoration: none;
}

#footer .footer-block-menu ul li a:hover,
#footer .footer-block-menu ul li span:hover {
	text-decoration: underline;
}

#footer .footer-block-menu ul li.current-menu-item a,
#footer .footer-block-menu ul li.current-menu-item span {
	color: #ffea00;
}

#footer .footer-block-menu ul:before {
	content: '';
	position: absolute;
	width: 88px;
	height: 30px;
	background: url(../image/line.png) repeat-x;
	z-index: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: -21px;
	filter: blur(1px);
}

#footer .footer-block-menu ul:after {
	content: '';
	position: absolute;
	width: 88px;
	height: 30px;
	top: 0;
	background: url(../image/line.png) repeat-x;
	z-index: 0;
	-webkit-transform: rotate(5deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	right: -21px;
	filter: blur(1px);
}

#footer .copyright {
	text-align: center;
	margin-top: 20px;
}

.botoom-line {
	background: url(../image/line.png) repeat-x;
	width: 100%;
	height: 36px;
	max-width: 100%;
	margin: 0 auto;
}

.top_text,
.bottom_text {
	padding: 15px 0;
}

@media only screen and (max-width: 1500px) {
	#navigation ul {
		max-width: 100%;
		left: 0px;
		right: 0px;
	}
	#footer:before,
	#footer:after {
		display: none;
	}
	#footer ul:before,
	#footer ul:after {
		display: none;
	}
}

@media only screen and (max-width: 1200px) {
	.w_40,
	.w_60 {
		width: 50%;
	}
	.container {
		padding: 0 20px;
	}
	#header .header-image {
		background-image: none;
	}
	#footer .footer-item {
		padding-right: 20px;
		margin-bottom: 20px;
	}
	#footer .footer-item .footer-seti {
		justify-content: center;
	}
	#footer .footer-item .footer-seti a {
		margin-right: 10px;
	}
	#footer .footer-seti-block {
		text-align: center;
		justify-content: center;
	}
	#footer .copyright {
		text-align: center;
	}
}

@media only screen and (max-width: 900px) {
	.w_20,
	.w_25,
	.w_33,
	.w_16 {
		width: 50%;
	}
	.w_40,
	.w_60,
	.w_50,
	.w_35,
	.w_30 {
		width: 100%;
	}
	.active-nav .mobile-nav {
		height: initial;
	}
	.active-nav .mobile-nav--item {
		transition: .3s ease-in-out;
		transform: translateY(0);
		opacity: 1;
	}
	.menu-top-menu-container {
		display: none;
	}
	.mobile-nav--btn {
		display: block;
	}
	#navigation {
		position: relative;
		bottom: 0;
	}
	#navigation ul {
		padding: 0;
		border-radius: 0;
	}
	#header .header-line {
		padding: 10px 0 10px;
	}
	#header .logo-block {
		margin: 0px auto;
		text-align: center;
	}
	#header .seti-header {
		width: 100%;
		justify-content: center;
		margin: 10px 0;
	}
	#header .header-btns {
		width: 100%;
		justify-content: center;
		margin-bottom: 0px;
	}
	#footer .foter-block-menu {
		width: 100%;
	}
	#footer .foter-block-menu ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#footer .footer-item {
		border-right: none;
	}
	#footer .footer-contacts-item {
		justify-content: center;
	}
	#footer .footer-block-menu ul:before,
	#footer .footer-block-menu ul:after {
		display: none;
	}
}

@media only screen and (max-width: 700px) {
	.w_14 {
		width: 25%;
	}
	.w_33 {
		width: 100%;
	}
	.header-btns {
		width: 100%;
		justify-content: center;
	}
	.btn,
	.download-btn {
		padding: 7px 25px;
		margin-bottom: 20px;
	}
	.w_33 {
		width: 100%;
	}
	#footer .footer-item {
		padding-right: 0;
		width: 100%;
	}
	#footer .footer-title {
		text-align: center;
	}
	#main .main-wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}
	#topImage .overlay_wrapper .bigImage-overlay {
		padding: 20px;
	}
	#topImage .overlay_wrapper .bigImage-overlay .overlay_title {
		font-size: 25px;
	}
	.content img {
		margin: 20px auto !important;
		display: block;
		float: none !important;
		width: 90%;
	}
}

@media only screen and (max-width: 500px) {
	.w_25 {
		width: 90%;
	}
	.w_14 {
		width: 33.333333%;
	}
}
img {
  max-width: 100%;
  height: auto;
}

.bahis-siteleri-table-casinos {
	border: 5px solid #003087;
	background-color: #8a885b;
	border-radius: 15px;
	padding: 5px;
	display:inline-flex;
	width: 100%;
	max-width: 600px;
	min-width: 300px;
	margin: 0 auto;

}
.bahis-siteleri-table-casinos tr {

	background-color: #8a885b;
	border-radius: 15px;
	padding: 5px;
}
.bahis-siteleri-table-casinos td {
	border-bottom: 2px solid #003087;
	background-color: #8a885b;
	text-align: center;
	padding: 5px;
}
.bahis-siteleri-table-casinos button {
	background-color: #5546f8;
	color: #f3f3f6;
	font-weight: bold;
	font-size: large;
	max-width: 150px;
	max-height: 50px;
	min-width: 100px;
	min-height: 30px;
	padding: 10px;
	border-radius: 15px;
	cursor: pointer;
	touch-action: manipulation;
}
.bahis-siteleri-table-casinos img {
	max-width: 100%;
	-ms-interpolation-mode: bicubic;
	display: flex;
	position: relative;
	border: #424242 1px solid;
	margin: 0 auto;
	border-radius: 10px;
}
