@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&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: "Rubik", serif;
	font-weight: 400;
	font-style: normal;
	background: url(../img/bg.png);
}

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


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


header {
	padding: 10px 0;
	background-color: #8b8a1e;
	position: fixed;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
	z-index: 3;
	color: #fff;
}

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

nav {
	background: transparent;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, .6);
	border-bottom: 1px solid #fff;
}

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

.logo {
	font-size: 30px;
	font-weight: bold;
	font-family: "Righteous", serif;
	color: #ffffff;
}

.menu {
	display: flex;
	gap: 25px;
	background-color: #fff;
	padding: 5px 20px;
}

.menu a {
	text-decoration: none;
	position: relative;
	overflow: hidden;
	color: #fff;
	transition: 0.3s;
	background-color: #c31e1e;
	padding: 10px 20px;
}

.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: #c31e1e;
		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: 25px;
		margin: 10px 0;
	}

	.menu-btn {
		display: flex;
	}
}

.para-cu {
	font-size: 14px;
	font-weight: 400;
}

.header-text {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.button {
  align-items: center;
  appearance: none;
  background-color: #fcfcfd;
  border-radius: 4px;
  border-width: 0;
  box-shadow:
    rgba(45, 35, 66, 0.2) 0 2px 4px,
    rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #c31e1e;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition:
    box-shadow 0.15s,
    transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button:focus {
  box-shadow:
    #d6d6e7 0 0 0 1.5px inset,
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
}

.button:hover {
  box-shadow:
    rgba(45, 35, 66, 0.3) 0 4px 8px,
    rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}

small {
	font-size: 12px;
}

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

.color {
	color: #c31e1e;
}

.banner {
	background: linear-gradient(rgba(0,0,0,0.7) 100%),url(../img/banner.jpg) center;
	background-size: cover;
	padding: 80px 0 80px 0;
	position: relative;
}
.wave{
	width: 100%;
	height: 80px;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.banner .container {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #fff;
}

.content {
	width: 100%;
}

.inner-banner .container {
	min-height: 150px;
}

.banner h1 {
	font-size: 40px;
	margin: 0 0 10px;
}
.banner p {
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 20px;
}

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

.section .container {
	position: relative;
	z-index: 2;
}
.section1{
	padding: 20px 0 80px 0;
}
.section2{
	background-color: #212121;
	color: #fff;
	padding: 20px 0 80px 0;
}
.h2 {
	font-size: 25px;
	margin: 0 0 15px;
}

.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 {
	margin: 0 -30px 0 0;
}

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

.flexbody {
	padding: 20px;
	background-color: rgba(255, 255, 255, 1);
	color: #000;
	position: relative;
	z-index: 2;
}

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

.flex-img {
	width: 60%;
	height: 250px;
	overflow: hidden;
	margin: 0 0 20px;
}

.flex-img img {
	width: 100%;
	height: 100%;
	transition: all 0.5s;
	object-fit: cover;
	object-position: top;
}

.flex-img img:hover {
	transform: scale(1.4);
}

.paracenter {
	text-align: center;
}

.flex-mine {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.span {
	width: auto;
	font-size: 14px;
	font-weight: 500;
	padding: 5px 15px;
	background: #fff;
	border-radius: 20px;
	color: #000;
}

.span:nth-child(odd) {
	transform: rotate(-1deg);
}

.span:nth-child(even) {
	transform: rotate(1deg);
}
.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 1%;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

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

.flexgroupbox {
	width: 49%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding: 15px;
	position: relative;
	border: 1px solid #c31e1e;
}
.flexgroupbox::after{
	content: "";
	width: 50%;
	height: 8px;
	background-color: #c31e1e;
	position: absolute;
	top: -4px;
	left: 0;
}
.flexgroupbox::before{
	content: "";
	width: 50%;
	height: 8px;
	background-color: #c31e1e;
	position: absolute;
	bottom: -4px;
	right: 0;
}
.flexgroupbox img{
	width: 100%;
}

h4 {
	font-size: 27px;
	margin: 0 0 10px;
}
.flex-table{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	position: relative;
	color: #000;
	margin-top: 10px;
	overflow: hidden;
	border-radius: 30px;
	padding: 40px 0 0 0;
	border: 5px solid #c31e1e;
}
.flex-table:hover{
	box-shadow: 2px 2px 5px rgba(0, 0, 0, .6);
}
.span-full {
	width: 100%;
	text-align: center;
	padding: 10px;
	background-color: #002654;
	border-radius: 50px;
	color: #fff;
	margin: 0 0 10px;
	font-size: 15px;
}
.flex-table h4{
	padding-top: 30px;
	width: 25%;
	text-align: center;
}
.bonus {
	font-size: 21px;
	margin: 0 0 10px;
	text-align: center;
	position: absolute;
	    background-color: #c31e1e;
    padding: 15px 20px;
    color: #fff;
    left: 0;
    top: 0;
	width: 100%;
	border-radius: 0;
}
.bonus h5{
	margin: 0;
}
.ul-list {
	width: auto;
	margin: 0 0 5px;
	width: 30%;
	font-size: 14px;
	padding-top: 30px;
}
.flex-table li {
    width: auto;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #000000;
    background: url(../img/tick.png) no-repeat 0 5px;
    background-size: auto;
    background-size: 14px auto;
}

.flex-table li:before {
    content: '';
    min-width: 12px;
    height: 22px;
    border-radius: 12px;
    margin: 0 5px 0 0;
}
.ul-list li {
	margin: 0 0 5px;
	padding-left: 5px;
}

.btn-bg {
	background-color: #c31e1e;
	color: #fff;
	margin: 0 0 10px;
}
.btn-box{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px 20px 20px 0;
	
}
.raiting {
	width: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	flex-direction: column;
	padding-top: 30px;
	width: 25%;
}

.span-num-cu {
	font-weight: 700;
	font-size: 20px;
	background-color: #c31e1e;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
}

.raiting img {
	width: 100px;
}
.flex-logo{
	width: 180px;
	padding-left: 20px;
	overflow: hidden;
}
.flex-logo img{
	width: 100%;
	border-radius: 20px;
}

.flexgroupbox>img {
	width: 100%;
	float: left;
	margin: 0 0 15px;
}

.center>img {
	width: auto;
	max-width: 100%;
}
.box{
	width: 32%;
	background-color: #fff;
	color: #000;
}
.box h4{
	font-size: 18px;
}
.box1{
	background-color: #c31e1e;
	color: #fff;
	width: 32%;
		align-items: flex-start;
	text-align: left;
}
.box1 h4{
	font-size: 20px;
}
.formsection {
	background: url(../img/img7.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.formsection:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.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: 49%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.formfield2 {
	width: 100%;
}

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

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

.formbutton {
	width: 100%;
	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 {
	background-color: #c31e1e;
	text-align: center;
	padding: 16px 0;
	color: #fff;
}

footer .para {
	font-weight: 100;
	font-size: 14px;
}

.footer-flex {
	width: 100%;
	align-items: center;
	justify-content: center;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	float: left;
	margin: 0 0 20px;
}
.f-logo{
	width: 120px;
	padding: 10px;
	height: 50px;
	background-color: #14311b;
	display: flex;
	align-items: center;
	justify-content: center;
}
.f-logo img{
	width: 70%;
	
	object-fit: cover;
}
footer .container {
	display: flex;
	flex-direction: column;
}

.footerlinks {
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	margin: 0 0 20px;
}
.footerlinks a {
	font-size: 14px;
	color: #fff;
	margin: 0 6px;
}

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

.copyrights {
	font-size: 14px;
}


.text-white {
	font-size: 14px;
}


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

.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: 13px;
}

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

	.alert {
		width: 100%;
	}

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

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

	.flex-img {
		width: 100%;
		margin: 0 0 15px;
		height: auto;
	}

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

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

	.flexgroupbox {
		width: 100%;
	}
	.flexgroupbox h4{
		font-size: 18px;
	}
	.flexbody {
		margin: 0 !important;
		padding: 20px !important;
	}
	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}
	.footerlinks {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	footer .bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
		float: left;
		width: 100%;
		flex-direction: column;
		gap: 13px;
	}
	.banner h1{
		font-size: 30px;
		width: 100%;
	}
	.banner .para{
		width: 100%;
	}
	.flex-table{
		flex-direction: column;
		padding: 0;
	}
	.bonus{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
	}
	.flex-logo img{
		border-radius: 0;
	}
	.raiting, .flex-table h4{
		width: 100%;
	}
	.flex-table h4{
		background-color: #c31e1e;
		color: #fff;
		padding: 10px;
	}
	.ul-list{
		width: auto;
		padding: 0;
	}
	.flex-table ul{
		padding-left: 0 !important;
	}
	.btn-box, .raiting{
		padding: 10px;
	}

}