@import url('https://fonts.googleapis.com/css2?family=Orelega+One&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: #6e0f19;

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

	--green: #76BA1B;
	--green-dark: #6e0f19;
	--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;
}

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


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


header {
	padding: 10px 0;
	background-color: #6e0f19;
	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: #6e0f19;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1000;
	width: 100%;
	padding: 5px 0;
	border-bottom: 2px solid #fff;
}

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

.logo {
	font-size: 38px;
	font-weight: bold;
	font-family: "Orelega One", serif;
	color: #ffffff;
}


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

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

.menu a {
	width: auto;
	height: auto;
	float: left;
	transition: .5s;
	position: relative;
	overflow: hidden;
	text-align: center;
	background: transparent;
	padding: 10px 30px;
}


.menu a:hover {
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

.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: #6e0f19;
		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: 38px;
		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;
}

.btn-cu {
	font-size: 15px;
	padding: 15px 30px;
	border: none;
	outline: none;
	border-radius: 0.4rem;
	cursor: pointer;
	text-transform: uppercase;
	text-align: center;
	font-size: bolder;
	background-color: #75849d;
	border: 2px solid #000;
	color: rgb(234, 234, 234);
	transition: 0.6s;
	box-shadow: 0px 0px 20px #91a1ba;
	-webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
}

.btn-cu:active {
	scale: 0.92;
}

.btn-cu:hover {
	background: rgb(2, 29, 78);
	background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(61, 15, 9, 0.873) 60%);
}

small {
	font-size: 12px;
	background-color: #75849d;
	padding: 10px;
	border-radius: 5px;
	border: 2px solid #fff;
}

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

.color {
	color: #91a1ba;
}

.banner {
	background: url(../img/banner.jpg) fixed bottom;
	padding: 20px 0 20px 0;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.banner::before {
	position: absolute;
	content: "";
	width: 65%;
	height: 100%;
	right: 0;
	bottom: 0;
	background-color: #6e0f19;
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);

	z-index: -1;
}

.banner-svg {
	position: absolute;
	width: 100%;
	right: 18%;
	bottom: 0;
	z-index: -1;
	transform: rotate(117deg);
	fill: #6e0f19;
}

.inner-banner .banner-svg {
	right: 16%;
	transform: rotate(140deg);
}

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

.content {
	width: 63% !important;
	float: left;
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

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

.banner h1 {
	font-size: 40px;
	margin: 0 0 10px;
}

.banner .container>img {
	width: 2%;
}

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

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

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

.left {
	background: linear-gradient(rgba(0, 0, 0, .4)), url(../img/bonuses-05.jpg) fixed center;
	background-size: cover;
	color: #fff;
	width: 100%;
	float: left;
	padding: 20px;
	border-radius: 20px;
}

.image {
	width: 100%;
	float: left;
	display: flex;
	justify-content: flex-end;
}

.image img {
	width: 30%;
	float: left;
	border-radius: 20px;
}

.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;
	justify-content: 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: 30%;
}

.clr img {
	width: 100%;
	height: 200px;
	float: left;
	margin-bottom: 20px;
	object-fit: cover;
	margin-top: -80px;
	border-radius: 20px;
	border: 2px solid #6e0f19;
}

.clr {
	width: 49%;
	float: left;
	background-color: #6e0f19;
	border: 2px solid #91a1ba;
	padding: 15px;
	height: 100%;
	color: #fff;
	margin-top: 60px;
	border-radius: 10px 10px 0 0;
}

.clr:last-child {
	margin-bottom: 0;
}

.flex-img {
	width: 24%;
	float: left;
}

.flex-img img {
	width: 100%;
	float: left;
	outline: 2px dashed #6e0f19;
}

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

.flex-cus:nth-child(4) {
	width: 49% !important;
}

.flex-cus:nth-child(5) {
	width: 49% !important;
}

.flex-cus {
	width: 32% !important;
	padding: 20px;
	flex-direction: column;
	float: left;
	background-color: #6e0f19 !important;
	color: #fff;
	border: 2px dashed #fff !important;
	margin: 0 !important;
}


.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

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

.group {
	gap: 20px 66px;
}

.cards {
	width: 38%;
	float: left;
	position: relative;
	z-index: 1;
}

.cards::before {
	position: absolute;
	content: "";
	width: 112%;
	z-index: -1;
	height: 52%;
	left: -25px;
	background-color: #6e0f19;
	bottom: -0;
	border-radius: 0 0 20px 20px;
	clip-path: polygon(48% 16%, 100% 0, 100% 100%, 0 100%, 0 0);

}

.flexgroupbox {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	box-shadow: 1px -1px 11px 2px rgba(0, 0, 0, 0.1);
	border: 4px solid #6e0f19;
	background-color: #91a1ba;
	color: #fff;
	margin-top: 60px;
	border-radius: 20px;
}

.flex-c {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	float: left;
	background-color: #6e0f19;
	color: #fff;
	padding: 20px;
	justify-content: center;
}

.flex-a {
	background-color: transparent;
	padding: 10px;
}

h4 {
	font-size: 27px;
	margin: 0 0 10px;
}

.span-full {
	width: 100%;
	text-align: center;
	padding: 10px;
	background-color: #6e0f19;
	border-radius: 10px;
	border: 2px solid #fff;
	color: #fff;
	margin: 0 0 10px;
	font-size: 15px;
}

.bonus {
	font-size: 21px;
	margin: 0 0 10px;
}

.ul-list {
	width: auto;
	margin: 0 0 5px;
	list-style-type: "✓";
	font-size: 14px;
	padding: 0;
}

.ul-list li {
	margin: 0 0 5px;
	padding-left: 10px;
}

.btn-bg {
	background-color: #6e0f19;
	color: #fff;
	width: 100%;
	float: left;
	padding: 20px;
	margin: 0 0 10px;
	border: 2px solid #fff;
}

.btn-bg:hover {
	background-color: #6e0f19;
}

.box {
	background-color: rgba(0, 0, 0, .3);
	width: 18%;
	color: #fff;
	padding: 10px;
	text-align: center;
	float: left;
	border: 4px solid #91a1ba;
}

.bonus span {
	color: #6e0f19;
	font-size: 24px;
}

.img-holder {
	width: 100%;
	float: left;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #6e0f19;
	border-radius: 20px;
	margin: 0 0 10px;
}

.raiting {
	width: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
}

.span-num-cu {
	font-weight: 700;
	font-size: 20px;
}

.raiting img {
	width: 100px;
}

.flexgroupbox:nth-child(2) .img-holder {
	background-color: #6e0f19;
}

.flexgroupbox:nth-child(3) .img-holder {
	background-color: #6e0f19;
}

.flexgroupbox:nth-child(4) .img-holder {
	background-color: #6e0f19;
}

.img-holder img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background-color: #6e0f19;
	border: 10px solid #91a1ba;
	float: left;
	margin-top: -60px;
}

.flex {
	width: 100%;
	background: transparent;
	margin: 0 0 20px;
	border: 0;
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	align-items: center;
}

.flex-cus {
	width: 49%;
}

.flex-custom {
	text-align: center;
	align-items: center;
}

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


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

.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: #6e0f19;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	background-color: #6e0f19;
	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;
}

.footer-flex img {
	height: 30px;
}

footer .container {
	display: flex;
	flex-direction: column;
}

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

.ssl-img img {
	width: 50px;
	margin-left: 10px;
}

.social-icon {
	display: flex;
	gap: 5px;
	margin-left: 20px;
}

.social-icon img {
	width: 100%;
	max-width: 30px;
}

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

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

	.flexgroupbox {
		flex-direction: column;
		gap: 0;
		text-align: center;
	}

	.flex-c {
		width: 100%;
	}

	.box {
		width: 100%;
	}

	.banner {
		background: linear-gradient(rgba(0, 0, 0, .6)), url(../img/banner.jpg) fixed bottom;
	}

	.clr {
		width: 100%;
	}

	.banner::before {
		background-color: transparent;
	}

	.banner-svg {
		display: none;
	}

	.content {
		width: 100% !important;
	}

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

	.flex-cus {
		width: 100% !important;
	}

	.flex-cus:nth-child(4) {
		width: 100% !important;
	}

	.flex-cus:nth-child(5) {
		width: 100% !important;
	}


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

	.flexgroupbox {
		width: 100%;
	}

	.cards {
		width: 100%;
	}

	.cards::before {
		width: 104%;
		left: -9px;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.img-size {
		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;
	}

}