@charset "utf-8";
@import url("normalize.css");
@import url("colors/color.css");

/* CSS Document */

:root {
  --global_color: #003e78;
  --secondary_color: #194884;
}

html {
}
body {
  display: block;
  width: 100%;
  overflow: hidden scroll;
}

* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  box-sizing: border-box;
  /* border: solid 1px; */
}

a {
  text-decoration: none;
}

.banner_contac {
  position: fixed;
  display: flex;
  width: 100%;
  height: 40px;
  background-color: var(--to_black5);
  align-items: center;
}

.banner_contac_content {
  display: flex;
  margin: auto;
  width: 100%;
  max-width: 1080px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
}

.banner_contac_content div {
  display: flex;
  align-items: center;
}

.banner_contac_content img {
  margin: 0 5px;
  max-height: 28px;
}

#header_nav {
  position:fixed;
  margin-top: 40px;
  width: 100%;
  height: 70px;
  min-width: 700px;
  background-color: transparent;
  transition: all .5s;
}

nav {
  position: sticky;
  display: table;
  margin: auto;
  margin-top: 15px;
  height: 40px;
}

ul {
  display: block;
  float: left;
  list-style: none;
}

ul a {
  color: #f3f3f3;
  text-decoration: none;
}

li {
  float: left;
  margin: 10px;
  padding: 2px;
}

#logo {
  float: left;
  display: block;
  height: 200px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 150px;
  transition: all .5s;
  border-radius: 52%;
}

section#banner {
  width: 100%;
  height: 100vh;
  background-image: url('../img/background_header/132656250-fdce0796-f303-4e81-ad87-b0cece4967af.jpg');
  background-size: cover;
  background-position: center;
}

#body {
  width: 100%;
  height: 500px;
  background-color: #555555;
}














/* Navegation_Horizontal */
.contenedor_menu_horizontal {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 1000;
  display: block;
  overflow: visible;
  width: 100%;
  background: var(--secondary_color);
  text-align: center;
}

/*elemento nav*/
.box-nav {
  display: block;
  margin: auto;
  min-width: 730px;
  max-width: 1200px;
  width: 95%;
  font-size: 12px;
}

/*elemento ul*/
.lista-ul-nav {
  display: table;
  width: 100%;
}

/*elemento li*/
.item-li-nav {
  display: table-cell;
  padding: 0 2px;
  text-align: center;
  white-space: nowrap;
}
.item-li-nav a {
  display: block;
  padding: 15px;
  background-color: var(--to_white2);
  border-bottom: 2px solid #555555;
  color: #fff;
  text-decoration: none;
}
.item-li-nav a:hover {
  border-bottom: 2px solid #fff;
  background: #999;
}
.item-li-nav:hover .sublista-nav {
  display: block;
}

/*elemento ul2*/
.sublista-nav {
  position: absolute;
  z-index: 1003;
  display: none;
  overflow: hidden;
  min-width: 110px;
  max-width: 185px;
  width: 15.55%;
}

/*elemento li2*/
.subitem {
  display: block;
  overflow: hidden;
  margin: 3px 3px 0 0;
}
/* fine menu di navegazione */

/* -------------------------------------------------------------------------- */
/*                                    main                                    */
/* -------------------------------------------------------------------------- */

main {
  min-height: 600px;
}

/* -------------------------------------------------------------------------- */
/*                                   footer                                   */
/* -------------------------------------------------------------------------- */

footer {
  background-color: var(--to_black4);
  min-height: 150px;
  color: #dadada;
}

footer .logo_footer {
  height: 60px;
}

footer a {
  color: #dadada;
}

footer .float {
  float: left;
}
