@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); */
@import url("https://use.fontawesome.com/releases/v5.6.0/css/all.css");

body {
	margin: 0px;
	background-size: 100%;
	background-color: #E5E5E5;
	box-sizing: border-box;
}

img {
	border: 0px;
}

a {
	text-decoration: none !important;
}

a:hover {
	color: #FCA311;
	text-decoration: none !important;
}

a,
input {
	/* Fade */
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-opera-transition: .2s;
}

@media (min-width: 992px) {
	.container, .container-lg, .container-md, .container-sm {
		max-width: 100%;
	}
}

.page {
	font-family: 'Raleway', sans-serif;
}

.page .top {
	background-color: #EEEEEE;
	display: flex;
	z-index: 9999;
	width: 100%;

	border-bottom: 3px solid #FCA311;
}

.page .top .container {
	position: relative;
	margin: 0px auto;
	padding: 20px 10px;

	width: 100%;
	max-width: 1200px;

	display: flex;
	justify-content: space-between;
}

.page .top .container .logo {
	display: flex;
	align-items: center;
}

@media screen and (max-width:1000px) {
	.page .top .container .logo {
		order: 1;
	}
}

.page .top .container .restricted-area {
	display: flex;
	justify-content: center;
	align-items: center;

	padding: 10px 20px;
	background-color: #0A4D8C;
	border-radius: 25px;
}

@media screen and (max-width:1000px) {
	.page .top .container .restricted-area {
		padding: 10px 15px;
		order: 2;
	}
}

.page .top .container .restricted-area:hover {
	background-color: #FCA311;
}

.page .top .container .restricted-area span {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	font-weight: 700;
}

@media screen and (max-width:1000px) {
	.page .top .container .restricted-area span {
		display: none;
	}
}

.page .top .container .restricted-area img {
	margin: 0px 10px 0px 0px;
}

@media screen and (max-width:1000px) {
	.page .top .container .restricted-area img {
		margin: 0;
	}
}

.page .top .container .btn-menu {
	display: none;
}

@media screen and (max-width:1000px) {
	.page .top .container .btn-menu {
		display: flex;
		width: 29px;
		order: 3;
	}

	.page .top .container .btn-menu img {
		width: 29px;
	}
}

.page .top .container .btn-menu-close {
	display: none;
}

@media screen and (max-width:1000px) {
	.page .top .container .btn-menu-close.active {
		position: absolute;
		z-index: 9999;
		top: 20px;
		right: 20px;

		display: block;

		width: 30px;
	}
}

.page .menu-background {
	display: none;
}

@media screen and (max-width:1000px) {
	.page .menu-background.active	{
		background: #000001;

		position: fixed;
		z-index: 9994;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;

		display: block;
		opacity: 0.6;
	}
}

.page .top .container .menu {
	background: none;
	position: relative;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width:1000px) {
	.page .top .container .menu.active {
		top: -20px;
		grid-area: 1;
	}
}

.page .top .container .menu > li {
	display: flex;
	margin: 0px 5px;
	padding: 0;
	position: relative;
}

.page .top .container .menu > li > a {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 18px;
	color: #6B6B6B;
	font-weight: 600;

	padding: 10px 15px;
	border-radius: 3px;
}

.page .top .container .menu > li > a:hover,
.page .top .container .menu > li > a.active {
	color: #252525;
	/* background-color: #FCA311; */
}
  
.page .top .container .menu,
.page .top .container .menu ul {
	padding: 0px;
	list-style: none;
}

.page .top .container .menu > li > ul
{
background:#064B8E;

position:absolute;
z-index:9996;
top:38px;
left:5px;

display:none;
width:260px;

padding:10px 12px 10px 12px;
border-radius:15px;
}

.page .top .container .menu > li:hover > ul,
.page .top .container .menu > li.active > ul
{
display:block;
}

.page .top .container .menu > li > ul > li > a
{
font-family:'Raleway', sans-serif;
font-size:15px;
line-height:18px;
color:#FFFFFF;
font-weight:600;

border-bottom:1px solid #FFFFFF;

padding:10px;
display:block;
}

.page .top .container .menu > li > ul > li:last-child > a
{
border-bottom:none;
}

.page .top .container .menu > li > ul > li > a:hover
{
color:#FFFFFF;
background:#99B9D3;
border-bottom:1px solid #99B9D3;
}
	
@media screen and (max-width:1000px)
{
	.page .top .container .menu {
		background: #064B8E;

		position: absolute;
		z-index: 9998;
		top: 0px;
		right: 0px;
		left: 0px;	

		margin-bottom: 0px;	
		padding: 40px 10px 30px 10px;
		display: none;
		width: 100%;
		
		border-radius: 0px;
	}

	.page .top .container .menu.active {
		display: block;
		text-align: center;	
	}

	.page .top .container .menu > li {
		background: none;
		clear: both;	
		
		width: 100%;
		margin: 5px 0;
		flex-direction: column;
	}
	
	.page .top .container .menu > li > a
	{
		background:none;

		font-size:18px;
		line-height:21px;
		color:#FFFFFF;
		font-weight:500;
		text-align:center;

		padding:6px 0px 10px 0px !important;
		margin:0px auto 5px auto !important;
		
		width:300px;
		display:inline-block;
		
		border-bottom:2px solid #FFFFFF;
		border-radius: 0px;
	}

	.page .top .container .menu > li > a:hover,
	.page .top .container .menu > li > a.active,
	.page .top .container .menu > li:hover > a,
	.page .top .container .menu > li.active > a {
		color: #FFFFFF;
		border-bottom: 2px solid #FCA311;
	}

	.page .top .container .menu > li > a:before {
		background: #FFFFFF;
	}

	.page .top .container .menu > li > a:hover {
		color: #FFFFFF;	
	}
	
	.page .top .container .menu > li > ul
	{
	background:none;
	
	position:inherit;
	z-index:9996;
	top:0px;
	left:0px;
	
	display:none;
	width:90%;
	}
	
	.page .top .container .menu > li:hover > ul,
	.page .top .container .menu > li.active > ul
	{
	margin:0px auto;
	display:block;
	}
	
	.page .top .container .menu > li > ul > li > a
	{
	font-family:'Raleway', sans-serif;
	font-size:15px;
	line-height:18px;
	color:#99B9D3;
	font-weight:600;
	letter-spacing:0px;
	text-align:center;
	
	padding:10px 0px 10px 0px;
	
	border-bottom:none;
	}
}

.page .menu-background{
	display: none;
}

@media screen and (max-width:960px)
{
	.page .menu-background.active {
		background: #000001;

		position: fixed;
		z-index: 9994;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;

		display: block;
		opacity: 0.6;
	}
}

.page .footer {
	background-color: #001233;
	display: block;

	width: 100%;
}

.page .footer .container {
	padding: 40px 10px;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

@media screen and (max-width:1000px) {	  
	.page .footer .container {
		padding: 25px 10px;
		flex-direction: column;
	} 
}

.page .footer .container .item {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	font-weight: 500;
	
	padding: 10px;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
	width: 100%;

	background-color: #001233;
}

@media screen and (max-width:1000px) {	  
	.page .footer .container .item:first-child,
	.page .footer .container .item:last-child {
		display: none;
	}
	
	.page .footer .container .item {
		justify-items: center;
	}
}

.page .footer .container .item > ul {
	margin: 0;
	padding: 0;
}

.page .footer .container .item > ul > li {
	list-style: none;
	margin-bottom: 10px;
}

.page .footer .container .item > ul > li:last-child {
	margin-bottom: 0;
}

.page .footer .container .item > ul > li a {
	color: #FFFFFF;
}

.page .footer .container .item > ul > li a:hover {
	color: #FCA311;
}

.page .footer .container .item h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	font-weight: 600;
	
	display: flex;
	padding: 0;
	margin: 0px 0px 20px 0px;
}

@media screen and (max-width:1000px) {	  
	.page .footer .container .item h1  {
		justify-content: center;
	}
}

.page .footer .container .item h1 img {
	margin-right: 10px;
}

.page .footer .container .item span,
.page .footer .container .item span a {
	color: #888899;
	font-weight: 500;
}

@media screen and (max-width:1000px) {	  
	.page .footer .container .item span  {
		text-align: center;
	}
}

.page .footer .container .item span a:hover {
	color: #FCA311;
}

.page .footer .container .item span.email {
	margin-top: 20px;
}

.page .footer .container .item span.email:last-child {
	margin-top: 0;
}

.page .footer .copyright {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	font-weight: 600;

	background-color: #000E27;

	padding: 20px 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

@media screen and (max-width:1000px) {	  
	.page .footer .copyright  {
		font-size: 13px;
		line-height: 16px;

		flex-direction: column;
	}
}

.page .footer .copyright .social-media {
	display: flex;
	gap: 0.4rem;
}

@media screen and (max-width:1000px) {	  
	.page .footer .copyright .social-media  {
		margin-top: 12px;
	}
}

.page .footer .copyright .social-media a {
	font-size: 22px;
	color: #FFFFFF;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #FCA311;
	border-radius: 18px;
	padding: 6px;
	min-width: 34px;
}

.page .footer .copyright .social-media a:hover {
	background-color: #FDC668;
}
  
.page .footer .container .developed {
	margin-top: 40px;
	display: flex;
	justify-content: end;
	align-items: end;
}

.page .footer .container .developed img {
	width: 100px;
}

.page .footer .cookies {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 17px;
	font-weight: 500;
	color: #504F4B;

	background: #FFFFFF;
	position: fixed;
	bottom: 20px;
	z-index: 9999;

	display: flex;
	margin: 0px auto;
	padding: 15px;
	width: 100%;
	max-width: 1200px;
	
	left: 10px;
	right: 10px;

	box-shadow: 0px 0px 20px #D6D6D6;
	border-radius: 5px;
}

@media screen and (max-width:1024px)
{	  
  .page .footer .cookies {
	  flex-direction: column;
	  width: 95%;
  } 
}

.page .footer .cookies font {
	float: left;
}

.page .footer .cookies a {
	color: #FCA311;
	font-weight: 700;
}

.page .footer .cookies .btn-aceito {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height:17px;
	color: #FFFFFF;
	font-weight: 700;
	text-align: center;

	background: #0A4D8C;
	margin-left: 25px;
	padding: 12px;
	float: right;
	min-width: 180px;

	border-radius: 20px;
}

.page .footer .cookies .btn-aceito:hover {
	background: #FCA311;
}

  @media screen and (max-width:1024px)
  {	  
	.page .footer .cookies .btn-aceito {
		margin: 20px 0px 0px 0px;
		float: left;
	} 
  }

.page .container {
	max-width: 1200px;
}

.text {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 18px;
	/* letter-spacing: -0.5px; */
	color: #525252;
	font-weight: 400;
	text-align: justify;

	margin: 0px;
}