/**
 * 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/css?family=Roboto:100,300,400,500,700,900');

:root {
    --cLime: #c4d600;
    --cGray: #b7b4b2;
    --cBlack: #433f3b;
    --cDBlack: #2a2729;
    --cWhite: #FFFFFF;
}


/* SYSTEM */

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

.wideL {
    margin: 0 0 0 -9999px;
    padding: 0 0 0 9999px;
    position: relative;
}

.wideR {
    margin: 0 -9999px 0 0;
    padding: 0 9999px 0 0;
    position: relative;
}

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

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

.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;
}

.grid-auto {
    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; }*/

.flex-align-content-center { align-content: center; }

.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: 575px; margin-left: auto; }
.row-fullR .wrapper { max-width: 575px; 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;*/
}

/*EFFECT*/
@-webkit-keyframes rotate-icon {
  from {
    -webkit-transition: all 0.25s 0s ease-in-out;
    transition: all 0.25s 0s ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes rotate-icon {
  from {
    -webkit-transition: all 0.25s 0s ease-in-out;
    transition: all 0.25s 0s ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    opacity: 1;
  }
}

.rotate-icon {
  -webkit-animation-name: rotate-icon;
  animation-name: rotate-icon;
}

.rotate-icon:before {
    -webkit-transition: all 0.25s 0s ease-in-out;
    transition: all 0.25s 0s ease-in-out;
}

.rotate-icon:hover:before,
.active .rotate-icon:before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}


/* DEFAULT */

body {
    background: none no-repeat scroll 0 0 var(--cBlack);
    font: 16px/1.4 Helvetica,Arial,sans-serif;
    font-family: "neue-haas-grotesk-display";
    font-weight: 400;
    color: var(--cBlack);
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p { 
    font-family: Helvetica,Arial,sans-serif;
    font-family: "neue-haas-grotesk-display";
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--cBlack);
    line-height: 1.2;
    letter-spacing: 2px;
}

h1, .h1 { font-weight: 400; font-size: 3em; line-height: 1.2; } /*66*/

h1.big, .h1.big { font-weight: 400; font-size: 4.3em; line-height: 1; } /*95*/

h2, .h2 { font-weight: 400; font-size: 2.5em; line-height: 1.2; } /*58*/

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

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

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

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

p, ul { 
    font-family: "neue-haas-grotesk-display";
    font-size: 1em;
    color: var(--cBlack);
    line-height: 1.4;
    font-weight: 400;
    margin-top: 0px;
    letter-spacing: 2px;
}


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: 1em; list-style: outside none none;  }
ul.list-bullet li { display: block; line-height: 1.4; }
ul.list-bullet li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e80d";
    font-family: 'fontello';
    font-size: 1em;
    float: left;
    margin-top: 4px;
    margin-left: -1.2em;
    color: var(--cLime);
}

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; font-weight: 300 !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; 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; }

img.middle {
/*  float: left;*/
/*  margin-top: 10px;*/
/*  margin-right: 10px;*/
  margin-right: 5px;
  margin-bottom: 10px;
  position: relative;
}

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

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

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

.marker, .form-required, .request { color: var(--cLime); display: none; }

.evidenza { color: var(--cLime); }
.Lime { color: var(--cLime); }
.Gray { color: var(--cGray); }
.White, .CText { color: var(--cWhite); }
.Black { color: var(--cBlack); }
.DBlack { color: var(--cDBlack); }

.fprimary { font-family: "neue-haas-grotesk-display"; }

.bgLime { background-color: var(--cLime); }
.bgGray { background-color: var(--cGray); }
.bgWhite { background-color: var(--cWhite); }
.bgBlack { background-color: var(--cBlack); }
.bgDBlack { background-color: var(--cDBlack); }

.border-bottom { border-bottom: 0.8em solid var(--cLime); }
.border-line { border-bottom: 1px solid var(--cLime); margin-bottom: 2em; padding-bottom: 2em; }


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(--cLime) !important;
  background-color: var(--cLime);
  font-family: "neue-haas-grotesk-display";
  font-size: 1em; 
  font-weight: 600;
  color: var(--cBlack) !important;
  padding: 0.8em 3.5em;
  -webkit-border-radius: 0px; 
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-decoration: none; 
  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(--cGray) !important;
  border-color: var(--cGray) !important; 
  color: var(--cBlack) !important;
}

.btn-primary {
  background-color: var(--cLime) !important;
  border-color: var(--cLime) !important; 
  color: var(--cBlack) !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(--cDBlack) !important;
  border-color: var(--cDBlack) !important; 
  color: var(--cWhite) !important;
}

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

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

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

.btn-collapse { cursor: pointer; }
.btn-collapse.active, .btn-collapse:hover, .btn-collapse:focus { color: var(--cLime); }

.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) */
}


/*SCROLL-TO-TOP*/
.scroll-to-top {
    position: fixed;
    display: none;
    text-align: center;
    color: var(--cGreen);
    background: none;
    line-height: 1;
    z-index: 98;
    background:var(--cLime);
    padding: 0;
    right: 0.5em;
    bottom: 0.5em;
    width: 2em;
    height: 2em;
    border-radius: 50px;
    transition: all 0.25s ease-in-out 0s;
}
.scroll-to-top a { color: var(--cWhite); }
.scroll-to-top a:focus, .scroll-to-top a:hover { var(--cWhite); }
.scroll-to-top:hover { -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cWhite); font-size: 1.4em; line-height: 0; }

/*SLIDE*/
.carousel-control { width: 10%; width: 5%; font-size: 1em; }

.carousel-control, .carousel-control.left,.carousel-control.right { background: none; }
.carousel-control .icon-prev, .carousel-control .icon-next { font-size: 2em; width: 1em; height: 1em; left: 0; z-index: 3; top: 43%; margin-top: 0; }
.carousel-control .icon-prev { margin-left: -0.3em; margin-left: -5px; } 
.carousel-control .icon-prev:before { content: '\e80a'; }
.carousel-control .icon-next { margin-left: -0.3em; margin-left: 0px; } 
.carousel-control .icon-next:before { content: '\e809'; }
.carousel-control .icon-prev:before,
.carousel-control .icon-next:before, { margin: 0; }


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

/*HEADER*/
.header {}

.header .box { padding: 0; }

.header .wideCustom { height: 100%; min-height: 28em; overflow: hidden; }
.header .row-fullL .box-content { padding: 0 0 2em; }
.header .row-fullL .wrapper { padding: 1em 1.5em; padding-left: 0; padding-right: 0; }

.header .row-fullL .box-content .box-caption .big { margin: 1em 0 0.5em; }

.header .box-visual .wideCustom {
  background: transparent url("../images/header_visual.png") scroll no-repeat top center / cover;  
}

/*ODONTOIATRIA*/
.odo { background: var(--cDBlack) url("../images/motivo_black.jpg") scroll no-repeat top center / cover; }

.odo .box-slide .carousel-control { width: 9%; }

.evoluta-bullet {  text-align: center; z-index: 1;}
.evoluta-bullet .absolute .action-open { position: absolute; left: 62%; top: -0.3em; }
.evoluta-bullet .action-open { z-index: 2; cursor: pointer; transition: all 0.25s ease-in-out 0s; font-size: 2em; line-height: 1; }
.evoluta-bullet .action-open:hover { opacity: 0.7; }

.evoluta-bullet { 
/*    background: transparent url("../images/tondo_white.png") scroll no-repeat center center / cover;*/
/*    position: relative;*/
/*    display: block;*/
/*    display: flex!important;*/
/*    padding: 0.5em;*/
/*    border-radius: 50%;*/
/*    width: 13.5em;*/
/*    height: 13.5em; */
  z-index: 20;
}

/*  .evoluta-bullet-dgreen { background-image: url("../images/alpha_dgreen.png"); }*/
/*  .evoluta-bullet-ciano { background-image: url("../images/alpha_ciano.png"); }*/
/*  .evoluta-bullet-oliva { background-image: url("../images/alpha_oliva.png"); }*/

/* evoluta-CAPTION */
.evoluta-caption { display: none !important; text-align: center; }
.evoluta-caption .icon-custom { cursor: pointer; float: right; font-size: 1em; margin-right: 5px; }


.evoluta-caption.animated { 
/*    background: transparent url("../images/tondo_white.png") scroll no-repeat center center / cover;*/
  background-color: var(--cWhite);
  position: absolute;
  display: block;
  display: flex!important;
  padding: 1em;
  padding: 0.5em 1em;
/*    top: -1em;*/
/*    left: -1em;*/
  top: -3em;
  border-radius: 50%;
  width: 16em;
  height: 16em; 
  z-index: 99;
}

/*  .cartina-caption.animated.zoomIn { z-index: 99; }*/
.evoluta-caption.spento { z-index: -1; }

.odo .carousel { padding: 2em ; margin-bottom: 3em; }
.odo .carousel .carousel-inner > .item { min-height: 11em; }
.odo .carousel .carousel-inner > .item .caption { display: none; }

.odo .box-potenziale .box-arcata .icon-custom { color: var(--cLime); font-size: 1.1em;
/* border-radius: 50%; border: 2px solid var(--cLime); */
}

.odo .box-potenziale .box-arcata .box-caption { text-align: center; padding: 15px 15px; }
.odo .box-potenziale .box-arcata .absolute { position: absolute; top: 0; left: 0; }
.odo .box-potenziale .box-arcata .box-caption .action-open { cursor: pointer; }
.odo .box-potenziale .box-arcata .box-caption .caption { padding: 0.3em 0 1em; line-height: 1.2; }

.odo .box-potenziale .box-arcata .box-caption .action-open:hover,
.odo .box-potenziale .box-arcata .box-caption.active .action-open { color: var(--cWhite); border-color: var(--cWhite); }

.odo .box-potenziale .box-arcata .box-caption.active .caption { color: var(--cLime); }

.odo .box-potenziale .box-arcata .box-caption0 { top: -30%; left: 20%; }
.odo .box-potenziale .box-arcata .box-caption1 { top: 65%; left: 0; }
.odo .box-potenziale .box-arcata .box-caption2 { top: 85%; left: 55%; }
.odo .box-potenziale .box-arcata .box-caption3 { top: -5%; left: 70%; }

/*FLUSSO*/
/*.flusso .box-numbers .vblocco,*/
.flusso .box-numbers .box-num { 
  opacity: 0.75;
  cursor: pointer;
  transition: all 0.25s ease-in-out 0s;
  z-index: 2; 
}
/*.flusso .box-numbers .vblocco:hover, .flusso .box-numbers .vblocco.active { opacity: 1; }*/
.flusso .box-numbers .box-num:hover, .flusso .box-numbers .box-num.active { opacity: 1; }
.flusso .box-numbers .vblocco .icon p { font-size: 2em; line-height: 0; } 
.flusso .box-numbers .box-num:hover .cblocco p,
.flusso .box-numbers .box-num.active .cblocco p { opacity: 1; color: var(--cLime); }
.flusso .box-numbers .border-line { 
  padding: 0;
  position: relative;
  top: -5em;
  margin: -0.65em;
  opacity: 1;
  z-index: 1;
}

.flusso .carousel-slide { background: var(--cBlack) url("../images/gradient.png") scroll no-repeat top center / cover; padding: 3em 15px; }
.flusso .carousel-inner > .item { text-align: center; min-height: 34em; }
.flusso .carousel-inner > .item .caption { display: none; }
.flusso .carousel-inner > .item .image { padding: 1em 0; }

/*PERCORSO*/
.percorso .bg-orme { 
  background: transparent url('../images/orma_off.png') repeat-x scroll 1em 3px / auto;
  min-height: 2.3em;
/*  position: absolute;*/
/*  background-size: cover;*/
  position: relative;
  top: 4.6em;
/*  background-position: 1em 3px;*/
}

.percorso .box-orme .btn-collapse .h4 { text-align: center; position: relative; top: -1em;  }
.percorso .box-orme .btn-collapse .orma { width: 0; z-index: -1; height: 1.5em; }

.percorso .btn-collapse.active .h4, .percorso .btn-collapse:hover .h4, .percorso .btn-collapse:focus .h4 { color: var(--cLime) !important; }
.percorso .btn-collapse.active .orma, .percorso .btn-collapse:hover .orma, .percorso .btn-collapse:focus .orma { width: 100%; z-index: 1;  }

/*PARTECIPA*/
.partecipa .box-left { padding-left: 0; }
.partecipa .box-right { padding-right: 0; }

/*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:hover { 
  -webkit-filter: invert(.2);  filter: invert(.2);
}

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


/*CONTATTI*/
.contatti { background: var(--cWhite) url('../images/motivo_white.jpg') no-repeat scroll top center / cover; }

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

/*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: "neue-haas-grotesk-display";
    display: inline;
    float: left;
    margin: 0 0 0.5em;
    margin: 0 0 0.3em;
    position: relative;
    font-weight: 500;
    font-size: 0.8em;
    line-height: 1.4;
}

.webform-component label,
.webform-component .description {
    font-family: "neue-haas-grotesk-display";
    display: inline;
    float: left;
    margin: 0 0 0.5em;
    font-size: 1em;
    text-transform: none;
    position: relative;
    color: var(--cBlack); 
    font-weight: 500;
    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;
    display: inline;
    float: left;
    font-size: 1em;
    font-weight: 500;
    margin: 0;
    position: relative;
    padding: 0.5em 0.5em;
    height: auto;
    color: var(--cBlack); 
    border-radius: 0;
    box-shadow: none;
}

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

.webform-component textarea { resize: none; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: "neue-haas-grotesk-display";
    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: 0.8em;
    color: var(--cBlack); 
    font-weight: 500;
    line-height: 1.2;
    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; 
}

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

.webform-component .form-control { color: var(--cLime); }
.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-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; }

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

.webform-component-markup.webform-component--campi { width: 50%; text-align: right; }

.webform-component-markup .campi { font-weight: 400; font-size: 0.9em; margin: 0.2em;}

.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(--cLime); font-weight: 400; text-decoration: underline; }

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


.webform-client-form .form-actions { 
  position: relative;
  text-align: right;
  float: left;
  width: 100%;
  margin: 1em 0 0;
}

.webform-client-form .form-actions .form-submit { 
  font-family: "neue-haas-grotesk-display";
/*  border: none;*/
/*  color: var(--cDBlu) !important;*/
  font-size: 1em;
  padding: 0.8em 4em;
  text-shadow: none;
  text-transform: none;
  font-weight: 600;
  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: 16px; }

    }

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

        body { font-size: 17px; }
    }

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

        body { font-size: 18px; }

    }

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

        body { font-size: 21px; }

    }

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

        body { font-size: 22px; }

    }


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

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

        /*ODONTOIATRIA*/
        .odo .box-potenziale .box-arcata .box-caption0 { top: -40%; left: 10%; }
        .odo .box-potenziale .box-arcata .box-caption2 { top: 85%; left: 50%; }
        .odo .box-potenziale .box-arcata .box-caption3 { top: -10%; left: 50%; }



    }


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

        .carousel-control { width: 7%; }

        h2, .h2 { font-size: 2.1em; }
        h3, .h3 { font-size: 1.3em; }

        /*HEADER*/
        .header .row-fullL .wrapper .grid-flex { padding-left: 2em; }

        /*ODONTOIATRIA*/
        .odo .carousel .carousel-inner > .item { min-height: 14em; }
        .odo .box-slide .carousel-control { width: 11%; }

        .evoluta-caption.animated { left: -0.5em; }

        /*PERCORSO*/
        .percorso .bg-orme { min-height: 2.6em; }
        .percorso .box-orme .box-orma .h4 { font-size: 0.8em; }


    }

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

        /*FLUSSO*/
        .flusso .carousel-inner > .item { min-height: 32em; }

    }

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

        h2, .h2 { font-size: 1.65em; }
        h3, .h3 { font-size: 1.2em; }

        .btn, .btn-primary, .btn-secondary { padding: 0.8em 3em; }

        /*ODONTOIATRIA*/
        .evoluta-caption.animated { left: -2em; font-size: 0.9em; }
        .evoluta-tondo-icon1 .evoluta-caption.animated { left: 0.5em;}

        .odo .box-slide .carousel-control { width: 14%; }

        .odo .box-potenziale .box-arcata .box-caption .caption { font-size: 0.9em; }

        .odo .box-potenziale .box-arcata .box-caption0 { top: -60%; left: 5%; }
        .odo .box-potenziale .box-arcata .box-caption2 { top: -30%; left: 50%; }
        .odo .box-potenziale .box-arcata .box-caption3 { top: 90%; left: 45%; }

        /*FLUSSO*/
        .flusso .carousel-inner > .item { min-height: 32em; }

        .flusso .box-numbers .box-num .cblocco p { font-size: 0.85em; }
        .flusso .box-numbers .box-num .vblocco .num img { max-width: 25%; }

        .flusso .box-numbers .border-line { margin: -0.2em; }

        /*PERCORSO*/
        .percorso .bg-orme { min-height: 3em; top: 5.2em; }
        .percorso .box-orme .box-orma { padding-bottom: 1em; }
        .percorso .box-orme .box-orma .h4 { 
          font-size: 1em; 
/*          font-size: 0.65em;*/
/*          white-space: nowrap;*/
/*          text-align: left;*/
        }

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

    }

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

        h1.big, .h1.big {  font-size: 4em; }

        /*HEADER*/
        .header .row-fullL .wrapper .grid-flex { padding-left: 1em; }

        /*ODONTOIATRIA*/
        .odo .carousel { padding: 1em; }
        .odo .carousel .carousel-inner > .item { min-height: 17em; margin-left: 10px; }

        /*PERCORSO*/
/*        .percorso .bg-orme { top: 4.3em; }*/

    }

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

        h1.big, .h1.big { font-size: 3.5em; }

        h2, .h2 { font-size: 1.7em; text-align: center; }
        h3, .h3 { font-size: 1.3em; }

        .xs-text-center { text-align: center;}

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

        .row-full { padding: 0 15px; }
        .row-fullL, .row-fullR { width: 100%; margin-left: 0; left: 0;  }

        br { display: none; }

        .bottone { text-align: center !important; }

        .carousel-control { width: 10%; }
        .carousel-control .icon-prev { margin-left: -10px; }


        /*HEADER*/
        .header .wideCustom { min-height: auto; }

        .header .row-fullL .box-content { padding: 0; }
        .header .row-fullL .wrapper, .row-fullR .wrapper { padding: 0; max-width: 100%; }
        .header .row-fullL .wrapper .grid-flex { padding: 0 2em; }
        .header .row-fullL .wrapper .box-logo { margin-top: 4em; }

        .header .row-fullR .box-content { padding: 0; }
        .header .box-visual .wideCustom  { background: none; min-height: auto; }

        /*ODONTOIATRIA*/
        .odo { padding-bottom: 0; }

        .odo .box-evoluta { padding: 1em 2em; }

        .evoluta-tondo { margin-bottom: 1em; }
        .evoluta-tondo .evoluta-bullet .grid-flex { display: none; }
        .evoluta-tondo .evoluta-caption {
            background: none;
            background-color: var(--cLime);
            position: relative;
            display: flex !important;
            padding: 1em;
            padding: 0.5em 1em;
            margin: auto;
            border-radius: 50%;
            width: 16em;
            height: 16em;

        }

        .evoluta-tondo .evoluta-caption .medium { font-weight: 500!important; }

        .evoluta-tondo .evoluta-caption .icon-custom { display: none; }

        .odo .box-potenziale { background-color: var(--cBlack); border-bottom: 1em solid var(--cLime); }
        .odo .box-potenziale .row-title { padding: 0 15px; }
        .odo .box-potenziale .row-title h2 { margin-bottom: 0em; }

        .odo .carousel { margin-bottom: 0em; padding: 1em 2em 2em; border-bottom: none; }

        .odo .carousel .carousel-inner > .item { min-height: auto; }
        .odo .carousel .carousel-inner > .item .caption { display: block; }
        .odo .carousel .carousel-inner > .item strong { font-weight: 500 !important; }
        .odo .carousel .carousel-inner > .item span { display: none; }

        /*FLUSSO*/
        .flusso { background-color: var(--cDBlack); }
        .flusso .row1 h2 { margin-bottom: 0; }
        .flusso .carousel-slide { background: no-repeat; border-bottom: 1em solid var(--cLime); padding: 1em 0 2em; }
        .flusso .carousel-inner > .item  { min-height: auto; }
        .flusso .carousel-inner > .item .caption { display: block; }
        .flusso .carousel-inner > .item .caption img { max-width: 25%; }

        /*PERCORSO*/
        .percorso { padding-bottom: 0em; }

        .percorso .bg-orme { min-height: 2.5em; min-height: 3em; top: 5.2em; }

        .percorso .box-orme .box-orma { padding-bottom: 1em; }
        .percorso .box-orme .btn-collapse .orma { width: auto; z-index: 1; height: auto; }
        .percorso .box-orme .box-orma .h4 { font-size: 0.9em; white-space: nowrap; text-align: center; margin-left: -10px; }
        .percorso .box-orme .box-orma .h4 span { display: none; }
        .percorso .box-orme .box-orma .h5 { font-size: 0.9em; }

        /*PARTECIPA*/
        .partecipa { padding-bottom: 0em; }

        .partecipa .wrapper { padding: 0; }

        .partecipa .box-left { padding-left: 15px; }
        .partecipa .box-right { padding-right: 15px; }
        .partecipa .box-date { padding: 1em 15px 2em; }
        .partecipa .border-line {  border-bottom: 1em solid var(--cLime); margin-bottom: 0; }

        .partecipa .box-advanced { background-color: var(--cDBlack); padding-top: 2em; padding-bottom: 2em; }
        .partecipa .box-vamtaggi { background-color: var(--cDBlack); padding-bottom: 2em; }

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

        /*CONTATTI*/
        .contatti { background-image: url('../images/motivo_white_mobile.jpg'); background-size: auto; }
        .contatti .h2 { margin: 0; }

        .contatti .box-header { padding: 2em 15px; }
        .contatti .box-modulo { padding-top: 2em; }

        /*FOOTER*/
        .footer-first span { white-space: pre; display: block; font-size: 0; margin-bottom: 5px; position: relative;}

        /*WEBFORM*/
        .webform-client-form .form-actions { text-align: center; }

    }

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

    }

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

