@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&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;
	font-family: "Google Sans Flex", sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Google Sans Flex", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Black Ops One", sans-serif;
}


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

nav {
	width: 100%;
	background: rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 14px;
	padding: 12px 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	position: absolute;
	z-index: 4;
}


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


.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-size: 30px;
	font-family: "Black Ops One", serif;
	font-weight: 200 !important;
}

.menu-toggle {
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
}


.menu {
	display: none;
	flex-direction: column;
	gap: 12px;
	margin-top: 15px;
}


.menu a {
	color: #fff;
	font-weight: 200;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	transition: all .3s;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .4) !important;
}

.menu a:hover {
	transform: translateY(-3px);
}


.menu.active {
	display: flex;
	animation: fadeIn .3s ease
}


@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-8px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

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

.banner {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 50%, transparent 79%),
		url(../img/banner.jpg) center;
	background-size: cover;
	padding: 20px 0 100px 0;
	position: relative;
	color: #fff;
}

.banner2 {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 50%, transparent 79%), url(../img/banner2.jpg) center;
	background-size: cover;
}

.div {
	position: absolute;
	width: 100%;
	bottom: -2px;
	fill: #fff;
	transform: rotate(-180deg);
}

.div1 {
	fill: #294f62;
}

.banner-inner .container {
	min-height: 250px !important;
}

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

.banner h1 {
	font-size: 36px;
	font-weight: 700;
}

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

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

.content {
	width: 45%;
	float: left;
}

.Btn {
	--width: 200px;
	--height: 50px;
	width: var(--width);
	height: var(--height);
	padding: 0;
	background: linear-gradient(90deg, #294f62 0%, #4582a0 100%);
	color: #000;
	font-weight: bold;
	border: none;
	overflow: hidden;
	border-radius: 0.6em;
	box-shadow: 0 0 10px #7f7f7f;
	transition: 0.2s;
	font-family: Arial, Helvetica, sans-serif;
	cursor: pointer;
	text-decoration: none;
	user-select: none;
	display: inline-flex;
	font-size: 16px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.Btn span {
	display: block;
	position: relative;
	z-index: 1;
}

.Btn::after {
	content: "";
	transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
	transition-duration: 400ms;
	background: #ffffff;
	border-radius: 50%;
	--size: calc(var(--width) + 10px);
	width: var(--size);
	height: var(--size);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.Btn:hover::after {
	width: 0;
	height: 0;
}

.Btn:hover {
	transition: 0.2s;
	color: #fff;
}

.Btn:active {
	transform: scale(0.97);
}

/*** disabled style ***/
.Btn:disabled {
	pointer-events: none;
	opacity: .65;
	color: #7e7e7e;
	background: #dcdcdc;
	text-shadow: none;
	box-shadow: none;
	border: solid 1px #dcdcdc;
}

.Btn:disabled::after {
	background: #dcdcdc;
}

.section1 {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/img-3.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}

.img {
	width: 40%;
	position: relative;
	height: 700px;
	border-radius: 20px;
	overflow: hidden;
}

.img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img1 {
	height: 550px;
}

.m-t2 {
	margin-top: 112px;
}

.cont {
	position: absolute;
	width: 70%;
	background: #294f62;
	color: #fff;
	padding: 15px;
	top: 55px;
	right: 46px;
	border-radius: 20px;
}

.m-t {
	margin-top: 172px;
}

.clr {
	background-color: #000000;
	float: left;
	padding: 15px;
	margin: 0 0 15px;
	color: #fff;
	border-radius: 10px;
	border-right: 7px solid #366d88;
}

.m-t1 {
	margin: 0 0 30px;
}

.card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	width: 30%;
	border-radius: 24px;
	line-height: 1.6;
	transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
	margin: 0 0 20px;
}

.card2 {
	width: 48%;
	width: 48%;
}

.content1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	height: 100%;
	padding: 22px;
	border-radius: 22px;
	color: #ffffff;
	overflow: hidden;
	background: #030303;
	transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content1::before {
	position: absolute;
	content: "";
	top: -4%;
	left: 50%;
	width: 90%;
	height: 90%;
	transform: translate(-50%);
	background: #294f62;
	z-index: -1;
	transform-origin: bottom;

	border-radius: inherit;
	transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content1::after {
	position: absolute;
	content: "";
	top: -8%;
	left: 50%;
	width: 80%;
	height: 80%;
	transform: translate(-50%);
	background: #36718e;
	z-index: -2;
	transform-origin: bottom;
	border-radius: inherit;
	transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content1 .para {
	z-index: 1;
	opacity: 1;
	font-size: 14px;
	transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
	transform: translate(0px, -16px);
}

.card:hover .content1::before {
	rotate: -5deg;
	top: 0;
	width: 100%;
	height: 100%;
}

.card:hover .content1::after {
	rotate: 5deg;
	top: 0;
	width: 100%;
	height: 100%;
}

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

.m-b {
	padding-bottom: 150px;
}

.flexbody {
	flex: 1;
}

.ul {
	width: 100%;
	float: left;
}

.ul li {
	font-size: 14px;
	line-height: 29px;
}

.h2 {
	font-size: 30px;
	font-weight: 200;
	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 {
	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%;
	object-fit: cover;
}

.center {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}

.center>img {
	width: 100%;
	height: 250px;
	border-radius: 20px;
	object-fit: cover;
	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: 30px;
	flex-wrap: wrap;
}

.group {
	gap: 0;
	justify-content: space-between;
}

.flexgroupbox {
	width: 24%;
	background: #294f62;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	color: #fff;
	padding: 15px;
	border-radius: 10px;
}

.flexgroupbox h4 {
	font-size: 16px;
	background-color: #000;
	padding: 10px;
	width: 100%;

}

.sec {
	background: linear-gradient(rgba(0, 0, 0, 0.5)), url(../img/img-4.jpg) center;
	background-size: cover;
}

.sec1 {
	background: linear-gradient(rgba(0, 0, 0, 0.5)), url(../img/img-9.jpg) center;
	background-size: cover;
}

.right-img {
	position: absolute;
	width: 30%;
	right: 0;
	top: 20px;
	opacity: 0.4;
}


footer .ul li {
	line-height: 50px;
	text-align: left;
}

.flex1 {
	margin: 0 0 10px;
}

iframe {
	width: 100%;
}

.formsection {
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	margin: 20px 0;
}

.formsection:before {
	content: '';
	width: 100%;
	height: 100%;
	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: 15px;
	line-height: 1.5;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 800px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #000;
	border-radius: 10px;
}

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

.form-w {
	width: 100%;
}

.flex {
	width: 49%;
	align-items: flex-start;
	text-align: left;

}

.box {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	background-color: #000;
	margin: 0;
	margin: 0 0 10px;
}

.box h4 {
	padding: 0;
}

footer {
	background-color: #294f62;
	text-align: center;
	padding: 20px 0;
	position: relative;
	color: #fff;
}

footer .container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer-p {
	font-size: 16px;
}


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

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

.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;
	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: 0;
	margin-bottom: 0 !important;
	left: 0;
	max-width: 100%;
	text-align: center;
	width: 30%;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;
	align-items: center;
	border-radius: 10px;
}

.alert-dismissible {
	z-index: +3;
}

.alert-close {
	border: 1px solid transparent;
	border-radius: 4px;
	background: #36718e;
	color: white;
	padding: 0px !important;
	width: 6rem;
	height: 2rem;
	font-size: 14px;
}

.hide {
	display: none;
}

span {
	font-weight: bold;
}

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

.hide {
	display: none;
}

@media (max-width:800px) {
	.banner h1 {
		font-size: 28px;
		text-align: center;
		margin-top: 70px;
	}

	.banner p {
		text-align: center;
	}

	.flexgroupbox {
		width: 100% !important;
	}

	.banner {
		padding: 20px 0 40px;
	}

	.footerlinks a {
		font-size: 15px;
	}

	.h2 {
		font-size: 20px;
	}

	footer {
		margin: 0;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox>img {
		max-width: 100%;
		order: 1;
		height: 200px;
		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;
		margin: 10px 0;
	}

	.alert {
		width: 100%;
		left: 0;
	}

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

	.card {
		width: 100%;
	}

	.flexgroup {
		gap: 0;
	}

	.brand {
		font-size: 25px;
	}

	.img {
		width: 100%;
		height: auto;
	}

	.cont {
		width: 100%;
		position: relative;
		left: 0;
		top: -50px;
	}

	.m-t {
		margin-top: -35px;
	}

	.right-img {
		width: 80%;
		bottom: 0;
		top: auto;
		z-index: -3;
	}

	.m-b {
		padding-bottom: 50px;
	}

	.m-t2 {
		margin-top: -39px;
	}
}