@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap");
body,
html {
  padding: 0;
  margin: 0;
  color: #39373b;
  box-sizing: border-box;
  line-height: 1.4;
  letter-spacing: 0.3px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(15px + (16 - 15) * ((100vw - 300px) / (1600 - 300)));
}
div,
label {
  box-sizing: border-box;
}
:focus {
  outline: 0;
}
.sticky {
  position: sticky;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute !important;
}
.container {
  width: 100%;
  position: relative;
}
.content {
  width: 100%;
  margin: 0 auto;
  padding-left: 15%;
  padding-right: 15%;
  position: relative;
}
img {
  display: block;
  max-width: 100%;
}
a {
  transition: all 0.5s ease;
}
a:hover {
  transition: all 0.5s ease;
}
.clear {
  margin: 0;
  padding: 0;
  clear: both;
}
.shrink {
  flex-shrink: 0;
}
.flex-auto {
  width: auto;
}
.flex-expand {
  flex: 1;
  min-width: 1px;
  width: 100%;
  max-width: 100%;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex,
.flex-mobile {
  display: flex;
}
.flex-left {
  justify-content: flex-start;
}
.flex-right {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.flex-middle {
  align-items: center;
}
.flex-top {
  align-items: flex-start;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-space {
  justify-content: space-between;
}
.column-3 {
  column-count: 3;
  column-gap: 30px;
}
.gap-40 {
  grid-gap: 0 40px;
}
.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: masonry;
  grid-gap: 30px;
}
.col-2.large {
  grid-gap: 120px;
}
.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: masonry;
  grid-gap: 40px;
}
.col-1-4 {
  width: 25%;
}
.col-3-4 {
  width: 75%;
}
.centered {
  margin-left: auto;
  margin-right: auto;
}
.table {
  display: table;
}
.block {
  display: block;
}
.width-100 {
  width: 100%;
  box-sizing: border-box;
}
.width-60 {
  width: 60%;
}
.width-40 {
  width: 40%;
}
.height-100 {
  height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
strong {
  font-weight: 600;
}
.font-semibold {
  font-weight: 500;
}
.font-uppercase {
  text-transform: uppercase;
}
.font-center {
  text-align: center;
}
.font-right {
  text-align: right;
}
.font-left {
  text-align: left;
}
.font-underline {
  text-decoration: underline;
}
.font-16 {
  font-size: calc(15px + (16 - 15) * ((100vw - 300px) / (1600 - 300)));
}
.font-18 {
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1600 - 300)));
}
.font-24 {
  font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
.font-28 {
  font-size: calc(24px + (28 - 24) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
.font-36 {
  font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
.font-45 {
  font-size: calc(33px + (45 - 33) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.1;
}
.alternate .flex:nth-child(2n) {
  direction: rtl;
}
.alternate .flex:nth-child(2n) div {
  direction: ltr;
}
.no-link {
  color: inherit;
  text-decoration: none;
}
.no-link:hover {
  text-decoration: none;
  color: #00a8d5;
}
.animation-text,
.animation-img {
  opacity: 0;
}
.bg-azzurro {
  background: #ebf6fa;
}
.bg-blu {
  background: #00a8d5;
}
.bg-nero {
  background: #39373b;
}
.bg-grigio {
  background: #f2f2f2;
}
.bg-bianco {
  background: #fff;
}
.c-nero {
  color: #39373b;
}
.c-blu {
  color: #00a8d5;
}
.c-grigio-scuro {
  color: #646464;
}
.c-bianco {
  color: #fff;
}
.btn {
  color: #fff;
  background: #00a8d5;
  padding: 10px 20px;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.5s ease;
  text-align: center;
}
.btn:hover {
  background: #ebf6fa;
  transition: all 0.5s ease;
}
.btn.btn-bianco {
  background: #fff;
  color: #39373b;
}
.btn.btn-bianco:hover {
  background: #f2f2f2;
  color: #39373b;
  transition: all 0.5s ease;
}
.btn.btn-verde {
  background: #60d669;
  color: #fff;
}
.btn.btn-verde:hover {
  background: #00a8d5;
  color: #fff;
  transition: all 0.5s ease;
}
.margin-0 {
  margin: 0;
}
.margin-xsmall-left {
  margin-left: 20px;
}
.margin-xsmall-right {
  margin-right: 20px;
}
.margin-xsmall-top {
  margin-top: 20px;
}
.margin-xsmall-bottom {
  margin-bottom: 20px;
}
.margin-small-left {
  margin-left: 40px;
}
.margin-small-right {
  margin-right: 40px;
}
.margin-small-top {
  margin-top: 40px;
}
.margin-small-bottom {
  margin-bottom: 40px;
}
.margin-left {
  margin-left: 80px;
}
.margin-right {
  margin-right: 80px;
}
.margin-top {
  margin-top: 80px;
}
.margin-bottom {
  margin-bottom: 80px;
}
.margin-large-left {
  margin-left: 120px;
}
.margin-large-right {
  margin-right: 120px;
}
.margin-large-top {
  margin-top: 120px;
}
.margin-large-bottom {
  margin-bottom: 120px;
}
.padding-xsmall-left {
  padding-left: 20px;
}
.padding-xsmall-right {
  padding-right: 20px;
}
.padding-xsmall-top {
  padding-top: 20px;
}
.padding-xsmall-bottom {
  padding-bottom: 20px;
}
.padding-small-left {
  padding-left: 40px;
}
.padding-small-right {
  padding-right: 40px;
}
.padding-small-top {
  padding-top: 40px;
}
.padding-small-bottom {
  padding-bottom: 40px;
}
.padding-left {
  padding-left: 80px;
}
.padding-right {
  padding-right: 80px;
}
.padding-top {
  padding-top: 80px;
}
.padding-bottom {
  padding-bottom: 80px;
}
.padding-large-left {
  padding-left: 120px;
}
.padding-large-right {
  padding-right: 120px;
}
.padding-large-top {
  padding-top: 120px;
}
.padding-large-bottom {
  padding-bottom: 120px;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
  font-family: "Alegreya Sans", sans-serif;
  border: 1px solid #f2f2f2;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 10px;
  background: grigio-4;
  box-shadow: 0 0 0 0;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
  color: #39373b;
}
form textarea {
  height: 100px;
}
form input[type="submit"],
form button {
  box-shadow: 0 10px 30px 0 rgba(0,168,213,0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  curson: pointer;
  transition: all 0.5s ease;
  border: 0;
  display: block;
  color: #fff;
  background: #00a8d5;
  padding: 15px 20px;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.5s ease;
  text-align: center;
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1600 - 300)));
  width: 100%;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
form input[type="submit"]:hover,
form button:hover {
  background: #39373b;
  box-shadow: 0 10px 30px 0 rgba(0,0,0,0.2);
}
form .no-style {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit;
}
form button {
  cursor: pointer;
}
.tag {
  padding: 10px 15px;
  min-height: 80px;
  border-radius: 50px;
  box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.1;
  color: #646464;
  background: #fff;
}
.curved .tag:nth-child(1) {
  width: calc(100% - 60px);
}
.curved .tag:nth-child(2) {
  margin-left: 30px;
  width: calc(100% - 60px);
}
.curved .tag:nth-child(3) {
  margin-left: 60px;
  width: calc(100% - 60px);
}
.curved .tag:nth-child(4) {
  margin-left: 30px;
  width: calc(100% - 60px);
}
.curved .tag:nth-child(5) {
  width: calc(100% - 60px);
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  bottom: -20px;
  top: auto;
  right: calc(50% - 40px);
}
.swiper-button-next,
.swiper-button-prev {
  width: auto;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  bottom: -20px;
  top: auto;
  left: calc(50% - 40px);
}
.swiper-button-next:after {
  content: "";
  background: url("../img/right.svg") no-repeat;
  height: 30px;
  width: 30px;
}
.swiper-button-prev:after {
  content: "";
  background: url("../img/left.svg") no-repeat;
  height: 30px;
  width: 30px;
}
.mobile {
  display: none !important;
}
.box-form {
  max-width: 550px;
  box-shadow: 0px 20px 100px 0px rgba(34,34,34,0.15);
}
header {
  height: 90vh;
}
header #overlay {
  overflow-y: scroll;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  background: #00a8d5;
  opacity: 1;
  z-index: 9990;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
header .mobile-nav-button {
  width: 35px;
  position: relative;
  margin: 0rem;
  z-index: 9999;
  cursor: pointer;
  height: 22px;
}
header .mobile-nav-button .mobile-nav-button__line {
  width: 100%;
  height: 2.5px;
  background: #ebf6fa;
  position: relative;
  transition: 0.5s ease;
}
header .mobile-nav-button .mobile-nav-button__line:nth-of-type(2) {
  margin: 0.5rem 0;
}
header .mobile-nav-button .mobile-nav-button__line--1 {
  transform: rotate(45deg);
  top: 13px;
  position: absolute;
  background: #ebf6fa;
}
header .mobile-nav-button .mobile-nav-button__line--2 {
  display: none;
}
header .mobile-nav-button .mobile-nav-button__line--3 {
  transform: rotate(135deg);
  top: 13px;
  position: absolute;
  background: #ebf6fa;
}
@media screen and (max-width: 1600px) {
  .content {
    padding-left: 10%;
    padding-right: 10%;
  }
  .col-3 {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .col-2.large {
    grid-gap: 60px;
  }
  .box-form {
    padding: 50px !important;
  }
}
@media screen and (max-width: 960px) {
  header {
    height: auto;
    padding-bottom: 80px;
  }
  .content {
    padding-left: 5%;
    padding-right: 5%;
  }
  .col-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .margin-xsmall-left {
    margin-left: 10px;
  }
  .margin-xsmall-right {
    margin-right: 10px;
  }
  .margin-xsmall-top {
    margin-top: 10px;
  }
  .margin-xsmall-bottom {
    margin-bottom: 10px;
  }
  .margin-small-left {
    margin-left: 20px;
  }
  .margin-small-right {
    margin-right: 20px;
  }
  .margin-small-top {
    margin-top: 20px;
  }
  .margin-small-bottom {
    margin-bottom: 20px;
  }
  .margin-left {
    margin-left: 40px;
  }
  .margin-right {
    margin-right: 40px;
  }
  .margin-top {
    margin-top: 40px;
  }
  .margin-bottom {
    margin-bottom: 40px;
  }
  .margin-large-left {
    margin-left: 60px;
  }
  .margin-large-right {
    margin-right: 60px;
  }
  .margin-large-top {
    margin-top: 60px;
  }
  .margin-large-bottom {
    margin-bottom: 60px;
  }
  .padding-xsmall-left {
    padding-left: 10px;
  }
  .padding-xsmall-right {
    padding-right: 10px;
  }
  .padding-xsmall-top {
    padding-top: 10px;
  }
  .padding-xsmall-bottom {
    padding-bottom: 10px;
  }
  .padding-small-left {
    padding-left: 20px;
  }
  .padding-small-right {
    padding-right: 20px;
  }
  .padding-small-top {
    padding-top: 20px;
  }
  .padding-small-bottom {
    padding-bottom: 20px;
  }
  .padding-left {
    padding-left: 40px;
  }
  .padding-right {
    padding-right: 40px;
  }
  .padding-top {
    padding-top: 40px;
  }
  .padding-bottom {
    padding-bottom: 40px;
  }
  .padding-large-left {
    padding-left: 60px;
  }
  .padding-large-right {
    padding-right: 60px;
  }
  .padding-large-top {
    padding-top: 60px;
  }
  .padding-large-bottom {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .col-3 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  .col-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: masonry;
    grid-gap: 20px;
  }
  .flex {
    display: block;
  }
  .width-60,
  .width-40 {
    width: 100%;
  }
  .font-center-mobile {
    text-align: center !important;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .box-form {
    padding: 30px !important;
    margin-top: 40px;
  }
  .curved {
    margin-top: 40px;
  }
  .curved .tag:nth-child(1),
  .curved .tag:nth-child(2),
  .curved .tag:nth-child(3),
  .curved .tag:nth-child(4),
  .curved .tag:nth-child(5) {
    width: 100%;
    margin-left: 0;
  }
}

.alert {
    color: #ED144B;
    padding-bottom: 15px;
    text-align: center;
}
.alert {
    background-color: #FCF8E3;
    border: 1px solid #FBEED5;
    margin-bottom: 20px;
    padding: 15px 35px 15px 14px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	margin-top: 20px;
}
.executed
{
	font:bold 12px/1.5 Verdana,arial;
	padding:5px;
	margin:10px;
	margin-left:0px;
	background:#E0FFFF;
	border-top:2px solid #ADD8E6;
	border-bottom:2px solid #ADD8E6;
	color:#4169E1;
}
.evidenzia
{
	display:none;
}
.t
{
	display:none;
}


.ok_cookies
{
    display: inline-block;
    margin: 0 auto;
    padding: 6px 25px;
    background: #39373B;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.cookie_preferenze
{
    font-size: 21px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #39373B;
    display: table;
	padding: 6px 15px;
	color:#39373B !important;
	display: inline-block;
	font-size: 14px;
	float:right;
}

.btn_salva_preferenze
{
	color: #39373B;
    font-size: 21px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #39373B;
    display: table;
	padding: 6px 15px;
	display: inline-block;
	font-size: 14px;
	background:none;
	cursor: pointer;
	margin-top:15px;
}

.displa_none
{
	display: none;
}

.content_popup_cookies h3
{
	margin-top:0px;
}

#segnalazione_cookies_ext
{
	padding: 30px;
    text-align: center;
    width: 50%;
	margin:25%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	position:fixed;
	left:0px;
	bottom:-850px;
	z-index:9999999;
	background-color:#f1eee9;
	letter-spacing:0px;
}
.content_popup_cookies
{
	text-align: justify;
	color:#3c4747;
}
.segnalazione_cookies_ext_pag_cookies
{
	width: 100% !important;
	margin:0% !important;
	bottom:0px !important;
	box-shadow: 0 -5px 5px -5px #333;
}
.segnalazione_cookies_ext_pag_cookies .content_popup_cookies
{
	width:50%;
	margin:0 auto;
}

#segnalazione_cookies_ext .icheckbox_square, #segnalazione_cookies_ext .iradio_square
{
	margin-left:0px;
	margin-right: 10px;
}

#segnalazione_cookies
{
	font-size: 13px;
    line-height: 20px;
}

@media (min-width: 768px)
{
	#segnalazione_cookies_ext
	{
		box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	}
}
@media (max-width: 767px)
{
	#segnalazione_cookies_ext
	{
		padding: 10px;
		width: 100%;
		margin:0;
		box-shadow: 0 -5px 5px -5px #333;
	}
	
	.segnalazione_cookies_ext_pag_cookies
	{
		width: 100% !important;
		margin:0% !important;
	}
	
	.segnalazione_cookies_ext_pag_cookies .content_popup_cookies
	{
		width:100%;
	}

	#slide_home{
		height: 0.1px !important;
	}

	.desktop{
		display: none !important;
	}
}