html {
  height: 100vh
}

body {
  width: 100%;
  min-height: 100%;
	margin: 0 auto;
  font-family: Futura, Avenir, Verdana, Geneva, Tahoma, sans-serif;
  /* overflow-x: hidden; */
}

.body {
  min-height: 100vh;
}

img {
  max-height: 100%;
	max-width: 100%;
}

div {
	position: relative;
  margin: 0 auto;
	/* border: 1px solid red; */
}

.no-padding {
	padding: 0px;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.logo {
	background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
	min-width: 14em;
	max-height: 10em;
	min-height: 12vh;
	height: 12vh;
}

.image {
	background-position: center;
	background-repeat: no-repeat;
  background-size: contain;
  max-height: 100%;
	max-width: 100%;
}

.image.fit {
	background-size: cover;
}

.image.link:hover {
  filter: brightness(1.05);
  -webkit-filter: brightness(1.05);
  cursor: pointer;
}

.image.parallax {
	/* Set a specific height */
	/* height: 500px; */

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-size: cover;
}

@media (max-width: 50em) and (orientation : landscape) {

.image.parallax {
    /* position: fixed; */
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    overflow: hidden;
  }
}

@media (max-width: 50em) and (orientation: portrait){
image.parallax {
    position: fixed;
    top: 0px;
    left: -50%;
    height: 100vh;
    z-index: -1;
  }
}

.white-band {
	background-color: rgba(255, 255, 255, 0.8);
	width: 100%;
	z-index: 2;
}

.image-title {
	font-size: 2em;
	color: #EEE;
	vertical-align: center;
	padding: 0.5em 0em;
}

.text-small {
	font-size: 1.5em;
}

.text-smaller {
	font-size: 1.2em;
	padding: 0.3em 0em;
}

.text-extra-small {
	font-size: 0.6em;
	padding: 0.1em 0em;
}


.image-title.blue {
	color: rgba(0, 0, 155, 0.7);
}

.absolute-center {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
}

.absolute-middle {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	height: auto;
}

.absolute-center-middle {
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.dark-shadow {
	filter: drop-shadow(1px 2px rgba(1, 8, 83, 0.3));
}

.light-shadow {
	filter: drop-shadow(1px 1px rgba(217, 219, 236, 0.7));
}

.dark-overlay {
	background-color: rgb(0, 0, 0);
	background-size: cover;
}

.dark-overlay .image, .dark-overlay img {
	opacity: 0.8;
}

/* HEADER  */

header {
	margin: 0 auto;
}

section {
  width: 100%;
}

.navbar {
  margin: 0 auto;
  z-index: 100;
  position: fixed;
  width: 100%;
  /* width: 100vw; */
	padding-left: 4em;
	padding-right: 4em;
	top: 2em;
	min-height: 5em;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-ms-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}

@media screen and (max-width: 850px) {
	.navbar {
		padding-left: 1em;
		padding-right: 1em;
	}
}

.navbar-padding {
  padding-top: 6em
}

/* MENU */

a {
	text-decoration: none;
	color: #00009b;
}
a:hover {
	text-decoration: none;
	color: rgb(180, 34, 15) !important;
}

.menu a:visited {
	color: #00009b;
}

a:active {
	text-decoration: none;
	color: rgb(180, 34, 15);
}

.menu a {
	font-size: 1.2em;
	color: #00009b;
	font-weight: 300;
	padding: 0.5em;
}

.menu a:visited {
	color: #00009b;
}

.menu a:hover {
	color: rgb(233, 59, 36);
}

.menu a:active {
	color: rgb(180, 34, 15);
}

/* RESPONSIVE menu */

.menuicon {
	cursor: pointer;
	color: #00009b;
	display: none;
	font-size: 2em;
	font-weight: bold;
	vertical-align: middle;
}

@media screen and (max-width: 978px) { /* sm=48em */
  /* .menu {display: none;} */

	.menuicon {
		display: block;
	}

	.menu {
		text-align: center;
		max-height: 0px;
		overflow: hidden;
		-webkit-transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-ms-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
		display: block;
    min-width: 90vw;
	}

	.menu a {
    display: block;
    text-align: center;
	}

  .menu.responsive {
    height: auto;
		max-height:100vh;
  	overflow-y: none;
		-webkit-transition: all 0.5s ease-in;
		-moz-transition: all 0.5s ease-in;
		-ms-transition: all 0.5s ease-in;
		-o-transition: all 0.5s ease-in;
		transition: all 0.5s ease-in;
	}
}

/* STICKY menu */

.navbar.sticky {
	background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #63d8ff;
}

.sticky {
  position: fixed;
  top: 0;
}

.navbar.sticky-forced {
  background-color: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #63d8ff;
  position: fixed;
  top: 0;
}

@media screen and (max-width: 768px) {
	.sticky {
		/* padding-top: 1em; */
		position: fixed;
		top: 0;
	}
}

/* TEXT */

.spaced-box {
	padding: 1em;
}

.spaced-row {
	padding: 1.5em 0em;
}

.spaced-bottom {
	padding-bottom: 1.5em;
}

.spaced-horizontal {
	padding-left: 1.5em;
	padding-right: 1.5em;
}

.title {
	/* text-align: center; */
	width: fit-content;
	font-size: 1.7em;
	color: #00009b;
	/* border-bottom: 1px solid #63d8ff; */
}

.title:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 1px;
	margin-left: -25px;
	background-color: #63d8ff;
}

.subtitle {
	/* text-align: center; */
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.subtitle.dark {
	color: #EEE;
}

.subtitle2 {
	/* text-align: center; */
	font-size: 1.1em;
	margin-bottom: 0.5em;
}

.subtitle2.dark {
	color: #EEE;
}

.circle-icon {
	font-size: 1.2em;
	display: inline-block;
	border: 1px solid #1353a7;
	color: #1353a7;
	border-radius: 4em;
  /* box-shadow: 0px 0px 2px #222; */
	padding: 1em 0.9em ;
	/* height: 2em;
	width: 2em; */
	/* color: #333; */
}

.big-icon {
	font-size: 1.6em;
}

.icon-fas {
	padding: 1em 1em
}

.icon-fab {
	padding: 1em 1.2em
}

.icon-far {
	padding: 1em 1.1em ;
}

.text {
	color: #444;
	font-size: 1em;
}

.strong {
	font-weight: bold;
}

.text-line {
	line-height: 1.4em;
}
.text-center {
	text-align: center;
}
.text-middle {
	vertical-align: middle;
}

span.text-center {
	position: relative;
	width: 100%;
}

.justify {
	text-align: justify;
	padding: 0 20%;
}

.dark {
	color: #eee;
}

.fa-facebook-f:hover {
	color: #16459e;
}

.fa-facebook-f:active {
	border: 1px solid #4b6eb1;
	color: #4b6eb1;
}

.button {
  margin: 1em 0em;
	border: 1px solid #00009b;
	width: auto;
	color: #00009b;
	cursor: pointer;
	text-align: center;
	position: relative;
	min-width: 10em;
	display: inline-block;
	font-family: "Raleway", sans-serif;
	font-size: 1.2em;
	line-height: 2em;
	padding: 0.5em 1em;
	text-transform: uppercase;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.button:hover {
	background-color: #00009b2f;
}

/* CONTACTS */

section .dark {
  background-color: #333;
	color: #eee;
}

.contacts {
	min-height: 15vh;
}

.contacts .subtitle2 {
  color: #EEE;
}

.contacts .big-icon {
  padding-right: 1em;
  color: #EEE;
}

/* FOOTER */
.footer {
	position: absolute;
	padding-top: 5px;
	display: block;
	width: 100%;
	font-size: 0.7em;
	height: 2em;
	text-align: center;
	background-color: #222;
	color: #eee;
	bottom: 0px;
}
