/**
 * 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=Roboto:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --cLime: #b1c127;
    --cLViola: #e0dce8;
    --cViola: #8a73b4;
    --cDViola: #603780;
    --cGray: #a1a2a2;
    --cBlack: #384655;
    --cDBlack: #000000;
    --cWhite: #FFFFFF;
}


/* SYSTEM */

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

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

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

.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%; }
.m-auto { margin: auto auto; }
.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; }


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

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

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

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

.row-fullR {
  width: 50vw;
  position: relative;
  margin-left: -50vw;
  left: 50vw;
}

.row-fullL .wrapper { max-width: 555px; margin-left: auto; }
.row-fullR .wrapper { max-width: 555px; margin-right: auto; }

#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(--cWhite);
    font: 16px/1.2 Helvetica,Arial,sans-serif;
    font-family: 'Roboto', 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: 'Roboto', sans-serif;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--cBlack);
    line-height: 1.4;
}


h1.big, .h1.big { font-weight: 400; font-size: 2.590em; line-height: 1.1; } /*57*/

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

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

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

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

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

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

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

p.big { font-size: 1em; } /*22*/

ul, ol { padding-left: 1em; margin-bottom: 0.5em; }
ul li, ol li { margin-bottom: 1em; }

ul.style1 li, ol.style1 li { margin-bottom: 1.5em; list-style-type: none; }
ul.style1 strong, ol.style1 strong { font-weight: 700; font-style: normal; }


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-elenco,
ul.list-bullet,
ul.list-icon { padding-left: 1.8em; list-style: outside none none;  }
ul.list-elenco li,
ul.list-bullet li,
ul.list-icon li { display: block; margin-bottom: 1.5em; }
ul.list-elenco li:before,
ul.list-bullet li:before,
ul.list-icon li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "■";
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-size: 1.2em;
    float: left;
    margin-top: -2px;
    margin-left: -1.5em;
    color: var(--cLime);
}
ul.list-icon {  }
ul.list-icon li {  }
ul.list-icon li:before {
  content: '\e809';
  font-family: 'fontello';
  color: var(--cGray);
  margin-top: 0px;
}

ul.list-elenco { padding-left: 1.2em; padding-bottom: 0em; }
ul.list-elenco li { margin: 0.3em 0 0; line-height: 1.2; }
ul.list-elenco li:before {
  content: '•';
  font-family: 'Roboto', sans-serif;
  color: var(--cWhite);
  margin-top: -3px;
  margin-left: -1em;
}

ol.list-increment { counter-reset: item; padding-left: 0em; }
ol.list-increment li { display: block; margin-bottom: 0.1em; }
ol.list-increment li:before { 
  font-weight: 700; content: counters(item, ".") " "; counter-increment: item;  
  font-family: 'Orbitron', sans-serif; 
  font-size: 1.818em;
  color: var(--cViola);
}


.italic { font-style: italic; }

.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(--cViola); text-decoration: none; }

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

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

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

.evidenza { color: var(--cViola); }
.Lime { color: var(--cLime); }
.Gray { color: var(--cGray); }
.LViola { color: var(--cLViola); }
.Viola { color: var(--cViola); }
.DViola { color: var(--cDViola); }
.White { color: var(--cWhite); }
.Black, .CText { color: var(--cBlack); }
.DBlack { color: var(--cDBlack); }

.fprimary { font-family: 'Roboto', sans-serif; }
.fsecondary { font-family: 'Orbitron', sans-serif; }

.bgLime { background-color: var(--cLime); }
.bgGray { background-color: var(--cGray); }
.bgLViola { background-color: var(--cLViola); }
.bgViola { background-color: var(--cViola); }
.bgDViola { background-color: var(--cDViola); }
.bgWhite { background-color: var(--cWhite); }
.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(--cDViola) !important;
  background-color: var(--cDViola) !important;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  font-size: 0.909em;
  font-weight: 900;
  color: var(--cWhite) !important;
  padding: 0.8em 2em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  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: uppercase;
  min-width: 15em;
  line-height: 1.2;

}

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

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

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


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

.btn-secondary:hover {
  background-color: transparent !important;
  border-color: var(--cGray) !important;
  color: var(--cGray) !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; }

.btn-plus svg {
  position: relative;
  top: 0.2em;
  width: 2em;
/*  height: 2em;*/
}

.btn-plus svg .cls-1 { fill: var(--cLime); fill-rule:evenodd;}
.btn-plus svg .cls-2 { fill: var(--cWhite); }

.btn-plus:hover svg .cls-1 { fill: var(--cBlack); }
.btn-plus:hover svg .cls-2 { fill: var(--cWhite); }

.radius {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.text-vertical {
  writing-mode: tb-rl;
  transform: rotate(-180deg);
}

/* spezza la parola inserendo uno span, nel punto da spezzare */
.force-break { display: inline-flex; } 
/* rende fluido il ritorno a capo di una parola lunga */
.word-break { 
    word-break: break-word;
    overflow-wrap: break-word; 
}


.gradient-hor {
    background: #FFF; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #FFF, #000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #FFF, #000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #FFF, #000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #FFF , #000); /* Standard syntax (must be last) */
}

.gradient-hor2 {
  background: rgb(139,115,179);
  background-image: -moz-linear-gradient( -2deg, rgb(139,115,179) 57%, rgb(94,51,125) 100%);
  background-image: -webkit-linear-gradient( -2deg, rgb(139,115,179) 57%, rgb(94,51,125) 100%);
  background-image: -ms-linear-gradient( -2deg, rgb(139,115,179) 57%, rgb(94,51,125) 100%);
  /* background: linear-gradient( -2deg, rgb(139,115,179) 57%, rgb(94,51,125) 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8b73b3",endColorstr="#5e337d",GradientType=1);

}



/*SCROLL-TO-TOP*/
.scroll-to-top {
    position: fixed;
    display: none;
    text-align: center;
    color: var(--cLime);
    background: none;
    line-height: 1;
    z-index: 98;
    background:var(--cWhite);
    padding: 0;
    right: 0.5em;
    bottom: 0.5em;
    width: 2em;
    height: 2em;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
    -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;
}
.scroll-to-top a { color: var(--cLime); }
.scroll-to-top a:focus, .scroll-to-top a:hover { color: var(--cLime); }
.scroll-to-top:hover {    -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cLime); font-size: 1.2em; line-height: 0; }


/* EFFECT */
@-moz-keyframes rotate { 
  100% { 
    -moz-transform-origin: center;
    -moz-transform: rotate(360deg); 
  } 
}
@-webkit-keyframes rotate { 
  100% { 
    -webkit-transform-origin: center;

    -webkit-transform: rotate(360deg); 
  } 
}
@keyframes rotate { 
  100% { 
      -webkit-transform-origin: center;
      transform-origin: center;      
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}

.rotate,
.anim-rotate{
  -webkit-animation: rotate 15s linear infinite;
  -moz-animation: rotate 15s linear infinite;
  animation: rotate 15s linear infinite;
}

.anim-rotate {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: auto;
}

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

.border-top { border-top: 1px solid var(--cBlack); }
.border-bottom { border-bottom: 1px solid var(--cBlack); }

.box-border,
.box-border-transaprent { border-left: 1em solid var(--cWhite); padding: 0.3em 0em; padding-left: 1em; padding-left: 0em;  }
.box-border-transaprent { border-color: transparent;  }

/* .wrapper-rotate { min-height: 14em; display: flex; }  */
.layer { position: relative; z-index: 1; }
.layer-back { position: absolute; z-index: 0; }

.layer-reverse { z-index: 0; }
.layer-reverse.layer-back {  z-index: 1; }

br { display: block; }
br.xs { display: none; }


/*TOP*/
.top .logo { text-align: right;  }

/*HEADER*/
.header .layout-barra { position: relative; z-index: 2; }

.header .layout-header {
  background: transparent url(../images/header_bg.jpg) scroll no-repeat top center / cover;
  background-color: var(--cViola);
  /* min-height: 28em; */
  position: relative;
}
.header .layout-header .row-corpo {
  height: 100%;
  min-height: 28em;
  z-index: 1;
}

.header .layout-header .box-caption { padding-left: 0;  padding-right: 0; }

.header .layout-header .wrapper-rotate { 
  min-height: auto;
  display: block;
  position: absolute;
  right: -10em;
  /* right: -5em; */
  top: -2em;
  width: 25em;
  height: 25em;
  z-index: 0;
  border: 0px solid black;
} 

.header .layout-header .wrapper-rotate .grid-flex { 
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100%;
}

.header .layout-header .wrapper-rotate .layer { }

.header .layout-header .wrapper-rotate .layer-front { opacity: 0.7;  }

.header .layout-header .wrapper-rotate .layer-back { }


/*MOTIVI*/
.motivi .row-motivi .box-tendina { margin-top: 1em; }
.motivi .row-motivi .box-header { background-color: var(--cViola); }
.motivi .row-motivi .box-header.active,
.motivi .row-motivi .box-header:hover {
  cursor: pointer;
  background: var(--cLime)!important;
}


.motivi .row-motivi .box-header .caption,
.motivi .row-motivi .box-header .icona { }

.motivi .row-motivi .box-header .caption {
  margin: auto auto auto 0em;
}
.motivi .row-motivi .box-header .icona {
  margin: auto 1em auto 1em;
}

.motivi .row-motivi .box-header .caption p,
.motivi .row-motivi .box-header .icona p { margin: 0; color: var(--cWhite); }

.motivi .row-motivi .box-header .icona { position: relative; color: var(--cWhite); }
.motivi .row-motivi .box-header.active .icona,
.motivi .row-motivi .box-header:hover .icona { color: var(--cWhite); }

.motivi .row-motivi .box-header .icona .icon { font-size: 2em; }

.motivi .row-motivi .box-body {
  position: relative;
  padding-top: 1em;
}

.motivi .row-motivi .box-body .caption { }

/*VIDEO*/
/*.video { background: var(--cDBlack) url('../images/video_visual.jpg') no-repeat scroll top center / cover; min-height: 38em; }*/

.video .play {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video .play img { max-width: 70%; }

.video .play img:hover { 
  -webkit-filter: invert(.2);  filter: invert(.2);
}

.fancybox-skin { position: relative; background: var(--cBlack); color: var(--cWhite); }

/* COMPONENTI */
.compo .wrapper-compo {
  margin-bottom: 2em;
  overflow: hidden;
  
}

.compo .box-compo { 
  border: 1px solid var(--cBlack); 
  padding: 1em;
  padding: 1em 0.5em;
  padding: 1em 0.8em;
}

.compo .box-compo .box-title .number {
  margin: auto 1em auto 0em;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid var(--cViola);
  width: 3em;
  height: 3em;
  overflow: hidden;
}

.compo .box-compo .box-title .title {
  margin: auto auto auto 0em;
}

.compo .box-compo .box-tendina { padding-bottom: 1em; }
.compo .box-compo .box-header { 
  width: auto; 
  width: fit-content;
  margin: auto;  
}

.compo .box-compo .box-header .btn-actions {
  border: 2px solid var(--cLime);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 0 0.5em 0 2em;
}

.compo .box-compo .box-header .caption,
.compo .box-compo .box-header .icona { }

.compo .box-compo .box-header .caption {
  margin: auto 0.5em auto 0;
}
.compo .box-compo .box-header .icona {
  margin: auto 0em auto 0em;
}

.compo .box-compo .box-header .caption p,
.compo .box-compo .box-header .icona { margin: 0; color: var(--cLime); }

.compo .box-compo .box-header .icona { position: relative; }

.compo .box-compo .box-header .icona .icon { font-size: 2em; }

.compo .box-compo .box-header.active .btn-actions,
.compo .box-compo .box-header:hover .btn-actions {
  cursor: pointer;
  border-color: var(--cGray);
}

.compo .box-compo .box-header.active .btn-actions .caption p,
.compo .box-compo .box-header:hover .btn-actions .caption p,
.compo .box-compo .box-header.active .btn-actions .icona,
.compo .box-compo .box-header:hover .btn-actions .icona { color: var(--cGray); }

.compo .box-compo .box-body {
  position: relative;
  padding-top: 1.5em;
}

.compo .box-compo .box-body .caption { }

.compo .box-vantaggio { padding: 1.5em 1em; height: 100%; }


/* SCOPRI */
.scopri .bottone { text-align: right; }

/* INFO */
.info .btn { 
  min-width: 19em;
  line-height: 1;
  min-height: 3.5em;
}

.info .box-webinar .btn { padding-top: 1.2em; }

/*WEBINAR VIDEO-*/
/*.vwebinar { background: var(--cDBlack) url('../images/video_visual.jpg') no-repeat scroll top center / cover; min-height: 38em; }*/

.vwebinar .play {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.vwebinar .play img { max-width: 70%; }

.vwebinar .play img:hover { 
  -webkit-filter: invert(.2);  filter: invert(.2);
}


/*FOOTER*/
.footer.container { display: 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: 'Roboto', sans-serif;
    display: inline;
    float: left;
    margin: 0.5em 0px;
    margin: 1em 0 0em;
    position: relative;
    font-weight: 400;
    font-size: 1em;
}

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

.webform-component .description { }

.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset {
    border: 0px solid var(--cBlack);
    background:  none no-repeat scroll 0 0 transparent;
    background-color: var(--cWhite);
    display: inline;
    float: left;
    font-size: 1em;
    font-size: 0.818em;
    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(--cBlack); }

.webform-component textarea { resize: none; margin-top: 1em; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    margin-top: 0.5em;
    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;
    font-size: 0.818em;
    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.domanda { margin: 1em 0 1em;  }

.webform-component.domanda .form-type-checkbox label,
.webform-component.domanda .form-type-radio label { font-weight: 700; }

.webform-component.campo-list .form-type-checkbox,
.webform-component.campo-list .form-type-radio {
    width: 100%;
    left: 0.5em;
    margin-top: 1em;
}



.webform-component.campoform { margin: 1em 0 0;  }
.webform-component.campoform label { width: 100%; margin: 0.5em 0; }
.webform-component.campoform input,
.webform-component.campoform select,
.webform-component.campoform textarea {
  background-color: var(--cWhite);
  border: 0px solid var(--cBlack);
  border-bottom: 1px solid var(--cBlack);
  font-size: 1em;
  font-size: 0.818em;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
}



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

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

.webform-client-form .panel-title { font-size: 1em; }

.webform-client-form fieldset legend.panel-heading {
  float: left;
  line-height: 1.4;
  margin: 2em 0 1em;
  padding: 0;
}

.webform-client-form .panel-default>.panel-heading {
  color: var(--cLime);
  background-color: transparent;
  border-color: transparent;
  font-weight: 700;
  font-size: 0.909em;
}



.webform-component.opzione .control-label strong {  font-size: 1em !important;  font-weight: 600; }

.webform-component.opzione .control-label em {
    clear: both;
    display: block;
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 1em;
    margin-bottom: 0em;

    clear: unset;
    float: left;
    width: 100%;
}


.webform-component.opzione input {
    position: relative;
    left: -1.5em;
}



.webform-client-form fieldset.fieldset-modulo { }


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

.webform-component.webform-component-markup { padding: 0px; }


/* .webform-component.webform-component--modulo--campi { margin: 0.5em 15px; } */

.webform-component.webform-component--wrapper-modulo--campi { width: 50%; float: left; margin: 2em 15px 0em; }

.webform-component-markup .campi { font-weight: 400; font-size: 0.818em; text-align: left; }

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

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

.webform-component.privacy .control-label { text-transform: none; font-size: 0.818em; line-height: 1.4; font-weight: 400; color: var(--cBlack); padding-left: 2em;  width: 80%; }


.webform-client-form .form-actions {
  position: relative;
  top: 0;
  float: right;
  width: 50%;
  margin: -3em 0 0;
  margin-left: 0;
  text-align: right;
  padding: 15px;
}

.webform-client-form .webform-client-form-202 { }

.webform-client-form .form-actions .webform-next.form-submit,
.webform-client-form .form-actions .webform-previous.form-submit,
.webform-client-form .form-actions .form-submit {  margin-top: 0em; left: 0em; }

.webform-client-form .form-actions .webform-next.form-submit { text-transform: uppercase; }

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

.webform-client-form .form-actions .webform-previous { display: none; }

.webform-client-form .form-actions .form-submit {
  font-family: 'Roboto', sans-serif;
/*  border: none;*/
/*  color: var(--cDBlack) !important;*/
  font-size: 1em;
  font-size: 0.909em;
  padding: 0.8em 4em;
  text-shadow: none;
  font-weight: 900;
  z-index: 1;
/*  border-radius: 0;*/
/*  background: var(--cDBlack) none no-repeat scroll 0 0;*/
  position: relative;
  outline: none;
  width: auto;
  z-index: 1;

}

.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: 16px; }

    }

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

        body { font-size: 16px; }
    }

    /* 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: 18px; }

    }

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

        body { font-size: 22px; }

    }

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


    }


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


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


    }

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


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

    }

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

        /*VIDEO*/
        .video .videos { min-height: 12em; }
        .video .play img { max-width: 50%; }



    }

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

        h6, .h6 { font-size: 0.909em; }

        /*TOP*/
        .top .logo img { max-width: 25%; }

        /*VIDEO*/
        .video .play img { max-width: 50%; }


        /* WEBFORM */
        .webform-component label,
        .webform-component .description,
        
        .webform-component input,
        .webform-component select,
        .webform-component textarea,
        .webform-client-form fieldset,
        
        .webform-component .form-type-checkbox label,
        .webform-component .form-type-checkbox .description,
        .webform-component .form-type-radio label,
        .webform-component .form-type-radio .description,
        
        .webform-component.campoform input,
        .webform-component.campoform select,
        .webform-component.campoform textarea {
            font-size: 1em;
            /* font-size: 1.136em; */
            /* font-size: 1.363em;  */
        }

        .webform-component-markup .campi,
        .webform-component.privacy .control-label {
            font-size: 0.909em;
            /* font-size: 1.136em; */
            /* font-size: 1.363em;  */
        }

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


    }

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

        .xs-d-flexr-column { flex-direction: column-reverse; }

        br.xs { display: block; }
        br { display: none; }

        h1.big, .h1.big { font-size: 2em; }
        h3, .h3 { font-size: 1.263em; }
        h6, .h6 { font-size: 0.909em; }

        .bottone { text-align: center; }

        /*STRUCTURE*/
        .container-fluid { padding-right: 0; padding-left: 0; }
        .padding-vertical3 { padding-bottom: 2em; padding-top: 2em; }        
        
        
        /*TOP*/
        .top .logo { text-align: center; }
        .top .logo img { max-width: 60%; }

        /*HEADER*/
        .header .layout-header {
          overflow: hidden;
          background-image: none;
          background-color: var(--cViola);
          padding: 3em 15px;
        }
        .header .layout-header .row-corpo {
          height: auto;
          min-height: auto;
        }
        
        /* SCOPRI */
        .scopri .bottone { text-align: center; padding-bottom: 1em; }

        /* COMPONENTI */
        .compo .box-vantaggio { height: auto; }

        /* WEBINAR */
        .webinar .box-caption { padding-bottom: 2em; }
        .webinar .box-caption .bottone { padding-bottom: 2em; padding-top: 3em; }


        /*FOOTER*/
        .footer-first .row-footer-first { text-align: center; }
        .footer-first .iubenda { text-align: center; padding-top: 1em; }       

        /* WEBFORM */
        .webform-component label,
        .webform-component .description,
        
        .webform-component input,
        .webform-component select,
        .webform-component textarea,
        .webform-client-form fieldset,
        
        .webform-component .form-type-checkbox label,
        .webform-component .form-type-checkbox .description,
        .webform-component .form-type-radio label,
        .webform-component .form-type-radio .description,
        
        .webform-component.campoform input,
        .webform-component.campoform select,
        .webform-component.campoform textarea {
            font-size: 1em;
            /* font-size: 1.136em; */
            /* font-size: 1.363em;  */
        }

        .webform-component-markup .campi,
        .webform-component.privacy .control-label {
            font-size: 0.909em;
            /* font-size: 1.136em; */
            /* font-size: 1.363em;  */
        }        
        
        
        .webform-component .form-type-checkbox,
        .webform-component .form-type-radio { width: 100%; }

        .webform-component.privacy .control-label { width: 100%; }        

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

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


    }


    /* Bootstrap breakpoints */
    @media only screen and (max-width : 576px) {

      /* MOTIVI */
      .motivi .row-motivi .box-header .caption {
        margin: auto auto auto 0em;
        max-width: 15em;
      }
      

  }


    /* 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) {

      /* MOTIVI */
      .motivi .row-motivi .box-header .caption {
        max-width: 12em;
      }


    }

/* 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) {

}


