/* NAVIGATION
================================*/
.navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: initial;
  align-items: initial;
  width: 100%;
  padding: 0;
  position: relative;
  line-height: initial;
  box-sizing: border-box;
  transition: background 0.3s;
}


@media (min-width: 992px) {
  .navigation {
    height: auto;
  }
}

.navigation *,
.navigation *:before,
.navigation *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.navigation.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9991;
}

.navigation.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  will-change: opacity;
  z-index: 9991;
}

.navigation > .container {
  display: -ms-flexbox;
  display: flex;
}

/* MOBILE HEADER
================================*/
.navigation-header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .navigation-header {
    display: none;
  }
}

/* OVERLAY PANEL
================================*/
.overlay-panel {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -999;
  transition: opacity 0.8s;
}

.overlay-panel.is-visible {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 981;
}

/* phone tablet PANEL
================================*/
.overlay-panel.is-visible {
  min-height:100vh !important;
  height:100vh !important;
  max-height:100vh !important;
}


.overlay-panel.is-invisible {
  opacity: 0;
}

@media (min-width: 992px) {
  .overlay-panel.is-visible {
    display: none !important;
  }
}

/* NAVIGATION LOGO
================================*/
.navigation-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;

}

.navigation-logo a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-logo a {
	display:block;
}

.navigation-logo img {
	height:auto;
	display:inline-block;
}


.navigation-logo-top .navigation-body .navigation-logo img {
  width: auto;
  height: auto;
}


.navigation-logo.navigation-item a img {
  width: auto;
  height: auto;
}

/* NAVIGATION BUTTON TOGGLER
================================*/
.navigation-button-toggler {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.navigation-button-toggler .hamburger-icon {
  width: 20px;
  height: 2px;
  display: inline-block;
  font-style: normal;
  box-shadow: inset 0 0 0 32px, 0 -6px, 0 6px;
}


/* NAVIGATION BUTTON LANG
================================*/
.navigation-button-lang {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 60px;
  cursor: pointer;
}


.navigation-button-lang a {
  display:inline-block; 
}



/* NAVIGATION BODY
================================*/
.navigation-body {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 998;
  transition: left 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1), right 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1);
}

@media (min-width: 500px) {
  .navigation-body {
    width: 450px;
  }
}

@media (min-width: 992px) {
  .navigation-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    left: auto;
    overflow: visible;
    z-index: auto;
    background-color: transparent;
    transition: all 0s ease 0s;
  }
}

.navigation-body.offcanvas-right {
  left: auto;
  right: -100%;
}

@media (min-width: 992px) {
  .navigation-body.offcanvas-right {
    right: auto;
  }
}

.navigation-body.is-visible {
  left: 0;
  transition: left 0.8s, right 0.8s;
}

.navigation-body.offcanvas-right.is-visible {
  right: 0;
  left: auto;
}

@media (min-width: 992px) {
  .navigation-body.offcanvas-right.is-visible {
    right: auto;
  }
}

.navigation-body.is-invisible {
  left: -100%;
}

.navigation-body.offcanvas-right.is-invisible {
  right: -100%;
}

.navigation-body.scroll-momentum {
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .navigation-centered .navigation-body {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .navigation-justified .navigation-body {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .navigation-end .navigation-body {
    -webkit-justify-content:flex-end;
	-ms-justify-content:flex-end;-ms-flex-pack:end;
	justify-content:flex-end; 
  }  
  
  .navigation-logo-top .navigation-body {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 992px) and (max-width: 1600px) {
  .navigation-centered .navigation-bodyx {
	  padding-left:3rem;
  }
}
@media (min-width: 992px) and (max-width: 1600px) {
  .navigation-centered .navigation-bodyx {
	  padding-left:5rem;
  }
}

.navigation-body-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px;
  border-bottom: solid 0px rgba(255,255,255, 0.25);
}

@media (min-width: 992px) {
  .navigation-body-header {
    border: none;
  }
  
  .navigation-justified .navigation-body-header {
    padding: 0;
  }
  
  .navigation-centered .navigation-body-header {
    padding: 0;
  }
  .navigation-logo-top .navigation-body-header {
    padding-top: 20px;
  }
}

.navigation-body-close-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding-bottom: 2px;
  line-height: initial;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  margin-right:0.75rem;
  margin-top:0.75rem;
}

@media (min-width: 992px) {
  .navigation-body-close-button {
    display: none;
  }
}

.navigation-body-section {
  width: 100%;
  padding: 16px;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .navigation-body-section {
    width: auto;
    display: inline-block;
  }
}

.navigation-body-section + .navigation-body-section {
  padding-top: 0;
}

@media (min-width: 992px) {
  .navigation-body-section + .navigation-body-section {
    padding-top: 16px;
  }
}

/* NAVIGATION MENU
================================*/
.navigation-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0rem;
  display: inline-block;
  float: left;
}

@media (min-width: 992px) {
  .navigation-menu {
    width: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .navigation .navigation-menu {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .navigation-logo-top .navigation-menu {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Navbar item */
.navigation-item {
  width: 100%;
  margin: 0;
  float: left;
  display: inline-block;
}

@media (min-width: 992px) {
  .navigation-item {
    width: auto;
  }

  .navigation-menu li.navigation-item{
	padding-left:2px;	  
	padding-right:2px;
  }
}

/* Navbar link */
.navigation-link {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  border-bottom: solid 0px rgba(255,255,255, 0.20);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
  text-outline: none;
  font-family: Arial, Helvetica, Geneva, sans-serif; 
}


@media (min-width: 992px) {
  .navigation-link {
    height: 100%;
    line-height: 60px;
	border-bottom:none;
  }
}


/* NAVIGATION DROPDOWN
================================*/
.navigation-dropdown {
  width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  position: static;
  display: block;
  z-index: 992 !important;
  transition: max-height 2s cubic-bezier(0, 1, 0, 1);
}

.navigation-dropdown.is-visible {
  max-height: 2500px;
  transition: max-height 5s ease-out;
}

.navigation-menu-dropdown .navigation-link {
	cursor:pointer;
}

@media (min-width: 992px) {
  .navigation-dropdown {
    width: 150px;
    position: absolute;
    display: inline-block;
    opacity: 0;
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s linear, max-height 0s linear 0.6s, margin 0.3s;
  }
  .navigation-dropdown.is-visible {
    margin-top: 0;
    opacity: 1;
    overflow: visible;
    transition: opacity 0.3s linear, max-height 0s linear, margin 0.3s;
  }
  
  .navigation-menu-dropdown  {
	  position:relative;
  }
  
  .navigation-menu .navigation-item:nth-last-child(1) .navigation-dropdown{
		left:auto !important;
		right:0 !important;
  }
  
  .navigation-menu .navigation-item .navigation-dropdown:after  {
	 font-family: 'iconfont';
     content: "\f0d8";
	  font-style: normal;
	  font-weight: normal;
	  font-variant: normal;
	  text-transform: none;
	  line-height: 1;
	  position:absolute;
	  font-size:45px;
	  left:20px;
	  top:-29px;
	  display:inline-block;
	  height:30px;
	  overflow:hidden;
	
  }
  
  .navigation-menu .navigation-item .navigation-dropdown:before  {
	  content: "";
	  left:0;
	  top:0;
	  width:100%;
	  height:1px;
	  display:inline-block;
  }  
  
  .navigation-menu .navigation-item:nth-last-child(0) .navigation-dropdown:after  {
	  left:auto !important;
	  right:20px !important;
  }      
       
  
  
}

.navigation-dropdown .navigation-dropdown {
  left: 100%;
}

.navigation-dropdown .navigation-dropdown-left {
  right: 100%;
  left: auto;
}

.navigation-dropdown-item {
  width: 100%;
  margin: 0;
  float: left;
  display: inline-block;
}

.navigation-dropdown-link {
  width: 100%;
  display: inline-block;
  position: relative;
  transition: border 0.3s, color 0.3s, background 0.3s;
}


.navigation-dropdown-item:hover > .navigation-dropdown-link,
.navigation-dropdown-item:focus > .navigation-dropdown-link,
.navigation-dropdown-item > .navigation-dropdown-link {
  text-decoration: none !important;
}

.navigation-dropdown .navigation-dropdown-link:last-child {
	border-bottom:0;
}

.navigation-dropdown-link + ul .navigation-dropdown-link { 
  padding-left: 32px;
}

.navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link {
  padding-left: 48px;
}

.navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link {
  padding-left: 48px;
}

.navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link {
  padding-left: 64px;
}

.navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link + ul .navigation-dropdown-link {
  padding-left: 128px;
}

@media (min-width: 992px) {
  .navigation-dropdown-link {
    border-bottom: none;
  }
}

.navigation-dropdown-link > .submenu-indicator {
  right: 0;
  top: 0;
  position: absolute;
}

.navigation-dropdown-item:hover > .navigation-dropdown-link > .submenu-indicator:after,
.navigation-dropdown-item:focus > .navigation-dropdown-link > .submenu-indicator:after,
.navigation-dropdown-item > .navigation-dropdown-link > .submenu-indicator:after {
  border-color: transparent #eaeaea #eaeaea transparent;
}

@media (min-width: 992px) {
  .navigation-dropdown-link > .submenu-indicator {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .navigation-dropdown-link > .submenu-indicator:after {
    transform: rotate(-45deg);
  }
  .navigation-dropdown-link > .submenu-indicator.submenu-indicator-left:after {
    transform: rotate(135deg);
  }
}




/* UTILITIES
 ================================*/
.align-to-right {
  margin-left: auto !important;
}

.align-to-left {
  margin-right: auto !important;
}

.margin-top {
  margin-top: 1rem !important;
}

@media (min-width: 992px) {
  .margin-top {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .hide-on-portrait {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-landscape {
    display: none !important;
  }

  .navigation-link.submenu-icon {
	padding-right:22px;
  }
  
  .navigation-menu-dropdown:hover .navigation-dropdown {
    margin-top: 0;
    opacity: 1;
    overflow: visible;
    transition: opacity 0.3s linear, max-height 0s linear, margin 0.3s;
  }
 
  .navigation-menu-dropdown:hover .submenu-icon:after {
  	content: "\f106";
  }  
 
}


@media (max-width: 991px) {
	.navigation-body {
	  min-height:100vh !important;
	  height:100vh !important;
	  max-height:100vh !important;
	}	
}


@media (min-width: 992px) { 
	.navigation-link {
		position:relative;
		-webkit-font-smoothing: antialiased;
  		-moz-osx-font-smoothing: grayscale;
	}
	
	@-webkit-keyframes slide-down {
		  0% { opacity: 0; -webkit-transform: translateY(-100%); }   
		100% { opacity: 1; -webkit-transform: translateY(0); }
	}
	@-moz-keyframes slide-down {
		  0% { opacity: 0; -moz-transform: translateY(-100%); }   
		100% { opacity: 1; -moz-transform: translateY(0); }
	}
	 	
	.Xstickyfixed .fixed-header {
	  position: fixed;
	  width: 100%;
	  top: 0;
	  left: 0;
	  z-index: 1006;
	  opacity: 1;  
	  
      animation: slide-down .3s ease-out;
	  -webkit-animation: slide-down .3s ease-out;
      -moz-animation: slide-down .3s ease-out;	  
   }
   
	.submenu-icon:after {
	  content: "\f107";
	  font-family: 'iconfont';
	  text-rendering: auto;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  position:absolute;
	  right:10px;
	}
	
	.has-submenu.is-active .submenu-icon:after {
	  content: "\f106";
	}		
				 
}


@media (max-width: 991px) {

	.navigation-link {
		position:relative;
	}
	
	.navigation-item.navigation-menu-dropdown .navigation-link:before {
		font-family: 'iconfont';
		content: "\f107";
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		position:absolute;
		right:1.90rem;
		top:0.75rem;
		font-size:22px;
		padding:0.25rem;
	}		

	.navigation-item.navigation-menu-dropdown.is-active .navigation-link:before {
		content: "\f106";
	}
	
	.navigation-dropdown.is-visible {
		margin-bottom:0.2rem;
	}
	
	@-webkit-keyframes slide-down {
		  0% { opacity: 0; -webkit-transform: translateY(-100%); }   
		100% { opacity: 1; -webkit-transform: translateY(0); }
	}
	@-moz-keyframes slide-down {
		  0% { opacity: 0; -moz-transform: translateY(-100%); }   
		100% { opacity: 1; -moz-transform: translateY(0); }
	}
	 	
	.Xstickyfixed .fixed-header {
	  position: fixed;
	  width: 100%;
	  top: 0;
	  left: 0;
	  z-index: 1006;
	  opacity: 1;  
	  
      animation: slide-down .3s ease-out;
	  -webkit-animation: slide-down .3s ease-out;
      -moz-animation: slide-down .3s ease-out;	  
   }
   
   .navigation-logo-desktop,
   .slider-logo	{
	   display:none;
   }			

}






