@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
	--blue: #368CE7;
	--blue-dark: #1666BA;
	--blue-light: #7AB3EF;

	--red: #FF0000;
	--red-dark: #A70000;
	--red-light: #FF5252;

	--green: #76BA1B;
	--green-dark: #4C9A2A;
	--green-light: #ACDF87;

	--orange: #ff7400;
	--orange-dark: #ff4d00;
	--orange-light: #ff9a00;

	--black: #000;
	--dark: #333;
	--light: #666;

	--white: #fff;
	--white-dark: #ccc;
	--white-light: #eee;
}

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

p {
	margin: 0;
}

a,
button,
input,
textarea {
	outline: 0;
	transition: all .5s ease;
}

a {
	text-decoration: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: url(../img/page-pattern-backround.jpg) fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Anton", sans-serif;
}


header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
	width: 100%;
	float: left;
}

.logo {
	color: #fff;
	font-family: "Anton", sans-serif;
	font-size: 20px;
}

.logo img {
	width: 300px;
}

header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	font-size: 30px;
	font-weight: 800;
	background-color: #f3ecdc;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

nav {
	background: transparent;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 1000;
	width: 100%;
	float: left;
	padding: 10px 0 0 0;
}

.nav-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	float: left;
	background: #fff;
	position: relative;
	padding: 15px 20px;
}

nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 30px;
	font-weight: bold;
	font-family: "Limelight", sans-serif;
	color: #000;
}

.menu {
	display: flex;
	gap: 20px;
}

.menu a {
	color: #000;
	text-decoration: none;
	font-size: 16px;
	transition: 0.3s;
}

.box-nav {
	width: 40px;
	height: 40px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(135deg);
	bottom: -20px;
	z-index: -1;
}

.menu a:hover {
	transform: translateY(-5px);
}

.menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 3;
}

.menu-btn span {
	height: 3px;
	width: 100%;
	background: #000;
	border-radius: 2px;
	transition: 0.4s;
}

/* Cross Icon Animation */
.menu-btn.open span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.open span:nth-child(2) {
	opacity: 0;
}

.menu-btn.open span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile */
@media (max-width: 768px) {
	.menu {
		position: fixed;
		right: 0;
		bottom: -100%;
		margin: 0;
		width: 220px;
		height: 100%;
		background: #fff;
		flex-direction: column;
		padding-top: 70px;
		transition: 0.3s;
		padding-right: 10px;
	}

	.menu a {
		padding: 5px 20px;

	}

	.logo {
		font-size: 20px;
	}

	.menu.active {
		bottom: 0;
	}

	.menu-btn {
		display: flex;
	}
}

.container {
	width: 100%;
	max-width: 1350px;
	padding: 0 15px;
}

.color {
	color: #1f2937;
}

.banner {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner.jpg) center fixed;
	padding: 20px 0;
	background-size: cover;
	padding-top: 90px;
	position: relative;
}

.banner::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	position: absolute;
	top: 0;
	left: 0;
}

.banner .container {
	min-height: 200px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.div {
	width: 70px;
	background-color: #f1b847;
	height: 2px;
	position: relative;
	z-index: 2;
	margin: 0 0 20px;
}

.div:last-child {
	margin: 0;
}

.content {
	width: 800px;
	max-width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	text-align: left;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	border-left: 2px solid #f1b847;
	border-right: 2px solid #f1b847;
}

h1 span {
	color: #f1b847;
}

.banner h1 {
	font-size: 28px;
	font-weight: 200;
	position: relative;
	z-index: 2;
}

.banner p {
	font-size: 15px;
	line-height: 24px;
	position: relative;
	z-index: 2;
}

.section {
	padding: 20px 0;
	position: relative;
}

.section .container {
	position: relative;
	z-index: 2;
}

.h2 {
	font-size: 25px;
	margin: 0 0 10px;
}
h4{
	font-size: 17px;
}
.para {
	font-size: 15px;
	line-height: 23px;
	margin: 0 0 20px;
}

.para:last-child {
	margin: 0;
}

.flexbox {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}

.flexbox:last-child {
	margin: 0;
}

.flexbox>p,
.flexbody {
	flex: 1;
}

.flexbox>p:first-child,
.flexbody:first-child {
	padding: 0 30px 0 0;
}

.flexbox>p:last-child,
.flexbody:last-child {
	padding: 0 0 0 30px;
}

.flexbox>img {
	width: 100%;
	max-width: 40%;
}

.center {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}

.center:last-child {
	margin: 0 !important;
}

.container>img {
	width: 100%;
	float: left;
	margin: 0 0 20px;
}

.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexgroupbox {
	width: 33%;
	background: #fff;
	margin: 0 0 20px;
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	border: 1px solid #333;
	padding: 15px;
	color: #ffffff;
}

.flexgroupbox h4 {
	font-size: 20px;
	margin: 0 0 10px;
	background-color: #fff;
	padding: 10px;
	width: 100%;
	color: #000;
}

.center>img {
	width: auto;
	max-width: 100%;
}

.formsection {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.formsection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.formsection .para {
	text-align: center;
	font-size: 28px;
	line-height: 1.5;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 800px;
	background: #fff;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
	color: #333;
}

.formbutton {
	width: 49%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: #212c62;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	color: #fff;
	text-align: center;
	padding: 20px 0;
	background-color: #000;
}

footer .container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.footerlinks {
	flex: 1;
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	margin: 0 0 10px;
	gap: 10px;
}

.footerlinks a:hover {
	text-decoration: underline !important;
}

.f-links {
	gap: 20px;
}

.f-links a {
	color: #fff;
}

.copyrights {
	font-size: 14px;
}

.logos {
	background-color: #fff;
	width: 130px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	margin: 0 0 20px;
}

.logos img {
	width: 100%;
	filter: invert(1);
}

.text-white {
	font-size: 14px;
	margin: 0 0 10px !important;
}

.cookiesection {
	width: 100%;
	float: left;
	min-height: calc(100vh - 126px);
	padding: 40px 0;
}

.cookiesection h2 {
	font-size: 22px;
	font-weight: 600;
}

.cookiesection p {
	font-size: 14px;
	line-height: 20px;
}

.cookiesection p strong {
	font-weight: 600;
}

.cookiesection p .bolder {
	display: block;
	margin: 30px 0 10px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
}

.backbutton {
	float: left;
	display: inline-flex;
	align-items: center;
	margin: 30px 0 20px;
	padding: 6px 8px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-dark) !important;
	border: solid 1px var(--blue-dark);
	;
}

.backbutton img {
	width: 15px;
	margin: 0 5px 0 0;
	transition: all .3s ease;
}

.backbutton:hover {
	background: var(--blue-dark);
	;
	color: #fff !important;
}

.backbutton:hover img {
	filter: saturate(0) brightness(10);
}

.alert {
	background: rgba(0, 0, 0, 0.7) !important;
	color: #ffffff !important;
	position: fixed !important;
	bottom: 10px;
	margin-bottom: 0 !important;
	left: 26px;
	max-width: 100%;
	text-align: center;
	width: 300px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	align-items: center;
	border-radius: 20px;
}

.alert-dismissible {
	z-index: +3;
}

.alert-close {
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	padding: 0px !important;
	width: 3rem;
	height: 2rem;
	font-size: 14px;
}

.hide {
	display: none;
}

span {
	font-weight: bold;
}

.alert p {
	font-size: 14px;
}

.hide {
	display: none;
}

.alert-close {
	padding: 0px 9px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	margin: 0 !important;
	font-size: 14px;
}

@media (max-width:800px) {

	.h2 {
		font-size: 20px;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox>img {
		max-width: 80%;
		order: 1;
		margin: 0 0 15px;
	}

	.flexgroupbox img {
		margin: 0 20px 0 0;
	}

	.flexbody,
	.flexbox>.para {
		padding: 0 !important;
		order: 2;
	}

	footer .container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.flexgroupbox {
		width: 100%;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.img-size {
		width: 100%;
	}

	.footerlinks {
		justify-content: center;
	}

	.content {
		width: 100%;
		text-align: left;
	}
}

.section1 {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner.jpg) center fixed;
	background-size: cover;
	position: relative;
	color: #fff;
	padding: 0;
}


.table-cu {
	width: 100%;
	float: left;
	display: flex;
	position: relative;
	border: 2px solid #000;
	border-radius: 10px;
	margin: 0 0 20px;
	border-radius: 100px;
	align-items: center;
	justify-content: space-between;
	transition: 0.5s;
	overflow: hidden;
}

.table-cu::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	left: 0;
	top: 0;
	width: 260px;
	border-right: #f1b847 2px solid;
	height: 100%;
}

.counter {
	width: 60px;
	height: 60px;
	padding-block: 3px;
	background-color: #f1b847;
	color: #fff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	font-weight: 700;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -10px;
	border-radius: 50%;
	align-items: center;
	z-index: 4;
}

.score {
	width: 100%;
	border: 1px solid #f1b847;
	border-radius: 6px;
	padding: 6px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.score span {
	font-size: 1.5rem !important;
	font-weight: 700;
	color: #f1b847 !important;
	margin-right: 0 !important;
}

.rating {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 6px;
	padding: 6px 10px;
	text-align: center;
}

.stars img {
	width: 100px !important;
	padding: 0 !important;
	margin-top: 5px;
}

.span {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 800;
}

.count {
	font-size: 7px;
	color: #000;
}

.logo-box {
	width: 180px;
	display: flex;
	float: left;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 3;
	margin-left: 30px;
}

.logo-box img {
	width: 100%;
	max-width: 100%;
}

.tag {
	position: absolute;
	background-color: #f1b847;
	color: #fff;
	width: 100%;
	font-size: 11px;
	padding: 5px;
	text-align: center;
	top: 19px;
	left: -56px;
	transform: rotate(-24deg);
}

.box {
	width: 23%;
	display: flex;
	float: left;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 8px 16px;
}

h3 {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 18px;
	margin-top: 20px;
}

.heading-card {
	padding-inline: 6px;
	margin-bottom: 4px;
	background-color: #f1b847;
	border-right: 0.5px solid #fff;
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}

.box1 img {
	width: 80%;
	float: left;
}

.heading-text-card {
	color: #000;
	font-size: 14px;
	font-weight: 400;
}

.btn-box {
	width: 24%;
	display: flex;
	float: left;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 29px 16px 8px 16px;
}

.mbtn {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px 10px;
	background-color: #000;
	border: #000 2px solid;
	color: #fff;
	font-weight: 900;
	border-radius: 12px;
	font-size: 19px;
	outline: 0 !important;
	text-decoration: none !important;
	transition: background-color 0.3s ease;
	width: 100%;
	float: left;
	margin: 0 0 10px;
}

.btn-box img {
	width: 200px;
}

.mbtn:hover {
	background-color: transparent;
	color: #000;
}

.mbtn-hover {
	background-color: transparent;
	color: #fff !important;
}

.ul-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	width: 100%;
	float: left;
	flex-wrap: wrap;
}

.ul-list li {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: small;
	margin: 0 0 20px;
}

.show-mbl {
	display: none;
}

/*table end*/
.section2 .flexgroupbox {
	border: 1px solid #fff;
}

.m-20 {
	margin: 0 0 15px;
}

@media (max-width:992px) {
	.show-desktop {
		display: none;
	}

	.show-mbl {
		display: block;
	}

	.counter-box {
		width: 93px;
	}

	.box {
		flex: 1;
		width: 100%;
		padding: 8px 16px;
		gap: 5px;
	}

	.img-t {
		width: auto;
		max-width: 100%;
		position: relative;
		z-index: 4;
	}

	h3 {
		margin: 0;
	}

	.img-t img {
		width: 100%;
	}

	.table-cu {
		border-radius: 10px;
	}

	.listing {
		width: 100%;
	}

	.banner h1 {
		font-size: 20px;
		width: 100%;
		float: left;
	}

	.banner .container {
		min-height: 100px;
	}

	.logo-cu {
		width: auto;
		justify-content: center;
		margin: 0;
	}

	.bonus {
		width: 100%;
	}

	.h3 {
		width: 100%;
		padding: 0 10px;
		text-align: center;
	}

	.list {
		padding: 0 10px;
		font-size: 14px;
	}

	.table-cu>img {
		width: auto;
		max-width: 300px;
	}

	.btn-box {
		width: 100%;
		padding: 0;
		border: none;
	}

	.box>img {
		width: 200px;
	}

	.mbtn {
		margin: 0;
	}

	.user-info {
		margin-top: 10px;
	}

	.navbar-brand img {
		width: 100px;
	}

	.navbar-brand {
		margin-bottom: 0;
	}

	.video-background {
		height: 62vh;
	}

	.footerlinks {
		flex-wrap: wrap;
	}

	.logos {
		margin: 0;
	}

	.f-links {
		flex-direction: column;
	}

	.alert {
		width: 100%;
		left: 0;
	}

	.alert p {
		font-size: 12px;
	}

	.top-rate {
		align-items: center;
		text-align: center;
		margin: 0;
	}

	.content {
		min-height: auto;
	}

	.table-cu::after {
		content: "";
		width: 100%;
		border-bottom: #f1b847 2px solid;
		border-right: none;
		height: 124px;
	}

	.counter {
		top: 20px;
		transform: none;
		left: 21px;
	}
}

@media (max-width:510px) {
	.flexgroupbox {
		flex-direction: column;
	}

	.flexgroupbox img {
		margin: 0 0 20px;
		width: 205px;
	}
}