@import"skeleton.min.css";
@import"reset.css";
@import url('//fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
  scroll-behavior: smooth; 
}

body { 
	position:relative;
	font-family: "Rubik", serif;
	font-weight:300;
	font-size:20px;
	line-height:30px;
	color:#131a13;
	background-color:#FFF;
	margin:0px; }

	
b { font-weight:500; }
.bold { font-weight:900; }

.textSmall {
	font-size:14px; }

.p0 {padding:0px;}
p, 
.p1	{padding-bottom:5px;}
.p2	{padding-bottom:10px;}
.p3	{padding-bottom:15px;}
.p4	{padding-bottom:20px;}
.p5	{padding-bottom:25px;}
.p50 {padding-bottom:50px;}

.m1	{margin-bottom:5px;}
.m2	{margin-bottom:10px;}
.m3	{margin-bottom:15px;}f
.m4	{margin-bottom:20px;}
.m5	{margin-bottom:25px;}

a {color:#131a13; text-decoration: none;}
a:hover {color:#131a13; text-decoration: underline;}

p.h2 a:hover { text-decoration: none; }

.aleft		{text-align:left;}
.acenter	{text-align:center;}
.ajustify	{text-align:justify;}
.aright		{text-align:right;}
.pleft		{float:left;}
.pright		{float:right;}


h1, .h1 {
	font-size:55px;
	color: #131a13;
	line-height:65px;
	font-weight:900;}
h1.small { font-size: 45px; line-height: 55px; }
h2, .h2 {
	font-size:30px;
	color: #131a13;
	line-height:32px;
	font-weight:700;}
h2.small { font-size: 26px; font-weight: 400; }
h3, .h3 {
	font-size:28px;
	color: #131a13;
	line-height:38px;
	font-weight:300;}

.container_12 img {
	max-width:100%; }
	
/* Header */

#header { 
	padding: 20px 0px 20px 0px; 
	background-color: white; 
	position:fixed; 
	width: 100%; 
	z-index: 1000; 
	transition: top 0.3s;
	_box-shadow: 0 10px 20px -15px #333;}

#logo img { width: 200px; }

#menuSmall {
	display:none;}

#menu {
	margin-top:20px;
	text-align:right;
	text-transform: uppercase;}
#menu div {
	display:inline-block; }
#mainMenu li {
	display:inline-block;
	list-style: none;
	padding:0px 20px 0px 20px;}
#mainMenu a {
	display:inline-block;
	color:#131a13;
	font-weight:700;
	font-size:16px;
	line-height:16px; 
	text-decoration:none;
  padding: 4px 7px 4px 7px; }
#mainMenu a.current {
	color: #659765;}
#mainMenu a:hover {
	color: #659765;}


#subMenuLang { display: none; background-color:#FFF; position:absolute; right: 41px;}
#subMenuLang li { display:block; padding-left: 20px; padding-right: 15px; padding-top: 5px; padding-bottom: 5px; }
#mainMenu img { width: 17px; border-radius: 2px; vertical-align: baseline; }
#languageToggle:hover { color: #131a13 !important; }



.chiama {
	background-color: #659765;
	color: #fff !important;
	padding: 10px 20px !important;
	margin-top: -6px;
	border-radius: 8px;
}
.chiama:hover{
	background-color: #507a50;
}



/* Slider */
.slides {
	display:block; }
.slide img {
	width:100%;
	display:block;}
.slick-loading .slick-list {
    background: #fff url('../img/ajax-loader.gif') center center no-repeat; }

.slides span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Per centrare esattamente */
    display: block;
    _text-transform: uppercase;
    font-size: 75px;
    line-height: 85px;
    text-align: center;
    font-weight: 700;
    _text-shadow: #666 0px 0 10px;
    color: #fff;
    padding: 1px 10px 1px 10px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  color: #fff;
  background: none;
  opacity: 0.8;
  font-family: Arial;
  font-size: 2.5rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev:hover,
.slick-next:hover { opacity: 1; }

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

	
/* Kenburns effect for slick-slider */

.kenburns .slick-slider { overflow: hidden;}
.kenburns .slick-slider div.slick-active img {
	-webkit-animation: myMove 6s 1 ease-in-out;  
	-moz-animation: myMove 6s 1 ease-in-out;  
	-o-animation: myMove 6s 1 ease-in-out;  
	-ms-animation: myMove 6s 1 ease-in-out;  
	animation: myMove 6s 1 ease-in-out; }

.kenburns .slick-slide[aria-hidden="true"] img {
	_visibility:hidden; }

@keyframes myMove { 
	from { transform: scale(1.1,1.1); transform-origin: 50% 50%; } 
	to { transform: scale(1.0,1.0); transform-origin: 50% 0%; }
}
@-webkit-keyframes myMove { 
	from { -webkit-transform: scale(1.1,1.1); -webkit-transform-origin: 50% 50%; } 
	to { -webkit-transform: scale(1.0,1.0); -webkit-transform-origin: 50% 0%;  }
}
@-o-keyframes myMove { 
	from { -o-transform: scale(1.1,1.1); -o-transform-origin: 50% 50%; } 
	to { -o-transform: scale(1.0,1.0); -o-transform-origin: 50% 0%;  }
}
@-moz-keyframes myMove { 
	from { -moz-transform: scale(1.1,1.1); -moz-transform-origin: 50% 50%; } 
	to { -moz-transform: scale(1.0,1.0); -moz-transform-origin: 50% 0%; }
}
@-ms-keyframes myMove { 
	from { -ms-transform: scale(1.1,1.1); -ms-transform-origin: 50% 50%; } 
	to { -ms-transform: scale(1.0,1.0); -ms-transform-origin: 50% 0%; }
}


.rounded { border-radius: 8px; }

a.btn {
	background-color: #659765;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 20px 40px;
	border-radius: 8px;
	text-transform: uppercase;
}
a.btn:hover {
	text-decoration: none;
	background-color: #507a50;
}


/* Content */

#content { padding-top: 105px; }	

.dettagli { padding: 30px; border: 1px solid #ddd;}
.dettagli span { padding-right: 30px; display: inline-block; padding-bottom: 15px; }
.dettagli small { font-size: 16px; padding-left: 5px; }

.banner { background-color: #131a13; color: white; background-clip: content-box; }
.banner .h2 { color:white; }
.banner .btn { display: block; text-align:center; }
.banner .grid_7 { padding: 50px 50px 50px 50px; box-sizing: border-box; }
.banner .grid_3 { padding: 80px 50px 50px 0px; box-sizing: border-box; }

#itinerari b { font-size: 22px; }
#itinerari { font-size: 18px; }

	
#map  {
	width:100%;
	height:500px; }
#map img {
	max-width:none;
	display:block;}


/* Full Calendar */
.fc-button-primary {
    background-color: #659765 !important;
    border-color: #659765 !important;
}
.fc-button-primary:hover {
    background-color: #507a50 !important;
    border-color: #507a50 !important;
}
.fc-event {
    border: 1px solid #659765;
}
.fc-event,
.fc-event-dot {
    background-color: #659765;
}


	
/* Back to top button */
#back-top {
	z-index:100;
	position: fixed;
	bottom: 100px;
	right: 10px;}
#back-top a {
	width: 40px;
	height: 40px;
	display: block;
	opacity:0.6;}
#back-top a:hover {
	opacity:1;}
/* Scroll down button */
#scroll-down {
	height:40px;}

/* Form */

form { font-family: "Rubik", serif;}

::placeholder { 
  font-weight:500;
  color: #131a13;
  opacity: 1;
}

input[type="email"],
input[type="search"],
input[type="text"],
input[type="password"],
textarea,
select {
	border: 1px solid #CCC;
	padding: 12px 10px 12px 10px;
	width:100%;
	margin-bottom: 15px;}
select {
	padding: 5px 6px 5px 6px;}
input:read-only {
	background-color: #EEE;}
input[type="button"],
input[type="submit"] {
	font-size: 25px;
	font-weight: 600;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 5px 10px 0px #999;
	padding: 10px 8px 10px 8px;
	color: white;
	background-color: #131a13; 
	width: 25%;}
		
input[type="submit"]:hover,
input[type="button"]:hover { background-color: #659765; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin:5px;
  width:25px;
  height:25px; }

.WhatsApp  {
	margin-left:25px;
	max-width:140px !important; }

/* Footer */
#footer {
	font-size: 18px;
	line-height: 28px;
	padding-top:50px;
	padding-bottom:140px;
	background-color:#131a13;
	color:#FFF;}
#footer a {
	text-decoration:none;
	color:#FFF; }
#footer a:hover {
	text-decoration:underline; }
#footer img { max-width: 250px; }


	
@media only screen and (min-width: 1200px) and (max-width: 1619px) {
	body { font-size: 18px; line-height: 27px; }
	#mainMenu li {
		padding:0px 7px 0px 7px;}
	#mainMenu a {
		font-size:16px;
	    padding: 4px 7px 4px 7px; }
	#subMenuLang { right: 31px;}
	#subMenuLang a { padding: 10px 7px 10px 7px; }
	.chiama {
		padding: 8px 16px !important; }
	#content { padding-top: 96px; }
	.slides span {
    font-size: 52px;
    line-height: 62px; }
  	a.btn {
		font-size: 18px;
		padding: 15px 30px; }
	h1, .h1 {
	font-size:37px;
	line-height:47px;}
	h2, .h2 {
		font-size:28px;
		line-height:30px;}
	h3, .h3 {
		font-size:25px;
		line-height:35px;}
	#itinerari .grid_3 {
		width: 570px;
		margin: 0 15px;}
	#map { height:450px; }
	#footer { font-size: 16px; line-height: 26px; }
	#footer img { max-width: 220px; }
}

@media only screen and (max-width: 1199px) {
	body {
		font-size: 16px; line-height:26px; }
	h1, .h1 {
		font-size:35px;
		line-height: 45px; }
	h2, .h2 {
		font-size:25px;
		line-height: 32px;}
	h3, .h3 {
		font-size:23px;
		line-height:33px;}
	#menu { margin-top: 0px; }
	#mainMenu li {
		padding:16px 0px 0px 5px; }
	#mainMenu a {
		font-size:13px;
		line-height:14px;
		font-weight: 700;
		padding: 0px 8px 5px 8px; }
	.chiama {
		padding: 8px 16px !important; }
	#subMenuLang { right: 24px;}
	#subMenuLang li { padding:10px 0px 0px 5px; }
	#mainMenu img { vertical-align: middle; }
	#content { padding-top: 87px; }	
	.slides span {
    font-size: 50px;
    line-height: 65px; }
	a.btn {
		font-size: 16px;
		padding: 12px 22px; }
	.grid_5.prefix_1 { padding-left: 0px; width: 460px; margin: 0 10px; }
	.grid_5.suffix_1 { padding-right: 0px; width: 460px; margin: 0 10px; }
	.banner .grid_3 { padding: 100px 50px 50px 0px; }
	#itinerari .grid_3 {
		width: 460px;
		margin: 0 10px;}
	#map { height:428px; }
	.WhatsApp  {
		max-width:120px !important; }
	#footer { font-size: 15px; line-height: 24px; }
	#footer img { width: 200px; }
}

@media only screen and (min-width: 768px) and (max-width: 995px) {
	body{
		font-size: 15px;
		line-height: 22px; }
	.h1, h1{
		font-size:29px;
		line-height: 38px; }
	.h2, h2{
		font-size:23px;}
	h3, .h3 {
		font-size:20px;
		line-height:30px;}
	#mainMenu { margin-top: 5px; }
	#mainMenu li {
		padding:0px 0px 0px 0px; }
	#mainMenu a {
		font-size:12px;
		font-weight: 600;
		line-height:14px;
		padding: 5px 3px 5px 3px; }
	.chiama {
		padding: 6px 8px !important; margin-top: 0px; }
	#subMenuLang { right: 17px;}
	#subMenuLang a { padding: 10px 8px 10px 10px;}
	#content { padding-top: 76px; }	
	.slides span {
    font-size: 33px;
    line-height: 45px; }
  	a.btn {
		font-size: 15px;
		padding: 10px 20px; }
	.grid_5.prefix_1 { padding-left: 0px; width: 364px; margin: 0 10px; }
	.grid_5.suffix_1 { padding-right: 0px; width: 364px; margin: 0 10px; }
	#itinerari b { font-size: 20px; }
	#itinerari { font-size: 15px; line-height: 22px; }
	#itinerari .grid_3 {
		width: 364px;
		margin: 0 10px;}
	.banner .grid_3 { padding: 95px 50px 50px 0px; box-sizing: border-box; }
	#map { height:400px; }
	.WhatsApp  {
		margin-left:20px;
		max-width:120px !important; }
	#footer { font-size:13px; line-height: 21px; }
	#footer img { width: 180px; }
}

@media only screen and (max-width: 767px) {
	#menu {
		position:fixed;
		display: none;
		z-index: 10000;
		right: 0px;
		height:100%;
		background-color: #fff;
		box-shadow: -5px 0px 5px -5px #999; }
	#menu a { font-size: 17px; }
	#mainMenu li { display: block; }
	#menuSmall {
		display:block;
		float:right;
		cursor:pointer;
		margin-top:15px; }
	#subMenuLang { right: 17px;}
	#mainMenu img { vertical-align: baseline; }
	.dettagli span { display: block; }

	/* Full calendar customization */
	.fc-button-primary { width: 38% !important; padding: 5px !important; font-size: 14px !important; }

	#itinerari { font-size: 16px; line-height: 26px; }
	.banner .grid_7 { padding: 50px 50px 20px 50px;  text-align: center;}
	.banner .grid_3 { padding: 20px 50px 50px 50px; }
	input[type="submit"], button {
		width: 100%;}
	#footer { font-size: 15px; }
	#footer img { width: 200px; }
	#footer .grid_2, #footer .grid_3, #footer .grid_4 { text-align: center; padding-bottom: 30px; }

	
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

	#logo img { width: 180px; }
	#menu {
		margin-top: 78px;
		right: 0px;
		width: 55%; }
	#mainMenu li {
		display: block;
		text-align: right;
		margin:15px 25px 0px 0px; }
	#subMenuLang li { padding: 0px 0px 0px 5px; }
	#mainMenu a {
		padding: 5px 3px 5px 0px; }
	#menuSmall img {
		width: 30px;}
	#content { padding-top: 100px; }
	.slides span {
	    font-size: 40px;
	    line-height: 55px; }
	.grid_5.prefix_1, .grid_5.suffix_1, #itinerari .grid_3 { width: 460px; margin: 0; }
	.WhatsApp  {
		margin-left:50px; }
}

@media only screen and (max-width: 479px) {
	.h1, h1 { font-size: 28px; line-height: 38px; }
	.h2, h2{
		font-size:21px; line-height: 31px;}
	.h3, h3 { font-size:21px; }
	#logo img { width: 150px; margin: auto; padding-top: 0px;  }
	#menu {
		display: none;
		width: 60%;
		margin-top: 68px;
		text-align:right; }
	#menu a { font-size: 16px; }
	#mainMenu { padding-top: 30px; }
	#mainMenu li {
		padding:8px 20px 20px 0px; }
	#menuSmall img {
		width: 30px;
		margin-top: -5px;}
	#subMenuLang { right: 36px;}
	#subMenuLang li { padding: 5px 0px 5px 0px; }
	#content { padding-top: 90px; }
	.slides span {
    font-size: 35px;
    line-height: 50px; }
	.slides span a.btn {
	display: inline; font-size: 13px; padding: 9px 11px; }
	a.btn { display: block; text-align: center; }
	.grid_5.prefix_1, .grid_5.suffix_1, #itinerari .grid_3 { width: 320px; margin: 0; }

	.WhatsApp  {
		margin-left:10px;
		max-width:110px !important; }
	
	/* Full calendar customization */
	.fc-toolbar-title { font-size: 20px !important; }
}
