/*header*/
.header {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  z-index: 8888;
  background-color: transparent;
  transition: transform 0.3s;
}
a.logo {
  position: absolute;
  height: 20px;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}
a.logo img {
  height: 100%;
}
body.pageHome a.logo {
  display: none;
}
.navbar {
  padding: 0;
  padding-top: 50px;
}
body.scrollDown .header {
  transform: translate(0, -100%);
}
/*end header*/
/* menu inline */
.nav-inside {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 30%;
}
.nav-inside li {
  display: inline-block;
  margin: 0 1rem;
}
.nav-inside li:first-of-type {
  margin-left: 0;
}
.nav-inside li:last-of-type {
  margin-right: 0;
}
.nav-inside li a {
  display: inline-block;
}
.nav-inside li a span {
  display: block;
  position: relative;
  color: var(--orange-color);
  font-family: "PPEditorialNew-Regular", serif;
  font-size: var(--regular-text);
  letter-spacing: 0rem;
  transition: transform 0.3s;
}
.nav-inside li a.icon-nav-link span {
  display: inline-block;
  vertical-align: middle;
}
.nav-inside li a.icon-nav-link span:first-child {
  margin-right: 0.5rem;
  font-size: 25px;
}
.nav-inside li.active a span {
  font-style: italic;
}
    .nav-inside .language li:not(.active ) a span {
        opacity: 0.5;
    }
/* end menu inline */
/* icon menu mobile */
.hamburger {
  position: absolute;
    top: 53px;
    right: calc(5% + 15px);
  display: flex;
  display: none;
  align-items: center;
  justify-content: flex-start;
  z-index: 8889;
  cursor: pointer;
}
.hamburgericon {
  position: relative;
  width: 25px;
  height: 15px;
  cursor: pointer;
}
.hamburgericon span {
  position: absolute;
  width: 100%;
  height: 1px;
  border: none;
  top: 0;
  left: 0;
  background: var(--orange-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburgericon span.middle {
  top: 7px;
  width: 100%;
}
.hamburgericon span.bottom {
  top: auto;
  bottom: 0px;
  width: 100%;
}
.openMenu .hamburgericon .top, .openMenu .hamburger:hover .hamburgericon .top {
  transform: translateY(8px) translateX(0) rotate(45deg);
  left: 0;
  background: var(--white-color);
}
.openMenu .hamburgericon .middle {
  opacity: 0;
}
.openMenu .hamburgericon .bottom, .openMenu .hamburger:hover .hamburgericon .bottom {
  transform: translateY(-6px) translateX(0) rotate(-45deg);
  left: 0;
  width: 100%;
  background: var(--white-color);
}
.closeMenu .hamburgericon span {
  transition-delay: 1.2s;
}
/* end icon menu mobile */
/*menu mobile*/
body.openMenu {
  overflow: hidden;
}
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translate(0, -100%);
  transition: transform 1s cubic-bezier(0.25, 1.05, 0.5, 1);
  background-color: var(--orange-color);
  z-index: -1;
  opacity: 0;
}
.openMenu .nav-mobile {
  z-index: 7777;
  transition-delay: 0.6s;
  opacity: 1;
  transform: translate(0, 0);
}
.closeMenu .nav-mobile {
  z-index: 7777;
  opacity: 1;
  transition-delay: 1s;
  transform: translate(0, -100%);
}
.nav-mobile-content {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  transform: translate(0, 0);
  transition: transform 0.5s;
  overflow: hidden;
  z-index: 1;
}
.openMenu .nav-mobile-content {
  transition-delay: 0.3s;
  transform: translate(0, 0);
}
.closeMenu .nav-mobile-content {
  transition-delay: 0.5s;
  transform: translate(0, 0);
}
.nav-mobile-col {
  position: relative;
  width: 100%;
  padding: var(--big-space) calc(5% + 15px);
  overflow: hidden;
  z-index: 1;
}
ul.nav-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
ul.nav-item li {
  color: var(--white-color);
  text-align: left;
	margin-bottom: 5px;
}
a.link-menu-mobile {
  color: var(--white-color);
  transition: color 0.3s;
}
/*end menu mobile*/
/*animation entrata*/
ul.nav-item li a {
  display: block;
  position: relative;
  overflow: hidden;
}
ul.nav-item li a span {
  display: block;
  width: 100%;
  transform: translate(0, 180%);
  opacity: 0;
  transition: transform 0.7s, opacity 0.7s;
  transition-delay: calc(0.5s * var(--li-index));
}
.openMenu ul.nav-item li a span {
  transform: translate(0, 0);
  opacity: 1;
}
.closeMenu ul.nav-item li a span {
  transform: translate(0, 180%);
  transition-delay: 0s;
  opacity: 0;
}
/*end animation entrata*/
/**/
/*resposive*/
/**/
@media screen and (max-width: 1750px) {}
@media screen and (max-width: 1399px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 991px) {
  a.logo {
    height: 20px;
    top: 50px;
    left: calc(5% + 15px);
    transform: none;
  }
	.hamburger {
		display: flex;	
	}
}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 575px) {
  a.logo {
    height: 15px;
    top: 35px;
    left: calc(5% + 15px);
  }
	
.hamburger {
    top: 42px;
    right: calc(5% + 15px);
}
.hamburgericon {
  height: 15px;
}
}