@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;
}

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


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

.logo {
	color: #fff;
	font-family: "Roboto", 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: #000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

nav {
	position: absolute !important;
	top: 0 !important;
	width: 100%;
	float: left;
	left: 0;
	z-index: +5;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.navbar {
	background: #50606f!important;
	margin: 0 !important;
}

.navbar-toggler {
	border: none !important;
}

.nav-container {
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
}

.nav-link {
  font-size: 15px;
  color: #cccccc;
  position: relative;
  border: none;
  background: none;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.nav-link:focus:after,
.nav-link:hover:after {
  width: 100%;
  left: 0%;
}

.nav-link:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

.navbar-nav {
	justify-content: end;
	width: 100%;

}

.nav-item {
	margin: 1px 5px;
}

.nav-icon img {
	width: 23px;
}

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

.navbar-brand {
	background-color: #fff;
	padding: 10px;
	margin-bottom: -50px;
	margin-top: -10px;
}

.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;
	padding: 40px 0 20px 0;
	margin-top: 55px;
	position: relative;
}
.banner .container{
	min-height: 200px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.content{
	width: 100%;
	color: #fff;
}
.content .container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.video-background {
	position: relative;
	height: 50vh;
	overflow: hidden;
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
  }

  .video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 50%;
	width: auto;
	height: auto;
	z-index: -1;
	transform: translate(-50%, -50%);
	object-fit: cover;
  }
.banner h1 {
	font-size: 40px;
	font-weight: 200;
	margin-top: 40px;
}

.banner p {
	font-size: 15px;
	line-height: 24px;
}

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

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

.h2 {
	font-size: 25px;
	font-weight: 600;
	margin: 0 0 10px;
}

.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: #50606f;
	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: #50606f;
}

.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: #50606f;
}

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: #6f889f;
	width: 130px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	margin: 0 0 20px;
}
.logos img{
	width: 100%;
}
.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;
	}
}

.table-cu {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	padding: 10px 10px 0 50px;
	background: linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8)), url(../img/bg.jpg) center;
	background-repeat: repeat;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2), 0 0 0 4px rgba(155, 167, 179, 0), inset 0 0 0 6px #fff;
	margin: 0 0 15px;
	color: #000;
	flex-wrap: wrap;
	border-top-left-radius: 90px;
	border-bottom-right-radius: 90px;
}

.table-inner{
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.counter {
  width: 50px;
  height: 100%;
  float: left;
  background-color: #e5b91a;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25px;
  font-weight: 600;
  padding: 5px 10px;
  z-index: 333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-b{
	background-color: #1f2937;
}
.color-c{
	background-color: #4C9A2A;
}
.logo-cu {
	float: left;
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 10px;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin-left: 10px;
}

.logo-cu a img {
	width: 180px;
	max-width: 100%;
	float: left;
	border-radius: 10px;
	border: 1px solid #000;
	margin: 0 0 10px;
}
.bonus{
	width: 30%;
	float: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	text-align: center;
	padding: 10px 20px;
	border-radius: 4px;
}
.top-rate{
	width: 100%;
	float: left;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	justify-content: center;
	flex-direction: column;
}
h6{
	font-weight: 600;
    font-size: 25px;
    line-height: 18px;
    color: #1f2937;
    text-align: center;
    padding:3.5px 0;
	margin: 0;
}
.left{
	text-align: left;
}
.top-rate > img{
	max-width: 1.25rem;
    max-height: 1rem;
    min-width: 1.25rem;
    min-height: 1rem;
    width: 100%;
    height: 100%;
    border-radius:.125rem;
    object-fit: cover;
    border:1px solid #e5e7eb;
}
.h3 {
	width: 100%;
	color: #000;
	font-weight: 500;
	font-size: 18px;
	margin: 0;
}

.h3 span {
	font-weight: 700;
}

.raiting {
	width: auto;
	float: left;
	height: 28px;
    border-width:0;
    border-style:solid;
    border-radius:.5rem;
    display: flex;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #1f2937;
    padding:6px;
    align-items: center;
    justify-content: center;
    gap:4px;
	background: rgba(104, 168, 190, 0.18);
	border: 1px solid #6a839a;
}

.raiting img {
	width: 20px;
}
.ul{
	font-size: 14px;
	text-align: left;
}
.listing {
	width: 20%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.listing p{
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	align-items: flex-start;
	text-align: left;
	color: #1f2937;
}
.listing span{
	font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.2;
    align-items: center;
    color: #992409;
}
.list {
	width: auto;
	margin: 0;
	float: left;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.list li {
	position: relative;
	width: 100%;
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-left: 19px;
}

.list li::after {
	content: '';
	background: url(../img/check.png) no-repeat;
	background-size: auto;
	background-size: 11px;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 4px;
}

.payment-sec {
	width: 20%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.btn-box {
	width: 23%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}

.btn-cu {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #50606f;
  padding: 10px 50px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: #6a839a;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  float: left;
  z-index: 6;
}

.btn-cu:hover {
  color: white;
}

.btn-cu::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #50606f;
  z-index: -1;
  transition: all 1s;
}

.btn-cu:hover::before {
  width: 160%;
}
.btn-box>img {
	width: 200px;
	float: left;
}
.user-info {
	padding: 10.26px;
	width: 100%;
	float: left;
	text-align: center;
	display: flex;
	border-top:1px solid #d1d5db;
	color: #d1d5db;
	margin-top: 20px;
	background-color: #50606f;
}
.user-info p{
	font-weight: 400;
	font-size: 11px;
	line-height: 17px;
	color: rgb(255, 255, 255);
}
.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;
	}

	.table-cu {
		flex-direction: column;
		gap: 10px;
		justify-content: center;
		padding: 15px 15px 15px 50px;
		border-radius: 10px;
	}

	.table-inner{
		flex-direction: column;
		gap: 10px;
	}
	.listing{
		width: 100%;
	}
	.banner h1 {
		margin-top: 20px;
		font-size: 20px;
		text-align: center;
		width: 100%;
		text-align: center;
		float: left;
	}

	.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%;
	}
	.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;
	}
	.counter{
		width: 35px;
	}
	.alert{
		width: 100%;
		left: 0;
	}
	.alert p{
		font-size: 12px;
	}
	.top-rate{
		align-items: center;
		text-align: center;
		margin: 0;
	}
}

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

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