/**
 * This file should get overwritten if Method 1 is used. If Method 2 is chosen,
 * remove this comment and start adding your styles to this file.
 */

/* CSS Document */
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700;800&display=swap');

:root {
    --cRed: #E31013;
    --cCiano: #39AAE1;
    --cLGray: #DDDDDD;
    --cDGray: #636262;
    --cLBlack: #2E2E2E;
    --cBlack: #1D1F23;
    --cDBlack: #000000;
    --cWhite: #FFFFFF;
    --cLWhite: #F3F3F3;
}


/* SYSTEM */

.wide {
    margin: 0 -9999px;
    padding: 0px 9999px;
    position: relative;
/*    background-color: var(--cWhite);*/
}

.wide.odd { background-color: var(--cRed); }

.wide.even { background-color: var(--cCiano); }

.padding-vertical { padding-bottom: 1em; padding-top: 1em; }
.padding-vertical2 { padding-bottom: 2em; padding-top: 2em; }
.padding-vertical3 { padding-bottom: 3em; padding-top: 3em; }
.padding-vertical4 { padding-bottom: 4em; padding-top: 4em; }
.padding-left { padding-left: 15px; }
.padding-right { padding-right: 15px; }
.padding-top { padding-top: 1em; }
.padding-bottom { padding-bottom: 1em; }
.padding-top2 { padding-top: 2em; }
.padding-bottom2 { padding-bottom: 2em; }
.padding-top3 { padding-top: 3em; }
.padding-bottom3 { padding-bottom: 3em; }
.padding-top4 { padding-top: 4em; }
.padding-bottom4 { padding-bottom: 4em; }
.nopadding-top { padding-top: 0;}
.nopadding-bottom { padding-bottom: 0;}
.margin-top { margin-top: 1em; }
.margin-bottom { margin-bottom: 1em; }
.margin-top2 { margin-top: 2em; }
.margin-bottom2 { margin-bottom: 2em; }
.nomargin { margin: 0;}
.nomargin-top { margin-top: 0;}
.nomargin-bottom { margin-bottom: 0;}
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.mx-auto { margin: auto 0; }
.my-auto { margin: 0 auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.alpha { padding-left: 0px; }
.omega { padding-right: 0px; }

.table { margin: 0; padding: 1em 0; }

.grid-flex {
    width: 100%;
    float: left;
    position: relative;
    display: block;
}

.row-flex  {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.row-flex  {
  -ms-box-orient: horizontal;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -moz-flex;
  display: -webkit-flex;  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;

  position: relative;
}

/*FIX SAFARI*/
.row-flex:before, .row-flex:after { display: none; }

.row-flex-nowrap { 
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: nowrap; 
}

/*.d-flex-column  {   */
/*  display: flex;*/
/*  flex-direction: column; */
/*}*/

/*.sm-d-flexr-row  { flex-direction: row-reverse; }*/
/*.sm-d-flexr-column { flex-direction: column-reverse; }*/
/*.xs-row-nowrap { flex-flow: nowrap; } */



.row-full {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

#page { 
    overflow: hidden;
/*  background-color: #003c84;
	-webkit-appearance: none;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
  box-shadow: 5px 5px 20px #666666;
  margin: 50px 0 20px;*/
}

/* DEFAULT */

body {
    background: none no-repeat scroll 0 0 var(--cWhite);
    background-color: var(--cLWhite);
    font: 14px/1.4 Helvetica,Arial,sans-serif;
    font-family: 'Overpass', sans-serif;
    font-weight: 400;
    color: var(--cBlack);
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p,
.h1, .h2, .h3, .h4, .h5, .h6 { 
    font-family: Helvetica,Arial,sans-serif;
    font-family: 'Overpass', sans-serif;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 10px;
    color: var(--cBlack);
    line-height: 1.2;
}

h1, .h1 { font-weight: 400; font-size: 2.85em; line-height: 1.1; } /*40*/

h2, .h2 { font-weight: 400; font-size: 2.15em; line-height: 1.4; } /*30*/

h3, .h3 { font-weight: 400; font-size: 1.71em; line-height: 1.4; } /*24*/

h4, .h4 { font-weight: 400;  font-size: 1.3em; line-height: 1.4; } /*18*/

h5, .h5 { font-weight: 400;  font-size: 0.85em; line-height: 1.4; } /*12*/

h6, .h6 { font-weight: 400;  font-size: 0.7em; line-height: 1.4; } /*10*/


p, ul ol { 
  font-family: 'Overpass', sans-serif;
  font-size: 1em;
  color: var(--cBlack);
  line-height: 1.4;
  font-weight: 400;
  margin-top: 0px;
}

ul, ol {}


ul.bullet-image {  list-style: outside url("../images/arrow.png") none; padding-left: 3em; }
ul.list-unstyled {  list-style: outside none none; padding-left: 2em; }
ul.list-bullet { padding-left: 1.5em; list-style: outside none none;  }
ul.list-bullet li { display: block; margin-bottom: 0.3em; }
ul.list-bullet li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e258";
    font-family: 'Glyphicons Halflings';
    font-size: 1em;
    float: left;
    margin-top: 4px;
    margin-left: -1.1em;
    color: #005573;
}

ol.list-increment { counter-reset: item; padding-left: 0em; }
ol.list-increment li { display: block; }
ol.list-increment li:before { font-weight: 400; content: counters(item, ".") ". "; counter-increment: item;  }

p.big { font-size: 1.3em; }

.thin { font-weight: 100!important; }
.extra-light { font-weight: 200!important; }
.light { font-weight: 300!important; }
.normal { font-weight: 400!important; }
.medium { font-weight: 500!important; }
.semi-bold { font-weight: 600!important; }
.bold { font-weight: 700!important; }
.extra-bold { font-weight: 800!important; }
.ultra-bold { font-weight: 900!important; }


/* STYLE */

a, img { border: 0 none; 
 -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}

.transition {
 -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}


.cover img,
.img-cover { width: 100%; height: 50vw; height: auto; object-fit: cover; object-position: 50% 50%;  object-position: center top; }


a:link, a:visited, li a:link, li a:visited { color: var(--cCiano); text-decoration: none; }

a:hover, a:focus, li a:hover { color: var(--cDCiano); outline: none; }

a:active, li a:active, a.active, li a.active { color: var(--cRed);  }

.marker, .form-required, .request { color: var(--cCiano); }

.evidenza { color: var(--cRed); }
.Red { color: var(--cRed); }
.Ciano { color: var(--cCiano); }
.LGray { color: var(--cLGray); }
.DGray { color: var(--cDGray); }
.LWhite { color: var(--cLWhite); }
.White { color: var(--cWhite); }
.LBlack { color: var(--LBlack); }
.Black, .CText { color: var(--cBlack); }
.DBlack { color: var(--DBlack); }

.fprimary { font-family: 'Overpass', sans-serif; }

.bgRed { background-color: var(--cRed); }
.bgCiano { background-color: var(--cCiano); }
.bgLGray { background-color: var(--cLGray); }
.bgDGray { background-color: var(--cDGray); }
.bgLWhite { background-color: var(--cLWhite); }
.bgWhite { background-color: var(--cWhite); }
.bgLBlack { background-color: var(--cLBlack); }
.bgBlack { background-color: var(--cBlack); }
.bgDBlack { background-color: var(--cDBlack); }

strong,b { font-weight: 700; }

span.sup { font-size: 70%; position: relative; top: -0.5em; }

sub { font-size: 70%; position: relative; top: 2px; }

.btn { border: none; padding: 0.6em 1em 0.8em; }

.btn,
.btn-primary, .btn-secondary { 
  border: 1px solid var(--cCiano) !important;
  background-color: var(--cCiano);
  font-family: 'Overpass', sans-serif;
  font-size: 1em; 
  font-weight: 400;
  color: var(--cWhite) !important;
  padding: 0.8em 8em;
  -webkit-border-radius: 50px; 
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-decoration: none; 
  -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
  outline: none;
  box-shadow: 0px 3px 6px #666666;
  box-shadow: none;
/*  border-radius: 27px;*/
  text-transform: none;
}

.btn:hover {
  background-color: var(--cRed) !important;
  border-color: var(--cRed) !important; 
  color: var(--cWhite) !important;
}

.btn-primary,
.webform-client-form .form-actions .form-submit {
  background-color: var(--cCiano) !important;
  border-color: var(--cCiano) !important; 
  color: var(--cWhite) !important;
}

.btn-primary:hover,
.webform-client-form .form-actions .form-submit:hover {
  background-color: var(--cBlack) !important;
  border-color: var(--cBlack) !important; 
  color: var(--cWhite) !important;
}


.btn-secondary {
  background-color: var(--cRed) !important;
  border-color: var(--cRed) !important; 
  color: var(--cWhite) !important;
}

.btn-secondary:hover {
  background-color: var(--cCiano) !important;
  border-color: var(--cCiano) !important; 
  color: var(--cWhite) !important;
}

.btn .icon-custom:before {  
  -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
/*  color: #96d915;*/
  font-size: 1em;
  font-weight: 400;
  position: relative;
/*  top: 2px;*/
}

.btn:hover .icon-custom:before { color: var(--cWhite) !important; }

.gradient-slide { 
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#39aae1+0,39aae1+50,39aae1+50,f3f3f3+51,f3f3f3+100 */
  background: #39aae1; /* Old browsers */
  background: -moz-linear-gradient(left,  #39aae1 0%, #39aae1 50%, #39aae1 50%, #f3f3f3 51%, #f3f3f3 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #39aae1 0%,#39aae1 50%,#39aae1 50%,#f3f3f3 51%,#f3f3f3 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #39aae1 0%,#39aae1 50%,#39aae1 50%,#f3f3f3 51%,#f3f3f3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#39aae1', endColorstr='#f3f3f3',GradientType=1 ); /* IE6-9 */
}

.gradient-hor { 
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,2e2e2e+100 */
  background: #000000; /* Old browsers */
  background: -moz-linear-gradient(left,  #000000 0%, #2e2e2e 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #000000 0%,#2e2e2e 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #000000 0%,#2e2e2e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#2e2e2e',GradientType=1 ); /* IE6-9 */
}


/*SCROLL-TO-TOP*/
.scroll-to-top {
    position: relative;
    text-align: center;
    color: var(--cWhite);
    background: none;
    background-color: transparent; 
    -webkit-border-radius: 0px; 
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-transition: all 0.25s ease-in-out 0s; 
    -moz-transition: all 0.25s ease-in-out 0s; 
    -o-transition: all 0.25s ease-in-out 0s; 
    -ms-transition: all 0.25s ease-in-out 0s; 
    transition: all 0.25s ease-in-out 0s; 
    position: absolute;
    left: 50%;
    top: 0;
    /* top: -1em; */
}
.scroll-to-top a { color: var(--cWhite); }
.scroll-to-top a:focus, .scroll-to-top a:hover { color: var(--cCiano); }
.scroll-to-top i { font-size: 1em; }

/*SWIPER*/

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
  
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  margin: 0 0.5em;
  width: 1em;
  height: 1em;
}


/*STRUCTURE*/
.structure { max-width: 2000px; }
/*.structure .container-fluid.grid { padding-left: 0; padding-right: 0; }*/

br.xs { display: none; }

/*TOP*/
.top { 
  background: transparent url(../images/alpha.png) scroll repeat top center;
  padding: 0 0;
  position: absolute;
  position: fixed;
  z-index: 100;
  width: 100%;

  -webkit-border-radius: 0px 0px 50px 0px;    
  -moz-border-radius: 0px 0px 50px 0px;    
  border-radius: 0px 0px 50px 0px; 
  overflow: hidden;
}

.top.top-small { 
  padding: 0; 
  z-index: 100;
  position: fixed;
  /* z-index: 100;
  background: #FFF;
  border-bottom: 3px solid var(--cDGreen); */

}

.top .row-logo .logo { margin: auto auto auto 1em; padding: 0.2em 0; }
.top .row-logo .prenota { margin: auto 0; padding: 1em 0; }
.top .row-logo .prenota p { margin: 1em; }

.top .logo { text-align: left; }

.top .prenota a { color: var(--cWhite); }
.top .prenota a:hover, 
.top .prenota a:focus,
.top .prenota a:active { color: var(--cLGray); }

.top.top-small .logo img { 
  max-width: 80%; 
  opacity: 0.5;
  opacity: 1;
}

.top.top-small .row-logo .prenota { padding: 0.5em 0; }


/*HEADER*/
.header .layout-visual { 
  /* background: transparent url(../images/head_bg.jpg) scroll no-repeat top center / cover;
  min-height: 35em; */
  background-color: var(--cWhite);

  padding-top: 5em;
}

/*CFARE*/
.cfare .row-cfare .box-content { padding-right: 3em; padding-right: 2.5em; padding-left: 1em; }
/* .cfare .row-cfare .box-content:last-child { padding-right: 4em; } */

.cfare .box { 
    background-color: var(--cWhite); 
    -webkit-border-radius: 0px 0px 80px 0px;    
    -moz-border-radius: 0px 0px 80px 0px;    
    border-radius: 0px 0px 80px 0px; 
    padding: 1em 2em 2em 1em;
    min-height: 22em;
}

.cfare .box .icon { text-align: right; }
.cfare .box .icon img { max-width: 5em; max-height: 5em; }

/* TESTIMONIANZE */
.SwiperTestimonianze.swiper-container {
  padding: 7em 15px 6em;
  -webkit-border-radius: 0px 0px 80px 0px;    
  -moz-border-radius: 0px 0px 80px 0px;    
  border-radius: 0px 0px 80px 0px; 
  overflow: hidden;
  width: 100%;
}

.SwiperTestimonianze .swiper-pagination { bottom: 2em; }

.SwiperTestimonianze .swiper-button-prev, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-next {
  left: 3em;
  right: auto;
}

.SwiperTestimonianze .swiper-button-next, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-prev {
  right: 3em;
  left: auto;
}

.SwiperTestimonianze .swiper-button-prev, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-next,
.SwiperTestimonianze .swiper-button-next, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-prev {
  color: var(--cWhite);
  -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}

.SwiperTestimonianze .swiper-button-prev:hover, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-next:hover,
.SwiperTestimonianze .swiper-button-next:hover, 
.SwiperTestimonianze .swiper-container-rtl .swiper-button-prev:hover {
  opacity: 0.5;
}

.SwiperTestimonianze .swiper-pagination-bullet {
  background-color: rgb(255,255, 255, 0.5);
  margin: 0 0.5em;
  width: 1em;
  height: 1em;
}

.SwiperTestimonianze .swiper-pagination-bullet-active {
  background-color: var(--cWhite);
}


/*FOOTER*/
.footer.container { display: none; }

.footer-first a { color: var(--cWhitek); text-decoration: none; }

.footer-first a:hover,
.footer-first a:active { color: var(--cCiano); outline: none; }

.footer-first .iubenda { text-align: right; }


/*  WEBFORM  */
/*.alert.alert-dismissible.messages { display: none; }*/

.webform-client-form p,
.webform-client-form label {   }


.webform-component,
.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset,
.webform-component label,
.webform-component .description,
.webform-client-form .form-actions {
    font-family: 'Overpass', sans-serif;
    display: inline;
    float: left;
    margin: 0.5em 0px;
    margin: 0 0 1.5em;
    position: relative;
    font-weight: 400;
    font-size: 1em;
}

.webform-component label,
.webform-component .description {
    font-family: 'Overpass', sans-serif;
    display: inline;
    float: left;
    margin: 0 0 0.5em;
    font-size: 1em;
    text-transform: none;
    position: relative;
    color: var(--cBlack); 
    font-weight: 400;
    width: 100%;
    line-height: 1.2;
}

.webform-component .description { }

.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset {
    border: 1px solid var(--cLGray); 
    background:  none no-repeat scroll 0 0 transparent;
    display: inline;
    float: left;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    position: relative;
    padding: 0.2em 0.5em;
    padding: 0.5em 0.5em;
    height: auto;
    color: var(--cBlack); 
    -webkit-border-radius: 0px; 
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.webform-component input,
.webform-component select,
.webform-component textarea { /* border-bottom: 1px solid var(--cLGray); */ }

.webform-component textarea { resize: none; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: 'Overpass', sans-serif;
    margin-bottom: 0;
    margin-top: 5px;
    width: 50%;
    float: left;
}

.webform-component .form-type-checkbox label,
.webform-component .form-type-checkbox .description,
.webform-component .form-type-radio label,
.webform-component .form-type-radio .description {
    text-transform: none;
    font-size: 1em;
    color: var(--cBlack); 
    font-weight: 400;
    line-height: 1.4;
    width: 100%;
    margin: 0.2em;
    padding-left: 1.5em;
}

.webform-component .form-type-checkbox input,
.webform-component .form-type-radio input {
    margin: 0.2em 0;
    margin-left: -20px;
    margin: 0.1em 0 0.2em -25px;
    margin-left: -30px;
    width: auto; 

    margin: 0em 0 0.2em -2em;
    width: 1.5em;
    height: 1.5em;

}

.webform-component .form-type-radio input { 
    margin: 0em 0 0.2em -2em;
    width: 1.5em;
    height: 1.5em;
}

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    width: 100%;
    width: 50%;
    width: 33%;
}

.webform-component.special .form-type-checkbox,
.webform-component.special .form-type-radio {
    width: 50%;
    padding: 0 15px;
    padding: 0 4em;
    text-align: center;
}

.webform-component.special .form-type-checkbox label,
.webform-component.special .form-type-radio label {
  background-color: var(--cWhite);
  border: 0px solid var(--cWhite);
  padding: 0;
  text-align: left;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}

.webform-component.special .form-type-checkbox label em,
.webform-component.special .form-type-radio label em {
  clear: both;
  display: block;
  position: relative;
  font-style: normal;
  margin: 1em 0 0;
}
  
form-item form-item-submitted-wrapper-sx-box4-pincontrarci form-type-radio radio highlight
.webform-component.special .form-type-checkbox label img,
.webform-component.special .form-type-radio label img { 
  float: left;
  width: auto;
  width: 5em;
  height: 5em;
  border: 0px solid red;
  text-align: center;
  margin-bottom: 1em;
}


.webform-component.special .form-type-checkbox.highlight label,
.webform-component.special .form-type-radio.highlight label {
  color: var(--cCiano);
}

.webform-component.special .form-type-checkbox input,
.webform-component.special .form-type-radio input { z-index: -1; /*display: none;*/ }

.webform-component .highlight label {
    color: #FFFFFF;
}

.webform-component .form-control { color: var(--cBlack); }
.webform-component .form-control::-webkit-input-placeholder { color: var(--cBlack);  } /* Chrome/Opera/Safari */
.webform-component .form-control::-moz-placeholder { color: var(--cBlack);   } /* Firefox 19+ */ 
.webform-component .form-control:-ms-input-placeholder { color: var(--cBlack);   } /* IE 10+ */ 
.webform-component .form-control:-moz-placeholder { color: var(--cBlack);   } /* Firefox 18- */

.webform-componen.campoform { margin-bottom: 1em; }


.webform-client-form fieldset { background: none; border: none; box-shadow: none; margin: 0; }
.webform-client-form .panel-body { padding: 0; }


.webform-component.webform-component-markup { width: 100%; margin-top: 0; padding: 0 15px; }

.webform-client-form fieldset.fieldset-wrapper-sx { padding-right: 2em; }
.webform-client-form fieldset.fieldset-wrapper-dx { padding-left: 2em; }


.webform-client-form fieldset.fieldset-box {
  background-color: var(--cWhite);
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  margin-bottom: 4em;
  padding: 2em 1em 3em;
}

.webform-client-form fieldset.fieldset-box6 { margin-bottom: 0; padding-bottom: 6em; }


.webform-client-form fieldset.fieldset-box .webform-component-markup { text-align: center; }

.webform-client-form fieldset.fieldset-box .webform-component-markup p {
  font-size: 1.3em;
  color: var(--cBlack);
  width: 100%;
}

.webform-client-form fieldset.fieldset-box .campo-icon strong,
.webform-client-form fieldset.fieldset-box .campo-icon .form-required { display: none; }

.webform-client-form fieldset.fieldset-box .campo-icon .control-label {
  float: left;
  width: auto;
  width: 3em;
  height: 3em;
  border: 0px solid red;
  text-align: center;
}

.webform-client-form fieldset.fieldset-box .campo-icon .form-control {
    width: 15em;;
    max-width: 15em;
    float: left;
    margin-top: 0.5em;
    margin-left: 1em;
}

.webform-client-form fieldset.fieldset-box .webform-component-markup p em {
  clear: both;
  display: block;
  position: relative;
  font-style: normal;
  color: var(--cDGray);
  font-size: 0.7em;
  margin: 1em 0 0;
}

.webform-client-form fieldset.fieldset-box .webform-component .form-type-checkbox,
.webform-client-form fieldset.fieldset-box .webform-component .form-type-radio {
  text-align: center;
  padding: 0 1em;
}

.webform-client-form fieldset.fieldset-box .webform-component-markup p.lmodulo { text-align: left; }

.webform-client-form fieldset.fieldset-box .webform-component.webform-component--wrapper-dx--box6--modulo--campi { width: 100%; text-align: left; margin-bottom: 0.2em; }
.webform-client-form fieldset.fieldset-box .webform-component.webform-component--wrapper-dx--box6--modulo--campi .campi { font-weight: 400; font-size: 1em; margin: 0.2em; }

.webform-client-form fieldset.fieldset-box .webform-component.webform-component--wrapper-dx--box6--modulo--privacy .form-type-checkbox, 
.webform-client-form fieldset.fieldset-box .webform-component.webform-component--wrapper-dx--box6--modulo--privacy .form-type-radio { text-align: left; }



.webform-component.privacy .form-type-checkbox, 
.webform-component.privacy .form-type-radio { width: 100%; }

.webform-component.privacy { margin: 0; }
.webform-component.privacy a { color: var(--cCiano); font-weight: 400; text-decoration: underline; }

.webform-component.privacy .control-label { text-transform: none; font-size: 1em; line-height: 1.4; font-weight: 400; color: var(--cBlack); }


.webform-client-form .form-actions { 
  position: relative;
  text-align: right;
  float: right;
  width: auto;
  margin: -5.5em 0 0;
  right: 9em;
}

.webform-client-form .form-actions .form-submit { 
  font-family: 'Overpass', sans-serif;
/*  border: none;*/
/*  color: var(--cDBlu) !important;*/
  font-size: 1em;
  padding: 0.8em 8em;
  text-shadow: none;
  text-transform: none;
  font-weight: 400;
  z-index: 1;
  transition: all 0.25s ease-in-out 0s;
  text-transform: uppercase;
/*  border-radius: 0;*/
/*  background: var(--cDBlu) none no-repeat scroll 0 0;*/
  position: relative;
  outline: none;
  width: auto;

}

.webform-client-form .form-actions .form-submit:hover {   }


/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

.img-responsive { display: inline-block; }


    /*==========  Mobile First Method  ==========*/

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 300px) {

        body { font-size: 14px; }

    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {

        body { font-size: 14px; }
    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {

        body { font-size: 14px; }

    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {

        body { font-size: 14px; }

    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

        body { font-size: 14px; }

        /* TESTIMONIANZE */
        .SwiperTestimonianze.swiper-container {
          /* width: 91.66666667%; */
        }

        /* WEBFORM */
        .webform-client-form fieldset.fieldset-box5 .col-lg-offset-2 { margin-left: 16.66666667% !important; }

    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 2000px) {

        /*HEADER*/
        .SwiperHeader.swiper-container {
          height: 100vh;
          margin-left: auto;
          margin-right: auto;
        }

        .SwiperHeader.swiper-container img { display: none; }

        .SwiperHeader.swiper-container .slide1 {
          background: transparent url(../images/head_slide1.jpg) scroll no-repeat top center / cover;
        }

        .SwiperHeader.swiper-container .slide2 {
          background: transparent url(../images/head_slide.jpg) scroll no-repeat top center / cover;
        }

        .SwiperHeader.swiper-container .slide3 {
          background: transparent url(../images/head_slide3.jpg) scroll no-repeat top center / cover;
        }

    }






    /*==========  Non-Mobile First Method  ==========*/


    /* Large Devices, Wide Screens LG */
    @media only screen and (max-width : 1200px) {

      /*HEADER*/
      .header .layout-header .wrapper br { display: none; }

      /* WEBFORM */
      .webform-client-form fieldset.fieldset-box .campo-icon .form-control { width: 13em; }

    }

    /* Medium Devices, Laptop MD*/
    @media (min-width: 992px) and (max-width: 1199px) { 

      /* WEBFORM */
      .webform-client-form fieldset.fieldset-box5 .col-md-offset-2 { margin-left: 16.66666667% !important; }
      .webform-client-form .form-actions { right: 5em;}

    }

    /* Medium Devices, Desktops MD*/
    @media only screen and (max-width : 991px) {

      /* TESTIMONIANZE */
      .SwiperTestimonianze.swiper-container { padding: 4em 15px 6em; }

      /*CFARE*/
      .cfare .box { min-height: auto; }

      /*CONTATTI*/
      .contatti .row-head br { display: none; }

      /* WEBFORM */
      .webform-client-form fieldset.fieldset-wrapper-sx { padding-left: 0px; padding-right: 0px; }
      .webform-client-form fieldset.fieldset-wrapper-dx { padding-left: 0px; padding-right: 0px; }
      
    }

    /* Portrait tablets and small desktops */
    @media (min-width: 768px) and (max-width: 991px) {

      /*CFARE*/
      .cfare .row-cfare .box-content {
        padding-right: 1.5em;
        padding-left: 0em;
      }
      .cfare .box { min-height: 23em; padding: 1em 1em 2em 1em; }
      .cfare .box .h3 { font-size: 1.51em; }


      /*FOOTER*/
      .footer-first .iubenda {
        text-align: left;
        padding: 0 1px;
      }

      /* WEBFORM */
      .webform-client-form fieldset.fieldset-box5 .col-sm-offset-3 { margin-left: 25%!important; }
      .webform-client-form .form-actions { right: 15em;}

      /*SCROLL-TO-TOP*/
      .scroll-to-top { top: 0.2em; }


    }

    /* Small Devices, Tablets SM*/
    @media only screen and (max-width : 767px) {

        .xs-row-flex-nowrap { flex-flow: nowrap; }
        br { display: none; }
        br.xs { display: block; }
        
        /*TOP*/
        .top .row-logo .prenota p { margin: 0.5em 1em; }

        /*HEADER*/
        .header .layout-header .wrapper { padding: 0; }

        .SwiperHeader .swiper-slide img { height: 100vw; }

        /*CFARE*/
        .cfare .row-cfare .box-content { padding-right: 0; padding-left: 0; }

        /*TESTIMONIANZE*/
        .testimonianze.gradient-slide { background: var(--cCiano); }
        
        .SwiperTestimonianze.swiper-container { 
            padding: 4em 15px 6em; 
            -webkit-border-radius: 0px 0px 0px 0px;
            -moz-border-radius: 0px 0px 0px 0px;
            border-radius: 0px 0px 0px 0px;
         }

        .SwiperTestimonianze .swiper-slide {
          -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          display: block;
        }

        .SwiperTestimonianze .swiper-slide .image { padding-bottom: 2em; }

        .SwiperTestimonianze .swiper-button { display: none; }

        /*FOOTER*/
        .footer-first .wrapper-address { padding-bottom: 3em; }
        .footer-first .iubenda { text-align: center; }
        .footer-first .iubenda.copy { padding-top: 1em; }

        /* WEBFORM */
        .webform-component .form-type-checkbox label, 
        .webform-component .form-type-checkbox .description, 
        .webform-component .form-type-radio label, 
        .webform-component .form-type-radio .description { margin: 0.5em; }
        .webform-component .form-type-checkbox, .webform-component .form-type-radio { width: 100%; }
        .webform-client-form fieldset.fieldset-box { margin-bottom: 2em; }
        .webform-client-form fieldset.fieldset-box .webform-component-markup { text-align: left; }
        .webform-client-form fieldset.fieldset-box .webform-component .form-type-checkbox, 
        .webform-client-form fieldset.fieldset-box .webform-component .form-type-radio { text-align: left; }

        .webform-client-form fieldset.fieldset-box6 { margin-bottom: 1em !important; padding-bottom: 2em; }

        .webform-client-form .form-actions {
          text-align: center;
          float: left;
          width: 100%;
          margin: 2em 0 0;
          right: auto;
        }

        .webform-client-form .form-actions .form-submit { width: 100%; }

        /*SCROLL-TO-TOP*/
        .scroll-to-top {
          position: relative;
          text-align: center;
          float: left;
          width: 100%;
          top: 0.5em;
          left: auto;

    }

    /* Mobile Large, Extra Small Devices, Phones XS*/ 
    @media only screen and (max-width : 480px) {

    }

    /* Mobile Medium, iPhone Retina */ 
    @media only screen and (max-width : 375px) {


    }

    /* Mobile Small, Custom iPhone Retina */ 
    @media only screen and (max-width : 320px) {

        /* WEBFORM */
        .webform-client-form fieldset.fieldset-box .campo-icon .form-control {  width: 10em; }

    }

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) {  }

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) {  }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) {  }


@media (max-width: @screen-xs-max) {  }
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {  }
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {  }
@media (min-width: @screen-lg-min) {  }

    /*==========  CROSS BROWSER  ==========*/

/*HOOK EXPLORER11*/
@media all and (-ms-high-contrast:none) { 

}


