* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: nunito sans;
	font-weight: bold;
}

html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

.btn {
	display: inline-block;
	border: 0;
	outline: 0;
	border-radius: 0px;
	margin-left: 50px;
	background: transparent;
	cursor: pointer;
	width: 15%;
}

.btn img{
	width: 100%;
}

.nav ul {
	list-style: none;
	width: 100%;
	text-align: right;
	margin-right: 40px;
}


.nav ul li {
	float: right;
	display: inline;
	position: relative;
	width: auto;
}

.nav a {
	padding: 1.4em;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 1.2em;
	color: white;
	display: block;
	text-decoration: none;
	text-align: center;
	transition: all 0.1s ease;
}

.nav a:hover {
	cursor: pointer;
	background-color: #5509a7;
}

.nav {
	width: 100%;
	display: flex;
	text-align: center;
	justify-content: space-between;

}

.about a{
	display: flex;
}

.dropdown-icon {
	font-size: 1.2em;
	position: relative;
	right: -5px;
	transform: rotate(0deg);
	transition: 0.2s ease-in-out all;
}

.about:hover .dropdown-icon{
	transform: rotate(180deg);
}

#submenu{
	transition: all 0.1s ease;
	left: 0;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: 1;
}

li:hover ul#submenu{
	opacity: 1;
	display: block;
	visibility: visible;
}

#submenu li{
	float: none;
	width: 120%;
}

#submenu a:hover{
	background-color: #7413dc;
}

#submenu a{
	width: 150%;
	background-color: #5609a8;
	text-align: left;
}

.header {
	background-color: #7413dc;
	display: inline-block;
}

.container {
	margin: 0 auto;
	width: 100%;
	min-height: 105vh;
	padding: 0px;
}

.breadcrumbs {
	width: 100%;
	background-color: #5509a7;
	color: white;
}

.breadcrumbs a{
	padding: 1em;
	color: white;
	text-decoration: none;
	font-size: 1em;
}

.breadcrumbs ul {
	margin-left: 35px;
	list-style: none;
	width: 100%;
	text-align: left;
	padding-block: .5em;

}

.breadcrumbs ul li {
	display: inline;
}

.breadcrumbs a:hover{
	text-decoration: underline;
}

h1 {
	font-size: 2.8em;
	margin-left: 8%;
	color:white;
	display: inline-block;
	text-align: center;
	font-weight: bolder;
}

.title-text h2{
	margin-left:8%;
	margin-bottom:1em;
}

h2 {
	font-size: 1.2em;
	margin-top: 1em;
	color:white;
	display: inline-block;
	font-weight: 350;
	margin-right:50px;
}

h3 {
	font-size: 1.2em;
	margin-top: 1em;
	color:black;
	display: inline-block;
	font-weight: 350;
}
h5 {
	font-size: 1.2em;
	margin-top: 1em;
	color:black;
	display: inline-block;
	font-weight: bold;
}

h4 {
	font-size: 2em;
	color:black;
	display: inline-block;
	text-align: center;
	font-weight: bolder;
	text-align: left;
}

.title-text {
	background-color:#003982;
	padding: 2em;
	width:100%;
	margin:0;
	display:inline-block;
}

.intro{
	display:inline-block;
	background-color: lightgrey;
	width:60%;
	margin-inline: 20%;
	margin-top: 2%;
	padding: 2em;
}

.intro2{
	display:inline-block;
	background-color: #003982;
	width:60%;
	margin-inline: 20%;
	margin-top: 2%;
	padding: 2em;
}

.intro2 h3, .intro2 h4{
	color:white;
}

.footer{
	background-color: #7413dc;
	padding:2em;
	margin-top:50px;
}

.logo-footer{
	margin-bottom:20px;
	margin-left: 45%;
	margin-top:20px;

}
.logo-footer img{
	width:100%;
}

