@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&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: "Hind", sans-serif;
	font-weight: 400;
	font-style: normal;
}

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


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

header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	font-size: 30px;
	font-weight: 400;
	background-color: #1a0061;
	border-bottom: 3px dotted #000000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

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

nav {
	position: absolute !important;
	top: 0 !important;
	width: 100%;
	float: left;
	left: 0;
	z-index: +5;

}

.navbar {
	background-color: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
	position: fixed !important;
}

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

.navbar .container {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.nav-container {
	max-width: 1300px;
	width: 100%;
	margin: auto;
	display: flex;
}

.nav-link {
	color: #1a0061;
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	padding: .5em;
	margin-left: 20px;
	position: relative;
	transition: 0.5s;
}

#homeSelected,
#aboutSelected {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.nav-link:hover {
	color: #1a0061 !important;
}

.dropdown-item {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.navbar .dropdown-item:hover {
	color: #1a0061;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
	display: flex;
	margin-top: 0;
	/* remove delay gap */
}

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

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

.navbar-brand {
	font-size: 25px;
	color: #fff !important;
	font-family: "Hind", sans-serif;
}

.navbar-brand:hover {
	color: #fff;
}

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

.custom-dropdown {
	position: unset;
}

.custom-dropdown .mega-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 1200px;
	max-width: 100%;
	background-color: #1a0061;
	padding: 20px 20px 60px 20px;
	z-index: 1000;
	float: left;
	border-top: 2px solid #1a0061;
}

.custom-dropdown:hover .mega-dropdown {
	display: block;
}

.width {
	width: 250px !important;
}

.banner {
	background: url(../img/hero.jpg) top;
	background-size: cover;
	padding: 20px 0;
	position: relative;
	margin-top: 60px;
	padding-bottom: 70px;
}

.banner:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

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

.h-low .container {
	min-height: 100px;
}

.flexgroupbox>span {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}

span>img {
	width: auto;
	float: left;
}

.span1 {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #fff !important;
}

.banner h1 {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 10px;
	z-index: 2;
}

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

.banner4 h1 {
	font-size: 24px;
}

.devider {
	background-image: url(../img/devider-2.svg);
	background-size: 100% 70px;
	bottom: 0;
	height: 70px;
	z-index: 2;
	transform: scale(1, 1);
	display: block;
	position: absolute;
	pointer-events: none;
	width: 100%;
	left: 0;
	right: 0;
}

.devider4 {
	background-image: url(../img/div-3.svg);
	background-size: 100% 100px;
	top: 0;
	height: 100px;
	z-index: 1;
	transform: scale(1, 1);
	display: block;
	position: absolute;
	pointer-events: none;
	width: 100%;
	left: 0;
	right: 0;
}

.div {
	width: 100%;
	float: left;
	height: 1px;
	background-color: #1a0061;
	margin: 0 0 20px;
}

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

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

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

.para {
	font-size: 14px;
	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%;
}

.clr {
	color: #1a0061;
}

.section1 {
	background: url(../img/bb-games.jpg);
	background-size: cover;
	color: #fff;
}

.btn-cu {
	width: 200px;
	height: 3em;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	font-family: inherit;
	border: none;
	position: relative;
	overflow: hidden;
	background-color: #89f8ff;
	z-index: 1;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1b0463;
}


.btn-cu:hover {
	color: #1b0463;
	background-color: #fff;
}

.margin-b {
	padding-bottom: 90px;
}

.section2 {
	background-color: #1a0061;
	color: #fff;
}

.section5 {
	background-color: #1a0061;
	color: #fff;
}

.section3 {
	position: relative;
	height: 300px;
	padding: 0;
}

.flex {
	width: 100%;
	float: left;
	padding: 20px;
	border-left: 2px solid #1a0061;
	margin: 0 0 20px;
	background-color: #f3f3f3;
}

.img-box {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.img-cu {
	width: 18%;
	border-radius: 10px;
	float: left;
	position: relative;
	overflow: hidden;
	margin: 0 0 10px;
	height: 270px;
}

.img-cus {
	width: 23%;
}

.img-cu>img {
	width: 100%;
	float: left;
	height: 100%;
	object-fit: cover;
}

.hover-img {
	position: absolute;
	background-color: rgba(0, 0, 0, .6);
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.5s;
}

.hover-img:hover {
	opacity: 1;
}

.hover-img>img {
	width: 20px !important;
}

.devider2 {
	background-image: url(../img/devider-1.svg);
}

iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.section4 {
	background: linear-gradient(-90deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%), url(../img/img-4.jpg) center;
	background-size: cover;
	background-attachment: fixed;
}

.section4 .container {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.content-cu {
	width: 50%;
	padding: 20px;
}

.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: 500px;
	max-width: 100%;
	float: left;
	margin: 0 0 20px;
}

.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexgroup>img {
	width: 33%;
	float: left;
	margin: 0 0 15px;
}

.video {
	width: 926px;
	height: 520.875px;
	position: relative;
	max-width: 100%;
}

.flexgroupbox {
	width: 33%;
	padding: 15px;
	margin: 0 0 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	transition: 0.5s;
	color: #fff;
	background-color: #3428bc;
}

.flex2 {
	box-shadow: 0px 12px 18px -6px rgba(25, 0, 96, 0.53);
}

.flexgroupbox:nth-child(2) {
	background-color: #ff60b2;
}

.flexgroupbox:nth-child(3) {
	background-color: #ac4ed3;
}

.flex-custom {
	width: 23%;
	align-items: flex-start;
	text-align: left;
	background-color: transparent !important;
	padding: 0;
	color: #000 !important;
	margin: 0 0 20px;
}

.box2{
	width: 49%;
	background-color: transparent;
	border: 2px solid #fff;
	padding: 15px;
	margin: 0 0 20px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.flex-custom .img-cus {
	width: 100%;
}

.flexgroupbox>img {
	width: 100%;
	float: left;
	margin: 0 0 10px;
	border-radius: 20px;
}

.flex-cu {
	width: 49%;
}

.flexgroupbox h4 {
	font-size: 19px;
	text-align: center;
	width: 100%;
	font-weight: 700;
}

.m-top {
	padding-top: 120px;
}

h4 {
	font-size: 20px;
	width: 100%;
	font-size: 700;
	float: left;
}

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

.number {
	min-width: 40px;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #0e0e0f;
	color: #fff;
	font-size: 17px;
}

.box {
	width: 24%;
	border: 1px solid rgba(0, 0, 0, .1);
	align-items: flex-start;
	text-align: left;
	background-color: transparent;
}


.h3 {
	font-size: 35px;
	margin: 0 0 10px;
	font-weight: 800
}


h6 {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 18px;
	margin: 0 0 10px;
}

.box4 h6 {
	text-align: left;
}

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

.list-cu {
	width: 100%;
	float: left;
	margin: 0 0 20px;
	font-size: 14px;
}

.flexbody>img {
	width: 100%;
	float: left;
	margin: 0 0 20px;
}

.left>img {
	width: 200px;
	max-width: 100%;
	float: left;
	margin: 0 0 10px;
}

.image-group img {
	width: 33%;
	object-fit: cover;
	height: 250px;
}

.formsection {
	font-size: 16px;
	font-weight: 400;
	background-color: #f3f3f3;
}

.formsection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 600px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.text {
	width: 49%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.text-cu {
	width: 100%;
}

.text span {
	width: auto;
	float: left;
	font-weight: 400;
	color: #000;
	font-size: 14px;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 10px;
	border: none;
	background: #e2e3e1;
	color: #000;
	font-size: 15px;
}

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

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

.formbutton {
	width: 40%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: #1a0061;
	color: #fff;
	border: none;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	background: #1a0061;
	text-align: center;
	padding: 20px 0;
	color: #fff;
}

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

.logo-holder>img {
	width: 100px;
}

.margin-t {
	margin-top: 80px;
}

footer .footer-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	float: left;
	border-top: 1px solid #fff;
	padding: 20px 0 0;
}

.footer-link {
	width: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-link img {
	width: 40px;
}

.footer-link a {
	color: #fff !important;
	font-size: 14px;
}

.center img {
	width: 200px;
	margin: 0 0 10px;
}

.footerlinks {
	width: 28%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 20px;
	color: #fff;
	text-align: left;
}

.ssl-img img {
	width: 90px;
}


.footerlinks a {
	font-size: 14px;
	color: #ffffff;
	margin: 0 6px;
}

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

.copyrights {
	font-size: 14px;
	color: #fff;
}

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

.social-icon {
	display: flex;
	gap: 5px;
	width: 100%;
	float: left;
}

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

.cookiesection {
	width: 100%;
	float: left;
	min-height: calc(100vh - 126px);
	padding: 20px 0;
	margin-top: 80px;
}

.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: 20px;
	margin-bottom: 0 !important;
	left: 20px;
	border-radius: 0;
	text-align: center;
	width: 300px;
	margin: auto;
	margin-bottom: auto;
	padding: 20px 10px !important;
	display: flex;
	justify-content: space-between;
	border-radius: 0px !important;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	border-radius: 20px !important;
}

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

.accordion-button span {
	font-size: 16px;
	color: #ffffff;
}

.btn-change {
	background-color: transparent;
	color: #1a0061;
	border: 1px solid #1a0061;
}

.btn-change:hover {
	background-color: #1a0061;
	color: #fff;
}

.section5 .btn-change {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.section5 .btn-change:hover {
	background-color: #fff;
	color: #1a0061;
}

@media (max-width:800px) {
	.banner h1 {
		font-size: 28px;
	}

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

	.h2 {
		font-size: 20px;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.service-item {
		width: 100%;
	}

	.flexbox>img {
		max-width: 100%;
		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;
	}

	.flex-custom {
		width: 31%;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.img-size {
		width: 100%;
	}

	.footerlinks {
		width: 49%;
	}

	.footerlinks:first-child {
		width: 100%;
		float: left;
	}

	.formbox {
		margin: 0 0 20px
	}

	.footer-text {
		flex-direction: column-reverse;
		gap: 10px;
	}

	.flexgroupbox {
		width: 100%;
	}

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

	.box3 {
		width: 49%;
	}

	.footerlinks {
		width: 100%;
	}

	.resource-card {
		width: 100%;
		margin: 0 0 10px;
	}

	.mega-dropdown {
		width: 300px !important;
		max-width: 70% !important;
	}

	.left {
		width: 100%;
		align-items: center !important;
	}

	.flexgroup {
		justify-content: center;
		gap: 1%;
	}

	.img-box {
		justify-content: center;
		gap: 1%;
	}

	.img-cu {
		width: 31%;
	}

}

@media (max-width:510px) {
	.flex-custom {
		width: 49%;
	}

	.img-cu {
		width: 49%;
	}

}
.left{
	width: 257px;
	text-align: left;
}
.para > strong{
	font-size: 16px;
}
.span-o{
	opacity: 0;
}