:root {
  --red: #F23662;
/*  --red: #CE3964;*/
  --orange: #E2523F;
}
@font-face {
	font-family: "DaysOne-Regular";
	src: url("fonts/DaysOne-Regular.ttf");
}
@font-face {
    font-family: 'Canoodle';
    src: url('fonts/Canoodle-Regular.eot');
    src: url('fonts/Canoodle-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Canoodle-Regular.woff2') format('woff2'),
        url('fonts/Canoodle-Regular.woff') format('woff'),
        url('fonts/Canoodle-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html{
	scroll-behavior: smooth;
	max-width: 100vw;
	overflow-x: hidden;
}
body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	max-width: 100vw;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "DaysOne-Regular";
	color: #222;
}
img {
	max-width: 100%;
}
*::selection { background: var(--orange); color: #fff }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-thumb { background-color: var(--red); border-radius: 1px; }
::-webkit-scrollbar-track { background-color: #fff; }
@media(max-width: 1024px){
	::-webkit-scrollbar { width: 0px; }
	::-webkit-scrollbar-thumb { background-color: transparent; border-radius: 1px; }
	::-webkit-scrollbar-track { background-color: #fff; }
}
a {
	color: #555555;
	text-decoration: none;
	transition: 0.54s;
}
p {
	line-height: 1.6;
}
.container {
	width: 94%;
/*	max-width: 1200px;*/
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.container.center {
	align-items: center;
}
input:active, input:focus-visible {
	outline: none;
}
.text-center {
	text-align: center;
}
.mt150 {
	margin-top: 150px;
}
.w100 {
	width: 100%;
}
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100vw;
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
	transition: 0.54s;

}
header.fixed {
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
header.fixed nav a {
	color: #222;
}
@media(max-width: 1024px) {
	header {
		position: absolute;
	}
	header nav {
		display: none;
	}
}
header nav a {
	font-size: 16px;
	padding: 5px 0px;
	position: relative;
	margin: 0 15px;
	color: #fff;
	font-weight: 500;
}
header .headercard {
	width: 30px;
	margin-left: -30px;
	padding: 0px 5px;
	border-radius: 5px;
	transition: 0.54s;
}
header .headercard:hover {
	background: var(--red);
}
header .headercard:hover img {
	filter: brightness(0)invert(1);
}
header .headercard
@media(max-width: 1024px){
	header nav {
		display: none;
	}
}
.red-underline:before {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s transform ease;
	transform: scale3d(0,1,1);
	transform-origin: 0 50%;
	background: linear-gradient(to left, var(--red), var(--orange) ) !important; 
	transform-origin: 100% 50%;
}
.red-underline:hover::before{
	transform: scale3d(1,1,1);
	transform-origin: 0 50%;
}
header nav a.red-underline:before {
	background: #fff;
}
.red-underline.active {
	color: var(--orange);
}
.logo {
	max-width: 250px;
	min-width: 250px;
	padding: 20px 0;
}
.logo img {
	transition: 0.54s;
	width: 100%;
}
header.fixed .logo .normal-logo,
header .logo .white-logo {
	display: block;
}
header .logo .normal-logo,
header.fixed .logo .white-logo{
	display: none;
}
@media(max-width: 1024px){
	.logo {
		max-width: 200px;
		min-width: 200px;
		padding: 20px 0;
	}
}
.lang {
	width: 60px;
	display: flex;
	cursor: pointer;
}
@media(min-width: 1450px){
	.lang {
	/*		margin-right: -100px;*/
		position: absolute;
		right: 110px;
	}
}
.lang:hover span {
	color: var(--orange);
}
.lang img.fixed {
	display: none;
}
.lang img {
	width: 22px;
	height: 22px;
	margin-right: 7px;
}
.lang span {
	transition: 0.54s;
	color: var(--red);
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
}
#mainsection {
	position: relative;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.parallax-section {
	padding: 0 20px;
	/*background-image: url('../images/carovigno.jpg');
	background-size: cover;
	background-position: center;*/
	background: url('../images/carovigno.jpg') no-repeat fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 500px;
	height: 100vh;
}
.parallax-section h1 {
	font-size: 40px;
	font-family: "DaysOne-Regular";
	margin-bottom: 20px;
	font-weight: 500;
	text-shadow: 0 0 1px #000;
	color: #fff;
	text-shadow: 0 0 20px rgba(0,0,0,0.7);
}
.parallax-section p {
	font-size: 16px;
	margin-bottom: 20px;
	text-shadow: 0 0 1px #000;
	color: #fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.8);
}
.redbtn {
	background: linear-gradient(90deg, #CE3964 0%, #E2523F 100%);
	border-radius: 50px;
	border-width: 0;
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 15px;
	line-height: 173%;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 35px;
	color: #FFFFFF;
	transition: all 0.54s ease-out;
	display: inline-block;
	margin-bottom: 10px;
	cursor: pointer;
}
.redbtn:hover {
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0.5, 0.002, 0, 0, 1, 0, 0, 0, 0, 1);
}
.redbtn.whitebg {
	border: 1px solid var(--red);
	background: #fff;
	color: var(--red);
}
#swipe-bg {
	position: absolute;
	bottom: 20px;
	width: 29px;
	left: calc(50vw - 15px);
}
#swipe-point {
	position: absolute;
  bottom: 32px;
  width: 7px;
  left: calc(50vw - 4px);
  animation-iteration-count: infinite;
}

h2 {
	font-size: 36px;
	text-align: center;
	margin: 100px auto 10px;
}
p {
	color: #555;
}
div {
	width: 100%;
}
#benvenuti p {
	text-align: center;
	margin-bottom: 40px;
}
#cosa {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#cosa .item {
	width: calc(20% - 10px);
	height: 330px;
	border-radius: 25px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: 0.54s;
	margin-bottom: 10px;
	position: relative;
}

#cosa .item:hover {
	filter: brightness(0.9);
}
#cosa .item span {
	/*font-family: "DaysOne-Regular";*/
	font-family: 'Canoodle';
	font-size: 46px;
	color: #fff;
	padding: 70px;
}
@media(max-width: 1024px){
	#cosa .item {
		width: calc(50% - 5px);
		height: 45vw;
	}
	#cosa .item.item4 {
		width: calc(100%);
		height: 45vw;
	}
	#cosa .item span {
		font-size: 36px;
	}
}
.snake {
	display: block;
	width: 80px;
	margin: 20px auto;
}
#banners {
/*	margin-bottom: 100px;*/
}
#banners h2 {
	margin-bottom: 40px;
	margin-top: 20px;
}
#banners div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#banners a {
	margin: 10px;
	width: calc(25% - 20px);
}
#banners a.banner-h {
	margin: 10px;
	width: 100%;
}
#banners a img {
	border-radius: 10px;
	width: 100%;
}
#banners a:hover {
	filter: brightness(0.9);
}
@media(min-width: 1025px) {
	.banner3 {
/*		display: none;*/
	}
}
@media(max-width: 1024px) {
	.banner-h {
		display: none;
	}
	#banners a {
	/*width: 100%;*/
	  width: calc(50% - 10px);
    margin: 5px;
    margin-bottom: 0;
	}
}

#newsletter .container {
	max-width: 700px;
	width: 90%;
}
#newsletter {
	background: #3C3C3C;
	padding: 0px 0 40px;
	color: #fff;
}
#newsletter h2 {
	margin-top: 60px;
	text-transform: uppercase;
	color: var(--red);
}
#newsletter p {
	color: #fff;
	text-align: center;
	font-size: 20px;
	margin-bottom: 15px;
}
#newsletter input[type=email] {
	background: #fff;
	padding: 12px 15px;
	border-radius: 10px;
	width: calc(100% - 95px);
	margin-right: 12px;
	font-size: 14px;
}
#newsletter button {
	background: linear-gradient(270deg, var(--orange) 0%, var(--red) 100%);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: 0.54s;
}
#newsletter button:hover {
	background: linear-gradient(180deg, var(--orange) 0%, var(--red) 100%);
}
#newsletter label {
	display: block;
	margin-top: 15px;
	font-size: 14px;
}
#newsletter label a {
	color: var(--orange);
	text-decoration: underline;
}
#newsletter label a:hover {
	color: var(--red);
}
@media(max-width: 1024px) {
	#newsletter {
		color: #fff;
	}
	#newsletter h2, #newsletter p {
		text-align: left;
	}
}
form.ajax div {
	display: none;
}
#ajaxFormResult p {
	color: var(--orange);
}

footer {
	background: #222222;
	color: #fff;
	padding: 35px 0 25px;
	
}
footer .container {
	display: flex;
}
footer a {
	display: block;
	color: #fff;
	line-height: 1.5;
	transition: 0.54;
}
footer a:hover {

}
footer .logo-footer {
	max-width: 240px;
	margin-bottom: 15px;
}
footer nav.menu img {
	max-width: 40px;
	max-height: 30px;
}
nav.menu {
	display: none;
}
footer .container div {
	width: 33.3%;
}
footer .underbottom {
	width: 100%;
	padding: 15px 0;
	color: #CECECE;
	font-size: 14px;
}
@media(min-width: 1025px){
	footer .underbottom .author {
		float: right;
	}
	footer .follow-us * {
		text-align: center;
	}
	footer .links * {
		text-align: right;
	}
}
footer .underbottom span a {
	display: inline;
	color: var(--orange);
}
footer .foo-links a {
	font-size: 14px;
	line-height: 2.5;
	text-transform: uppercase;
	color: #DADADA;
}
footer i {
	transition: 0.54s;
}
footer a:hover, footer a:hover i, footer .first_section a:hover {
	color: var(--orange);
}
footer .first_section a {
	font-size: 14px;
	line-height: 2.5;
	color: #DADADA;
}
footer .foo-title {
	color: #777777;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
}
footer .foo-social {
	display: flex;
    justify-content: space-between;
    margin: 20px 0;
    width: 160px !important;
    margin-left: calc(50% - 80px);
}
footer .foo-social a {
	color: #777777;
	font-size: 40px;
}
@media(max-width: 1024px) {
	footer {
		padding-bottom: 60px;
	}
	footer * {
		text-align: center;
	}
	footer nav.menu {
		position: fixed;
		background: #fff;
		bottom: -1px;
		width: 100vw;
		left: 0;
		box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
		z-index: 5;
	}
	footer nav.menu div {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	footer nav.menu div a {
		width: 16.6%;
		padding: 15px 0 25px;
		filter: grayscale(1);
	}
	footer nav.menu div a.active {
		filter: grayscale(0);
	}
	footer nav.menu div a img {
		margin: 0 auto;
		display: block;
	}
	footer .container div {
		width: 100%;
	}
	footer .underbottom span {
		display: block;
		line-height: 1.5;
		text-align: center;
	}
	footer .logo-footer {
		margin: 15px auto 25px;
	}
	footer .foo-social {
	    width: 140px !important;
	    margin-left: calc(50% - 70px);
	}
}
.cuoro {
	animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    display: inline-block;
}
.bg {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99;
}
.popup {
	display: none;
	width: 330px;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	z-index: 100;
	position: fixed;
	left: calc(50vw - 175px);
	top: calc(10vh);
}
#thankspopup {
	left: calc(50vw - 175px);
	top: calc(50vh - 80px);
}
#thankspopup .subtitle {
	text-align: center;
	font-size: 20px;
	padding: 20px;
	width: calc(100% - 40px);
}
.popup form {
	padding: 15px;
	margin: 0;
}
.popup form input[type=checkbox] {
	width: 20px;
	display: inline-block;
	margin: 0;
}
.popup .redbtn {
	margin: 20px auto;
	border: none;
	cursor: pointer;
	display: block;
	text-align: center;
}
.popup form label {
	font-size: 12px;
}
.popup form label a {
	color: var(--red);
}
.popup form label a:hover {
	text-decoration: underline;
}
.popup .subtitle {
	margin-left: 5px;
	width: calc(100% - 10px);
	font-size: 12px;
	padding: 10px;
}
.popup form input {
	transition: 0.54s;
	padding: 13px 0px 7px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	width: 100%;
	border-bottom: 1px solid #000;
}
.popup form input:active, .popup form input:focus-visible {
	outline: none;
	border-width: 2px;
}

.lang-popup {
	display: none;
	width: 280px;
	height: 280px;
	border-radius: 10px;
	background: #fff;
	z-index: 100;
	position: fixed;
	left: calc(50vw - 140px);
	top: calc(50vh - 140px);
}
.lang-popup .close, .popup .close {
	position: absolute;
    left: 230px;
    transform: rotate(45deg);
    font-size: 50px;
    padding: 5px;
    height: 60px;
    width: 60px;
    cursor: pointer;
}
.popup .close {
	left: 290px;
}
.lang-popup .title p, .popup .title p {
	margin-left: 15px;
	font-size: 18px;
	font-family: "DaysOne-Regular";
	color: var(--red);
}
.lang-popup a {
	display: block;
	font-size: 16px;
	margin: 40px 15px 15px;
	color: var(--red);
	text-align: center;
	font-weight: 700;
}
.lang-popup a[href] {
	color: #000;
	font-weight: 400;
}
.lang-popup img {
	width: 40px;
    margin: 10px auto 5px;
    display: block;
}
.lang-popup a[href] img {
	filter: grayscale(50%);
	transition: 0.54s;
}
.lang-popup a[href]:hover img {
	filter: grayscale(0%);
}
.lang-popup a[href]:hover {
	font-weight: 700;
}

#group-header {
	min-height: 250px;
	max-height: 250px;
}
#group-header h1 {
	padding-top: 100px !important;
	margin: 0 auto;
	text-align: center;
}


#sortform, .pseudoform {
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
/*	box-shadow: 0px 8px 20px -6px rgba(0, 0, 0, 0.15);*/

	padding: 20px 0;
	margin-bottom: 15px;
	overflow-x: auto;
	white-space: nowrap;
}
@media(max-width: 1024px){
	#sortform, .pseudoform {
		padding: 20px;
	}
}
#sortform, .pseudoform .pseudofilter {
	white-space: nowrap;
}
@media(min-width: 1025px){
	#sortform, .pseudoform {
		text-align: center;
	}
}
#sortform input {
	display: none;
}
#sortform label, .pseudofilter {
	font-size: 14px;
	padding: 7px 17px;
	color: #000;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 10px;
	transition: 0.54s;
	cursor: pointer;
	margin-left: 10px;
}
#sortform label:hover, .pseudofilter:hover {
	border-color: var(--red);
}
#sortform label.active, .pseudofilter.active {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}
#sortform .options {
	padding: 10px 0;
}

@media(max-width: 1024px){
	#sortform .filter {
		overflow-x: auto;
	}
	#sortform .options {
		width: auto;
		padding: 10px 0;
		white-space: nowrap;
	}
}
.d-flex {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
}
.catalog article, 
.catalog aside {
	width: 100%;
}
.catalog article {
	margin-bottom: 50px;
}
.products {
	padding: 15px 0;
}
.products .boxitem {
	width: calc(25% - 20px);
	padding: 10px;
	border-radius: 15px;
	transition: 0.54s;
}
.products .boxitem:hover .name {
	color: var(--red);
}
.products .boxitem img {
	width: 100%;
	transition: 0.54s;
	margin-bottom: -5px;
}
.products .boxitem .option-detal {
	display: flex;
	margin-bottom: -50px;
}
.boxitem .photo-container {
	border-radius: 15px;
	overflow: hidden;
}
.boxitem:hover .photo-container img {
	transform: scale(1.1);
}
.products .boxitem .option-detal img {
  width: 34px;
  max-height: 25px;
  position: relative;
  bottom: 15px;
  background: #fff;
  margin-left: 20px;
  border-radius: 10px;
  border: 2px solid #f23662;
  padding: 2px 0 5px 0;
  box-shadow: 0px 0px 0px 4px #fff;
}

.products .boxitem .option-detal p {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: var(--red);
  text-transform: uppercase;
  margin: 7px 8px;
}

.products .boxitem .name {
  transition: 0.54s;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin-top: 15px;
}

@media(max-width: 1024px){
	.products .boxitem {
		width: calc(50% - 20px);
	}
	.boxitem .photo-container img {
		height: calc(50vw - 20px);
		object-fit: cover;
	}
	.products .boxitem .option-detal img {
	  max-width: 32px;
	  max-height: 24px;
	  bottom: 17px;
	  border-radius: 10px;
		margin-left: 20px;
		border-radius: 10px;
		border: 2px solid #f23662;
		padding: 2px 0 5px 0;
		box-shadow: 0px 0px 0px 4px #fff;
	}

	.products .boxitem .option-detal p {
	  font-size: 12px;
	  line-height: 1.2;
	  margin: 5px 8px;
		text-transform: uppercase;
	}

	.products .boxitem .option-detal {
    margin-bottom: -30px;
	}
	.products .boxitem .name {
		font-size: 16px;
		margin-top: 25px;
	}
}
.date-box {
	font-size: 12px;
	font-weight: 700;
	color: var(--orange);
	margin: 5px 0 -10px;
}
.pagination {
	margin: 20px auto;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.pagination li {
	list-style-type: none;
	display: inline-block;
	width: 40px;
	height: 40px;
	font-size: 20px;
	border: 1px solid var(--orange);
	margin: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.54s;
	border-radius: 5px;
}
.pagination li * {
	color: var(--orange);
}
.pagination li.active, 
.pagination li:hover {
	border-color: var(--red);
	border-width: 2px;
}
.pagination li.previous-off *, .pagination li.next-off *,
.pagination li.previous-off:hover *, .pagination li.next-off:hover *
{
	color: gray;
}
.pagination li.previous-off, .pagination li.next-off {
	border-color: gray;
}
.pagination li.previous-off:hover, .pagination li.next-off:hover {
	border-color: gray;
	border-width: 1px;
}
.event-main {
	height: 216px;
	border-radius: 15px;
	background-position: center;
	background-size: cover;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-end;
/*	padding: 10px 25px;*/
	box-sizing: border-box;
	overflow: hidden;
}
.event-main img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	overflow: hidden;
	margin: auto;
	transition: 0.54s;
}
.event-main:hover img {
	transform: scale(1.1);
}
.event-main div {
	position: absolute;
	padding: 15px 25px;
	max-width: calc(100% - 60px);
}
.w50 {
	width: calc(50% - 10px);
}
.w33 {
	width: calc(33.3% - 10px);
}
.w100 {
	width: 100%;
}
.event-main p {
	position: relative;
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	margin: 10px 0;
}
.event-main p b {
	position: relative;
	color: #fff;
	font-family: "DaysOne-Regular";
	font-size: 28px;
	line-height: 32px;
}
@media(max-width: 1024px){
	.w50, .w33 {
		width: 100%;
	}
}
#owl-fare {
	padding: 20px 0;
	justify-content: space-around;
}
#owl-fare .w33 div {
	border-radius: 15px;
	overflow: hidden;
}
#owl-fare .w33 div img {
	transition: 0.54s;
	width: 100%;
}
#owl-fare .w33:hover div img {
	transform: scale(1.1);
}
#owl-fare .w33 p {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #000;
}
#owl-fare .w33:hover p {
	color: var(--orange);
}
@media(max-width: 1024px) {
	#owl-fare {
			padding:20px;
			max-width: calc(100% - 40px);
	}
}
.owl-dot {
	background: #E0E0E0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
	margin: 11px;
}
.owl-dots {
	display: flex;
	padding-bottom: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.owl-dot.active {
	background: var(--red);
}
.owl-dot.active:after {
	content: '';
	background: transparent;
	position: absolute;
	height: 13px;
	width: 13px;
	border: 2px solid var(--red);
	border-radius: 50%;
	margin-top: -4px;
	margin-left: -4px;
}
#cards {
	padding-bottom: 40px;
}
#cards .item {
	border-radius: 15px;
	height: 320px;
	height: 250px;
	text-align: center;
	transition: 0.54s;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
#cards .item div {
	width: calc(100% - 220px);
	margin-left: 180px;
	text-align: left;
	height: 100%;
    margin-top: 65px;
}
@media(max-width: 1024px){
	#cards .item {
		height: auto;
		padding-bottom: 50px;
	}
}
#cards .item:hover {
	transform: scale(1.01);
}
.maincard {
	background-color: #f4e6e9;
	background-image: url(images/cardbg.png);
}
.maincard img {
	width: 70%;
	margin: 10% 15% 0;
	max-width: 280px;
}
#cards .maincard h3 {
	text-transform: uppercase;
	color: #ef2d5e;
}
.maincardtext {
	padding-bottom: 20px;
}
.maincard .subtitle {
	color: #ef2d5e;
	font-size: 18px;
	margin: 0;
}
.maincard p {
	/*	padding: 0 20px;*/
	font-size: 14px;
}
.cardbutton {
	color: #fff;
	border-color: #fff;
	font-size: 18px;
    font-weight: 700;
    border: 2px solid;
    padding: 10px 20px;
    border-radius: 25px;
}
.mainhost .cardbutton:hover {
	background: #fff;
	color: #ef2d5e;
	border-color: #fff;
}
.mainpartner .cardbutton:hover {
	background: #fff;
	color: #e74e3a;
	border-color: #fff;
}
.cardbutton.red {
	color: #ef2d5e;
	border-color: #ef2d5e;
}
.cardbutton.red:hover {
	background: #ef2d5e;
	color: #fff;
}
.mainhost, .mainpartner, .maincard {
	background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: -15px -15px;
    background-size: 260px;
}
.mainhost {
	background-image: url(images/host-bg.png);
}
.mainpartner {
	background-image: url(images/partner-bg.png);
}
#cards h3 {
	color: #fff;
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 10px;
}
.mainhost p, .mainpartner p {
/*	padding: 20px;*/
	color: #fff;
	padding-bottom: 20px;
	font-size: 14px;
}
.mainhost {
	background-color: #ef2d5e;
}
.mainpartner {
	background-color: #e74e3a;
}
@media(min-width: 1025px){
	#mainapp {
		display: none;
	}
}
@media(max-width: 1024px){
	.mainhost, .mainpartner, .maincard {
		background-position: 50% 10px;
	}
	#cards .item div {
	    width: 90% !important;
	    margin: 250px auto 0 !important;
	    height: auto !important;
	    text-align: center !important;
	}
}
#mainapp {
	background: linear-gradient(90deg, #F23662 0%, #E2523F 98.21%);
	padding: 20px;
	width: calc(100% - 20px);
}
#mainapp h2 {
	color: #fff;
	margin: 10px 0;
	text-align: left;
	font-size: 28px;
	font-weight: 400;
}
#mainapp p {
	font-size: 16px;
	color: #fff;
}
#mainapp div {
	display: flex;
	justify-content: space-around;
	width: calc(100% - 20px);
	margin: 20px 0;
}
#mainapp div img {
	max-width: 150px;
}
@media(max-width: 1024px){

}

#detal-imgs {
	padding: 85px 0 0;
}
#detal-imgs img {
	object-fit: cover;
	margin: 1px;
}
#detal-imgs .w50 {
	width: calc(50% - 1px) !important;
	height: calc(100% - 2px);
}
#detal-imgs .w50 img {
	width: calc(100% - 1px) !important;
	margin-bottom: -3px;
}
.allphotos {
	background: #fff;
	padding: 5px 10px;
	border-radius: 3px;
	position: relative;
	top: -60px;
	left: calc(100% - 60px);
	z-index: 2;
}
#show_all {
	height: 0;
}
#detalsection {
	position: relative;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: url(images/headerdetal.webp?v=0.01);
	background: url(images/headerdetal.webp) no-repeat fixed;
    max-height: 190px;
	min-height: 190px;
    height: 190px !important;
    margin-top: 84px;
    background-size: inherit;
    background-position: right 85px;
	display: none;
}
@media(min-width: 1025px){
	#detal-imgs, #show_all { display: none; }
	#detalsection { display: flex; margin-top:85px }
}
.breadcrumbs * {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 24px;
}
.breadcrumbs a {
	color: #000;
}
.breadcrumbs a:hover {
	color: var(--red);
}
#detalh1 h1 {
	font-weight: 400;
	font-size: 26px;
	line-height: 32px;
	margin-top: 0;
}
#typeicon {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
#typeicon img {
	width: 30px;
	height: 30px;
	margin-right: 8px;
}
#typeicon span {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: var(--red);
	text-transform: uppercase;
}
a.detalpoint:hover {
	color: var(--red);
}
@media(min-width: 1025px){
/*	.detalpoints {
		display: flex;
		justify-content: space-between;
	}*/
}
.detalpoint {
	width: 100%;
	display: flex;
	align-items: center;
	margin: 5px 0 15px;
	line-height: 1.5;
	margin-right: 10px;
}
.detalpoint img, .detalpoint i {
	margin-right: 8px;
	width: 24px;
}
#owl-detal {
	padding: 20px 0;
}
#owl-detal .owl-dots {
    margin-top: 20px;
    margin-top: -80px;
    margin-bottom: 80px;
    z-index: 1;
    position: relative;
}
.slideitem {
	transition: 0.54s;
	cursor: pointer;
}
.slideitem:hover {
	transform: scale(1.01);
	filter: brightness(0.9);
}
#detalpage {
	padding-bottom: 80px;
}
@media(max-width: 1024px){
	#detalpage h2 {
		font-size: 24px;
		text-align: left;
		margin: 35px 0 10px;
	}
}
.videos {
	margin: 40px auto 20px;
	max-width: 700px;
}
.videos iframe{
	width: 100%;
	height: calc(100vw / 16 * 9);
	margin-bottom: 20px;
	max-height: 394px;
	border-radius: 10px;
}
.map-container {
	padding: 0;
	display: block;
}
.map-container h2 {
	margin: 15px 0;
}
#map {
	width: 100%;
	height: 600px;
	display: none;
	overflow: hidden;
	border-radius: 10px;
}
.chooseway {
  position: relative;
  width: 40px;
  height: 300px;
  margin-left: calc(100% - 60px);
  margin-bottom: 0;
  margin-top: -300px;
  z-index: 2;
  display: none;
}
.chooseway span {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 5px;
	display: block;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.54s;
}
.chooseway span.active,
.chooseway span:hover {
	background: var(--red);
}
.chooseway span img {
	transition: 0.54s;
}
.chooseway span.active img,
.chooseway span:hover img {
	filter: brightness(0)invert(1);
}
.maptext {
	padding: 20px 0;
	display: none;
}
#km {
	font-size: 20px;
	text-align: left;
	color: var(--orange);
	display: block;
	font-weight: 700;
	font-family: "DaysOne-Regular";
	padding: 15px;
}
#maptext {
	text-align: left;
	font-size: 12px;
	line-height: 1.4;
	max-height: 250px;
	overflow-y: auto;
	padding: 15px;
	display: block;
	background: rgba(100, 100, 100, 0.1);
	border-radius: 5px;
}
.popup.download {
	top: calc(50vh - 150px);
}
.download-title {
	font-size: 24px;
	text-align: center;
	padding: 20px 0;
	color: var(--red);
	font-family: "DaysOne-Regular";
}
.download img {
	height: 20px;
	position: absolute;
}
.download .subtitle p {
	display: flex;
	align-items: center;
}
.subtitle {
	color: var(--orange);
}
.download span {
	font-size: 16px;
	margin-left: 30px;
	width: calc(100% - 30px);
}
#login-section {
	margin-top: 80px;
	height: 300px;
	min-height: 300px;
	max-height: 300px;
	background-size: cover;
	background-position: right;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(images/subheader-card.png);
}
#login-section h1 {
	color: var(--red);
	text-shadow: none;
}

.loginstart {
	max-width: 800px;
	margin: 60px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.loginstart img, .loginstart div {
	width: 49%;
	text-align: left;
}
.loginstart h2 {
	text-align: left;
	margin: 0;
	font-size: 26px;
}
.vantaggi {
	background: #F9F9F9;
	padding: 60px 0;
}
.vantaggi h2 {
	margin: 0;
	font-size: 26px;
}
.vantaggi img {
	border-radius: 50%;
}

.owl-login#owl-fare {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.owl-login#owl-fare h4 {
	font-family: 'Montserrat', sans-serif;
	color: var(--red);
	font-weight: 500;
	margin: 10px 0;
	text-transform: uppercase;
}
@media(min-width: 1025px){
	#owl-fare.owl-login div {
		width: calc(33.3% - 60px);
    	padding: 30px;
	}
	#owl-fare.owl-login img {
		width: 100px;
	}
}
@media(max-width: 1024px){
	.loginstart {
		margin-top: 0;
	}
	.loginstart img, .loginstart div {
		width: 100%;
		text-align: center;
		padding: 20px 0;
	}
	.loginstart h2 {
		text-align: center;
	}
	.owl-login#owl-fare {
		padding: 50px 20px 20px;
	}
	#owl-fare.owl-login div {
		text-align: center;
	}
	#owl-fare.owl-login img {
		width: 100px;
		display: block;
		margin: 0 auto;
	}
	#owl-fare.owl-login .owl-dot.active:after {
		content: '';
		background: transparent;
		position: absolute;
		height: 13px;
		width: 13px;
		border: 2px solid var(--red);
		border-radius: 50%;
		margin-top: -4.5px;
		margin-left: -8px;
	}
}
#activeform {
	padding: 50px 0;
}
#loginpage form {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0;
}
#loginpage form h2 {
	font-family: "DaysOne-Regular";
	font-style: normal;
	font-weight: 400;
	font-size: 32x;
	line-height: 1.4;
	text-align: center;
}
#loginpage form input {
  border: none;
  background: #F5F5F5;
  border-radius: 4px;
  width: calc(100% - 30px);
  margin-bottom: 15px;
  padding: 16px 20px;
  font-size: 14px;
  font-family: 'Montserrat';
}
#loginpage form span, 
#loginpage form p, 
#loginpage form h2, 
#loginpage form button {
	text-align: center;
	margin: 10px auto;
	display: block;
}
#loginpage form p {
	font-size: 14px;
	margin: 10px auto;
}
#loginpage .redbtn.whitebg {
	width: 120px;
	margin-left: calc(50% - 100px);
}
.resetlink {
	margin: 10px 0 20px;
	color: var(--red);
	text-align: center;
	display: block;
}
#formSignUp {
	display: none;
}
#login-container p {
	text-shadow: none !important;
}
#profile {
	padding: 150px 0 50px;
}
.tcrd {
	max-width: 582px;
	width: 100%;
	margin: 30px auto;
	background-image: url(images/ptc.png);
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	height: 500px;
	position: relative;
}
.tcrd div {
	position: relative;
	width: 40%;
	left: 50%;
	top: 12vw;
	z-index: 2;
}
.tcrd div h3,
.tcrd div p {
	color: #fff;
    line-height: 1.5;
    margin: 0;
}
.tcrd div p b {
	font-family: 'Canoodle';
}

#services-items ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}
#services-items ul li {
	width: 49.99%;
	height: 24px;
}
#services-items ul li::before {
  content: "\2022";
  color: var(--red); 
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
@media(min-width: 1024px){
	#services-items ul li {
		width: 49.99%;
	}
}
.hours-work {
	display: flex;
	align-items: start;
}
.hours-work p {
	line-height: 1.4;
	margin: 5px 0;
}
.hours-work img {
  margin-right: 8px;
  width: 30px;
  margin-top: 8px;
}
.openhours {
	font-weight: bold;
	color: #33C200;
}
.closedays {
	font-weight: bold;
	color: #F91515;
}
.detaltipo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.detaltipo div {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 3px solid var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.detaltipo div img {
	max-width: 80%;
	max-height: 80%;
	display: block;
}
.detaltipo span {
	font-weight: bold;
	color: var(--red);
}
@media(min-width: 1025px){
	#owl-fare a:nth-of-type(n+4), #owl-fare .lilred {
	  display: none;
	}
}
@media(max-width: 1024px) {
	.mobnone {
		display: none !important;
	}
	#owl-fare .lilred {
		font-size: 12px !important;
		font-weight: 300 !important;
		color: var(--red) !important;
		margin: 5px auto -15px;
	}
}
.max-210 {
	display: block;
	margin: 10px auto;
	max-width: 230px;
}
#searchform {
		display: flex;
		position: absolute;
    width: 300px;
    margin: 10px calc(50% - 170px);
    justify-content: center;
    padding: 10px 0 0;
    border-radius: 20px;
}
#searchform input {
  font-family: 'Montserrat';
  border-radius: 50px;
  margin-right: -46px;
  height: 40px;
  border: 4px solid rgba(241, 197, 208, 0.9);
  width: 250px;
  padding: 0 15px;
}
#searchform button.redbtn {
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px 13px;
  margin-left: 0px;
  margin-top: 4px;
}
.closesearch {
	position: relative;
    font-size: 30px;
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
    right: 0;
    color: var(--red);
    margin-right: -20px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.54s;
}
.closesearch:hover {
	color: #000;
	font-weight: 700;
}


/*newdetal desctop*/
@media(min-width: 1025px){
	.breadcrumbs {
		display: block;
	    width: 100%;
	    background: #F5F5F5;
	    padding: 20px 0;
	    margin-top: 0;
	    border-bottom: 1px solid #eee;
	    margin-bottom: 20px;
	}
	#detalpage .w66 {
		width: calc(66.66% - 100px);
	}
	#detalpage .w33 {
		padding: 40px 30px;
		width: calc(33.33% - 60px);
		height: fit-content;
	}
	.slideitem {
		border-radius: 10px;
	}
	#detalpage aside {
		background: #FCF9FA;
		border: 1px solid #EEEEEE;
		border-radius: 10px;
	}
}
#detalpage h2 {
	color: #F23662;
	text-align: left;
	margin: 30px 0 15px;
}
.sharecontainer {
	display: none;
}
.sharecontainer a i {
	font-size: 24px;
	color: #fff;
	transition: 0.54s;
	margin-right: 15px;
	color: var(--orange);
}
.sharecontainer a:hover i {
	color: var(--red);
}
.share {
	border-top: 1px solid #eeeeee;
	padding: 20px 0;
	margin-top: 20px;
}
.shareicon {
	display: flex;
	align-items: center;
	cursor: pointer;
	max-width: 300px;
}
.shareicon:hover span {
	letter-spacing: 1.1px;
}
.shareicon img {
	width: 24px;
	margin-right: 10px;
}
.shareicon span {
	font-size: 16px;
	font-weight: 700;
	color: var(--red);
	transition: 0.54s;
}
#detalpage aside h3 {
	color: #F23662;
	font-size: 30px;
	margin: 30px 0 15px;
	padding: 0;
}
#bigdetalprice {
	font-size: 40px;
	font-weight: 700;
	margin: 10px 0 0;
}
#lildetalprice {
	color: var(--red);
}
.attivita_a_pagamento {
	background: #FFFFFF;
	border: 1px solid #F23662;
	border-radius: 4px;
	text-align: center;
}
.attivita_a_pagamento p {
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	color: #000000;
	margin: 15px 14px 13px;
	font-weight: 700;
}
@media(max-width: 1024px){
	.attivita_a_pagamento p {
		font-size: 16px;
	}
	#bigdetalprice {
		font-size: 36px;
	}
}
.no-elements {
	display: none;
}
.redlink {
	color: var(--red);
}
.redlink:hover {
	text-decoration: underline;
}
.bmenu img {
	width: 28px;
	cursor: pointer;
	transition: 0.54s;
}
.bmenu img:hover {
	transform: scale(1.05);
}
#closed {
	display: none;
}
#rpanel {
    background: #f4f4f4;
    position: absolute;
    z-index: 4;
    width: 300px;
    right: -320px;
    top: 86px;
/*    height: 190px;*/
/*    padding-top: 20px;*/
    box-shadow: 0px 2px 5px #aaa;
    transition: 0.54s;
}

#rpanel a {
	width: 240px;
	font-weight: 500;
	display: block;
	width: auto;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #e8e8e8;
}
#rpanel a:hover {
	color: var(--orange);
}
#rpanel a.active {
	color: var(--red);
}
@media(max-width: 1024px) {
	#rpanel {
		top: 77px;
	}
	#rpanel {
	  width: 100%;
	}
	#rpanel a {
		text-align: right;
		font-size: 14px;
		line-height: 16px;
	}
	#mainapp p {
	  font-size: 14px;
	}
	#newsletter p {
	  font-size: 16px;
	}
}