@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=Alumni+Sans+Inline+One:ital@0;1&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: "Alumni Sans Inline One", sans-serif;
	font-weight: 200;
}


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

nav {
      background: #702d08;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      z-index: 1000;
	  width: 100%;
	  box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    }
	nav .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
    .logo {
      font-size: 40px;
      font-weight: bold;
	  font-family: "Alumni Sans Inline One", serif;
	  color: #ffffff;
	  font-weight:400;
    }

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

   .menu a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: 0.3s;
}
.menu a:hover{
	transform: translateY(-4px);
}
    .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: #ffffff;
      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;
        top: 0;
        right: -100%;
        width: 220px;
        height: 100%;
        background: #702d08;
        flex-direction: column;
        padding-top: 70px;
        transition: 0.3s;
		margin-right: 0;
		padding-right: 10px;
      }

      .menu a {
        padding: 5px 20px;
		font-size: 14px;

      }

      .menu.active {
        right: 0;
      }
.logo{
	font-size: 35px;
	margin: 10px 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;
	padding: 20px 0;
	margin-top: 55px;
	position: relative;
}
.banner .container{
	min-height: 200px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.banner h1 {
	font-size: 50px;
	font-weight: 200;
}

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

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

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

h2 {
	font-size: 35px;
	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: center;
	gap: 10px;
	flex-wrap: wrap;
}

.flexgroupbox {
	width: 25%;
	background: #702d08;
	margin: 0 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	border-top: 5px double #ffffff;
	padding: 40px 15px 15px 15px;
	color: #ffffff;
	border-radius: 50% 50% 0 0;
}
.flexgroupbox h4 {
	font-size: 20px;
	margin: 0 0 10px;
}

.center>img {
	width: auto;
	max-width: 100%;
}
.section1{
	background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../img/img-2.jpg) center;
	background-size: cover;
	color: #fff;
	background-attachment: fixed;
}
.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: #702d08;
}

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: 20px;
}
.footerlinks a{
	color: #fff;
}
.footerlinks a:hover {
	text-decoration: underline !important;
}
.copyrights {
	font-size: 14px;
}
.f-logos{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.logos{
	background-color: transparent;
	width: 140px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	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;
	}

	.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%;
	}
	.footerlinks {
		justify-content: center;
	}
}

.table-cu {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	padding: 10px;
	background: #702d08;
	box-shadow: 0 0 10px rgba(0, 0, 0, .4), 0 0 0 4px rgba(155, 167, 179, 0);
	margin: 0 0 15px;
	color: #ffffff;
	flex-wrap: wrap;
}
.table-cu:hover{
	background: #5f2505;
}

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

.counter {
  width: 30px;
  height: 50px;
  float: left;
  background-color: #e5b91a;
  color: #fff;
  position: absolute;
  top: 34%;
    left: -28px;
    font-size: 25px;
    font-weight: 600;
    padding: 5px 10px;
    z-index: 333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -3;
    border-radius: 30px 0 0 30px;
}
.red{
	background-color: #ff0000;
}
.logo-cu {
	float: left;
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 10px;
	align-items: center;
	text-align: center;
	flex-direction: column;
}

.logo-cu a img {
	width: 180px;
	max-width: 100%;
	float: left;
}
.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;
}
.bonus img{
	width: 40%;
}
.top-rate{
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	flex-direction: column;
}
h6{
    font-size: 35px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    padding:3.5px 0;
	margin: 0;
}
.left{
	text-align: left;
}
.top-rate  img{
	max-width: 30%;
    width: 100%;
}
.h3 {
	width: 100%;
	color: #000;
	font-weight: 500;
	font-size: 18px;
	margin: 0;
}

.h3 span {
	font-weight: 700;
}
.ul{
	font-size: 14px;
	text-align: left;
}

.payment-sec {
	width: 20%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.listing{
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.btn-box {
	width: 23%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}
.listing p{
	font-size: 20px;
	font-weight: bold;
}

.btn-cu {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background-color: rgb(238, 238, 238);
}

.btn-cu:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cu:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-cu::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-cu::after {
  background-color: #fff;
}

.btn-cu:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-box>img {
	width: 200px;
	float: left;
}
.user-info {
	padding: 10px 0 0 0;
	width: 100%;
	float: left;
	text-align: center;
		align-items: center;
		justify-content: center;
	display: flex;
	border-top:1px solid #491b03;
	color: #b9b9b9;
	margin-top: 10px;
}
.user-info p{
	font-weight: 400;
	font-size: 11px;
	line-height: 17px;
	color: rgb(188, 188, 188);

	text-align: center;
}
.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;
		border-radius: 10px;
	}

	.table-inner{
		flex-direction: column;
		gap: 10px;
	}
	.listing{
		width: 100%;
	}
	.banner h1 {
		font-size: 30px;

	}
	h2{
		font-size: 30px;
	}
	.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;
	}
	.footerlinks{
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
	}
	.logos{
		margin: 0;
	}
	.f-links{
		flex-direction: column;
	}
	.counter{
		width: 35px;
		z-index: 3;
		border-radius: 50%;
		width: 50px;
		left: -10px;
		top: -10px;
	}
	.alert{
		width: 100%;
		left: 0;
	}
	.alert p{
		font-size: 12px;
	}
	.top-rate{
		align-items: center;
		text-align: center;
		margin: 0;
	}
	.top-rate img{
		max-width: 40%;
	}
}

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

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