@font-face {
    font-family: 'Roboto';
    src: url('roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
	--color1: #313B8D; /* blue*/
	--color1rgb: 50, 60, 142;
	--color2: #00948D; /*verde*/
	--color2rgb: 0, 148, 141;
	--color2b: #7CBAB7; /*verde light*/
	--color3: #FFD814; /*giallo*/
	--color3rgb: 255, 216, 20;
	--color4: #676c6e; /*grigio*/
	--color5: #5493c2; /*azzurro*/
	--fontcolor: #262626;
	--font1:'Roboto', sans-serif;
}
html, body {
	/* height: 100%; */
	margin: 0;
}
html {
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}
/* remove highlight background when click a button, link, ecc.*/
* {
	-webkit-tap-highlight-color: transparent;
}
body {
	font-size: 17px;
	font-family: var(--font1);
	color: var(--fontcolor);
	font-weight: 400;
	line-height: 1.3;
}
b, strong {
	font-weight: 500;
	/* font-weight: bold; */
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font1);
	line-height: 1;
	/* margin: 0; */
	font-weight: 500;
	letter-spacing: 5px;
}
a:focus { text-decoration: none !important; }
a{
	text-decoration: none;
}
.outline{
	color: transparent!important;
	letter-spacing: 3px;
	-webkit-text-stroke-width: 1px;
}
.stroke-white{
	-webkit-text-stroke-color: #FFF;
}
.stroke-blue{
	-webkit-text-stroke-color: var(--color1);
}
.stroke-green{
	-webkit-text-stroke-color: var(--color2);
}
.hr {
	 background-image: url(../images/hr.svg);
	 background-repeat: no-repeat;
	 height: 12px;
	 width: 58px;
    margin: 0;
    display: inline-block;
}
.filter-blue{
	filter: invert(21%) sepia(61%) saturate(1469%) hue-rotate(210deg) brightness(91%) contrast(93%);
	-webkit-filter: invert(21%) sepia(61%) saturate(1469%) hue-rotate(210deg) brightness(91%) contrast(93%);
}
.filter-green{
	filter: invert(43%) sepia(100%) saturate(538%) hue-rotate(133deg) brightness(90%) contrast(108%);
	-webkit-filter: invert(43%) sepia(100%) saturate(538%) hue-rotate(133deg) brightness(90%) contrast(108%);
}
.filter-yellow{
	filter: invert(85%) sepia(57%) saturate(2754%) hue-rotate(342deg) brightness(103%) contrast(102%);
	-webkit-filter: invert(85%) sepia(57%) saturate(2754%) hue-rotate(342deg) brightness(103%) contrast(102%);
}
/* CHECKBOX STYLE */
input[type=checkbox] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    display: inline-block;
    background: #FFFFFF;
    border: 2px solid var(--color2);
    margin-right: 5px;
}
input[type=checkbox]:after {
    content: "";
    display: inline-block;
    position: relative;
    top: -5px;
    left: 5px;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
}
input[type=checkbox]:checked   {
    background: var(--color2);
    outline: none;
    border: 2px solid var(--color2);
}
input[type=checkbox]:focus,input[type=checkbox]:active {
	outline: none;
}
input[type=checkbox]:hover {
   border: 2px solid var(--color2);
}
.margin-0{
	margin:0!important;
}
.w-100-percent{
	width: 100%;
}
@media (min-width:601px){
	.vertical-align{
		display: flex;
		align-items: center;
	}
}
.d-flex {
    display: flex;
    justify-content: space-between;
}
hr {
  border-top: 1px solid var(--color1);
  margin: 0;
}
.z-index-1{z-index: 1;}
/* .z-index-2{z-index: 2;}
.z-index-3{z-index: 3;} */

/* W3CSS
========================================================*/
.w3-button:hover {
    color: #000!important;
    background-color: transparent!important;
}
.w3-yellow{color:var(--color1)!important;background-color:var(--color3)!important}
.w3-hover-yellow:hover{color:#FFF!important;background-color:var(--color3)!important}
.big-button {
    white-space: break-spaces;
    font-size: 20px;
    padding: 12px 15px;
    line-height: 1;
    font-size: 24px!important;
    font-weight: 400;
    /* color: #fff!important; */
    margin-top: 20px;
    border-radius: 40px;
	 font-weight: 600;
}
@media (max-width:600px){
	.big-button {
	    font-size: 20px!important;
	}
}
.w3-row-padding, .w3-row-padding>.w3-half, .w3-row-padding>.w3-third, .w3-row-padding>.w3-twothird, .w3-row-padding>.w3-threequarter, .w3-row-padding>.w3-quarter, .w3-row-padding>.w3-col, .w3-row-padding .w3-cell {
    padding: 0 20px;
}
.w3-stretch {
    margin-left: -40px;
    margin-right: -40px;
}
@media (max-width: 600px){
	.w3-stretch {
	    margin-left: 0;
	    margin-right: 0;
	}
	.w3-row-padding, .w3-row-padding>.w3-half, .w3-row-padding>.w3-third, .w3-row-padding>.w3-twothird, .w3-row-padding>.w3-threequarter, .w3-row-padding>.w3-quarter, .w3-row-padding>.w3-col, .w3-row-padding .w3-cell {
	    padding: 0;
	}
}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:var(--color2)!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:var(--color1)!important}
.w3-border-green,.w3-hover-border-green:hover{border-color:var(--color2)!important}
.w3-border-blue,.w3-hover-border-blue:hover{border-color:var(--color1)!important}
.w3-input {padding: 12px;}
.w3-check, .w3-radio {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}
.w3-small {
    font-size: 14px!important;
}
.w3-text-blue,.w3-hover-text-blue:hover{color:var(--color1)!important}
.w3-text-green,.w3-hover-text-green:hover{color:var(--color2)!important}
.w3-text-light-green,.w3-hover-text-light-green:hover{color:var(--color2b)!important}
.w3-transparent{color:var(--color1)!important;background-color:transparent!important;border:2px solid var(--color1)}
.w3-transparent:hover{color:var(--color3)!important;background-color:transparent!important;border:2px solid var(--color1)}
.w3-xxlarge {
    font-size: 32px!important;
}
.w3-xjumbo {
    font-size: 50px!important;
    letter-spacing: 5px!important;
}
@media (min-width:600px){
	.w3-xjumbo {
	    font-size: 90px!important;
	    letter-spacing: 10px!important;
	}
}
.w3-dropdown-content {
    background-color: transparent;
    position: relative;
    padding-left: 24px;
}
.w3-button:hover {
    color: var(--color1) !important;
    background-color: transparent !important;
}
/* PRELOAD
 ========================================================*/
 .preloader{
	 width: 100%;
	 height: 100%;
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 justify-content: center;
	 position: fixed;
	 z-index: 99999;
	 right: 0;
	 top:0;
	 background: #ffffff;
	 @include transition-cubic;
 }
 .preloader figure{
	 width: 140px;
	 height: 140px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: 1px solid rgba(0, 0, 0, 0.164);
	 border-radius: 50%;
	 animation: fadeup 0.30s;
	 position: relative;
	}
.preloader figure::after{
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	border-top: 1px solid var(--color1);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	animation: rotate1 0.60s infinite;
}
 .preloader figure img{
	 height: 90px;
	  display: inline-block;
	  filter: invert(43%) sepia(100%) saturate(538%) hue-rotate(133deg) brightness(90%) contrast(108%);
  	  -webkit-filter: invert(43%) sepia(100%) saturate(538%) hue-rotate(133deg) brightness(90%) contrast(108%);
 }

 .page-loaded .preloader{ top: 100%;}
 @keyframes fadeup {
 0%{transform:translateY(20px); opacity: 0;}
 100%{transform:translateY(0); opacity: 1;}
 }
 @keyframes rotate1 {
 0%{transform:rotate(0deg); }
 100%{transform:rotate(360deg); }
 }
/* NAV-BAR
========================================================*/
header {
	position: relative;
	width: 100%;
	z-index: 1;
}
header > div {
	display: flex;
	justify-content:space-between;
}
.flex-items{
	width: 50%
}
.logo-header {
	object-fit: contain!important;
	width: auto!important;
	max-height: 100px;
	/* background: rgba(255, 255, 255, .5); */
}
#burgerMenu {
    margin-top: 23px;
    /* background: rgba(255, 255, 255, .5); */
    padding: 10px;
}
/* SIDEBAR MENU
========================================================*/
#mySidebar{
	width:300px;
	right:0;
	top:0;
	background-color: rgba(var(--color2rgb), 0.9)!important;
	padding: 30px;
	z-index: 2;
}
#mySidebar .w3-bar-item {
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	padding: 0;
	background: transparent;
}
#mySidebar .w3-bar-item:first-child {
	margin-bottom:50px;
}
#mySidebar .w3-dropdown-content .w3-bar-item:first-child, #mySidebar .w3-dropdown-hover .w3-bar-item:first-child {
	margin-bottom:0px;
	padding: 16px 0;
}
#mySidebar .w3-bar-item:not(:first-child) {
	padding:16px 0;
}
#mySidebar .w3-bar-item:hover{
	color:var(--color1);
}
#mySidebar a.active {
    color: var(--color1)!important;
}
/* SLIDE VIDEO
========================================================*/
.slidevideo{
	width: 100%;
	height: 100%;
	/* height: 700px; */
	position: relative;
	margin-top:-148px;
}
.swiper-container {
    z-index: 0;
}
.slidevideo .swiper-slide img{
	opacity:.5;
}
.swiper-slide img{
 height:100%;
 width: 100%;
 /* filter: brightness(60%); */
 object-fit: cover;
 object-position: center top;
 margin-top: -1px;
}
/* .swiper-caption{
	background: rgba(255, 255, 255, .5);
} */
.drop-blue{
	 background-image: url(../images/drop_blue.svg);
	 background-repeat: no-repeat;
	 display: inline-block;
	 height: 20px;
	 width: 25px;
}
.drop-green{
	 background-image: url(../images/drop_green.svg);
	 background-repeat: no-repeat;
	 display: inline-block;
	 height: 20px;
	 width: 25px;
}
.drop-yellow{
	 background-image: url(../images/drop_yellow.svg);
	 background-repeat: no-repeat;
	 display: inline-block;
	 height: 20px;
	 width: 25px;
}
@media (max-width: 600px){
	.slidevideo{
		height: 570px;
	}
	.swiper-caption{
		width:90%;
	}
	.slidevideo .w3-button{
		bottom:50px;
	}
	.drop-blue, .drop-yellow {
	    height: 17px;
	    width: 20px;
	}
}
/* WAVES
========================================================*/
.scrolling-image-container {
	overflow: hidden;
	background:transparent;
	margin-top: -29px;
}
.scrolling-image {
  background: url("../images/waves.png") repeat-x;
  height: 30px;
  width: 5244px;
  animation: slide 60s linear infinite;
}
.scrolling-image-blue {
  background: url("../images/waves_blue.png") repeat-x;
  height: 30px;
  width: 5244px;
  animation: slide 60s linear infinite;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
@keyframes slide {
  0% {
	 transform: translate(0);
  }
  100% {
	 transform: translate(-2622px); /* The image width */
  }
}
/* MISSION IN HP
========================================================*/
@media screen and (max-width: 600px){
	#missionHp > .w3-container > div.w3-stretch:nth-child(2n+1) {
	  padding-top:0!important;
	}
}
#missionHp .flip-card img{
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
	/* filter: brightness(60%); */
}
#missionHp .caption-service {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 color: #FFF;
	 width: 100%;
}
#missionHp .caption-service h2 {
    font-size: 30px;
    letter-spacing: 5px;
	 /* margin-bottom: 40px; */
}
@media screen and (max-width: 1119px){
  #missionHp .caption-service h2 {
		font-size: 20px;
  }
}
@media screen and (max-width: 900px){
  #missionHp .caption-service h2 {
		font-size: 17px;
  }
}
@media screen and (max-width: 768px){
  #missionHp .caption-service h2 {
		font-size: 28px;
  }
}
.flip-card {
  background-color: transparent;
  aspect-ratio: 1 / 1;
  width: 100%;
  perspective: 1000px;
  margin-bottom: 20px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-blue{
	background: var(--color1)!important;
}
.flip-green{
	background: var(--color2)!important;
}
.flip-yellow{
	background: var(--color3)!important;
}
.flip-grey{
	background: var(--color4)!important;
}
.flip-light-blue{
	background: var(--color5)!important;
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-card-front {
  color: white;
}
#missionHp  .flip-card-front .caption-service img {
	 filter: brightness(100%);
	 height: 90px;
	 object-fit: contain;
}
.flip-card-back {
  color: white;
  transform: rotateY(180deg);
  background: var(--color1);
}
#missionHp  .flip-card-back .caption-service img {
	 filter: brightness(100%);
	 height: 70px;
	 object-fit: contain;
}
.flip-card-back p {
	 padding-top: 16px;
	 line-height: 1.2;
	 font-weight: 300;
}
.flip-card-back a {
	 display: block;
	 height: 100%;
}
.title-line {
    color: #FFF;
    position: relative;
    display: inline-block;
    width: 100%;
	 letter-spacing: 2px;
	 font-weight: 500;
}
/* .title-line { width:100%; text-align:center; line-height:0.1em; margin:10px 0 20px; }
.title-line span { padding:0 10px; } */


.series_all .title-line, .parallax .title-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.series_all .title-line span, .parallax .title-line span {
  margin: 0 15px;
}
.series_all .title-line:before,
.series_all .title-line:after, .parallax .title-line:before, .parallax .title-line:after {
  background: var(--color2);
  height: 1px;
  flex: 1;
  content: '';
}
/* .series_all .title-line.left:after, .parallax .title-line:after {
  background: none;
}
.series_all .title-line.right:before, .parallax .title-line:before {
  background: none;
} */
/* .title-line:before, .title-line:after{
	background: var(--color2);
	height: 1px;
	width: 35%;
	content: "";
	display: block;
	position: absolute;
	top: 50%;
} */
@media (max-width:992px) and (min-width:601px){
	.title-line:before, .title-line:after{
		width: 25%;
	}
	.caption-service .w3-xxxlarge {
    font-size: 25px!important;
	}
	#missionHp .caption-service h2 {
    margin-bottom: 10px;
	}
}
.title-line:before {
    right: 0;
}
.title-line:after {
    left: 0;
}
/* FORM IN HP
========================================================*/
@media (min-width: 601px) {
	.img-cat{
		margin-top:-210px;
	}
}
form {
    font-size: 17px;
}
form > .w3-row-padding:first-child > div > input::placeholder {
  color: var(--color1);
  opacity: 1; /* Firefox */
}

form > .w3-row-padding:first-child > div > input::-ms-input-placeholder { /* Edge 12-18 */
  color: var(--color1);;
}
/* FOOTER
========================================================*/
footer .series a {
	font-size: 24px;
}
.info-footer{
	font-size: 14px;
}
footer .fa {
	color: var(--color3);
}
.subfooter {
    border-top: 1px solid var(--color2b);
    padding: 15px;
    font-weight: 200;
    color: #fff!important;
    font-size: 13px;
}
@media (max-width:600px){
	.logo-footer{
		max-width: 250px;
	}
}
/* Go to Top
 ========================================================*/
 #scroll-top {
    display:none;
    /* opacity: 0; */
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(var(--color1rgb), 0.4);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
 #scroll-top .icon-icons8_arrow_up{
	 color: #FFF;
    font-size: 40px;
 }
#scroll-top:hover {
    background-color: rgba(var(--color1rgb), 0.8);
}
/* Parallax
========================================================*/
.height-100{
 height: 100%;
}
.parallax {
 background-size: cover!important;
 height: 330px;
 background-blend-mode: darken;
}
.parallax strong {
    letter-spacing: 8px;
}
.px01{
  background: rgba(0, 0, 0, 0.3) url(../images/px01.jpg) no-repeat center center;
}
.px02{
  background: rgba(0, 0, 0, 0.3) url(../images/px02.jpg) no-repeat center center;
}
.px03{
  background: rgba(0, 0, 0, 0.3) url(../images/px03.jpg) no-repeat center center;
}
.cucina_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/cucina/header.jpg) no-repeat center center;
}
.bagno_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/bagno/header.jpg) no-repeat center center;
}
.rollind_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/rollind/header.jpg) no-repeat center center;
}
.marigold_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/marigold/header.jpg) no-repeat center center;
}
.hollis_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/hollis/header.jpg) no-repeat center center;
}
.jt_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/jt/header.jpg) no-repeat center center;
}
.st_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/st/header.jpg) no-repeat center center;
}
.kolyma_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/kolyma/header.jpg) no-repeat center center;
}
.yana_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/yana/header.jpg) no-repeat center center;
}
.sog_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/sog/header.jpg) no-repeat center center;
}
.naryn_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/naryn/header.jpg) no-repeat center center;
}
.nordend_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/nordend/header.jpg) no-repeat center center;
}
.sakura_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/sakura/header.jpg) no-repeat center center;
}
.wellness-ottone_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/wellness-ottone/header.jpg) no-repeat center center;
}
.wellness-inox_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/wellness-inox/header.jpg) no-repeat center center;
}
.wellness-kit-doccia-incasso-inox_header{
  background: rgba(0, 0, 0, 0.3) url(../upload/series/wellness-kit-doccia-incasso-inox/header.jpg) no-repeat center center;
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 600px) {
	.px01, .px02 {
	  /* background-attachment: scroll; */
	  height: 250px;
	}
}
/* TEAM
========================================================*/
.box-team {
    background-color: transparent;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-bottom: 20px;
	 position: relative;
}
.box-team .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
	 background-color: rgba(var(--color3rgb), 0.7);
    z-index: 1;
}
.box-team .overlay {
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.box-team:hover .overlay {
    opacity: 1;
    transition: all 500ms ease;
}
.email-link {
    height: 55px;
    width: 55px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -35px;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.phone-link {
    height: 55px;
    width: 55px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-right: -90px;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.box-team:hover .email-link, .box-team:hover .phone-link {
    opacity: 1;
    transition: all 500ms ease;
}
.box-team .fa{
	color: var(--color3);
}
/*BIG SQUARES VISION
 ========================================================*/
 .big-squares .w3-row{
	  /* min-height: 500px; */
	  margin: 0 auto;
	  display: -webkit-flex; /* Safari */
	  display: flex; /* Standard syntax */
 }
 .big-squares .w3-col{
	 aspect-ratio: 1 / 1;
	 /* max-height: 700px; */
	 -webkit-flex: 1; /* Safari */
	 -ms-flex: 1; /* IE 10 */
	 flex: 1; /* Standard syntax */
 }
 @media (min-width: 851px) {
	 .big-squares .w3-col{
		max-height: 700px;
	 }
 }
 .big-squares .w3-row .w3-col{
	 background-repeat: no-repeat;
	 position: relative;
	 background-position: center;
	 background-size: cover;
 }
 @media only screen and (max-width: 768px) {
	.big-squares .w3-col, .big-squares .w3-row {
		flex-direction: column;
		/* min-height: 300px; */
	}
	.big-squares .w3-row.reverse{
		flex-direction: column-reverse;
	}
 }
.big-drop-squares {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
	.big-drop-squares {
	    display: none;
	}
}
.box-text-square{
	max-width: 400px;
	margin: 0 auto;
}
/*SERIES
 ========================================================*/
.parallax .title-line {
    margin-top: -70px;
    /* display: block; */
	 text-align: center;
}
.parallax .title-line:before, .parallax .title-line:after {
    width: 46%;
}
@media (max-width:600px){
	.parallax .title-line:before, .parallax .title-line:after {
	    width: 36%;
	}
}
.series .d-flex .flex-items:first-child{
	width: 100%;
}
.series .w3-xxxlarge {
    font-size: 35px!important;
}
.series p {
	font-weight: 500;
}
.series .w3-tag {
    width: 100%;
    text-align: left;
}
.series .w3-tag strong {
    font-size: 22px;
}
/* ACCORDION
========================================================*/
.accordion {
    background-color: transparent;
    color: var(--fontcolor);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 22px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: transparent;
    /* color: var(--color2); */
}

.accordion:after {
	 content: '\002B';
	 color: var(--color2);
	 font-weight: bold;
	 float: right;
	 margin-left: 5px;
}

.active:after {
  content: "\2212";
  color: var(--color2);
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-weight: 500;
}
.panel2 {
  padding: 20px 15px;
}
.panel2 a{
	color: var(--color2);
	text-decoration: underline;
}
.panel2 span{
	font-weight: 400;
}
/*==================  404  ======================*/
@media (max-width: 1060px) {
  .not-found i{
		font-size: 180px!important;
  }
}
.not-found {
	margin-top: 50px;
}
@media (max-width: 1060px){
	.not-found {
	  margin-top: 50px;
	}
}
.not-found i{
font-size: 15vw;
 color: var(--color1);
}
.not-found h2{
  font-size: 100px;;
}
.not-found h3{
  font-size: 28px;;
}
/*CONTATTI
========================================================*/
.box-map{
	padding: 14px;
}
  .gmap iframe{
	  display: block;
  }
div[data-service]::before {
    padding-top: 0;
}
.gmap iframe {
	filter:grayscale(100%)!important;
}
.contatti iframe{
	display: block;
}
div[data-autoscale] {
    height: 450px!important;
    width: 100%;
}
div[data-service] {
    background-color: #dfdfdf!important;
}
div[data-service] .c-n-t {
    color: #1c1c1c!important;
}
div[data-service] .c-n-c .c-l-b::before {
    top: 17px!important;
}
@media (max-width: 489px) {
	div[data-service] .c-n-c .c-la-b {
		margin-left: 0!important;
		margin-top: 16px!important;
  }
}
