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

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: #103772;
	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: #fff;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
}

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

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

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

.menu a {
	text-decoration: none;
	position: relative;
	overflow: hidden;
	color: #000;
	transition: 0.3s;
	padding: 20px 0;
	font-size: 17px;
}

.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: #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;
		top: 0;
		right: -100%;
		width: 220px;
		height: 100%;
		background: rgba(255, 255, 255, 0.9);
		flex-direction: column;
		padding-top: 70px;
		transition: 0.3s;
		margin-right: 0;
		padding-right: 10px;
	}

	nav {
		padding: 10px 0;
	}

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

	}

	.menu.active {
		right: 0;
	}

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

/* CSS */
.btn-cu {
	margin: 10px;
	padding: 15px 30px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;
	border-radius: 10px;
	display: block;
	border: 0px;
	font-weight: 700;
	box-shadow: 0px 0px 14px -7px #f09819;
	background-image: linear-gradient(45deg, #001d4e 0%, #3f6ab4 51%, #001d4e 100%);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	width: auto;
	position: relative;
	z-index: 4;
}

.btn-cu:hover {
	background-position: right center;
	/* change the direction of the change here */
	color: #fff;
	text-decoration: none;
}

.btn-cu:active {
	transform: scale(0.95);
}

small {
	font-size: 12px;
}

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

.color {
	color: #001d4e;
}

.banner {
	background: linear-gradient(rgba(0, 0, 0, 0.6) 100%), url(../img/banner.jpg) fixed bottom;
	background-size: cover;
	padding: 20px 0 150px 0;
	position: relative;
}

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

.inner-banner {
	padding: 20px 0;
}

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

.banner-svg {
	position: absolute;
	width: 100%;
	float: left;
	bottom: -1px;
	fill: #fff;
	left: 0;
}

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

.section1 {
	margin-top: -100px;
}

.section1 .flexbody strong {
	color: #001d4e;
}

.flexbody {
	padding-left: 100px !important;
}

.fleximg {
	width: 400px !important;
	height: 400px;
	object-fit: cover;
	border-radius: 50%;
	animation:
		nudge 7s linear infinite alternate;
	border: 4px double #001d4e;
}

@keyframes nudge {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(50px, 0);
	}

	80% {
		transform: translate(-50px, 0);
	}
}


.section2 {
	background: linear-gradient(rgba(0, 0, 0, 0.6)), url(../img/banner.jpg) fixed;
	background-size: cover;
	color: #fff;
}

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

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

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

.flex-img {
	width: 40%;
	height: 300px;
	overflow: hidden;
}

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

.div {
	width: 100%;
	float: left;
	background-color: rgba(0, 0, 0, .2);
	height: 1px;
	margin: 0 0 10px;
}

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

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

.section3 .flexgroupbox {
	background-color: #001d4e;
	width: 49%;
	text-align: center;
	padding: 20px 20px 20px 40px;
}

.icon {
	width: 100%;
	float: left;
	position: absolute;
	top: 10px;
	left: -3px;
}

.icon strong {
	font-size: 30px;
	background-color: #fff;
	color: #001d4e;
	width: 120px;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);

}

.flexgroupbox {
	width: 32%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 10px;
	border: 4px double #fff;
	color: #fff;
	transition: 0.5s;
	border-radius: 10px;
	background-color: #001d4e;
	position: relative;
	z-index: 1;
}

.section2 .flexgroupbox {
	background: #fff;
	color: #000;
}

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

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

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

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

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

.img-holder {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	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 .btn-cu {
	width: 100%;
}
.img-holder1 {
	background-color: #000;
}

.img-holder2 {
	background-color: red;
}
.bgcommon{background: #000;}
.bgbetsson{background: #ff6f0e;}
.img-holder3 {
	background-color: #000;
}

.img-holder img {
	height: 106px;
}

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

footer {
	background-color: #001d4e;
	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: 50px;
}

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: +1000;
}

.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: 100%;
		order: 1;
		margin: 0 0 15px;
	}

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

	.section3 .flexgroupbox {
		padding: 70px 20px 20px 20px;
		width: 100%;
	}

	.inner-banner {
		padding: 20px 0 !important;
	}

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

	.section1 {
		margin-top: 0;
	}

	.banner {
		padding-bottom: 80px;
	}

	.flexbox>img {
		width: 100% !important;
	}

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

}