/** PACE **/
/* .pace {
    -webkit-pointer-events: none;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;

    -webkit-perspective: 12rem;
    -moz-perspective: 12rem;
    -ms-perspective: 12rem;
    -o-perspective: 12rem;
    perspective: 12rem;

    z-index: 2000;
    position: fixed;
    height: 6rem;
    width: 6rem;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pace.pace-inactive .pace-progress {
    display: none;
}

.pace .pace-progress {
    position: fixed;
    z-index: 2000;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 6rem;
    width: 6rem !important;
    line-height: 6rem;
    font-size: 2rem;
    border-radius: 50%;
    background: rgba(34, 153, 221, 0.8);
    color: #fff;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 100;
    text-align: center;

    -webkit-animation: pace-theme-center-circle-spin linear infinite 2s;
    -moz-animation: pace-theme-center-circle-spin linear infinite 2s;
    -ms-animation: pace-theme-center-circle-spin linear infinite 2s;
    -o-animation: pace-theme-center-circle-spin linear infinite 2s;
    animation: pace-theme-center-circle-spin linear infinite 2s;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.pace .pace-progress:after {
    content: attr(data-progress-text);
    display: block;
}

@-webkit-keyframes pace-theme-center-circle-spin {
    from { -webkit-transform: rotateY(0deg) }
    to { -webkit-transform: rotateY(360deg) }
}

@-moz-keyframes pace-theme-center-circle-spin {
    from { -moz-transform: rotateY(0deg) }
    to { -moz-transform: rotateY(360deg) }
}

@-ms-keyframes pace-theme-center-circle-spin {
    from { -ms-transform: rotateY(0deg) }
    to { -ms-transform: rotateY(360deg) }
}

@-o-keyframes pace-theme-center-circle-spin {
    from { -o-transform: rotateY(0deg) }
    to { -o-transform: rotateY(360deg) }
}

@keyframes pace-theme-center-circle-spin {
    from { transform: rotateY(0deg) }
    to { transform: rotateY(360deg) }
} */



/******************* MORE SOCIAL ********************/

.c-share {
/* padding: 2rem; */
display: flex;
justify-content: center;
color: #b8b8b8;
font-size: 1.5em;
}
@media (max-width: 1000px) {
  .c-share {
    display: none;
  }
}
.c-share__label {
font: 0/0 a;
position: absolute;
width: 1px;
height: 1px;
opacity: 0;
visibility: hidden;
text-decoration: none;
outline: 0;
}
.c-share__item {
display: block;
background: #21bbef;
color: #fff;
border-radius: 50%;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
font-size: 32px;
transition: 0.4s ease-in-out;
margin: 0 0.25em;
}
.c-share__item:hover,
.c-share__item:focus {
background: #0e92be;
transition: 0.2s ease-in-out;
}
.c-share__item:active {
background: #09617f;
transition: 0.1s ease-in-out;
}
.c-share__item--has-subitems {
position: relative;
cursor: pointer;
}
.c-share__subitems {
display: flex;
position: absolute;
opacity: 0;
visibility: hidden;
top: 2.5em;
left: 50%;
transition: 0.2s ease-in-out 0.25s;
-webkit-transform: translate(-50%, -125%);
        transform: translate(-50%, -125%);
}
.c-share__item--is-active .c-share__subitems {
-webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
opacity: 1;
visibility: visible;
transition: 0.2s ease-in-out 0;
}
.c-share__subitems .c-share__item:nth-child(1) {
-webkit-transform: translateX(250%);
        transform: translateX(250%);
opacity: 0;
}
.c-share__subitems .c-share__item:nth-child(2) {
-webkit-transform: translateX(125%);
        transform: translateX(125%);
opacity: 0;
}
.c-share__subitems .c-share__item:nth-child(4) {
-webkit-transform: translateX(-125%);
        transform: translateX(-125%);
opacity: 0;
}
.c-share__subitems .c-share__item:nth-child(5) {
-webkit-transform: translateX(-250%);
        transform: translateX(-250%);
opacity: 0;
}
.c-share__subitems .c-share__item:not(:nth-child(3)) {
transition: 0.2s ease-in-out;
}
.c-share__item--is-active .c-share__subitems .c-share__item:not(:nth-child(3)) {
transition: 0.5s ease-in-out 0.25s;
-webkit-transform: translateX(0);
        transform: translateX(0);
opacity: 1;
}


/******************* FORM ********************/
.form-horizontal-container {
    border-top: 0;
    background: transparent;
    margin: auto;
    padding: 0px 0 !important;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 50px;
}

.privacies{
    margin-right: 10px;
    font-size: .7em;
}

.privacies a{
    color: #fff;
    text-decoration: underline;
}

.privacies .controls{
    margin-bottom: 5px;
}

.form-control{
    background-color: transparent;
}

form input[type="text"], form input[type="email"], form input[type="password"]{
    border-bottom: 2px solid #fff;
    font-size: 1.3em;
    color: #fff!important;
}

.form-horizontal-container .control-label{
    font-weight: normal;
    color: #fff;
}

.form-horizontal-container label {
    color: #fff;
}

.form-control::-webkit-input-placeholder { color: white; }  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: white; }  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: white; }  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: white; }  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: white; }  /* Microsoft Edge */


#form-error{
    font-size: .7em;
    padding: 10px
}

.form-horizontal-container .form-group, .form-horizontal-container .control-group {
    padding: 0 5% 0px !important;
}

form input[type="text"], form input[type="email"], form input[type="password"] {
    padding-left: 0px;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

::placeholder{
    color: #FFF;
    opacity: 1;
}

:-ms-input-placeholder{
    color:#FFF;
}

input[type="text"]::-ms-input-placeholder{
color:#FFF;
}
input[type="email"]::-ms-input-placeholder{
    color:#FFF;
}
.form-horizontal-container {
    border-top: 0 solid #0D9CD2;
    background: #eee;
    margin: auto;
    padding: 50px 0 !important;
    width: 70%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.form-horizontal-container .form-group,
.form-horizontal-container .control-group{
    padding: 0 5% 15px !important;
    margin-bottom: 0;
}

.form-horizontal-container  input,
.form-horizontal-container  select{
    border-radius: 0px;
    border: 0px none;
    display: inline-block;
    width: 100% !important;
    max-width: 100% !important;
}

.form-horizontal-container  input[type="checkbox"]{
    width: auto !important;
    max-width: auto !important;
}

.form-horizontal-container h2{
    background: #999;
    padding: 30px 5%;
    margin-bottom: 50px;
    color: #fff;
}

.form-horizontal-container label {
    font-weight: normal;
    letter-spacing: 0.03em;
}

.form-horizontal-container h2{
    text-align: center;
}

.form-horizontal-container h2 .big{
    margin-bottom: 10px;
    font-size: 2em;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
}

#sendFormBtn{
}

.form-horizontal-container .control-label{
    display: inline-block;
    text-align: left;
    margin-bottom: 5px;
    width: 100% !important;
    max-width: 100%;
}

#thankyou{
    display:none;
}

#loading{
    display: none;
    background: rgba(0, 0, 0, 0.75) none repeat scroll 0 0;
    bottom: 0;
    left: 0;
    min-height: 100vh;
    padding-top: 200px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100vw;
    z-index: 9999999;
}

#loading img{
    width: 50px;
    height: auto;
}

#form-error{
    background: red none repeat scroll 0 0;
    color: #fff;
    display: none;
    margin: 0;
    padding: 30px;
    width: 100%;
}

#form-error p{
    color: #fff;
}
input[type="radio"]{
    width: auto !important;
    margin-left: 20px;
}

span.anno{
    float: right; margin: 28px 3px
}

a{
    cursor: pointer !important;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
.form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
.form-control:-ms-input-placeholder {
    color: #999; }
.form-control::-webkit-input-placeholder {
    color: #999; }
.form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed; }



#formDiv form > div:last-child  .form-group{
    padding-bottom: 0 !important;
}

.privacies .control-group{
    padding-bottom: 0 !important;
}

/** SITE **/

#storie{
    font-family: 'Muli', sans-serif;
    transition: opacity 1s linear;
}

#storie.loading{
    visibility: hidden;
    opacity: 0;
}

#storie .form-trigger{
    display: none;
}

#storie p{
    font-size: 18px;
}

#storie h2{
    font-size: 29px;
}

#storie h1{
    font-size: 45px;
}
#storie .bg{
    background-image: url('../img/background-statico.jpg');
    background-position: center;
    background-size: cover;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* #storie .bg > video{
    min-width: 100%;
    min-height: 100%;
} */

#storie .intro-box{
    opacity: 0;
    top:18vw;
    left: 58px;
    padding-left: 26px;
    min-width: 600px;
    transition: all 1s ease;
}

#storie .intro-box:before{
    content: "";
    width: 4px;
    height: 100%;
    background: #0395d0;
    position: absolute;
    left: -4px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
  #storie .intro-box{
    border-left: 4px solid #0395d0;
    margin-left: 10px;
    padding-left: 10px;
  }
}

#storie .intro-box.show{
    opacity: 1;
}

#storie .text-white{
    color: #FFF;
}

#storie .text-gray{
    color: #b8b8b8;
}

#storie .text-dark-gray{
    color: #414141;
}

#storie .scroll-icon{
    width: 28px;
    height: 52px;
    bottom: 45px;
    left: 50%;
    transition: all 1s ease;
    cursor: pointer;
}

#storie .scroll-icon img{
    animation: flash 1s linear infinite;
    animation-direction: alternate;
}

#storie .scroll-icon.hidden{
    visibility: hidden;
    opacity: 0;
}

#storie .form-wrapper{
    top:0;
    right: 0;
}

#storie .bg-black{
    background: #000;
    opacity: .8;
}

#storie .bg-blue{
    background: #0395d0;
}

#storie .bg-dark-gray-1{
    background: #1d1d1d;
}

#storie .bg-dark-gray-2{
    background: #040603;
}

#storie .text-blue{
    color:#0395d0;
}

#storie .frame-border{
    background: white;
    z-index: 10000;
    transition: all 1s ease;
}

#storie .frame-border-bottom{
    height: 0px;
    bottom: 0;
    left: 0;
    width: 100%;
}

#storie .frame-border-left{
    width: 0px;
    height: 100%;
    top:0;
    left: 0;
}

#storie .frame-border-right{
    width: 0px;
    height: 100%;
    top:0;
    right: 0;
}

#storie .section{
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
    transition: all 1s ease;
}

#storie .section .video{
    width: 58%;
    height: 100%;
}

#storie .section .video-box{
    width: 77%;
    margin: auto;
}

#storie .section.black{
    background: rgba(0,0,0,0.8);
}

#storie .form{
    /*padding-right: 15px !important;*/
    width: 42%;
    height: 100%;
    top:0;
    right: 0;
    transform: translateX(100%);
    transition: all 1s ease;
    overflow-y: auto;
}

#storie .form #formDiv{
    z-index: 100;
    max-width: 580px;
    margin: auto;
}

#storie.framed .form{
    right: 25px;
}

#storie .form-horizontal-container .form-control{
    background: none;
    border: none;
    box-shadow: none;
    border-bottom: 2px #FFF solid;
    color: white;
}

#storie .form-horizontal-container .form-control::placeholder{
    color:white;
}

#storie .form h3,
#storie .form label,
#storie .form a{
    color:#FFF;
}

#storie .form a{
    text-decoration: underline;
}

#storie .form #sendFormBtn{
    border-radius: 40px;
    background: #0395d0 ;
}

#storie #container-form-mobile #sendFormBtn{
    border-radius: 40px;
    background: #000 ;
}
#storie .form.bg-blue{
    background: #000 !important;
}


#storie .form.bg-blue #sendFormBtn{
    background: #000 !important;
    border-color: #000 !important;
}

#storie .form #sendFormBtn{
    transition: background-color 1s linear, border-left-color 1s linear;
}

#storie  .form.show{
    transform: translateX(0%);
}

@media (min-height: 700px) {
  #iframeForm{
        transform: translateY(20%);
  }
}

#storie.framed .section{

}

#storie.framed .frame-border-bottom{
    height: 25px;
}

#storie.framed .frame-border-left,
#storie.framed .frame-border-right{
    width: 25px;
}

#storie .video-wrapper{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

#storie .video-box{
    padding-top: 25px;
}

#storie .video-infos-1{
    position: relative;
}

#storie .video-infos-1:before{
    content: "";
    width: 4px;
    height: 100%;
    background: #0395d0;
    position: absolute;
    left: 0;
    border-radius: 8px;
}

#storie .video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191919;
}

#storie nav{
    width: 100%;
    height: 50px;
    background: #FFF;
    top:0;
    left: 0;
    padding: 0 25px;
}

#storie .w-100{
    width: 100%;
}

#storie .h-100{
    height: 100%;
}

#storie .menu-trigger button{
    background: none;
    border: none;
}

#storie #section-6{
    padding-top: 50px;
    background: #f4f4f4;
}

#storie .payoff{
    padding-top: 160px;
    padding-bottom: 120px;
    width: 100%;
    background: #f4f4f4;
}



#storie .payoff h1{
    font-size: 40px;
}

#storie .payoff p{
    font-size: 22px;
}




#storie #section-6{
    height: auto !important;
    min-height: auto !important;
}


#storie .footer{
    padding-bottom: 25px;

}

#storie .footer p{
    font-size: 10px;
}

#storie .footer .col-a{
    padding: 50px 5% 50px 20%;
}

#storie .footer .col-b{
    padding: 50px 20% 50px 5%;
}

#storie .payoff .social{
    background-color: #FFF;
    width: 72px;
    height: 72px;
    border-radius: 72px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#storie .payoff .social.fb{
    background-image: url("../img/facebook.svg");
    background-size: 60px;
}

#storie .payoff .social.tw{
    background-image: url("../img/twitter.svg");
    background-size: 60px;
}

#storie .payoff .social.is{
    background-image: url("../img/instagram.svg");
    background-size: 60px;
}

#storie .menu{
    background: rgba(0,0,0,0.88);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
    z-index: 10001;
}

#storie .menu .persone-wrapper{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media (max-width: 768px) {
  #storie .menu .persone-wrapper{
      position: absolute;
      top:50px;
      left: 0%;
      transform: translate(0,0);
  }
  #storie .menu{
    overflow-y: scroll;
  }
}

body.storie-menu, body.storie-form{
    height: 100%;
    overflow: hidden;
}

body.storie-menu .menu{
    visibility: visible !important;
    opacity: 1 !important;
}

#storie .menu.show{
    padding-top: 198px;
    visibility: visible;
    opacity: 1;
}

#storie .menu .persone{
    width: 100%;
    max-width: 1044px;
}

#storie .menu .persone .nome{
    font-size: 20px !important;
}

#storie .menu .persone .slogan{
    font-size: 14px !important;
}

#storie .menu .persone .persona{
    max-width: 193px;
    cursor: pointer;
    margin: 0 2vw;
}
#storie .menu .persone .persona:hover{
    text-decoration: none;
}

#storie .menu .persone .persona img{
    width: 100%;
    max-width: 72px;
}

#storie nav button{
    cursor: pointer;
}

#storie .menu .persone .sep{
    width: 16px;
    margin: auto;
    height: 4px;
    background: #0395d0;
    border-radius: 8px;
}

#storie .menu .close{
    background: #FFF;
    position: absolute;
    top:12px;
    right: 25px;
    opacity: 1;
    padding: 10px 15px;
    border-radius: 50px;
}

#storie .menu .close .fas{
    color: black;
    font-size: 32px;

}

#storie .form .close-wrapper{
    width: 100%;
    position: absolute;
    top:50px;
    padding-right: 25px;
}

#storie .form .close{
    display: none;
}

#storie .scroll-icon span{
    display: none;
}

#storie #section-form{
    display: none;
}



#storie .icon-auto{
    width:100%;
    max-width: 44px;
}

#storie .icon-luogo{
    width: 100%;
    width: 20px;
}

#storie .intro-box h1{
    font-size: 2em;
}

#storie p{
    font-size: 1.2em;
}

@media (max-width: 1023px) {
  #storie p{
      font-size: 1em;
  }
}

#storie .storia-sotto{
    font-size: 14.04px;
}

#storie .testo-storia{
    font-size: .9em;
}

#storie #section-1{
    display: none;
}

#storie .form-bg{
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1s ease;
}

#storie .form.bg-blue .form-bg{
    transform: scaleX(1);
}

#storie nav .condividi{
    font-size: .8em;
}



@keyframes flash {
    0%{
        opacity:0.3;
    }
    50%{
        opacity: 1;
    }

    100%{
        opacity: 0.3;
    }
}

@-ms-keyframes flash {
    0%{
        opacity:0.3;
    }
    50%{
        opacity: 1;
    }

    100%{
        opacity: 0.3;
    }
}

form label{
    padding-left: 20px;
}

form label input[type='checkbox']{
    margin-left: -20px;
}

@media all and (max-height: 767px) {
    #storie .auto-h{
        height: auto !important;
    }
}

@media all and (max-width: 1440px){
    #storie .payoff{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #storie .menu .persone .persona{
        margin: 0 20px;
    }
}

@media all and (max-width: 1024px){
    #storie .intro-box{
        min-width: auto;
        max-width: 500px;
        left: 3%;
        top:18vw;
    }
}

@media all and (max-width: 1023px){
    /*#storie .form-mobile{
        transform: translateX(100%);
        transition: all 1s ease;
    }


    #storie .form-mobile.show{
        transform: translateX(0%);
        height: 100vh;
        top: 0;
        position: fixed;
        width: 100vw;
        z-index: 100;
    }*/

    #storie nav .menu-trigger img{
        width: 32px;
    }

    #storie nav .social-icon{
        min-width: 32px;
        min-height: 32px;
    }

    #storie nav .brand img{
        max-width: 130px;
    }

    #storie #section-1{
        display: block;
    }

    #storie .payoff h1{
        font-size: 30px;
    }
    #storie .payoff .social{
        width: 42px;
        height: 42px;
    }

    #storie .payoff .social.fb{
        background-size: 50px;
    }

    #storie .payoff .social.tw{
        background-size: 50px;
    }

    #storie .payoff .social.is{
        background-size: 50px;
    }

    #storie .form-trigger{
        display: flex;
    }

    #storie .form-trigger p{
        font-size: .9em;
    }

    #storie .scroll-icon img{
        display: none;
    }

    #storie .scroll-icon span{
        display: inline;
    }

    #storie .form{
        width: 100%;
        margin: 20px 0 0 0;
        z-index: 100;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    #storie nav{
        z-index: 101;
    }

    #storie .form .close{
        display: block;
        background: #FFF;
        padding: 10px 15px;
        opacity: 1;
        border-radius: 50px;
    }

    #storie .frame-border{
        display: none;
    }

    #storie .video-infos-1 img{
        display: none;
    }

    #storie .section .video-box,
    #storie .section .video
    {
        width: 100%;
    }

    #storie.framed .section{
        padding: 50px 40px;
    }

    #storie #beatrice,
    #storie #marco{
        background: #FFF !important;
    }

    #storie #section-1{
        height: 100vh !important;
    }

    #storie .section.black{
        background: #000 !important;
    }

    #storie .form-trigger{
        width: 100%;
        height: 50px;
        bottom: 0;
        left: 0;
        font-size: 27px;
        transition: all 0.5s linear;
    }

    #storie .form-trigger.hidden{
        visibility: hidden;
        opacity: 0;
    }

    #storie .form-trigger .fas{
        font-size: 24px;
    }

    #storie #section-6 .payoff{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #storie .section{
        height: auto !important;
        min-height: auto !important;
        padding-top: 50px !important;
        padding-right: 40px;
        padding-left: 40px;
        padding-bottom: 40px;
    }

    #storie #section-2,
    #storie #section-form{
        padding: 0 !important;
    }

    #storie #beatrice .text-white,
    #storie #marco .text-white{
        color: #000 !important;
    }

    #storie .footer .col-b,
    #storie .footer .col-a
    {
        padding: 60px 40px;
    }

    #storie .intro-box{
        width: 100%;
        min-width: 100%;
        left: 0;
        position: static !important;
        top:0;
    }

    #storie .intro-box-wrapper{
        padding: 104px 0;
    }

    #storie .intro-box-wrapper h1{
        font-size: 20px;
    }

    #storie .bg{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-image: url('../img/background_mobile.jpg');
    }

    #storie .bg video{
        display: none;
    }

    #storie .scroll-icon{
        bottom: 75px;
        width: 100%;
        left: 0;
        text-align: center;
        height: auto;
    }

    #storie .scroll-icon span{
        color: #FFF;
        background: #242424;
        padding: 15px 25px;
        border-radius: 60px;

    }

    #storie #container-form-mobile.form-horizontal-container {
        border: none;
        background: none;
        margin: 0;
        padding: 0  !important;
        width: 100%;
        color: white;
    }

   #container-form-mobile.form-horizontal-container a{
        color: white;
        text-decoration: underline;
    }

   #section-form{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        display: block;
    }

   #container-form-mobile.form-horizontal-container .row{
        margin: 0;
    }

    #storie .menu .persone img{
        max-width: 92px;
    }

    #storie .menu .persone{
        flex-direction: column;
        width: 100%;
    }

    #storie .menu .persone-wrapper{
        width: 100%;
    }

    #storie .menu .title{
        display: none;
    }

    #storie .menu .sep{
        display: none;
    }

    #storie .menu .persone .persona{
        width: 100%;
        max-width: none;
        text-align: left;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    #storie .menu .persona > div{
        display: flex;
        align-items: center;
        justify-content: left;
        margin-bottom: 15px;
        min-width: 300px;
        width: 50%;
    }




    #storie .menu .persona .testo{
        /*max-width: 40%;*/
        margin-left: 30px;
        padding-bottom: 45px;
        position: relative;
    }

    #storie .menu .persona .testo:before{
        content: "";
        width: 100%;
        height: 4px;
        background: #0395d0;
        position: absolute;
        bottom: -8px;
        border-radius: 8px;
    }

    #storie .menu .persona:last-child .testo:before{
        background: none;
    }

    #storie .menu .persona:last-child .testo{
        border: none;
        padding-bottom: 0;
    }

    #storie .menu .persone .nome{
        margin: 0;
    }

    #storie .footer{
        padding-bottom: 0;
    }

}
