/* --------------------------------------
    1. Default Typography
-------------------------------------- */

*,
body {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 !important;
}

p {
    font-size: 14px;
    line-height: 20px;
    color: #58595b;
}

h2 {
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #1eb2d0;
}

.img-overlay {
  position: relative;
}

.img-overlay:hover .overlay {
  opacity: 0.4;
}


/* --------------------------------------
    2. General Styles
-------------------------------------- */
html, body{
    width: 100%;
    height: 100%;
}

body.mfp-zoom-out-cur{
    overflow: hidden;
}

a {
    color: #58595b;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    color: #064487;
}

a.blue {
    color: #064487;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a.blue:hover {
    color: #1eb2d0;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none !important;
    outline: none !important
}

a.txtdec {
    text-decoration: underline;
}

a,
button,
input {
    outline: none !important;
}



a.read-more {
	text-transform: uppercase;
	color: #1eb2d0;
	font-family: 'Montserrat', sans-serif;
}

a.full-width-links {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

ul{
    margin: 0;
    list-style: none;
	padding: 0;
}

.fullscreen{
    width: 100%;
    height: 100%;
}

.shadow{
    -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.overlay-black:before {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
}

.overlay-blue:before {
    background: rgba(41, 177, 253, 0.25);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
}

.overlay-gradient:before {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
}

.overlay-gradient:after {
    background: -moz-linear-gradient(left, #29b2fe -40%, #0c112a 140%);
    background: -webkit-linear-gradient(left, #29b2fe -40%, #0c112a 140%);
    background: linear-gradient(to right, #29b2fe -40%, #0c112a 140%);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 3;
    position: absolute;
    top: 0;
    opacity: .3;
}

.hover-link:after{
    content: '\f0c1';
    font-family: 'fontawesome';
    color: #f6f6f6;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -20%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.hover-link:hover:after{
    left: 50%;
    opacity: .9;
}

.hover-zoom:after {
    content: '\f00e';
    font-family: 'fontawesome';
    font-size: 30px;
    color: #f6f8f8;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.hover-zoom:hover:after {
    opacity: .8;
    font-size: 38px;
}

.transparent{
    background: transparent !important;
}

.text-blue-std {
    color: #064487;
}

.text-light-blue-std {
    color: #1eb2d0;
}

.text-blue {
    color: #064487;
	font-family: 'Montserrat', sans-serif;
}

.text-light-blue {
    color: #1eb2d0;
	font-family: 'Montserrat', sans-serif;
}

.modal-body {
    padding: 15px 30px;
}

.normal-list {
	padding: 0px 20px 20px 5px
}

ul.normal-list {
    list-style-type:none;
}

ul.normal-list li::before {
    content: '\f00c';
	font-family: 'fontawesome';
	margin-right: 10px;
    color: #1eb2d0;
}

ul.normal-list li {
	margin-bottom: 5px;
	color: #58595b;
}

blockquote {
    padding: 0 20px;
    margin: 20px 30px;
    font-size: 16px;
	font-style: italic;
    border-left: 5px solid #064487;
}



/* --------------------------------------
    3. Margins & Paddings
-------------------------------------- */

.nopadding{ padding: 0 !important;}
.nomargin{ margin: 0 !important;}
.nopaddingleft{ padding-left: 0 !important;}
.nopaddingright{ padding-right: 0 !important;}

/********** Margin Top **********/

.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }
.mt90 { margin-top: 90px !important; }
.mt100 { margin-top: 100px !important; }
.mt110 { margin-top: 110px !important; }
.mt120 { margin-top: 120px !important; }
.mt125 { margin-top: 125px !important; }
.mt130 { margin-top: 130px !important; }
.mt140 { margin-top: 140px !important; }
.mt150 { margin-top: 150px !important; }

/********** Margin Bottom **********/

.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }
.mb110 { margin-bottom: 110px !important; }
.mb120 { margin-bottom: 120px !important; }
.mb125 { margin-bottom: 125px !important; }
.mb130 { margin-bottom: 130px !important; }
.mb140 { margin-bottom: 140px !important; }
.mb150 { margin-bottom: 150px !important; }

/********** Margin Top & Bottom **********/

.mtb10 { margin: 10px 0 !important; }
.mtb15 { margin: 15px 0 !important; }
.mtb20 { margin: 20px 0 !important; }
.mtb25 { margin: 25px 0 !important; }
.mtb30 { margin: 30px 0 !important; }
.mtb35 { margin: 35px 0 !important; }
.mtb40 { margin: 40px 0 !important; }
.mtb45 { margin: 45px 0 !important; }
.mtb50 { margin: 50px 0 !important; }
.mtb60 { margin: 60px 0 !important; }
.mtb70 { margin: 70px 0 !important; }
.mtb80 { margin: 80px 0 !important; }
.mtb90 { margin: 90px 0 !important; }
.mtb100 { margin: 100px 0 !important; }
.mtb110 { margin: 110px 0 !important; }
.mtb120 { margin: 120px 0 !important; }
.mtb130 { margin: 130px 0 !important; }
.mtb140 { margin: 140px 0 !important; }
.mtb150 { margin: 150px 0 !important; }

/********** Padding Top **********/

.pt5 { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt35 { padding-top: 35px !important; }
.pt40 { padding-top: 40px !important; }
.pt45 { padding-top: 45px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }
.pt70 { padding-top: 70px !important; }
.pt80 { padding-top: 80px !important; }
.pt90 { padding-top: 90px !important; }
.pt100 { padding-top: 100px !important; }
.pt110 { padding-top: 110px !important; }
.pt120 { padding-top: 120px !important; }
.pt130 { padding-top: 130px !important; }
.pt140 { padding-top: 140px !important; }
.pt150 { padding-top: 150px !important; }
.pt160 { padding-top: 160px !important; }

/********** Padding Bottom **********/

.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb45 { padding-bottom: 45px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb70 { padding-bottom: 70px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb90 { padding-bottom: 90px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb110 { padding-bottom: 110px !important; }
.pb120 { padding-bottom: 120px !important; }
.pb130 { padding-bottom: 130px !important; }
.pb140 { padding-bottom: 140px !important; }
.pb150 { padding-bottom: 150px !important; }

/********** Padding Top & Bottom **********/

.ptb10 { padding: 10px 0 !important; }
.ptb15 { padding: 15px 0 !important; }
.ptb20 { padding: 20px 0 !important; }
.ptb25 { padding: 25px 0 !important; }
.ptb30 { padding: 30px 0 !important; }
.ptb35 { padding: 35px 0 !important; }
.ptb40 { padding: 40px 0 !important; }
.ptb45 { padding: 45px 0 !important; }
.ptb50 { padding: 50px 0 !important; }
.ptb60 { padding: 60px 0 !important; }
.ptb70 { padding: 70px 0 !important; }
.ptb80 { padding: 80px 0 !important; }
.ptb90 { padding: 90px 0 !important; }
.ptb100 { padding: 100px 0 !important; }
.ptb110 { padding: 110px 0 !important; }
.ptb120 { padding: 120px 0 !important; }
.ptb130 { padding: 130px 0 !important; }
.ptb140 { padding: 140px 0 !important; }
.ptb150 { padding: 150px 0 !important; }

/* --------------------------------------
    4. Buttons
-------------------------------------- */

.btn {
    outline: none;
    position: relative;
    line-height: 25px;
    font-weight: 500;
	border: none;
	border-radius: 0px;
	padding: 5px 60px;
	font-family: 'Montserrat', sans-serif;
}

.btn-sm {
    line-height: 20px;
	padding: 4px 18px;
}

.isDisabled {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.6;
	filter: alpha(opacity=60);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn:focus {
    color: #f6f6f6;
}

.btn,
.btn-border:before,
.btn-border:after,
.btn-border-rev:before,
.btn-border-rev:after {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-small {
    line-height: 25px;
}

.btn-blue {
    background-color: #064487;
	color: #ffffff;
}
.btn-blue:hover {
    background-color: #1eb2d0;
	color: #ffffff;
}

.btn-light-blue {
    background-color: #1eb2d0;
	color: #ffffff;
}
.btn-light-blue:hover {
    background-color: #064487;
	color: #ffffff;
}

.btn-grey {
    background-color: #cdcdcd;
	color: #ffffff;
}
.btn-grey:hover {
    background-color: #064487;
	color: #ffffff;
}

.btn-istruzione {
    background-color: #1eb2d0;
	color: #ffffff;
	width: 100%;
	text-align: left;
	padding: 8px 10px;
	font-size: 16px;
	letter-spacing: .5px;
}
.btn-istruzione i {
    float: right;
	margin-top: 3px;
}
.btn-istruzione:hover,
.btn-istruzione:focus {
    background-color: #1eb2d0;
	color: #ffffff;
}


/* --------------------------------------
    5. Top Header 
-------------------------------------- */

.top-header {
    background: #ffffff;
    color: #cdcdcd;
    z-index: 5;
    position: relative;
}

.top-header ul {
}

.social {
	float: right;
	line-height: 30px
}

.social a {
    font-size: 14px;
    color: #064487;
}

.social li {
}

.social li a .fa {
    font-size: 18px;
}

.social li.search {
	border-left: 1px solid #cdcdcd;
	border-right: 1px solid #cdcdcd;
	padding-left: 15px;
	padding-right: 15px;
}

.social li.maps {
	padding-left: 13px;
	padding-right: 18px;
}

.social li a:hover {
    color: #064487;
}

.top-button {
    float: right;
	padding: 0;
}

.top-button li {
    display: inline-block;
}
.top-button li .btn {
    font-size: 12px;
	line-height: 30px;
	padding: 0px 50px;
}

/*********** 5.1 Login Pop Up *************/

.box-login {
	position:absolute; 
	display:none; 
	overflow:hidden; 
	border:1px solid #ddd;
	padding:15px; 
	z-index:1000; 
	background-color:#fff; 
	width:250px;
}
.cd-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1039;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.cd-user-modal.is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-user-modal.is-visible .cd-user-modal-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.cd-user-modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #FFF;
    margin: 10% auto 0;
    cursor: auto;
    border-radius: 5px;
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
    transform: translateY(-70px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -moz-transform;
    -o-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.cd-user-modal-container .cd-switcher {
    list-style: none;
    padding: 0;
}

.cd-user-modal-container .cd-switcher:after {
    content: "";
    display: table;
    clear: both;
}

.cd-user-modal-container .cd-switcher li {
    width: 50%;
    float: left;
    text-align: center;
}

.cd-user-modal-container .cd-switcher a {
    display: block;
    width: 100%;
    height: 50px;
	font-family: 'Montserrat', sans-serif;
    line-height: 50px;
    font-weight: 600;
    background: #1eb2d0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.cd-user-modal-container .cd-switcher a:hover {
    background: #064487;
}

.cd-user-modal-container .cd-switcher a.selected {
    background: #fff;
    color: #323232;
}

@media only screen and (min-width: 600px) {
    .cd-user-modal-container .cd-switcher a {
        height: 70px;
        line-height: 70px;
    }
}

.cd-form {
    padding: 1.4em;
}

.cd-form .fieldset {
    position: relative;
    margin: 1.4em 0;
}

.cd-form .fieldset:first-child {
    margin-top: 0;
}

.cd-form .fieldset:last-child {
    margin-bottom: 0;
}

.cd-form label {
    font-size: 14px;
    color: #444;
    font-weight: 400;
}

.cd-form label.image-replace {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    text-shadow: none;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.cd-form label.cd-username {}

.cd-form label.cd-email {}

.cd-form label.cd-password {}

.cd-form input {
    margin: 0;
    padding: 0;
    border-radius: 0.25em;
}

.cd-form input.full-width {
    width: 100%;
}

.cd-form input.has-padding {
    padding: 12px 20px 12px 20px;
}

.cd-form input.has-border {
    border: 1px solid #cdcdcd;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
	border-radius: 0px;
}

.cd-form input.has-border:focus {
    border-color: #29b2fe;
    outline: none;

}

.cd-form input.has-error {
    border: 1px solid #d76666;
}

.cd-form input[type=password] {
    /* space left for the HIDE button */
    padding-right: 65px;
}

.cd-form #remember-me {
    border: medium none;
    cursor: pointer;
    position: relative;
}

.cd-form #remember-me:checked {
    background: #29b2fe;
    color: #f6f6f6;
}

.cd-form input[type=submit]:hover {
    background: #5bbc2e;
}

form.cd-form button {
    display: block;
    margin: 0 auto;
    color: #ffffff;
	text-transform: uppercase;
}

@media only screen and (min-width: 600px) {
    .cd-form {
        padding: 2em;
    }
    .cd-form .fieldset:first-child {
        margin-top: 0;
    }
    .cd-form .fieldset:last-child {
        margin-bottom: 0;
    }
    .cd-form input.has-padding {
        padding: 16px 20px 16px 20px;
    }
    .cd-form input[type=submit] {
        padding: 16px 0;
    }
}

.cd-form-message {
    padding: 10px 15px 0;
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
}

.cd-form-bottom-message {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.cd-form-bottom-message a {
    color: #FFF;
    text-decoration: none;
}

.cd-form-bottom-message a:hover {
    text-decoration: none;
    color: #ff9900;
}

#cd-login,
#cd-signup,
#cd-reset-password {
    display: none;
}

#cd-login.is-selected,
#cd-signup.is-selected,
#cd-reset-password.is-selected {
    display: block;
}

/* --------------------------------------
    6. Header - Navigation 
-------------------------------------- */

header {
    position: absolute;
    width: 100%;
    z-index: 999;
    -webkit-transition: .6s all ease;
    -moz-transition: .6s all ease;
    -ms-transition: .6s all ease;
    -o-transition: .6s all ease;
    transition: .6s all ease;
}

header.navbar-fixed-top {
    position: fixed !important;
}

nav.navbar {
    background: #0c112a;
    border: none;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 60px;
    cursor: pointer;
}

.nav>li>a:focus,
.nav>li>a:hover,
{
    background: none !important;
}

.nav>li>a:focus {
    color: #f6f6f6!important;
}

.fixed-navigation .navbar-nav > li > span ,
.navbar .navbar-nav > li > span,
.fixed-navigation .navbar-nav > li > a,
.navbar .navbar-nav > li > a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #f6f6f6;
	font-family: 'Montserrat', sans-serif;
}

.fixed-navigation .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:hover {
    color: #29b2fe;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.fixed-navigation .navbar-nav >.active > a,
.fixed-navigation .navbar-nav >.active > a:focus,
.fixed-navigation .navbar-nav >.active > a:hover,
.navbar-default .navbar-nav >.active > a,
.navbar-default .navbar-nav >.active > a:focus,
.navbar-default .navbar-nav >.active > a:hover {
    background: none !important;
    color: #1eb2d0;
}

.fixed-navigation .navbar-nav > li > a i,
.navbar .navbar-nav > li > a i {
    display: none;
}

header.navbar-fixed-top {
    background: #ffffff;
}

.nav > li > span {
    position: relative;
    display: block;
    padding: 10px 15px;
	cursor: default;
}

@media only screen and (min-width: 991px) {
.fixed-navigation .navbar-nav > li > span,
.fixed-navigation .navbar-nav > li > a {
	padding-top:15px;
	padding-bottom:0px;
	font-size:14px !important;
}
}

.fixed-navigation .navbar-nav > li > span, 
header.navbar-fixed-top .navbar .navbar-nav > li > span,
.fixed-navigation .navbar-nav > li > a, 
header.navbar-fixed-top .navbar .navbar-nav > li > a {
    color: #064487 !important;
}

header.navbar-fixed-top .navbar .navbar-nav > li > a:hover,
header.navbar-fixed-top .navbar-default .navbar-nav > .active > a {
    color: #1eb2d0;
}

.navbar .navbar-nav > li {
    margin-top: 15px;
}

.navbar-brand {
    height: 80px;
	padding: 10px 15px;
}

.navbar-default .navbar-toggle {
    border-color: #fff;
}

/*********** 6.1 Dropdown Menu *************/

.fixed-navigation .navbar-nav>.open>a,
.fixed-navigation .navbar-nav>.open>a:focus,
.fixed-navigation .navbar-nav>.open>a:hover {
    background: none;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus {
    color: #f6f6f6;
    background: none;
}

.navbar-default .navbar-nav>.open>a:hover {
    color: #29b2fe;
    background: none;
}


.fixed-navigation .navbar-nav .dropdown-menu,
#main-nav .navbar-nav .dropdown-menu {
    background: #fff none repeat scroll 0 0;
    padding: 10px 5px;
    border-radius: 0px !important;
    border-top: solid 2px #1eb2d0;
    display: block;
    /*min-width: 160px;*/
	/*min-width: 220px;*/
	min-width: 220px;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99;
	opacity: 0;
	margin-top: 0;
}

.fixed-navigation .navbar-nav .dropdown-menu:before,
#main-nav .navbar-nav .dropdown-menu:before {
	border: 1px solid #1eb2d0;
}

.fixed-navigation .navbar-nav .dropdown-menu:after,
#main-nav .navbar-nav .dropdown-menu:after {
	content: '';
	display: block;
	position: absolute;
	/*left: 70px;*/
	left: 45%;
	bottom: 100%;
	width: 0;
	height: 0;
	border-bottom: 10px solid #1eb2d0;
	border-top: 10px solid transparent;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.fixed-navigation .navbar-nav .open > .dropdown-menu,
#main-nav .navbar-nav .open > .dropdown-menu {
    opacity: 1;
}

.fixed-navigation .navbar-nav .open a,
#main-nav .navbar-nav .open a {
    color: #1eb2d0;
}

.fixed-navigation .navbar-nav .dropdown-menu > li,
#main-nav .navbar-nav .dropdown-menu > li {
    text-align: center;
	border-bottom: 1px solid #f5f5f5;
}

.fixed-navigation .navbar-nav .dropdown-menu > li:last-child,
#main-nav .navbar-nav .dropdown-menu > li:last-child {
	border-bottom: none;
}

.fixed-navigation .navbar-nav .dropdown-menu > li > a,
#main-nav .navbar-nav .dropdown-menu > li > a {
    /*padding: 5px 20px;*/
	padding: 5px 0px;
    font-weight: 400;
    color: #064487;
    /*text-transform: capitalize;*/
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	white-space:normal;
}

.fixed-navigation .navbar-nav .dropdown-menu > li > a:focus,
.fixed-navigation .navbar-nav .dropdown-menu > li > a:hover,
#main-nav .navbar-nav .dropdown-menu > li > a:focus,
#main-nav .navbar-nav .dropdown-menu > li > a:hover {
    background: none;
    color: #58595b;
}


/*********** 6.1.1 Simple Menu *************/
.fixed-navigation .navbar-nav .simple-menu .dropdown-menu,
#main-nav .navbar-nav .simple-menu .dropdown-menu {
    -webkit-transform: translateX(-50%) scaleY(0);
    -moz-transform: translateX(-50%) scaleY(0);
    -ms-transform: translateX(-50%) scaleY(0);
    -o-transform: translateX(-50%) scaleY(0);
    transform: translateX(-50%) scaleY(0);
    max-width: 250px;
    left: 50%;
}

.fixed-navigation .navbar-nav .simple-menu.open .dropdown-menu,
#main-nav .navbar-nav .simple-menu.open .dropdown-menu {
    -webkit-transform: translateX(-50%) scaleY(1);
    -moz-transform: translateX(-50%) scaleY(1);
    -ms-transform: translateX(-50%) scaleY(1);
    -o-transform: translateX(-50%) scaleY(1);
    transform: translateX(-50%) scaleY(1);
}

/* --------------------------------------
    7. Main Section
-------------------------------------- */

section#home {
    position: relative;
}

/* ---- Slider ---- */

.assSlider {
    top: 0;
    /*height: 70%;*/
    height: 50%;
	position: relative;
}

.swiper-slide-active {
    z-index: 100;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide .bg-image img {
    width: 100%;
}

.slider-content {
    position: relative;
    /*top: 50%;*/
	top: 30%;
    z-index: 15;
    text-align: left;
}

.slider-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
    font-size: 72px;
    color: #ffffff;
    padding-bottom: 15px;
    line-height: 1.1;
}

.slider-content p {
    font-size: 42px;
    color: #ffffff;
    padding-bottom: 15px;
}

.slider-content a {
    color: #f6f6f6;
}

.slider-content a i {
    margin-right: 10px;
}

video.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../video/video.jpg) no-repeat;
    background-size: cover;
    -webkit-transition: 1s opacity;
    -moz-transition: 1s opacity;
    -ms-transition: 1s opacity;
    -o-transition: 1s opacity;
    transition: 1s opacity;
}

.video-bg::-webkit-media-controls-start-playback-button {
    display: none!important;
    -webkit-appearance: none;
}


/* ---- Previous & Next Slider buttons ---- */

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 55px;
    color: #ffffff;
}

.swiper-button-next i {
    float: right;
}


/* ---- Previous & Next Slider buttons ---- */

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    background: none;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    border: none;
    background: #ffffff;
    opacity: 1;
}

/* ---- Information ---- */

.container-fluid.info {
	padding-top:40px;
	padding-bottom:0px;
}

.info:nth-child(2n) {
    background: #f5f5f5 !important;
}

.info .info-text h4 {
	text-transform: uppercase;
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.info .info-text p {
    text-align: left !important;
}

.info-image img {
    max-width: 130px;
    text-align: center;
    margin: 0 auto;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.info .info-image img:hover {
    -webkit-transform: scale(0.90);
    -moz-transform: scale(0.90);
    -ms-transform: scale(0.90);
    -o-transform: scale(0.90);
    transform: scale(0.90);
}

/* ---- Primo Piano Right ---- */

.primo-piano .primo-piano-left h3 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.primo-piano .primo-piano-left .alert-danger h3 {
	/*text-transform: uppercase;*/
	color: #a94442;
	border-bottom: none;
	letter-spacing: 1px;
}

.primo-piano .primo-piano-right {
	background: #ffffff !important;
}

.primo-piano .primo-piano-right .contenuti {
	padding: 40px 30px;
	background: #f5f5f5;
}

.primo-piano .primo-piano-right .cta {
	background: #064487;
	color: #ffffff; 
	font-family: 'Montserrat', sans-serif;
	text-align:center;
	font-weight: 400;
	padding: 10px 20px;
}
.primo-piano .primo-piano-right .cta span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.primo-piano .primo-piano-right h3,
.primo-piano .primo-piano-right h4 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
}

.primo-piano .primo-piano-right .widget-search {
    max-width: 100%;
    position: relative;
	margin-top: 10px;
}

.search-form .form-control {
    width: 100%;
    height: 35px;
    line-height: 40px;
	border: none;
	border-radius: 0px;
    font-size: 13px;
}

.search-form button {
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: #064487;
    border: none;
    padding: 5px 10px;
    line-height: 25px;
    font-size: 18px;
    color: #ffffff;
}

.primo-piano .primo-piano-right .widget-search a {
    float: right;
	color: #064487;
	font-size: 10px;
	text-decoration: underline;
	margin-top: 5px;
}

.primo-piano .primo-piano-right .widget-search a:hover {
	text-decoration: none;
}

.primo-piano .primo-piano-right ul {
    padding: 0px;
	margin-top: 10px;
}

.primo-piano .primo-piano-right ul.categorie li {
    font-size: 13px;
    padding: 5px 0 0 0;
    list-style: none;
}

ul.tags li {
    font-size: 16px;
    list-style: none;
    display: inline-block;
    margin: 0 2px 8px 2px;
}

ul.tags li a {
    font-size: 11px;
    text-decoration: none;
	text-transform: uppercase;
    color: #ffffff;
    background: #064487;
    padding: 5px 15px;
	font-weight: 500;
}

ul.tags li a:hover {
    background: #1eb2d0;
}

.owl-eventi-caption {
	border-bottom: 1px solid #303030;
	padding-bottom: 20px;
}

.owl-eventi-caption:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.owl-eventi-caption p {
	font-size: 12px;
	margin: 0px;
}

.owl-eventi-caption h5 {
	color: #064487;
	margin: 5px 0 !important;
}

/* ---- Primo Piano Left ---- */

.owl-news .item {
	/*padding-bottom: 100px;*/
}

.owl-news-caption {
	position: absolute;
	/*right: calc(5%);
	bottom: calc(5%);*/
	right: calc(2.5%);
	bottom: calc(2.5%);
	z-index: 10;
	margin: 0 0 0 40px;
	/*padding: 30px 25px;*/
	padding: 10px 12.5px;
	text-align: left;
	background: rgba(255,255,255,0.8);
	text-shadow: none;
	color: #333;
	width:100%;
	max-width:540px;
	/*border:1px solid #064487;*/
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.owl-news-caption {
		position: absolute;
		right: calc(0.8%);
		bottom: calc(2.5%);
		z-index: 10;
		margin: 0;
		padding: 5px 7.5px;
		text-align: left;
		background: rgba(255,255,255,0.8);
		text-shadow: none;
		color: #333;
		width:100%;
		max-width:330px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.owl-news-caption {
		position: absolute;
		right: calc(0.8%);
		bottom: calc(2.5%);
		z-index: 10;
		margin: 0;
		padding: 5px 7.5px;
		text-align: left;
		background: rgba(255,255,255,0.8);
		text-shadow: none;
		color: #333;
		width:100%;
		max-width:434px;
	}
}

@media only screen and (max-width: 767px) {
	.owl-news-caption {
		border:none;
	}
	.owl-news .owl-nav {
		display:none;
	}
	.owl-partners-membri .owl-nav {
		display:none;
	}
}

.owl-news-caption h3 {
	text-transform: none !important;
	border-bottom: none !important;
	letter-spacing: 0px !important;
	margin-bottom: 5px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.owl-news-caption p {
		margin-bottom: 5px;
	}
	.owl-news-caption h3 {
		font-size:16px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.owl-news-caption p {
		margin-bottom: 7.5px;
	}
	.owl-news-caption h3 {
		font-size:20px;
	}
}
@media only screen and (max-width: 767px) {
	.owl-news-caption p {
		margin-bottom: 5px;
	}
	.owl-news-caption h3 {
		font-size:16px;
	}
}

.hp-big-news-container {
	position: relative;
	overflow: hidden;
	height: auto;
	width:100%;
	padding: 0 20px;
}

.hp-big-news-container h5 {
	font-size: 18px;
	margin-bottom: 10px !important;
}

.hp-little-news-container {
	position: relative;
	overflow: hidden;
	height: auto;
	width:100%;
}

.hp-big-news-container .left,
.hp-little-news-container .left {
	float: left;
}

.right-share {
	float: right;
}

.right-share a {
	margin-left: 15px;
	color: #cdcdcd;
}

.right-share a:hover {
	color: #064487;
}

/* ---- COVID 19 ---- */
.cta-covid {
	background-color: #064487;
	margin-bottom: 5px;
}
.cta-covid p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 10px;
	margin: 10px 0 5px;
}
.cta-covid p .btn {
	padding: 4px 19px;
	border: 1px solid #1eb2d0;
}
.cta-covid p .btn:hover {
	border: 1px solid #1eb2d0;
}

/* ---- CTA Servizi ---- */

.cta-servizi {
	background-image: url('/images/homepage/bg-cta-servizi.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.cta-servizi p {
	color: #ffffff;
	font-size: 16px;
}

.cta-servizi p i {
	color: #ffffff;
	font-size: 18px;
}

/* ---- Position Paper ---- */

.position-paper h3 {
	text-transform: uppercase;
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

/* ---- Position Paper Right ---- */

.position-paper-right .caption {
	border-top: 1px solid #cdcdcd;
}

/* ---- Ritardometro ---- */

.ritardometro {
	background-image: url('/images/homepage/bg-ritardometro.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	color: #ffffff;
}

.ritardometro a.read-more {
	font-size: 10px;
}

.ritardometro p {
	color: #ffffff;
}

/* ---- Energia in numeri ---- */

.energia-in-numeri {
	background: #f5f5f5;
}

.energia-in-numeri h3 {
	text-transform: uppercase;
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.energia-in-numeri .title {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	padding: 2px 10px;
	text-transform: uppercase;
	background: #064487; /* Old browsers */
	background: -moz-linear-gradient(left,  #064487 0%, #1eb2d0 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #064487 0%,#1eb2d0 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #064487 0%,#1eb2d0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#064487', endColorstr='#1eb2d0',GradientType=1 ); /* IE6-9 */
}

.energia-in-numeri .owl-energia .potenza {
	background-image: url('/images/homepage/bg-potenza.png');
	background-position: 70% 85%;
	background-repeat: no-repeat;
	background-size: 130px;
}

.energia-in-numeri .owl-energia .consumi {
	background-image: url('/images/homepage/bg-consumi.png');
	background-position: 70% 85%;
	background-repeat: no-repeat;
	background-size: 130px;
}

.energia-in-numeri .owl-energia .produzione {
	background-image: url('/images/homepage/bg-produzione.png');
	background-position: 70% 85%;
	background-repeat: no-repeat;
	background-size: 130px;
}

.energia-in-numeri .owl-energia .owl-dots {
	position: absolute;
	top: -85px;
	right: 0;
}

.energia-in-numeri .categoria {
	font-family: 'Montserrat', sans-serif;
	color: #064487;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 50px;
	margin-bottom: 20px;
	text-align: center;
}
.energia-in-numeri .categoria .fa {
	font-size: 26px;
	margin-left: 10px
}

.energia-in-numeri .jqplot-yaxis-tick,
.energia-in-numeri .jqplot-point-label,
.energia-in-numeri .jqplot-xaxis-tick,
.energia-in-numeri .jqplot-donut-series.jqplot-data-label {
    font-family: 'Montserrat', sans-serif;
	font-size: 10px !important;
	font-weight: normal;
	color: #58595b;
}

.energia-in-numeri .jqplot-data-label {
	color: #064487;
	font-weight: 600;
	font-size: 16px !important;
}

.energia-in-numeri .orizzontal .jqplot-event-canvas{
    border-left: 1px solid #cdcdcd;
}

.energia-in-numeri table.jqplot-table-legend, table.jqplot-cursor-legend {
    border: none;
	font-family: 'Montserrat', sans-serif;
}

.energia-in-numeri div.jqplot-table-legend-swatch {
    margin-right: 10px;
}

.energia-in-numeri td.jqplot-table-legend {
    text-transform: uppercase;
}

.energia-in-numeri #chart-consumi .jqplot-data-label:not(.jqplot-donut-series) {
	margin-left:-10px;
	margin-top:-10px;
	white-space:pre-wrap;
}
.energia-in-numeri #chart-consumi .jqplot-data-label:not(.jqplot-donut-series):before {
	content:'Totale \00000a';
}

#chart-potenza .jqplot-yaxis-tick,
#chart-produzione .jqplot-yaxis-tick, 
#chart-consumi .jqplot-yaxis-tick {
	z-index:500;
	cursor: pointer;
}

/* ---- Scelti da Noi ---- */

.scelti-da-noi h3 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.scelti-da-noi .single-post {
	position: relative;
	overflow: hidden;
	height: auto;
	border-bottom: 1px solid #cdcdcd;
}

.scelti-da-noi .single-post-noborder {
	position: relative;
	overflow: hidden;
	height: auto;
}

.scelti-da-noi .icon .fa {
	font-size: 66px;
	color: #064487;
}

/* ---- Newsletter ---- */

.newsletter {
	background-color: #064487;
}

.newsletter h5 {
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
}

.newsletter h5 .fa {
	margin-right: 10px;
}

.newsletter p {
	color: #ffffff;
	font-size: 12px;
}

.newsletter p a {
	color: #1eb2d0;
}

#subscribe-form input[type=email], 
#subscribe-form input[type=text] {
    width: 450px;
    height: 36px;
    padding: 0 10px;
    background: #ffffff;
	border: none;
	max-width: 100%;
}

#subscribe-form table {
    margin: 20px auto;
}

#subscribe-form tr {
    float: left;
    margin: 0;
    display: inline-block;
    width: auto;
}

#subscribe-form .button {
    background: #1eb2d0;
    border: 0 none;
    border-radius: 0;
    color: #ffffff;
    line-height: 15px;
    padding: 10px 30px 11px;
    margin: 0;
    display: inline-block;
	cursor: pointer;
}

#subscribe-form .button:hover {
    background: #cdcdcd;
}

#subscribe-module .required,
#scheda-iscrizione .required {
    color: #d71920;
}
#subscribe-module label,
#scheda-iscrizione .label {
	display: inline;
}

/* ---- Scelti da Noi ---- */

.partners h5 {
	text-transform: uppercase;
	color: #064487;
	margin-bottom: 20px !important;
}

.partners .partners-loghi {
	width: 70%;
	border-bottom: 1px solid #58595b;
	margin: auto;
	padding-bottom: 20px
}

.partners .partners-loghi img {
	margin: 0 10px;
}
.media-partners-img {
	margin-bottom: 20px;
}
.media-partners-img.last{
	margin-bottom: 0px;
}

/* --------------------------------------
    8. Footer
-------------------------------------- */

footer {
    background: #e6e6e6;
    position: relative;
}

/* ---- Footer About ---- */

.top-footer .about img {
	width: 70%;
}

.top-footer .about p {
    color: #064487;
	margin-bottom: 5px;
}

/* ---- Footer Info ---- */

.top-footer .footer-links {
    list-style: none;
    text-align: left;
    line-height: 2;
}

.top-footer .footer-links li a,
.top-footer .footer-follow,
.top-footer .footer-asso a {
	font-family: 'Montserrat', sans-serif;
    color: #064487;
}

.top-footer .footer-follow a .fa {
    color: #064487;
	margin-right: 15px;
	font-size: 20px;
}

.top-footer .footer-links li a:hover,
.top-footer .footer-links li a.active,
.top-footer .footer-asso a:hover,
.top-footer .footer-follow a:hover .fa {
    color: #1eb2d0;
}

.top-footer .footer-newsletter {
    color: #064487;
}

#subscribe-footer-form input[type=email], 
#subscribe-footer-form input[type=text] {
    width: 210px;
    height: 36px;
    padding: 0 10px;
    background: #ffffff;
	border: none;
}

#subscribe-footer-form table {
    margin: 10px 0;
}

#subscribe-footer-form tr {
    float: left;
    margin: 0;
    display: inline-block;
    width: auto;
}

#subscribe-footer-form .button {
    background: #064487;
    border: 0 none;
    border-radius: 0;
    color: #ffffff;
    line-height: 15px;
    padding: 10px 30px 11px;
    margin: 0;
    display: inline-block;
	cursor: pointer;
}

#subscribe-footer-form .button:hover {
    background: #1eb2d0;
}


.top-footer .footer-newsletter p {
	color: #064487;
	font-size: 12px;
}

.top-footer .footer-newsletter p a {
	color: #1eb2d0;
}


/* ---- Copyright Section ---- */

footer .copyright {
    background: #cdcdcd;
	font-size: 12px;
}

/* --------------------------------------
    9. Pages
-------------------------------------- */

.page-title {
    position: relative;
    z-index: 0;
    color: #ffffff;
    text-align: center;
	background-position: center !important;
}

.page-title > div {
    z-index: 3;
    position: relative;
	text-align: left;
}

.page-title h1 {
    letter-spacing: 1px;
	font-weight: 600;
}

.sezione_titolo {
	letter-spacing: 1px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	margin: 0 !important;
	font-size: 36px;
	line-height: 1.1;
	color: #064487;
}
.articolo_titolo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin: 0 !important;
	font-size:30px;
}
.categoria_titolo,
.sottocategoria_titolo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin: 0 !important;
	font-size:24px;
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.breadcrumbs a {
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
    display: inline-block;
    color: #acacac;
    font-size: 12px;
    line-height: 18px;
    position: relative;
    padding: 0 15px 0 0;
    overflow: hidden;
	vertical-align: sub;
}
.breadcrumbs a.active {
    color: #1eb2d0;
}
.breadcrumbs a::before {
    content: "/";
    color: #acacac;
	padding: 0 15px 0 0;
}
.breadcrumbs a:first-child::before {
    content: "";
    color: #ffffff;
	padding: 0;
}

.breadcrumbs-title {
	margin-top: 5px;
}
.breadcrumbs-title a {
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
    display: inline-block;
    color: #58595b;
    font-size: 12px;
    line-height: 18px;
    position: relative;
    padding: 0 10px 0 0;
    overflow: hidden;
	vertical-align: sub;
	text-decoration: underline;
	text-transform: lowercase;
}
.breadcrumbs-title a:hover {
    color: #064487;
	text-decoration: underline !important;
}
.breadcrumbs-title a.active {
    color: #064487;
	font-weight: 700;
	text-decoration: none;
}
.breadcrumbs-title a.active:hover {
	text-decoration: none !important;
	cursor: default;
}
.breadcrumbs-title font::before {
    content: "/";
    color: #acacac;
	padding: 0 10px 0 0;
}
.breadcrumbs-title font:first-child::before {
    content: "";
    color: #ffffff;
	padding: 0;
}

.breadcrumbs-new a {
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
    display: inline-block;
    color: #acacac;
    font-size: 12px;
	/*font-weight: 700;*/
    line-height: 18px;
    position: relative;
    padding: 0 10px 0 0;
    overflow: hidden;
	vertical-align: sub;
}
.breadcrumbs-new a:hover {
    color: #064487;
	text-decoration: underline !important;
	/*font-weight: 700;*/
}
.breadcrumbs-new a.active {
    color: #064487;
	text-decoration: underline !important;
	font-weight: 700;
}
.breadcrumbs-new a.active:hover {
	cursor: default;
}
.breadcrumbs-new a::before {
    content: "|";
    color: #acacac;
	padding: 0 15px 0 0;
}
.breadcrumbs-new a:first-child::before {
    content: "";
    color: #ffffff;
	padding: 0;
}

.news-list {
	position: absolute;
	right: 15px;
	top: 0;
}

.news-list .fa {
	color: #acacac;
	margin-left: 10px;
	font-size: 22px;
	cursor: pointer;
}

.news-list .fa.active {
	color: #064487;
}

.primo-piano-left .list-separe {
	padding-bottom: 20px;
	border-bottom: 1px solid #cdcdcd;
}

.primo-piano-left .list-separe:last-child {
	border-bottom: none;
}

.list-evidenza {
	border:3px solid #064487 !important;
	padding-bottom:0px !important;
}
.list-evidenza .img-evidenza {
	background-color:#064487;
	color:#fff;
	font-weight:bold;
	text-align:center;
}
.list-evidenza .title-evidenza {
	background-color:#064487;
	color:#fff;
	font-weight:bold;
	padding:3px;
}

#blocchi > div {
	min-height: 480px;
}

.cta-page {
	text-align: center;
}

.cta-page h3 {
	color: #ffffff;
	letter-spacing: 2px;
}

.cta-page p {
	color: #ffffff;
}

/* ---- Associzione Left ---- */

.associazione-left .menu-container {
	background-color: #ffffff;
	color: #064487;
	width: 100%;
	padding: 1px 5px 30px 0;
	z-index:1;
}

.associazione-left .menu-container h5 {
	/*text-transform: uppercase;*/
	margin-top: 10px !important;
	font-size: 16px;
	line-height: 24px;
}

.associazione-left .menu-container h5 a,
.associazione-left .menu-container ul > li a {
	color: #064487;
	font-family: 'Montserrat', sans-serif;
}

.associazione-left .menu-container h5 a:hover,
.associazione-left .menu-container ul > li a:hover {
	color: #064487;
	border-bottom: 1px solid #1eb2d0;
}

.associazione-left .menu-container h5.active a {
	color: #064487;
	font-weight: 700;
	border-bottom: 1px solid #1eb2d0;
	letter-spacing: -.3px;
}

.associazione-left .menu-container ul {
	padding: 10px 0 0 15px;
}

.associazione-left .menu-container ul > li {
	padding-bottom: 5px;
}

/* ---- Associzione Right ---- */

.associazione-right h3 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.associazione-right .contenuti {
	position: relative;
	overflow: hidden;
	height: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.associazione-right h5.subtitle {
	margin-bottom: 30px !important;
	font-size: 16px;
	color: #064487;
}

.associazione-right h5.title {
	margin-bottom: 0px !important;
	font-size: 14px;
}

.associazione-right p {
	margin-left: 60px;
	margin-right: 30px;
}

/* ---- Editor Container */
.editor-container h3 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.editor-container .contenuti {
	position: relative;
	overflow: hidden;
	height: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.editor-container h5.subtitle {
	margin-bottom: 30px !important;
	font-size: 16px;
	color: #064487;
}

.editor-container h5.title {
	margin-bottom: 0px !important;
	font-size: 14px;
}

/* patch images editor */
.editor-articolo {}
.editor-articolo ul,
.mce-content-body ul {
	margin-bottom:10px;
	padding-left:15px;
	list-style:disc;
	color:#58595b;
}
.editor-articolo img {
	/*width:auto !important;*/
	height:auto !important;
	max-width:100% !important;
}
.editor-articolo iframe {
	max-width:100% !important;
}
.editor-articolo a,
.mce-content-body a {
	font-weight:bold;
	color: #064487;
	text-decoration:underline;
}

/* ---- Associzione ---- */

.statuto-link {
	text-align: right;
	padding: 10px 20px;
	background: #064487; /* Old browsers */
	background: -moz-linear-gradient(left,  #064487 0%, #1eb2d0 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #064487 0%,#1eb2d0 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #064487 0%,#1eb2d0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#064487', endColorstr='#1eb2d0',GradientType=1 ); /* IE6-9 */
}

.statuto-link a {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
}

.topic-content {
	position: relative;
	overflow: hidden;
	height: auto;
	margin-top: 50px !important;
}

.topic-content h5.subtitle {
	margin: 30px 20px 0 20px !important;
}

.topic {
    padding: 0 0 0 80px;
	margin: 20px 0 0;
	position:relative;
}

.topic.expanded {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.topic .open {
    cursor: pointer;
    display: block;
    padding: 10px;
	background-color: #e6e6e6;
}

.topic .open:hover .title,
.topic .open:hover i {
    color: #1eb2d0;
}

.topic .title {
    padding: 0;
    color: #064487;
    transition: all .3s ease;
}

.topic .content {
    font-size: 16px;
    line-height: 24px;
    display: none;
    margin-bottom: 30px;
}

.topic .content p {
    margin: 10px 0px;
}

.topic i {
    font-size: 20px;
    color: #064487;
    position: absolute;
    top: 10px;
    right: 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.topic.expanded i {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-18deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.relazioni {
    padding: 0 0 20px 0;
	margin: 20px 0 0 80px;
	border-bottom: 1px solid #dadada;
}

.relazioni:last-child {
    padding: 0;
	margin: 40px 0 0 80px;
	border-bottom: none;
	text-align: center;
}

.notizie-correlate h3 {
	/*text-transform: uppercase;*/
	color: #064487;
	border-bottom: 1px solid;
	letter-spacing: 2px;
}

.notizie-correlate .owl-notizie-correlate .owl-dots {
	position: absolute;
	top: -50px;
	right: 0;
}

.affix-bottom {
	position:relative;
}

/* --------------------------------------
    Cerca nel sito
-------------------------------------- */
.sclk_cerca_overlay {position:fixed; top:0; left:0; width:100%; height:100%; z-index:20000; background-color:rgba(230,230,230,0.85); display:none;}
.sclk_cerca_table { display:table; width:100%; height:100%; }
.sclk_cerca_container { display:table-cell; vertical-align:middle; text-align:center; }
.sclk_cerca_content {display:inline-block; width:80%; min-width:300px;}



/* --------------------------------------
    10. My Page
-------------------------------------- */

.mypage_navigator {
	border-bottom: 2px solid #064487;
}

.mypage_navigator span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #58595b;
	font-size: 16px;
}

.mypage_navigator span.active {
	color: #064487;
}

.responsive-pull-right {
	float:right;
}

.form-scheda-anagrafica-socio .selezione-anagrafica .form-group {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
}

.form-scheda-anagrafica-socio .selezione-anagrafica .form-group .fa {
	margin-right: 10px;
}

#formSchedaAnagrafica label,
.form-scheda-anagrafica-socio label {
	font-family: 'Montserrat', sans-serif;
	color: #064487;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

#formSchedaAnagrafica label span,
.form-scheda-anagrafica-socio label span {
	color: #ec1b5d;
}

#formSchedaAnagrafica label a,
.form-scheda-anagrafica-socio label a {
	cursor: pointer;
	font-size: 14px;
}

#formSchedaAnagrafica .form-control,
.form-scheda-anagrafica-socio .form-control {
	border-radius: 0px;
	border: 1px solid #cdcdcd;
}

#formSchedaAnagrafica hr,
..form-scheda-anagrafica-socio hr {
	margin-top: 5px;
	margin-bottom: 10px;
}

.form-scheda-anagrafica-socio .sezione-rappresentante {
	background-color: #f5f5f5;
	position: relative;
	overflow: hidden;
	height: auto;
}

.form-scheda-anagrafica-socio .sezione-rappresentante .title {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #064487;
	border-bottom: 1px solid #064487;
}

.form-scheda-anagrafica-socio .sezione-white {
	position: relative;
	overflow: hidden;
	height: auto;
}

.form-scheda-anagrafica-socio .sezione-white .title {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #064487;
	border-bottom: 1px solid #064487;
}

.form-scheda-anagrafica-socio .sezione-white .title-inverse {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #064487;
	border-top: 1px solid #064487;
}

.mypage_navigator a.popover_image {
	color: #064487;
	cursor: pointer;
	font-size: 20px;
	vertical-align: baseline;
}
.mypage_navigator a.popover_image:hover {
	color: #1eb2d0;
}

/* --------------------------------------
    11. Le più lette
-------------------------------------- */
.owl-piulette .item .row,
.owl-latest .item .row {
	border-bottom: 1px solid #cdcdcd;
	padding-bottom:20px;
}
.owl-piulette .item .row:last-child,
.owl-latest .item .row:last-child {
	border-bottom: none;
}
.hp-ultime-news-dx .row {
	border-bottom: 1px solid #cdcdcd;
	padding-bottom:10px;
}
.hp-ultime-news-dx .row:last-child {
	border-bottom: none;
}
.risultati-ricerca > .row {
	border-bottom: 1px solid #cdcdcd;
}
.risultati-ricerca > .row:last-child {
	border-bottom: none;
}

/* Auto fill */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

/* --------------------------------------
    12. SubCategory - Types by button
-------------------------------------- */
.table-types {
	display:table; width:100%;
} 
.table-types .table-types-cell {
	display:table-cell; height:100%; vertical-align:middle;
} 
.table-types .table-types-cell a {
	margin-left:5px; margin-right:5px;
} 
.table-types .table-types-cell:first-child a {
	margin-left:0px;
} 
.table-types .table-types-cell:last-child a {
	margin-right:0px;
} 

.btn-reverse {
    color: #337ab7;
    background-color: #fff;
    border-color: #337ab7;
	border-width:2px;
	border-style:solid;
}

.btn-mypage-sel {
    color: #337ab7;
    background-color: #e1ebf4;
    border-color: #337ab7;
	border-width:2px;
	border-style:solid;
	font-weight:700;
}

/* --------------------------------------
    13. Homepage - Energia in numeri
-------------------------------------- */
p.big-text {
	position:absolute; 
	top:30px; 
	left:10px; 
	color: #064487; 
	font-family: 'Montserrat', sans-serif; 
	font-size:74px; 
	font-weight:500; 
	letter-spacing:-5px;
}
div.big-text {
	position:absolute; 
	top:0; left:3px; 
	font-family:'Montserrat', 
	sans-serif; font-weight:500; 
	font-size:18px; 
	color:#064487; 
	letter-spacing:-2px;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
	p.big-text {
		font-size:60px; 
	}
	div.big-text {
		font-size:14px; 
		letter-spacing:-1px;
	}
}

@media only screen and (min-width: 992px) {
	.fixed > .navbar-static-top {
		display:none;
	}
	.navbar-fixed-top > .navbar-static-top {
		display:block;
	}
	.navbar-fixed-top > .navbar-static-top > .row {
		margin-left:0;
		margin-right:0;
	}
}

/* --------------------------------------
    14. Homepage - Owl news
-------------------------------------- */
.owl-news .owl-nav {
    /*margin-top: 0 !important;*/

}
.owl-news .owl-nav [class*=owl-] {
	background: rgba(255, 255, 255, 0.4) !important;
	color: #064487 !important;
}
.owl-news .owl-nav [class*=owl-]:hover {
	background: rgba(6, 68, 135, 0.4) !important;
	color: #fff !important;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}
.owl-news .owl-prev,
.owl-news .owl-next {
	position: absolute !important;
	top: calc(50% - 24px); !important;
	height: 48px !important;
	margin: auto !important;
	font-size: 30px !important;
}
.owl-news .owl-prev {
	left: calc(1%) !important;
	padding: 4px 7px 4px 4px !important;
}
.owl-news .owl-next {
	right: calc(1%) !important;
	padding: 4px 4px 4px 7px !important;
}

.owl-partners-membri .owl-nav {
    /*margin-top: 0 !important;*/

}
.owl-partners-membri .owl-nav [class*=owl-] {
	background: rgba(255, 255, 255, 0.4) !important;
	color: #064487 !important;
}
.owl-partners-membri .owl-nav [class*=owl-]:hover {
	background: rgba(6, 68, 135, 0.4) !important;
	color: #fff !important;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}
.owl-partners-membri .owl-prev,
.owl-partners-membri .owl-next {
	position: absolute !important;
	top: calc(50% - 37px); !important;
	height: 48px !important;
	margin: auto !important;
	font-size: 30px !important;
}
.owl-partners-membri .owl-prev {
	left: calc(-2%) !important;
	padding: 4px 7px 4px 4px !important;
}
.owl-partners-membri .owl-next {
	right: calc(-2%) !important;
	padding: 4px 4px 4px 7px !important;
}

.ui-multiselect {
	display: block;
	width: 100% !important;
	height: 34px;
	padding: 6px 12px !important;
	font-size: 14px !important;
	line-height: 1.42857143;
	color: #555 !important;
	background-color: #fff !important;
	background-image: none !important;
	border: 1px solid #ccc !important;
	border-radius: 4px !important;
	overflow: hidden;
}
.ui-icon-triangle-1-s {
    background-position: -60px -13px !important;
}
.ui-multiselect-checkboxes label input {
    margin-right: 5px;
    margin-bottom: 8px;
}

/*test*/
.fixed-navigation .navbar-nav > li > span, header.navbar-fixed-top .navbar .navbar-nav > li > span {
    color: 
    #064487;
}
@media only screen and (min-width: 991px) {
.fixed-navigation .navbar-nav > li > span {
	padding-top:15px;
	padding-bottom:10px;
	font-size:14px;
}
}
.fixed-navigation .navbar-nav > li > span, .navbar .navbar-nav > li > span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #f6f6f6;
    font-family: 'Montserrat', sans-serif;
}

/* NUOVI CSS PER SOTTOCATEGORIA */
.topic-new {
    padding: 0;
	margin: 20px 0 0;
	position:relative;
}

.topic-new.expanded {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.topic-new .open {
    display: block;
    padding: 10px;
	background-color: #e6e6e6;
}

.topic-new .open_light {
    display: block;
    padding: 10px;
	/*border-bottom: 1px solid #e6e6e6;*/
}

.topic-new .title {
    padding: 0;
    color: #064487;
    transition: all .3s ease;
}

.topic-new .open_light .title {
	text-transform:uppercase;
}

.topic-new .content {
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 30px;
}

.topic-new .content p {
    margin: 10px 0px;
}

.topic-new i {
    font-size: 20px;
    color: #064487;
    position: absolute;
    top: 10px;
    right: 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.topic-new.expanded i {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-18deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/* --------------------------------------
    OWL CAROUSEL PARTNERS MEMBRI
-------------------------------------- */
.owl-partners-membri {
    border-bottom:1px solid #58595b;
    margin:auto;
    padding-bottom:20px;
}
.owl-partners-membri .item img {
	max-height:50px;
	width:auto !important;	
	margin:auto;
}
.owl-partners-membri .owl-dots {
	margin-top:18px;
}

/* --------------------------------------
    OWL CAROUSEL VIDEO
-------------------------------------- */
.owl-video .owl-dots {
	margin-top:18px;
}

/* --------------------------------------
    NEW CSS PAGINE
-------------------------------------- */
.title-new {
	display: block;
	font-size: 18px;
	color: #064487;
	font-family: 'Montserrat', sans-serif;
}
.title-new span {
	font-size: 32px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
.subtitle-new {
	color: #1eb2d0;
}
.download-brochure {
	margin-bottom: 60px;
}
.download-brochure hr {
	margin-top: 60px;
	margin-bottom: 20px;
	margin-left: 15px;
	width: 20%;
	border: 0;
	border-top-color: currentcolor;
	border-top-style: none;
	border-top-width: 0px;
	border-top: 2px solid #58595b;
}
.download-brochure p {
	font-size: 26px;
}
.download-brochure a {
	color: #1eb2d0;
	margin-left: 5px;
	margin-right: 5px;
}
.download-brochure a:hover {
	color: #064487;
}
.page-middle {
    position: relative;
    z-index: 0;
    color: #ffffff;
    text-align: left;
    background-position: center !important;
}
.page-middle h3 {
	margin-bottom: 15px !important;
	letter-spacing: 3px;
}
.page-middle p {
	color: #ffffff;
	margin-bottom: 30px;
}
.single-text-new {
	border-bottom: 1px solid rgba(188,190,192,.5);
}
.single-text-new h4 {
	font-weight: 400;
}
.single-text-new p {
	margin-top: 10px;
	margin-bottom: 20px;
}
.partners-new h4 {
	margin-bottom: 5px !important;
	letter-spacing: 1px;
	color: #064487;
	font-weight: 400;
}
.partners-new p {
	margin-bottom: 50px !important;
}
.storia .parent {
	display: table;
	height: 100%;
	width: 100%;
}
.storia .child {
	display: table-cell;
	vertical-align: middle;
}
.storia h4 {
	margin-bottom: 15px !important;
	letter-spacing: 1px;
	color: #064487;
	line-height: 24px;
	font-weight: 400;
}
.storia a {
	color: #1eb2d0;
	font-size: 12px;
}
.storia a:hover {
	color: #064487;
}
@media (min-width: 768px) {
  .row.equal {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .storia h4 {
	margin-top: 20px !important;
  }
}

/* --------------------------------------
    OWL CAROUSEL PARTNERS NEW
-------------------------------------- */
.owl-partners-new {
    margin:auto;
    padding-bottom:20px;
}
.owl-partners-new .item img {
	max-height:50px;
	width:auto !important;	
	margin:auto;
}
.owl-partners-new .owl-dots {
	margin-top:18px;
}
.owl-partners-new .owl-nav [class*=owl-] {
	background: rgba(255, 255, 255, 0.4) !important;
	color: #1eb2d0 !important;
}
.owl-partners-new .owl-nav [class*=owl-]:hover {
	background: rgba(6, 68, 135, 0.4) !important;
	color: #fff !important;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}
.owl-partners-new .owl-prev,
.owl-partners-new .owl-next {
	position: absolute !important;
	top: calc(50% - 37px); !important;
	height: 48px !important;
	margin: auto !important;
	font-size: 30px !important;
}
.owl-partners-new .owl-prev {
	left: calc(-2%) !important;
	padding: 4px 7px 4px 4px !important;
}
.owl-partners-new .owl-next {
	right: calc(-2%) !important;
	padding: 4px 4px 4px 7px !important;
}

.banner-iscriviti,
.banner-rassegna {
	background: url('/images/new/ISCRICITI_BANNER_2x.jpg');
	background-size: contain;
	padding: 40px 20px;
	color: #fff;
}
.banner-partecipa {
	background: url('/images/new/banner_tavoli_lacoro@2x.jpg');
	background-size: contain;
	padding: 40px 20px;
	color: #fff;
	margin-bottom: 20px;
}
.banner-archivio {
	background: url('/images/new/ARCHIVIO_BANNER_2x.jpg');
	background-size: contain;
	padding: 40px 20px;
	color: #fff;
}
.banner-iscriviti p,
.banner-rassegna p,
.banner-partecipa p {
	color: #fff;
	margin: 20px 0;
}
.banner-iscriviti .btn,
.banner-rassegna .btn,
.banner-partecipa .btn {
	padding: 5px 20px;
}

.banner-rassegna-new {
	background: url('/images/new/sfondo_RS.jpg');
	background-size: cover;
	padding: 60px 20px;
	color: #064487;
}
.banner-rassegna-new p{
	color: #064487;
	margin: 20px 0;
}
.banner-rassegna-new .btn {
	padding: 5px 20px;
}

.banner-rapporti {
	background: url('/images/new/RAPPORI_BANNER_2x.jpg');
	background-size: cover;
	background-position: center;
	padding: 40px 20px;
	color: #064288;
}
.banner-rapporti h3 {
	margin-bottom: 20px !important;
}
.banner-rapporti h5.blue {
	color: #064288;
	margin-bottom: 10px !important;
}
.banner-rapporti h5,
.banner-rapporti p {
	color: #58595b;
}
.banner-rapporti .link a {
    color: #1eb2d0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.banner-spazio-associati {
	background: url('/images/new/banner_spazio_Associati_600px_2x.jpg');
	background-size: cover;
	padding: 45px 10px;
	color: #064487;
}
.banner-spazio-associati h3 {
	margin-bottom: 15px !important;
}
.banner-spazio-associati a {
    color: #064487;
}
.banner-spazio-associati a:hover {
    color: #1eb2d0;
}
.banner-spazio-associati.hp-style {
	padding: 60px 20px;
}
.banner-spazio-associati.hp-style h3 {
	border-bottom: none !important;
}

.editor-text {
	padding: 0 30px;
	height: 100%;
	border-left: 1px solid rgba(188,190,192,.5);
}
.editor-text h1 {
	color: #064487;
	letter-spacing: 3px;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 50px !important;
}
@media (max-width: 991px) {
  .editor-text {
  }
}
@media (max-width: 767px) {
  .editor-text {
	border-left: none;
	padding: 30px 0;
  }
}

.page-title-new {
	padding-top: 40px;
	padding-bottom: 40px;
}
.header-page-new-lf,
.header-page-new-rg {
	background: url(/images/new/sfumatura.png);
	background-size: contain;
}
.header-page-new-lf .parent,
.header-page-new-rg .parent {
	display: table;
	height: 100%;
	width: 100%;
}
.header-page-new-lf .child {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-right: 10%;
}
.header-page-new-lf .child .child-right {
	float:right;
}
.header-page-new-lf .child h3 {
	color: #064487;
	margin-bottom: 30px !important;
	font-weight: 600;
}
.header-page-new-lf .child p {
	font-size: 16px;
	line-height: 22px;
}
.header-page-new-rg .child {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 10%;
}
.header-page-new-rg .child h4 {
	color: #064487;
	margin-bottom: 10px !important;
}
.header-page-new-rg .prova-form {
	margin-top: 15px;
	width: 35%;
}
.header-page-new-rg .prova-form .form-group {
    margin-bottom: 5px;
}
.header-page-new-rg .prova-form .form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.4;
    color: #555;
    background-color: transparent;
    background-image: none;
    border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.header-page-new-rg .prova-form .btn {
	width: 100%;
	margin-top: 15px;
}

.header-page-new-cn {
	background: url(/images/new/ISCRICITI_BANNER_2x.jpg);
	background-size: cover;
	padding: 230px 0;
	margin: 50px 0;
}
.header-page-new-cn .image {
	padding: 0 40px;
}
@media (max-width: 1499px) {
  .header-page-new-rg .prova-form {
	width: 40%;
  }
}
@media (max-width: 1399px) {
  .header-page-new-rg .prova-form {
	width: 45%;
  }
}
@media (max-width: 1299px) {
  .header-page-new-rg .prova-form {
	width: 50%;
  }
}
@media (max-width: 1199px) {
  .header-page-new-rg .prova-form {
	width: 55%;
  }
  .header-page-new-cn {
	padding: 180px 0;
	margin: 40px 0;
  }
  .header-page-new-cn .image {
	padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .page-title-new {
	padding-top: 90px;
  }
  .header-page-new-rg .prova-form {
	width: 70%;
  }
}
@media (max-width: 767px) {
  .header-page-new-lf .child {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 0;
  }
  .header-page-new-lf .child .child-right {
	float:none;
	text-align: center;
  }
  .header-page-new-cn {
    padding: 100px 0;
    margin: 30px 0;
  }
  .header-page-new-cn .image {
	padding: 0 20%;
  }
  .header-page-new-rg .child {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 0;
	text-align: center;
  }
  .header-page-new-rg .prova-form {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
  }
}

.buoni-motivi h3 {
	color: #064487;
	letter-spacing: 2px;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 30px !important;
}
.buoni-motivi .border {
	border-bottom: 1px solid rgba(188,190,192,.5);
	padding-bottom: 20px;
	margin-bottom: 15px;
}
.buoni-motivi .number {
	color: #064487;
	font-family: 'Montserrat', sans-serif;
	font-size: 72px;
	font-weight: 500;
	letter-spacing: -1px;
}

.buoni-motivi .text h4 {
	margin-top: 20px !important;
	margin-bottom: 10px !important;	
}

.page-bg-gray h3 {
	color: #064487;
	letter-spacing: 2px;
	font-size: 24px;
	text-transform: uppercase;
}
@media (max-width: 767px) {
  .single-text-new-small {
	border-bottom: 1px solid rgba(188,190,192,.5);
  }
  .single-text-new-small p {
	margin-top: 10px;
    margin-bottom: 20px;
  }
}

.page-form-bottom {
    position: relative;
    z-index: 0;
    color: #ffffff;
    text-align: left;
    background-position: center !important;
}
.page-form-bottom h3 {
	margin-bottom: 40px !important;
	letter-spacing: 2px;
}
.page-form-bottom p {
	color: #ffffff;
	margin-bottom: 20px;
}

.page-form-bottom .form-group {
	margin-right: 50px;
	width: 220px;
}

.page-form-bottom .prova-form1 .form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    background-color: transparent;
    background-image: none;
    border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.page-form-bottom .prova-form1 .btn {
	padding: 3px 30px;
	font-size: 12px;
}

@media (max-width: 1199px) {
  .page-form-bottom .form-group {
	width: 190px;
  }
}
@media (max-width: 767px) {
  .page-form-bottom .form-group {
	width: 90%;
  }
}
.pl0 { padding-left:0;}
.pr0 { padding-right:0;}

.modal-body .form-group span {
	color: #d43f3a;
}
.modal-body i {
    font-size: 16px;
    color: #064487;
	margin-right: 5px;
}
.modal-body a {
    font-weight: bold;
    color: #064487;
    text-decoration: underline;
}

/* ------------------
    CSS POSIZIONI
------------------ */
.istruzione .well {
	background-color: #F4F4F4;
	padding: 10px 15px;
}
.istruzione .well a {
	display: block;
	color: #064487;
	font-size: 16px;
	padding: 5px 0;
	font-family: 'Montserrat', sans-serif;
}
.istruzione .well a:hover,
.istruzione .well a.active {
	color: #1eb2d0;
}

.single-istruzione {
	border-left: 1px solid #DFDFDF;
}
.single-istruzione .panel-group .panel {
	margin-bottom: 20px;
    border-radius: 0;
    border-color: #eee;
	border-left: 3px solid #1eb2d0;
	box-shadow: 0px 3px 6px #00000029;
}
.single-istruzione .panel-default > .panel-heading {
    position: relative;
	height: auto;
	overflow: hidden;
	color: #064487;
    background-color: #fff;
	padding: 20px 100px 20px 25px;
	letter-spacing: 2.55px;
}
.panel-title a {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 400;
}
.panel-title a i {
    position: absolute;
	right: 15px;
	color: #1eb2d0;
	top: 30%;
}
.single-istruzione .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.single-istruzione .panel-body {
    padding: 5px 20px 20px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
}
.single-istruzione .panel-body a {
    color: #1eb2d0;
    font-size: 16px;
	margin-top: 20px;
	text-transform: uppercase;
	display: block;
	width: max-content;
	font-family: 'Montserrat', sans-serif;
}

.single-istruzione h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	letter-spacing: 2.55px;
	color: #064288;	
	text-transform: uppercase;
	margin-bottom: 40px !important;
}
.single-istruzione .contain-istruzione {
	padding: 0 0 25px;
	margin-top: 25px;
	border-bottom: 1px solid #DFDFDF;
}
.single-istruzione .contain-istruzione:last-child {
	padding: 0;
	border-bottom: none;
}
.single-istruzione .contain-istruzione .title {
	color: #064487;
    font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 10px;
}
.single-istruzione .contain-istruzione .text p {
    font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 10px;
}
.single-istruzione .contain-istruzione .link a {
    color: #1eb2d0;
    font-size: 16px;
	margin-top: 20px;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

.page-title-new1 {
	background: url(/images/new/1920x10802x.jpg);
	background-size: cover;
	background-position: center;
}
.header-page-new1-lf .parent,
.header-page-new1-rg .parent {
	display: table;
	height: 100%;
	width: 100%;
}
.header-page-new1-lf .child {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding-top: 100px;
	padding-bottom: 100px;
}
.header-page-new1-lf .child .child-right {
	text-align:left;
}
.header-page-new1-lf .child h1 {
	color: #fff;
	margin-bottom: 30px !important;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.3;
	font-size: 48px;
	text-shadow: 3px 3px 5px #808285;
}
.header-page-new1-lf .child p a {
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}
.header-page-new1-lf .child p a:hover {
	text-decoration: underline !important;
}

.header-page-new1-rg .child {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding: 100px 35px;
	background-color: #fff;
}
.header-page-new1-rg .child h4 {
	color: #064487;
	margin-bottom: 10px !important;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
}
.header-page-new1-rg .prova-form {
	margin-top: 15px;
}
.header-page-new1-rg .prova-form .form-group {
    margin-bottom: 15px;
}
.header-page-new1-rg .prova-form .form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.4;
    color: #555;
    background-color: transparent;
    background-image: none;
    border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.header-page-new1-rg .prova-form .btn {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.header-page-new1-lf .child h1 {
		line-height: 1.2;
		font-size: 38px;
	}
	.header-page-new1-rg .child {
		padding: 120px 20px;
	}
	.header-page-new1-rg .child h4 {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.page-title-new1 {
		background: none !important;
		margin-top: 85px;
	}
	.page-title-new1 .header-page-new1-lf {
		background: url(/images/new/1920x10802x.jpg);
		background-size: cover;
		background-position: center;
	}
	.header-page-new1-lf .child {
		padding: 90px 25px;
	}
	.header-page-new1-lf .child p {
		text-align: center;
	}
	.header-page-new1-rg .child {
		padding: 60px 20px 40px;
	}
	.header-page-new1-rg .child h4 {
		font-size: 18px;
		text-align: center;
		margin-bottom: 30px !important;
	}
}




