@charset "utf-8";

												/* ALL PAGES -- ALL PAGES */
												/* ALL PAGES -- ALL PAGES */
												/* ALL PAGES -- ALL PAGES */




/* COLOURS */
/* COLOURS */
/* COLOURS */



:root {
	--bmfa-blue: #202444;
	--bmfa-red: #b71918;
	--bmfa-black: #141414;
	--bmfa-dark-grey: #4f4f4f;
	--bmfa-grey: #a2a2a2;
	--bmfa-medium-grey: #7a7a7a;
	--bmfa-light-grey: #434d89;
	--bmfa-white: #eeeeef;
	--bmfa-green: #03cea4;
	--bmfa-orange: #f3a712;
	--must-red: #cc3333;
	--may-amber: #cc9533;
	--should-green: #33cc36;
}



/* BODY */
/* BODY */
/* BODY */



html {
	height: 100%;
}


body {
	font-family: Arial;
	height: 100vh;
	width: 100%;
	min-height: 100%;
	overflow-x: hidden !important;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	background-color: var(--bmfa-white);
	display: flex;
	flex-direction: column;
}

a:hover {
 cursor:pointer;
}

.break {
	flex-basis: 100%;
	height: 50px;
}

.break-2 {
	flex-basis: 100%;
	height: 25px;
}

.break-line {
	flex-basis: 100%;
	height: 0;
	margin: 0;
	border-bottom: 5px solid var(--bmfa-white);
}


/* TYPOGRAPHY */
/* TYPOGRAPHY */
/* TYPOGRAPHY */



@font-face {
	font-family: Arial;
	src: url("../Fonts/Arial.ttf");
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: Arial;
	src: url("../Fonts/Arial Italic.ttf");
	font-weight: 100;
	font-style: italic;
}

@font-face {
	font-family: Arial;
	src: url("../Fonts/Arial Bold.ttf");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: Arial;
	src: url("../Fonts/ARIBL0.ttf");
	font-weight: 800;
	font-style: normal;
}

h1 {
font-size: 72px;
color: var(--bmfa-blue);
font-weight: 700;
line-height: 1.2;
margin-top: 150px;
margin-bottom: 75px;
padding: 0;
letter-spacing: 0.5px;
}

@media screen and (max-width:1400px) {
	h1 {
		font-size: 60px;
	}
}

@media screen and (max-width:800px) {
	h1 {
		font-size: 36px;
	}
}

@media screen and (max-width:400px) {
	h1 {
		font-size: 24px;
	}
}

h2 {
font-weight: 400;
color: var(--bmfa-red);
font-size: 18px;
marging-bottom: 50px;
padding: 0;
line-height: 1.5;
letter-spacing: 0.5px;
}

h3 {
font-weight: 800;
color: var(--bmfa-blue);
font-size: 36px;
padding: 0;
line-height: 1.5;
letter-spacing: 0.5px;
}

h4 {
color: var(--bmfa-red);
font-size: 32px;
font-weight: 800;
line-height: 1.5;
letter-spacing: 0.5px;
}

h5 {
color: var(--bmfa-green);
font-size: 24px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.5px;
}

h6 {
color: var(--bmfa-white);
font-size: 36px;
font-weight: 800;
line-height: 1.5;
letter-spacing: 0.5px;
margin: 0;
padding: 0;
}

a {
font-weight: 400;
margin: 0;
text-decoration: none;
color: #141414;
letter-spacing: 0.5px;
}

p {
color: var(--bmfa-black);
font-weight: 100;
font-size: 18px;
margin: 27px 0 0 0;
padding: 0;
line-height: 1.5;
letter-spacing: 0.5px;
}

.art16-link {
	font-weight: 800;
}

.art16-link:hover {
	font-weight: 800;
	color: var(--bmfa-green);
}


/* BUTTONS */
/* BUTTONS */
/* BUTTONS */




.blue {
	z-index: 500;
	display: block;
	cursor: pointer;
	width: 300px;
	margin-top: 50px;
	background-color: var(--bmfa-white);
	padding: 15px;
	border-radius: 15px;
	border: 2px solid var(--bmfa-blue);
	text-align: center;
	transition: background-color 150ms;
}
.blue p {
	font-size: 20px;
	font-weight: 800;
	color: var(--bmfa-red);
	text-decoration: none;
	text-align: center;
	margin: auto;
}
.blue:hover {
	background-color: var(--bmfa-orange);
}
.blue:hover p {
	color: var(--bmfa-white);
}

.white {
	z-index: 500;
	display: block;
	cursor: pointer;
	width: 300px;
	margin-top: 50px;
	background-color: var(--bmfa-blue);
	padding: 15px;
	border-radius: 15px;
	border: 2px solid var(--bmfa-white);
	text-align: center;
	transition: background-color 150ms;
}
.white p {
	font-size: 20px;
	font-weight: 400;
	color: var(--bmfa-white);
	text-decoration: none;
	text-align: center;
	margin: auto;
}
.white:hover {
	background-color: var(--bmfa-green);
}
.white:hover p {
	color: var(--bmfa-black);
}




/* LISTS */
/* LISTS */
/* LISTS */



ul	p {
	font-weight: 800;
}

li {
	list-style: circle;
}



/* HEADER */
/* HEADER */
/* HEADER */




.header-bar {
	position: fixed;
	z-index: 1000;
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
	height: 60px;
	background-color: #202444;
}

.header-content {
	width: 80%;
	height: 100%;
	margin-left: 10%;
	margin-right: 10%;
	display: flex;
	align-items: center;
}

.logo {
	font-weight: 800;
	color: var(--bmfa-white);
}

.logo:hover {
	color: var(--bmfa-green);
}

.header-content a {
	color: #7E959F;
	text-decoration: none;
	font-size: 28px;
	font-weight: 100;
}

.header-content a:hover {
	color: #6BBD9E;
}

.header-content a:active {
	color: #7E959F;
}



/*   HERO   */
/*   HERO   */
/*   HERO   */



.hero-bar {
	z-index: 1000;
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
	background-color: #202444;
}

.hero-title {
	width: 80%;
	max-width: 900px;
	margin-left: 10%;
	margin-right: 10%;
}

@media screen and (max-width:800px) {
	.hero-title {
	width: 90%;
	min-width: 300px;
	margin-left: 5%;
	margin-right: 5%;
	}
}

.hero-content {
	width: 80%;
	max-width: 600px;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 100px;
}

@media screen and (max-width:800px) {
	.hero-content {
	width: 90%;
	min-width: 300px;
	margin-left: 5%;
	margin-right: 5%;
	}
}




/*   CONTENT   */
/*   CONTENT   */
/*   CONTENT   */




.colour-boxes {
	width: 80%;
	max-width: 900px;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 150px;
}

@media screen and (max-width:800px) {
	.colour-boxes {
	width: 90%;
	min-width: 300px;
	margin-left: 5%;
	margin-right: 5%;
	}
}

.body-content {
	width: 80%;
	max-width: 600px;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 150px;
}

@media screen and (max-width:800px) {
	.body-content {
	width: 90%;
	min-width: 300px;
	margin-left: 5%;
	margin-right: 5%;
	}
}



/*  COLOURED BOXES  */
/*  COLOURED BOXES  */
/*  COLOURED BOXES  */



.your-drone-must {
	background-color: var(--bmfa-dark-grey);
	margin-top: 50px;
	padding: 50px 50px 50px 30px;
	border-radius: 25px;
}

.your-drone-must h3 {
	margin: 0;
	padding: 0;
	color: var(--bmfa-white);
}

.your-drone-must p {
	color: var(--bmfa-white);
}

.your-drone-must li {
	color: var(--bmfa-white);
}

.must {
	background-color: var(--must-red);
	margin-top: 100px;
	padding: 50px 50px 50px 30px;
	border-radius: 25px;
}

.must h3 {
	margin: 0;
	padding: 0;
	color: var(--bmfa-white);
}

.must p {
	color: var(--bmfa-white);
}

.must li {
	color: var(--bmfa-white);
}

.may {
	background-color: var(--may-amber);
	margin-top: 100px;
	padding: 50px 50px 50px 30px;
	border-radius: 25px;
}

.may h3 {
	margin: 0;
	padding: 0;
	color: var(--bmfa-white);
}

.may p {
	color: var(--bmfa-white);
}

.may li {
	color: var(--bmfa-white);
}

.should {
	background-color: var(--bmfa-blue);
	margin-top: 100px;
	padding: 50px 50px 50px 30px;
	border-radius: 25px;
}

.should h3 {
	margin: 0;
	padding: 0;
	color: var(--bmfa-white);
}

.should p {
	color: var(--bmfa-white);
}

.should li {
	color: var(--bmfa-white);
}



/*  FOOTER  */
/*  FOOTER  */
/*  FOOTER  */



.footer-bar {
	z-index: 1000;
	width: 100%;
	margin-top: auto;
	padding-top: 50px;
	padding-bottom: 150px;
	display: flex;
	flex-direction: column;
	align-items: left;
	background-color: #202444;
}

.footer-content {
	width: 80%;
	max-width: 500px;
	height: 100%;
	margin-left: 10%;
	margin-right: 10%;
}

@media screen and (max-width:800px){
	.footer-content {
	width: 90%;
	min-width: 300px;
	margin-left: 5%;
	margin-right: 5%;
	}
}

.footer-content p {
	font-size: 14px;
	font-weight: 100;
	color: var(--bmfa-white);
}


/*   END   */
/*   END   */
/*   END   */



.art16link {
}
