@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: local('Anton Regular'), local('Anton-Regular'), url(https://fonts.gstatic.com/s/anton/v9/1Ptgg87LROyAm3Kz-Co.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWyV9hrIqY.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUK0Zdcg.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKXGUdhrIqY.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWiUNhrIqY.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKW-U9hrIqY.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOUuhs.ttf) format('truetype');
}
/*
@font-face {
	font-family: 'SourcePrint Regular';
	src: url('@{base-url-fonts}/SegoePrint.eot');
	src: url('@{base-url-fonts}/SegoePrint.eot?#iefix') format('embedded-opentype'),
		 url('@{base-url-fonts}/SegoePrint.woff2') format('woff2'),
		 url('@{base-url-fonts}/SegoePrint.woff') format('woff'),
		 url('@{base-url-fonts}/SegoePrint.ttf') format('truetype'),
		 url('@{base-url-fonts}/SegoePrint.svg#SegoePrint') format('svg');
	font-weight: normal;
	font-style: normal;
}
*/
html {
  font-size: 100%;
}
body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
}
/*
input[type="radio"],
input[type="checkbox"] {
	display: none;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 23px;
	font-size: 0.813rem;
}
input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
	content: " ";
	display: inline-block;
	width: 13px;
	height: 13px;
	position: absolute;
	left: 0;

}

input[type="radio"] + label:before {
	background: url('@{base-url-images}/general/input-radio.png') top left transparent no-repeat;
	//background: url('@{base-url-images}/general/input-radio.svg') top left transparent no-repeat;
	background-size: 100% auto;
	//background-size: 26px 52px;
}
input[type="checkbox"] + label:before {
	background: url('@{base-url-images}/general/input-checkbox.png') top left transparent no-repeat;
	//background: url('@{base-url-images}/general/input-checkbox.svg') top left transparent no-repeat;
	background-size: 100% auto;
}
input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before {
	background-position: bottom left;
}
*/
header.global-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1;
}
header.global-header .header-content {
  border-bottom: 1px solid #efefef;
  height: 99px;
  padding: 23px 0 0 0;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
header.global-header .header-content .menu-btn {
  position: absolute;
  top: 5px;
}
header.global-header .header-content .menu-btn #menu-toggle {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 200;
  background-color: transparent;
  border: 0;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger {
  position: absolute;
  width: 100%;
  top: 20%;
  left: 0;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #212121;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 0 5px 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.75s;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.875s;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 1s;
}
header.global-header .header-content .menu-btn #menu-toggle #hamburger span:nth-child(4) {
  transition-delay: 1.125s;
}
header.global-header .header-content .menu-btn #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
header.global-header .header-content .menu-btn #menu-toggle #cross span {
  display: block;
  background-color: #FFFFFF;
  height: 0%;
  width: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 0s;
}
header.global-header .header-content .menu-btn #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 1px;
  top: 25%;
  left: 20px;
  transition-delay: 0s;
}
header.global-header .header-content .menu-btn #menu-toggle #cross span:nth-child(2) {
  height: 1px;
  width: 0%;
  top: 20px;
  left: 25%;
  transition-delay: 0.25s;
}
header.global-header .header-content .menu-btn #menu-toggle.open #hamburger span {
  width: 0;
}
header.global-header .header-content .menu-btn #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
header.global-header .header-content .menu-btn #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
header.global-header .header-content .menu-btn #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
header.global-header .header-content .menu-btn #menu-toggle.open #hamburger span:nth-child(4) {
  transition-delay: 0.375s;
}
header.global-header .header-content .menu-btn #menu-toggle.open #cross span:nth-child(1) {
  height: 100%;
  transition-delay: 0.75s;
  width: 2px;
  top: 0%;
  left: 18px;
}
header.global-header .header-content .menu-btn #menu-toggle.open #cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  transition-delay: 0.5s;
  top: 18px;
  left: 0%;
}
header.global-header .header-content .menu-btn #menu-toggle:hover #hamburger span {
  background-color: #ef7f1a;
}
header.global-header .header-content .logo {
  max-width: 217px;
  margin: 0 auto;
}
header.global-header .header-content .logo img {
  width: 100%;
}
header.global-header .header-content .logo img.logo-simbolo {
  display: none;
}
header.global-header .header-content .contact-btn {
  position: absolute;
  top: 20px;
  right: 60px;
  color: #333333;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
header.global-header .header-content .contact-btn:hover {
  color: #ef7f1a;
}
header.global-header .menu {
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  height: 100%;
  background-color: #FFFFFF;
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100%;
  text-align: center;
}
header.global-header .menu.close {
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  -webkit-transition: 0.5s all ease-out;
  -moz-transition: 0.5s all ease-out;
  -ms-transition: 0.5s all ease-out;
  -o-transition: 0.5s all ease-out;
  transition: 0.5s all ease-out;
  transition-delay: 0.65s;
}
header.global-header .menu.open {
  background-color: #333333;
  visibility: visible;
  overflow-y: scroll;
  z-index: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity = 100);
  opacity: 1;
  -webkit-transition: 0.5s all ease-out;
  -moz-transition: 0.5s all ease-out;
  -ms-transition: 0.5s all ease-out;
  -o-transition: 0.5s all ease-out;
  transition: 0.5s all ease-out;
  transition-delay: 0.65s;
}
header.global-header .menu.open .menu-main nav a {
  transform: translate3d(0, 0, 0);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity = 100);
  opacity: 1;
}
header.global-header .menu.open .menu-main nav a:nth-child(1) {
  -webkit-transition: 0.8s transform ease-out 0.7s, 0.8s opacity ease-out 0.7s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 0.7s, 0.8s opacity ease-out 0.7s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 0.7s, 0.8s opacity ease-out 0.7s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 0.7s, 0.8s opacity ease-out 0.7s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 0.7s, 0.8s opacity ease-out 0.7s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-main nav a:nth-child(2) {
  -webkit-transition: 0.8s transform ease-out 0.8s, 0.8s opacity ease-out 0.8s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 0.8s, 0.8s opacity ease-out 0.8s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 0.8s, 0.8s opacity ease-out 0.8s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 0.8s, 0.8s opacity ease-out 0.8s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 0.8s, 0.8s opacity ease-out 0.8s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-main nav a:nth-child(3) {
  -webkit-transition: 0.8s transform ease-out 0.9s, 0.8s opacity ease-out 0.9s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 0.9s, 0.8s opacity ease-out 0.9s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 0.9s, 0.8s opacity ease-out 0.9s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 0.9s, 0.8s opacity ease-out 0.9s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 0.9s, 0.8s opacity ease-out 0.9s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-main nav a:nth-child(4) {
  -webkit-transition: 0.8s transform ease-out 1s, 0.8s opacity ease-out 1s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 1s, 0.8s opacity ease-out 1s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 1s, 0.8s opacity ease-out 1s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 1s, 0.8s opacity ease-out 1s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 1s, 0.8s opacity ease-out 1s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-main nav a:nth-child(5) {
  -webkit-transition: 0.8s transform ease-out 1.1s, 0.8s opacity ease-out 1.1s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 1.1s, 0.8s opacity ease-out 1.1s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 1.1s, 0.8s opacity ease-out 1.1s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 1.1s, 0.8s opacity ease-out 1.1s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 1.1s, 0.8s opacity ease-out 1.1s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-language nav a {
  transform: translate3d(0, 0, 0);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity = 100);
  opacity: 1;
  color: #4c7497;
  -webkit-transition: 0.8s transform ease-out 1.5s, 0.8s opacity ease-out 1.5s, 0.5s color ease-out;
  -moz-transition: 0.8s transform ease-out 1.5s, 0.8s opacity ease-out 1.5s, 0.5s color ease-out;
  -ms-transition: 0.8s transform ease-out 1.5s, 0.8s opacity ease-out 1.5s, 0.5s color ease-out;
  -o-transition: 0.8s transform ease-out 1.5s, 0.8s opacity ease-out 1.5s, 0.5s color ease-out;
  transition: 0.8s transform ease-out 1.5s, 0.8s opacity ease-out 1.5s, 0.5s color ease-out;
}
header.global-header .menu.open .menu-social {
  -webkit-transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  -ms-transform: translate3d(0, 10px, 0);
  -o-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity = 100);
  opacity: 1;
  -webkit-transition: 0.5s all ease-out 1.5s;
  -moz-transition: 0.5s all ease-out 1.5s;
  -ms-transition: 0.5s all ease-out 1.5s;
  -o-transition: 0.5s all ease-out 1.5s;
  transition: 0.5s all ease-out 1.5s;
}
header.global-header .menu .header-menu {
  height: 99px;
  padding: 23px 0 0 0;
  border-bottom: 1px solid #4f4f4f;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
header.global-header .menu .header-menu .logo {
  width: 217px;
  margin: 0 auto;
}
header.global-header .menu .header-menu .logo img {
  width: 100%;
}
header.global-header .menu .header-menu .logo img.logo-tipo {
  display: block;
}
header.global-header .menu .header-menu .logo img.logo-simbolo {
  display: none;
}
header.global-header .menu .menu-main {
  margin-top: 150px;
  margin-bottom: 135px;
}
header.global-header .menu .menu-main nav a {
  display: inline-block;
  font-family: 'Anton', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 1.538;
  margin-left: 40px;
  margin-right: 40px;
  transform: translate3d(0px, -20px, 0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  /*
					&:last-child {
						margin: 0;
					}
					*/
}
header.global-header .menu .menu-main nav a:nth-child(5) {
  -webkit-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -moz-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -ms-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -o-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
}
header.global-header .menu .menu-main nav a:nth-child(4) {
  -webkit-transition: 0.5s transform ease-out 0.1s, 0.5s opacity ease-out 0.1s, 0.5s color ease-out;
  -moz-transition: 0.5s transform ease-out 0.1s, 0.5s opacity ease-out 0.1s, 0.5s color ease-out;
  -ms-transition: 0.5s transform ease-out 0.1s, 0.5s opacity ease-out 0.1s, 0.5s color ease-out;
  -o-transition: 0.5s transform ease-out 0.1s, 0.5s opacity ease-out 0.1s, 0.5s color ease-out;
  transition: 0.5s transform ease-out 0.1s, 0.5s opacity ease-out 0.1s, 0.5s color ease-out;
}
header.global-header .menu .menu-main nav a:nth-child(3) {
  -webkit-transition: 0.5s transform ease-out 0.2s, 0.5s opacity ease-out 0.2s, 0.5s color ease-out;
  -moz-transition: 0.5s transform ease-out 0.2s, 0.5s opacity ease-out 0.2s, 0.5s color ease-out;
  -ms-transition: 0.5s transform ease-out 0.2s, 0.5s opacity ease-out 0.2s, 0.5s color ease-out;
  -o-transition: 0.5s transform ease-out 0.2s, 0.5s opacity ease-out 0.2s, 0.5s color ease-out;
  transition: 0.5s transform ease-out 0.2s, 0.5s opacity ease-out 0.2s, 0.5s color ease-out;
}
header.global-header .menu .menu-main nav a:nth-child(2) {
  -webkit-transition: 0.5s transform ease-out 0.3s, 0.5s opacity ease-out 0.3s, 0.5s color ease-out;
  -moz-transition: 0.5s transform ease-out 0.3s, 0.5s opacity ease-out 0.3s, 0.5s color ease-out;
  -ms-transition: 0.5s transform ease-out 0.3s, 0.5s opacity ease-out 0.3s, 0.5s color ease-out;
  -o-transition: 0.5s transform ease-out 0.3s, 0.5s opacity ease-out 0.3s, 0.5s color ease-out;
  transition: 0.5s transform ease-out 0.3s, 0.5s opacity ease-out 0.3s, 0.5s color ease-out;
}
header.global-header .menu .menu-main nav a:nth-child(1) {
  -webkit-transition: 0.5s transform ease-out 0.4s, 0.5s opacity ease-out 0.4s, 1s color ease-out;
  -moz-transition: 0.5s transform ease-out 0.4s, 0.5s opacity ease-out 0.4s, 1s color ease-out;
  -ms-transition: 0.5s transform ease-out 0.4s, 0.5s opacity ease-out 0.4s, 1s color ease-out;
  -o-transition: 0.5s transform ease-out 0.4s, 0.5s opacity ease-out 0.4s, 1s color ease-out;
  transition: 0.5s transform ease-out 0.4s, 0.5s opacity ease-out 0.4s, 1s color ease-out;
}
header.global-header .menu .menu-main nav a:hover {
  color: #ef7f1a;
}
header.global-header .menu .menu-language {
  margin-bottom: 110px;
}
header.global-header .menu .menu-language nav a {
  display: none;
  font-family: 'Anton', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #4c7497;
  font-size: 52px;
  margin-right: 22px;
  margin-left: 22px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  transform: translate3d(0, -20px, 0);
  -webkit-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -moz-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -ms-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  -o-transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
  transition: 0.5s transform ease-out 0s, 0.5s opacity ease-out 0s, 0.5s color ease-out;
}
header.global-header .menu .menu-language nav a.visible {
  display: inline-block;
}
header.global-header .menu .menu-language nav a:hover {
  color: #ffffff;
}
header.global-header .menu .menu-social {
  margin-bottom: 18px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  -webkit-transition: 0.5s all ease-out 0s;
  -moz-transition: 0.5s all ease-out 0s;
  -ms-transition: 0.5s all ease-out 0s;
  -o-transition: 0.5s all ease-out 0s;
  transition: 0.5s all ease-out 0s;
}
header.global-header .menu .menu-social .social-icon {
  margin-right: 65px;
}
header.global-header .menu .menu-social .social-icon .icon {
  width: 24px;
  height: 24px;
}
header.global-header .menu .menu-social .social-icon .icon path,
header.global-header .menu .menu-social .social-icon .icon rect,
header.global-header .menu .menu-social .social-icon .icon polygon {
  fill: #333333;
}
header.global-header .menu .menu-social .social-icon .icon path.shape,
header.global-header .menu .menu-social .social-icon .icon rect.shape,
header.global-header .menu .menu-social .social-icon .icon polygon.shape {
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  fill: #ef7f1a;
}
header.global-header .menu .menu-social .social-icon:last-child {
  margin: 0;
}
header.global-header .menu .menu-social .social-icon:hover .icon .shape {
  fill: #ffffff;
}
main.global-main {
  margin-top: 180px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: block;
}
main.global-main section {
  clear: both;
}
main.global-main img {
  display: block;
  border-image-width: 0 0 0 0;
  text-decoration: none;
}
footer.global-footer {
  text-align: center;
  margin: 60px 0 15px;
}
footer.global-footer .nav-social {
  margin-bottom: 55px;
}
footer.global-footer .nav-social .social-icon {
  margin-right: 65px;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
footer.global-footer .nav-social .social-icon .icon {
  width: 20px;
  height: 20px;
}
footer.global-footer .nav-social .social-icon .icon .shape {
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  fill: #d2d2d2;
}
footer.global-footer .nav-social .social-icon:last-child {
  margin: 0;
}
footer.global-footer .nav-social .social-icon:hover .icon .shape {
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  fill: #333333;
}
footer.global-footer .legals {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 0.688rem;
  line-height: 2;
  color: #afafaf;
}
footer.global-footer .legals a {
  color: #afafaf;
}
footer.global-footer .legals a:hover {
  color: #333333;
}
footer.global-footer .cookies {
  display: none;
  z-index: 1;
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: #e9e9e9 1px solid;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 23px;
  padding-bottom: 16px;
  background-color: #FFFFFF;
}
footer.global-footer .cookies .container {
  text-align: left;
  padding: 0 5.7%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
footer.global-footer .cookies .container .title {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 16px;
}
footer.global-footer .cookies .container .text {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.833;
  color: #666666;
}
footer.global-footer .cookies .container .text a {
  color: #ef7f1a;
}
footer.global-footer .cookies .container .text a:hover {
  text-decoration: underline;
}
footer.global-footer .cookies .container .close {
  background-color: #333333;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 21px;
  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #333333;
  height: 21px;
  padding: 0 10px;
  cursor: pointer;
  text-align: center;
  float: right;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
footer.global-footer .cookies .container .close:hover {
  background-color: #FFFFFF;
  color: #333333;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
footer.global-footer .back-to-top {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 95px;
  right: 65px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity = 0);
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
footer.global-footer .back-to-top .icon {
  width: 100%;
}
footer.global-footer .back-to-top .icon .shape {
  fill: #afafaf;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
footer.global-footer .back-to-top:hover .icon .shape {
  fill: #ef7f1a;
}
footer.global-footer .back-to-top.visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity = 100);
  opacity: 1;
}
.wrapper {
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
  margin: 0 auto;
  position: relative;
}
/*
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	//display: none;
	visibility: hidden;
	.opacity(0);

	.transition(opacity 0.4s ease);
	//.transitionDoble(opacity 0.4s ease, z-index 0 ease 0.4s);


	&.visible {
		//.transition(a 0.4s ease);
		//display: block;
		z-index: 9999;
		visibility: visible;
		.opacity(1);
	}

	.overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: @backgroundColor0;
		.opacity(0.8);
		cursor: pointer;
	}
	.content {
		position: absolute;
		top: 50%;
		left: 50%;
		.transform(translate(-50%,-50%));
		width: 90%;
		max-width: 1024px;

		.close {
			background: url('@{base-url-images}/general/close-sprite.png') top left no-repeat transparent;
			background-size: 100% auto;
			width: 42px;
			height: 42px;
			cursor: pointer;
			position: absolute;
			top: -21px;
			right: 0px;
			&:hover {
				background-position: bottom left;
			}
		}
		.lightbox-content {
			display: none;
		}


	}
}
*/
@media (max-width: 767px) {
  html {
    font-size: 115%;
  }
  main.global-main {
    margin-top: 75px;
  }
  body.menu-open main {
    display: none;
  }
  body.menu-open footer {
    display: none;
  }
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  header.global-header {
    width: 100%;
  }
  header.global-header .header-content {
    height: 43px;
    padding: 4px 0 0 0;
  }
  header.global-header .header-content .menu-btn {
    top: 0px;
  }
  header.global-header .header-content .menu-btn #menu-toggle {
    width: 24px;
    height: 24px;
    top: 0;
  }
  header.global-header .header-content .menu-btn #menu-toggle #hamburger span {
    margin-bottom: 3px;
  }
  header.global-header .header-content .menu-btn #menu-toggle #cross span:nth-child(1) {
    height: 0%;
    width: 2px;
    top: 25%;
    left: 10px;
  }
  header.global-header .header-content .menu-btn #menu-toggle #cross span:nth-child(2) {
    height: 2px;
    width: 0%;
    top: 10px;
    left: 25%;
  }
  header.global-header .header-content .menu-btn #menu-toggle.open #cross span:nth-child(1) {
    height: 100%;
    width: 2px;
    top: 0;
    left: 11px;
  }
  header.global-header .header-content .menu-btn #menu-toggle.open #cross span:nth-child(2) {
    width: 100%;
    height: 2px;
    top: 11px;
    left: 0;
  }
  header.global-header .header-content .menu-btn #menu-toggle:hover #hamburger span {
    background-color: #000000;
  }
  header.global-header .header-content .logo {
    width: 32px;
    margin: 0 auto;
  }
  header.global-header .header-content .logo img.logo-tipo {
    display: none;
  }
  header.global-header .header-content .logo img.logo-simbolo {
    display: block;
  }
  header.global-header .header-content .contact-btn {
    top: 13px;
    right: 10px;
    font-size: 0.625rem;
  }
  header.global-header .header-content .contact-btn:hover {
    color: #333333;
  }
  header.global-header .menu .header-menu {
    position: fixed;
    height: 43px;
    width: 100%;
    padding: 5px 0 0 0;
    background-color: #333333;
    z-index: 1;
  }
  header.global-header .menu .header-menu .logo {
    width: 32px;
  }
  header.global-header .menu .header-menu .logo img.logo-tipo {
    display: none;
  }
  header.global-header .menu .header-menu .logo img.logo-simbolo {
    display: block;
  }
  header.global-header .menu .menu-main {
    margin-top: 80px;
    margin-bottom: 70px;
  }
  header.global-header .menu .menu-main nav a {
    font-size: 1.625rem;
    margin-bottom: 40px;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  header.global-header .menu .menu-main nav a:last-child {
    margin: 0;
  }
  header.global-header .menu .menu-main nav a:hover {
    color: #ffffff;
  }
  header.global-header .menu .menu-language {
    margin-bottom: 40px;
  }
  header.global-header .menu .menu-language nav a {
    font-size: 1.625rem;
    display: none;
  }
  header.global-header .menu .menu-language nav a.visible {
    display: block;
    margin-bottom: 30px;
  }
  header.global-header .menu .menu-language nav a:hover {
    color: #4c7497;
  }
  header.global-header .menu .menu-social {
    margin-bottom: 35px;
  }
  header.global-header .menu .menu-social .social-icon {
    margin-right: 35px;
  }
  header.global-header .menu .menu-social .social-icon .icon {
    width: 14px;
    height: 14px;
  }
  header.global-header .menu .menu-social .social-icon:hover .icon .shape {
    fill: #ef7f1a;
  }
  footer.global-footer {
    margin: 47px 0 26px;
  }
  footer.global-footer .nav-social {
    margin-bottom: 36px;
  }
  footer.global-footer .nav-social .social-icon {
    margin-right: 38px;
  }
  footer.global-footer .nav-social .social-icon .icon {
    width: 16px;
    height: 16px;
  }
  footer.global-footer .nav-social .social-icon:hover .icon .shape {
    fill: #d2d2d2;
  }
  footer.global-footer .legals {
    font-size: 0.563rem;
  }
  footer.global-footer .legals a:hover {
    color: #afafaf;
  }
  footer.global-footer .cookies {
    padding-top: 38px;
  }
  footer.global-footer .cookies .container .title {
    font-size: 0.75rem;
  }
  footer.global-footer .cookies .container .text {
    font-size: 0.6rem;
    line-height: 1.777;
  }
  footer.global-footer .cookies .container .close {
    position: absolute;
    top: -28px;
    right: 10px;
    width: 17px;
    height: 17px;
    background: url('../img/icon-close.svg') no-repeat center center transparent;
    background-size: 17px 17px;
    text-indent: -9999px;
    border-radius: 0;
    border: none;
  }
  footer.global-footer .back-to-top {
    bottom: 97px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  footer.global-footer .back-to-top:hover .icon .shape {
    fill: #afafaf;
  }
}
/*# sourceMappingURL=general.css.map */