/*
	Theme Name: Volta
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


@font-face {
    font-family: 'poppins';
    src: url('fonts/poppins-semibold-webfont.eot');
    src: url('fonts/poppins-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/poppins-semibold-webfont.woff2') format('woff2'),
         url('fonts/poppins-semibold-webfont.woff') format('woff'),
         url('fonts/poppins-semibold-webfont.ttf') format('truetype'),
         url('fonts/poppins-semibold-webfont.svg#poppinssemibold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('fonts/poppins-regular-webfont.eot');
    src: url('fonts/poppins-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('fonts/poppins-regular-webfont.woff') format('woff'),
         url('fonts/poppins-regular-webfont.ttf') format('truetype'),
         url('fonts/poppins-regular-webfont.svg#poppinsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------*\
    COMMON
\*------------------------------------*/
*, html {
    margin: 0;
    padding: 0;   
}
body, html {    
    display: block;
    /*width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;*/
}
body, div, dl, dt, dd, ol, li,  pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset, img {
    border: 0;
}
address, caption, cite, code, dfn, th, var {
    font-style: normal;
    font-weight: normal;
}
caption, th {
    text-align: left;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
abbr, acronym {
    border: 0;
    font-variant: normal;
}
sup {
    vertical-align: text-top;
}
sub {
    vertical-align: text-bottom;
}
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    max-width: 100%;
}
ul, ol {
    margin: 5px 0 10px 0;
    padding: 0;
    list-style-position: inside;
}
p {
    padding: 0;
    margin: 0;
}
iframe {
    width: 100%;
    height: auto;
}
b, strong, .bold {
    font-weight: bold;
}
.clear {
    clear: both;
    height: 0;
    float: none;
}
/*
::selection {
    background:rgba(153, 166, 193, 0.7); /* WebKit/Blink Browsers /
    color:#fff;
}
::-moz-selection {
    background:rgba(153, 166, 193, 0.7); /* Gecko Browsers /
    color:#fff;
}*/
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    transition: background 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
    background: transparent !important;
    color: #fff !important;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #4a433d;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #4a433d;
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #4a433d;
    opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    #4a433d;
}




#catapult-cookie-bar {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid;
    width: 280px !important;
    pointer-events: none;
    display: block !important;
    transition: opacity 0.3s !important ;
    max-height: initial !important;
    min-height: initial !important;
}
.has-cookie-bar #catapult-cookie-bar {
    pointer-events: initial;
}
#catapult-cookie-bar span {
    display: block;
    margin-top: 6px;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.c_pointer {
    cursor:pointer;
}
.bord_box {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cont_box {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.background-fixed {
    background-attachment: fixed;
}
.hide {
    display: none;
}
.block {
    display: block;
}
.inline_block {
    display: inline-block;
}
.inline {
    display: inline;
}
.inline_flex {
    display: -webkit-inline-flex; /* Safari */
    display: inline-flex;
    align-items: center;
}
.inline_flex.flex_top {
    align-items: start;
}
.inline_flex.flex_bottom {
    align-items: baseline;
}
.inline_flex.central{
    justify-content: center;
}
.inline_flex.dir_row {
    -webkit-flex-direction: row; /* Safari 6.1+ */
    flex-direction: row; 
}
.inline_flex.dir_col {
    -webkit-flex-direction: column; /* Safari 6.1+ */
    flex-direction: column; 
}
.inline_flex.dir_row_reverse {
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    flex-direction: row-reverse; 
}
.inline_flex.dir_col_reverse {
    -webkit-flex-direction: column-reverse; /* Safari 6.1+ */
    flex-direction: column-reverse; 
}

.disp_table {
    display:table;
}
.disp_table_cell {
    display:table-cell;
    vertical-align:middle;
}

.align_left {
    text-align: left;
}
.align_right {
    text-align: right;
}
.align_center {
    text-align: center;
}
.align_middle {
    vertical-align:middle;
}
.align_top {
    vertical-align:top;
}
.align_bottom {
    vertical-align:bottom;
}


.border_bot {
    border-bottom:1px solid;
}
.border_top {
    border-top:1px solid;
}
.border_left {
    border-left:1px solid;
}
.border_right {
    border-right:1px solid;
}
.border_all {
    border: 1px solid;
}
.border_width_3 {
    border-width:3px;
}

.ov_hidden {
    overflow:hidden;
}
.ov_visible {
    overflow:visible !important;
}

img.wh {
    height: 100%!important;
}
img.ww {
    width: 100%!important;
}

.img_container > svg,
.img_container > img {
    position: absolute;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%); */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img_container > svg {
    min-width: 80%;
}

.contain > img {
    max-height:100%;
    max-width:100%;
    height:auto;
    width:auto;
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}


.verticalcenter {
    transform: translateY(-50%); 
   -moz-transform: translateY(-50%); 
   -webkit-transform: translateY(-50%); 
   -ms-transform: translateY(-50%); 
   -o-transform: translateY(-50%); 
   position: absolute; 
   top: 50%;    
}
.horizontalcenter {
    transform: translateX(-50%); 
   -moz-transform: translateX(-50%); 
   -webkit-transform: translateX(-50%); 
   -ms-transform: translateX(-50%); 
   -o-transform: translateX(-50%); 
   position: absolute; 
   left: 50%;    
}


.center_div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    width: auto;
    height: auto;
}
.center_div_right {
    position: absolute;
    top: 50%;
    left:  75%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.center_div_left {
    position: absolute;
    top: 50%;
    left:  25%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.center_div_top {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.center_div_bottom {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

.left_abs {
    position: absolute;
    left: 0;
}
.right_abs {
    position: absolute;
    right: 0;
}
.bottom_abs {
    position: absolute;
    bottom: 0;
}
.top_abs {
    position: absolute;
    top: 0;
}


.left {
    float: left;
}
.clear_left {
    clear:left;
}
.right {
    float: right;
}
.clear_right {
    clear:right;
}


.capitalize {
    text-transform: capitalize;
}
.lowercase {
    text-transform: lowercase;
}
.uppercase {
    text-transform: uppercase;
}
.underline {
    text-decoration:underline;
}

.bg_cover {
    background-position:center center;
    background-size:cover;
    background-repeat: no-repeat;
}
.bg_contain {
    background-position:center center;
    background-size:contain;
    background-repeat: no-repeat;
}



.imgp,
.imgp-90,
.imgp-80,
.imgp-75,
.imgp-70,
.imgp-65,
.imgp-60,
.imgp-50,
.imgp-40,
.imgp-45,
.imgp-30,
.imgp-150 {
    width: 100%;
}
.imgp:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.imgp-90:before {
    content: "";
    display: block;
    padding-top: 90%;
}
.imgp-80:before {
    content: "";
    display: block;
    padding-top: 80%;
}
.imgp-75:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.imgp-70:before {
    content: "";
    display: block;
    padding-top: 70%;
}
.imgp-65:before {
    content: "";
    display: block;
    padding-top: 65%;
}
.imgp-60:before {
    content: "";
    display: block;
    padding-top: 60%;
}
.imgp-50:before {
    content: "";
    display: block;
    padding-top: 50%;
}
.imgp-45:before {
    content: "";
    display: block;
    padding-top: 45%;
}
.imgp-40:before {
    content: "";
    display: block;
    padding-top: 40%;
}
.imgp-30:before {
    content: "";
    display: block;
    padding-top: 30%;
}
.imgp-150:before {
    content: "";
    display: block;
    padding-top: 200px;
}



.z-index-meno {
    z-index: -1;
}
.z-index-9 {
    z-index: 9;
}
.z-index-99 {
    z-index: 99;
}
.z-index-999 {
    z-index: 999;
}
.z-index-9999 {
    z-index: 9999;
}

.transl_z_1 {
    -moz-transform: translateZ(1px);
    -ms-transform: translateZ(1px);
    -o-transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
} 
.transl_z_2 {
    -moz-transform: translateZ(2px);
    -ms-transform: translateZ(2px);
    -o-transform: translateZ(2px);
    -webkit-transform: translateZ(2px);
    transform: translateZ(2px);
} 
.transl_z_10 {
    -moz-transform: translateZ(10px);
    -ms-transform: translateZ(10px);
    -o-transform: translateZ(10px);
    -webkit-transform: translateZ(10px);
    transform: translateZ(10px);
}




button:disabled:after {
    content: url(/images/loading.gif);
    position: absolute;
    left: 50%;
    top: 50%;
    height:24px;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index:8;
}
button:disabled {
    cursor: default !important;
    background-color: #fff !important;
    color: #fff !important;
}
button:disabled:before {
    background-color: #fff !important;
}
button:disabled > span {
    opacity:0;
}
.grecaptcha-badge {
    /*opacity: 0;
    right: -9999999px !important;*/
    z-index: 9;
}
.resp {
    background-position: center top;
    background-size: cover;
    float: left;
    overflow: hidden;
    position: relative;
}
.parallax-window {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-position: 50% 50% !important;
    /* background-attachment: fixed; */
    background-size: cover;
}



/* WIDTH */
.w_auto {
    width: auto;
}

.w_5{
    width:5%;
}
.w_10{
    width:10%;
}
.w_15{
    width:15%;
}
.w_20{
    width:20%;
}
.w_25{
    width:25%;
}
.w_30{
    width:30%;
}
.w_33{
    width:33%;
}
.w_333 {
    width: 33.333333333333333333333333333333%;
	padding-left:10px;
	padding-right:10px;
}
.w_35{
    width:35%;
}
.w_40{
    width:40%;
}
.w_45{
    width:45%;
}
.w_50{
    width:50%;
}
.w_55{
    width:55%;
}
.w_60{
    width:60%;
}
.w_65{
    width:65%;
}
.w_66{
    width:65%;
}
.w_666 {
    width: 66.666666666666666666666666666666%;
}
.w_70{
    width:70%;
}
.w_75{
    width:75%;
}
.w_80{
    width:80%;
}
.w_85{
    width:85%;
}
.w_90{
    width:90%;
}
.w_95{
    width:95%;
}
.w_100{
    width:100%;
}

.w_50p {
    width: 50px;
}
.w_100p {
    width: 100px;
}
.w_150p {
    width: 150px;
}
.w_200p {
    width: 200px;
}
.w_250p {
    width: 250px;
}
.w_300p {
    width: 300px;
}
.w_350p {
    width: 350px;
}
.w_400p {
    width: 400px;
}
.w_450p {
    width: 450px;
}
.w_500p {
    width: 500px;
}
.w_550p {
    width: 550px;
}


/* MAX WIDTH  */
.max_w_5{
    max-width:5%;
}
.max_w_10{
    max-width:10%;
}
.max_w_15{
    max-width:15%;
}
.max_w_20{
    max-width:20%;
}
.max_w_25{
    max-width:25%;
}
.max_w_30{
    max-width:30%;
}
.max_w_33{
    max-width:33%;
}
.max_w_35{
    max-width:35%;
}
.max_w_40{
    max-width:40%;
}
.max_w_45{
    max-width:45%;
}
.max_w_50{
    max-width:50%;
}
.max_w_55{
    max-width:55%;
}
.max_w_60{
    max-width:60%;
}
.max_w_65{
    max-width:65%;
}
.max_w_66{
    max-width:65%;
}
.max_w_70{
    max-width:70%;
}
.max_w_75{
    max-width:75%;
}
.max_w_80{
    max-width:80%;
}
.max_w_85{
    max-width:85%;
}
.max_w_90{
    max-width:90%;
}
.max_w_95{
    max-width:95%;
}
.max_w_100{
    max-width:100%;
}


.max_w_50p {
    max-width: 50px;
}
.max_w_100p {
    max-width: 100px;
}
.max_w_150p {
    max-width: 150px;
}
.max_w_200p {
    max-width: 200px;
}
.max_w_250p {
    max-width: 250px;
}
.max_w_300p {
    max-width: 300px;
}
.max_w_350p {
    max-width: 350px;
}
.max_w_400p {
    max-width: 400px;
}
.max_w_450p {
    max-width: 450px;
}
.max_w_500p {
    max-width: 500px;
}
.max_w_550p {
    max-width: 550px;
}
.max_w_980p {
    max-width: 980px;
}
.max_w_1024p {
    max-width: 1024px;
}




/* HEIGHT */
.h_auto {
    height: auto;
}

.h_5{
    height:5%;
}
.h_10{
    height:10%;
}
.h_15{
    height:15%;
}
.h_20{
    height:20%;
}
.h_25{
    height:25%;
}
.h_30{
    height:30%;
}
.h_33{
    height:33%;
}
.h_35{
    height:35%;
}
.h_40{
    height:40%;
}
.h_45{
    height:45%;
}
.h_50{
    height:50%;
}
.h_55{
    height:55%;
}
.h_60{
    height:60%;
}
.h_65{
    height:65%;
}
.h_66{
    height:65%;
}
.h_70{
    height:70%;
}
.h_75{
    height:75%;
}
.h_80{
    height:80%;
}
.h_85{
    height:85%;
}
.h_90{
    height:90%;
}
.h_95{
    height:95%;
}
.h_100{
    height:100%;
}

.h_50p {
    height: 50px;
}
.h_100p {
    height: 100px;
}
.h_150p {
    height: 150px;
}
.h_200p {
    height: 200px;
}
.h_250p {
    height: 250px;
}
.h_300p {
    height: 300px;
}
.h_350p {
    height: 350px;
}
.h_400p {
    height: 400px;
}
.h_450p {
    height: 450px;
}
.h_500p {
    height: 500px;
}
.h_550p {
    height: 550px;
}

.max_h_50p {
    max-height: 50px;
}
.max_h_100p {
    max-height: 100px;
}
.max_h_150p {
    max-height: 150px;
}
.max_h_200p {
    max-height: 200px;
}
.max_h_250p {
    max-height: 250px;
}
.max_h_300p {
    max-height: 300px;
}
.max_h_350p {
    max-height: 350px;
}
.max_h_400p {
    max-height: 400px;
}
.max_h_450p {
    max-height: 450px;
}
.max_h_500p {
    max-height: 500px;
}
.max_h_550p {
    max-height: 550px;
}


.min_h_1p {
    min-height:1px;
}

.min_h_500 {
    min-height: 500px;
}
.min_h_400 {
    min-height: 400px;
}
.min_h_350 {
    min-height: 350px;
}
.min_h_200 {
    min-height: 200px;
}
.min_h_100 {
    min-height: 100px;
}
.min_h_50 {
    min-height: 50px;
}

.min_h_none {
    min-height: unset !important;
}


/* PADDING */
.p_5 {
    padding: 5px;
}
.p_10 {
    padding: 10px;
}
.p_15 {
    padding: 15px;
}
.p_20 {
    padding: 20px;
}
.p_25 {
    padding: 25px;
}
.p_30 {
    padding: 30px;
}
.p_35 {
    padding: 35px;
}
.p_50 {
    padding: 50px;
}
.p_80 {
    padding: 50px;
}
.p_5_percent {
    padding:5%;
}



.p_top_bottom_10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.p_top_bottom_15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.p_top_bottom_20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.p_top_bottom_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.p_top_bottom_35 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.p_top_bottom_40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.p_top_bottom_50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.p_top_bottom_65 {
    padding-top: 65px;
    padding-bottom: 65px;
}
.p_top_bottom_70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.p_top_bottom_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.p_top_bottom_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.p_top_bottom_150 {
    padding-top: 150px;
    padding-bottom: 120px;
}
.p_top_bottom_200 {
    padding-top: 200px;
    padding-bottom:200px;
}


.p_top_0 {
    padding-top: 0;
}
.p_top_10 {
    padding-top: 10px;
}
.p_top_20 {
    padding-top: 20px;
}
.p_top_25 {
    padding-top: 25px;
}
.p_top_30 {
    padding-top: 30px;
}
.p_top_40 {
    padding-top: 40px;
}
.p_top_50 {
    padding-top: 50px;
}
.p_top_60 {
    padding-top: 60px;
}
.p_top_65 {
    padding-top: 65px;
}
.p_top_70 {
    padding-top: 70px;
}
.p_top_100 {
    padding-top: 100px;
}

.p_bottom_0 {
    padding-bottom: 0;
}
.p_bottom_5 {
    padding-bottom: 5px;
}
.p_bottom_10 {
    padding-bottom: 10px;
}
.p_bottom_20 {
    padding-bottom: 20px;
}
.p_bottom_30 {
    padding-bottom: 30px;
}
.p_bottom_40 {
    padding-bottom: 40px;
}
.p_bottom_50 {
    padding-bottom: 50px;
}
.p_bottom_100 {
    padding-bottom: 100px;
}

.p_left_0 {
    padding-left: 0;
}
.p_left_10 {
    padding-left: 10px;
}
.p_left_20 {
    padding-left: 20px;
}
.p_left_30 {
    padding-left: 30px;
}
.p_left_50 {
    padding-left: 50px;
}
.p_left_100 {
    padding-left: 100px;
}

.p_right_0 {
    padding-right: 0;
}
.p_right_10 {
    padding-right: 10px;
}
.p_right_20 {
    padding-right: 20px;
}
.p_right_30 {
    padding-right: 30px;
}
.p_right_50 {
    padding-right: 50px;
}
.p_right_100 {
    padding-right: 100px;
}


.p_top_0_imp {
    padding-top: 0 !important;
}
.p_bottom_0_imp {
    padding-bottom: 0 !important;
}
.p_left_0_imp {
    padding-left: 0 !important;
}
.p_right_0_imp {
    padding-right: 0 !important;
}


/* MARGIN */

.m_15 {
    margin: 15px;
}
.m_25 {
    margin: 25px;
}
.m_5 {
    margin: 5px;
}
.m_10 {
    margin: 10px;
}
.m_15 {
    margin: 15px;
}
.m_20 {
    margin: 20px;
}
.m_25 {
    margin: 25px;
}
.m_30 {
    margin: 30px;
}
.m_50 {
    margin: 50px;
}
.m_5_percent {
    margin:5%;
}


.m_top_0 {
    margin-top:0px;
}
.m_top_5 {
    margin-top:5px;
}
.m_top_10 {
    margin-top:10px;
}
.m_top_20 {
    margin-top:20px;
}
.m_top_25 {
    margin-top:25px;
}
.m_top_30 {
    margin-top:30px;
}
.m_top_35 {
    margin-top:35px;
}
.m_top_40 {
    margin-top:40px;
}
.m_top_50 {
    margin-top:50px;
}
.m_top_60 {
    margin-top:60px;
}
.m_top_70 {
    margin-top:70px;
}
.m_top_75 {
    margin-top:75px;
}
.m_top_80 {
    margin-top:80px;
}
.m_top_82 {
    margin-top:82px;
}
.m_top_90 {
    margin-top:90px;
}
.m_top_100 {
    margin-top:100px;
}
.m_top_150 {
    margin-top:150px;
}
.m_top_180 {
    margin-top:180px;
}
.m_top_200 {
    margin-top:200px;
}

.m_bottom_0 {
    margin-bottom:0px;
}
.m_bottom_5 {
    margin-bottom:5px;
}
.m_bottom_10 {
    margin-bottom:10px;
}
.m_bottom_20 {
    margin-bottom:20px;
}
.m_bottom_30 {
    margin-bottom:30px;
}
.m_bottom_40 {
    margin-bottom:40px;
}
.m_bottom_50 {
    margin-bottom:50px;
}
.m_bottom_60 {
    margin-bottom:60px;
}
.m_bottom_70 {
    margin-bottom:70px;
}
.m_bottom_80 {
    margin-bottom:80px;
}
.m_bottom_90 {
    margin-bottom:90px;
}
.m_bottom_100 {
    margin-bottom:90px;
}
.m_bottom_150 {
    margin-bottom:150px;
}
.m_bottom_180 {
    margin-bottom:180px;
}
.m_bottom_200 {
    margin-bottom:200px;
}

.m_0_auto {
    margin: 0 auto;
}
.m_auto {
    margin-left: auto;
    margin-right: auto;
}



.m-top-0_imp {
    margin-top:0px !important;
}
.m-bottom-0_imp {
    margin-bottom:0px !important;
}


/*lightcase
@media screen and (min-width: 641px) {
    a[class*='lightcase-icon-'].lightcase-icon-close {
        bottom: 15px !important;
        top: auto !important;
    }
}*/
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
/*html {
	font-size:62.5%;
}*/
@font-face {
    font-family: 'Handel';
    src: url('/wp-content/themes/volta/fonts/handel.ttf');
}
h1.tp-caption{font-family: Handel;}
body, input, textarea {
    font-family: 'poppins', Helvetica, Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
	outline:none;
}
body {
/*	color: #293448;*/
    font-size: 15px;
    width: 100%;
    overflow-x: hidden;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
/*img {
	max-width:100%;
	vertical-align:bottom;
}*/
a {
	text-decoration:none;
}
a.inline_block {
	background-color: #009a42;
    color: #fff;
    padding: 18px 23px 12px;
    display: inline-block;
	border-radius: 30px;
	border: 1px solid #009a42;
	text-decoration:none;
    font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}
a.inline_block:hover {
	background-color: #fff;
    color: #009a42;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid rgba(105, 191, 68, 0.38);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
}

h1 {
	font-weight: bold;
    font-size: 55px;
    line-height: 60px;
}
h2 {    
	font-size: 35px;
    line-height: 35px;
}
h3 {
    font-size: 24px;
    line-height: 28px;
}
h4 {
    font-size: 20px;
}
h3 b {
	display: block;
}
.big{
	font-size: 50px;
	line-height: 53px;
}
.font_150 {
    font-size: 150%;
}
.medium-big{
	font-size: 40px;
    line-height: 45px;
}
.medium-big h3 {
    font-size: 35px;
    line-height: 37px;
}
.medium-big h4 {
    font-size: 30px;
    line-height: 32px;
}
.medium-big p {
    font-size: 25px;
    line-height: 26px;
}

.text p {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
	margin-bottom: 10px;
    line-height: 27px;
}
.colonne > .w_333 .text.text-colonne p {
    font-size: 15px;
    line-height: 25px;
}
.banner p {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 22px;
}
.text h3 {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
	font-weight: bold;
    font-size: 23px;
    padding-bottom: 16px;
    padding-top: 16px;
}
.text h4 { 
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
    margin-bottom: 10px;
    line-height: 25px;
}
.text h5 {
    font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
	line-height: 20px;
	margin-bottom: 5px;
}

.font_1 {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
}
.font_2 {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
}

.nobold {
    font-weight: 300;
}
input, textarea {
    line-height: 33px;
    border-radius: 10px;
    padding: 0 15px;
    display: block;
    margin: 0 auto !important;
    width: 100%;
    max-width: 500px;
    font-size: 18px;
    padding-top: 5px;
}
input:not(.wpcf7-submit), textarea {
	border: none !important;
}
textarea {
	min-width: 180px;
	height: 200px;
}
input[type="checkbox"], input[type="radio"] {
    display: inline-block;
    width: auto;
    margin-right: 5px !important;
    /*vertical-align: text-top;*/
}
.tablepress tfoot th, .tablepress thead th {
    background-color: rgba(242, 174, 0, 0.32) !important;
}
div#piano .p_35 {
    padding: 0 20px;
    margin: 0 -2px;
}
div#piano .p_35:nth-child(2n+2){
    padding-right: 0;
}
div#piano .p_35:nth-child(2n+1){
    padding-left: 0;
}
@media (max-width:650px){

    div#piano {        
        -ms-flex-direction: column;
        flex-direction: column;
    }
    div#piano .p_35 {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}
@media (max-width:580px){
    .flex_portmax_column {
        -ms-flex-direction: column-reverse;
        flex-direction: column;
    }
    .flex_portmax_column .w_50{
        width: 100%;
    }
}
@media (max-width: 1200px) and (min-width: 800.5px) {
    .flex_portmax_column {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .flex_portmax_column .w_50 {
        width: 100%;
    }
    .section_form .w_60 {
        width: 50%;
    }
    .section_form .w_40 {
        width: 50%;
    }
}
.cta a {
    padding: 18px 23px 12px;
    display: inline-block;
    background: #e8b00c;
    border-radius: 30px;
	color: #fff;
	border: 2px solid #e8b00c;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
	font-weight: bold;
    line-height: 20px;
}
.cta a:hover {
	background: #fff;
	color: #e8b00c;
}
.banner_textes .cta a {
    margin-right: 15px;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
#nav-button {
    width: 35px;
    height: 40px;
    position: relative;
    float: right;
    margin-right: 30px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
#nav-button span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #2e2e2e;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-button span:nth-child(1) {
  top: 10px;
}
#nav-button span:nth-child(2) {
  top: 19px;
}
#nav-button span:nth-child(3) {
  top: 28px;
}

#nav-button.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
#nav-button.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#nav-button.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* wrapper */
.wrapper {
	width: 100%;
    margin: 0 auto;
	position: relative;
	padding-top: 80px
}
.banner_cont {
	margin-top: -80px;
    position: relative;
}
/* header */
.header {
    width: 100%;
    position: relative;
    display: block;
    position: fixed;
    top: 0;
    z-index: 999;
    height: 80px;
}
/* .header:before {
    position: absolute;
    width: 100%;
    content: "";
    height: 0;
    background: rgba(255,255,255,0.7);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.menu_open .header:before {
	height: 100%;
} 
.page_scrolled .header:before {
	height:100%;
}
*/
/* logo */
.logo {
    width: 350px;
    display: inline-block;
    position: relative;
    text-align: center;
    margin-left: 15px;
    max-width: 70%;
    top: 50%;
    transform: translateY(-50%);
}
/*.logo > a {	
    position: relative;
    display: block;
    height: 100%;
}*/
.logo-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: relative;
    margin: 4px auto;
}
/* nav */
.nav {
	
	z-index: 99;
	-webkit-transform: translateZ(10px);
	-ms-transform: translateZ(10px);
	-moz-transform: translateZ(10px);
	-o-transform: translateZ(10px);
    transform: translateZ(10px);
    position: relative;
    display: block;
    max-height: 0;
    overflow: hidden;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;

	/* position: fixed;
    left: 50%;
    top: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
	width: 250px;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
    -moz-transform: translate(-50%,-250%);
    -ms-transform: translate(-50%,-250%);
    -o-transform: translate(-50%,-250%);
    -webkit-transform: translate(-50%,-250%);
    transform: translate(-50%,-250%); */
}
.menu_open .nav {
    max-height: 50vh;
}
.nav li a {
	color: #2e2e2e;
	text-transform: uppercase;
	-ms-touch-action: none;
	touch-action: none;
	pointer-events: none;	
    font-size: 16px;
    font-weight: 800;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
} 
.nav li a:hover {
    color: #2e2e2e;
	border-bottom: 2px solid;
}
.nav li.current-menu-item a {
    color: #2e2e2e;
	border-bottom: 2px solid;
}
.nav li.menu-item:first-child {
	border: none;
}
.nav li.menu-item:last-child a {
	background-color: #42abd5;
	color: #fff;
	padding: 0px 20px;
	display: inline-block;
	border-radius: 30px;
	border: 1px solid #42abd5;
	text-decoration: none;
	font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	margin-top: 10px;
}
.nav li.menu-item:last-child a:hover {
    background-color: #fff;
    color: #42abd5;
}

.nav ul {
	margin: 0 !important;
	padding-top: 20px;
}
nav.nav li  {
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in, transform 0.5s ease-in;
	-moz-transition: opacity 0.2s ease-in, transform 0.5s ease-in;
	transition: opacity 0.2s ease-in, transform 0.5s ease-in;
	text-align: center;
	line-height: 35px;
}

.menu_open nav.nav li  {
	opacity: 1;
	-webkit-transition: opacity 0.5s ease-in 0.3s, transform 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in 0.3s, transform 0.5s ease-in;
	transition: opacity 0.5s ease-in 0.3s, transform 0.5s ease-in;
	
}

.menu_open nav.nav li a {
	-ms-touch-action: initial;
	touch-action: initial;
	pointer-events: initial;
}


.icon-scroll, .icon-scroll:before {
    position: absolute;
    left: 50%;
}
.icon-scroll {
	width: 20px;
	height: 35px;
	margin-left: -10px;
	position: absolute;
	bottom: 20px;
	margin-top: -35px;
	box-shadow: inset 0 0 0 3px #2e2e2e;
	border-radius: 25px;
	z-index: 99;
 }
.icon-scroll:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #2e2e2e;
    margin-left: -2px;
    top: 4px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  -webkit-transform: translateY(23px);
	  transform: translateY(23px);
	}
  }
  
  @keyframes scroll {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  -webkit-transform: translateY(23px);
	  transform: translateY(23px);
	}
  }
  
  

/* sidebar */
.sidebar {

}
/* footer */
.footer {

}
svg {
    max-width: 100%;
    max-height: 100%;
}
ul {
	list-style: none;
}
.text ul {
	list-style: disc;
}
.text ul li {
	list-style-position: inside;
}



.bg_black {
	background: #2e2e2e;
	color: #fff;
}
.c_black {
	color: #2e2e2e;
}
.bg_blue {
	background: #42abd5;
	color: #fff;
}
.c_blue {
	color: #42abd5;
}
.bg_yellow {
	background: #edb72f;
	color: #2e2e2e;
}
.c_yellow {
	color: #edb72f;
}
/* 
li {
    display: block;
    position: relative;
} */

blockquote p {
	font-style: italic;
	font-size: 28px;
	display: inline;
}
blockquote::before {
    content: '“';
    text-align: left;
    display: inline;
    font-size: 30px;
    line-height: 28px;
    padding-right: 3px;
}
blockquote::after {
    content: '”';
    text-align: right;
    display: inline;
    font-size: 30px;
    padding-left: 6px;
    line-height: 28px;
}
time {
    color: #42abd5;
    font-weight: 800;
    font-size: 16px;
}

.top_bar {
	position: absolute;
    right: 33px;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
	
    z-index: 999;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
}
.c_red {
    color: #e90031;
}
.top_bar a {
    color: #000000;
	margin: 0 10px;
    text-transform: uppercase;
}
.top_bar a.contatti {
    display: block;
    position: relative;
    /*line-height: 4;*/
    padding: 12px 0 5px;
}/*
.top_bar a.contatti:before {
	content: url(img/user_icon.svg);
    display: inline-block;
    width: 25px;
    margin-right: 10px;
    vertical-align: middle;
}*/
div#logo_cont {
    max-width: 300px;
    width: 15%;
    position: relative;
    min-width: 200px;
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}
div#logo_cont img {
	max-width: 100%; max-height: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
}
p.copyright, .text_privacy {
	margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
}
footer {
    background: #ededed;
}
footer a {
    color: #999999;
    /*font-weight: 800;*/
    text-decoration: underline;
}
footer h4 {
	color: #c6c6c5;
    padding-top: 10px;
    padding-bottom: 10px;
}
footer .text {
    font-size: 12px;
	padding-top: 10px;
}

/*------------------------------------*\
    SECTIONS
\*------------------------------------*/
#post-404 h2 > a {
    color: #13283b;
}

/* #banner_slider .img_container > img {
    height: auto;
    width: auto;
} */
.homebanner {
    min-height: 450px;
}
.h_100vh {
    max-height: calc(100vh - 81px);
}
.homebanner h2.slider_title {
    font-size: calc(25px + 1.5vw);
    line-height: 115%;
}
.swiper-slide-icone {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    margin: 0 -2px 20px;
}
.liceoaeronautico .w_50 table,
.liceosportivo .w_50 table, 
.liceoinformatico .w_50 table, 
.dataTables_scrollHeadInner, .dataTables_scrollFootInner {
    min-width: 100%;
}

.check_list a {
    text-decoration: underline;
    color: #293448;
}

@media (max-width: 980px){

    .homebanner h2.slider_title {
        font-size: calc(25px + 0.5vw);
    }
    .swiper-slide-icone {
        width: 50%;
        margin: 0 -2px 30px;
    } 
    .swiper-slide-icone:nth-child(2n+1) {
        clear: left;
    }
}


@media (min-width: 800.5px){
    .liceoaeronautico .bg_gray.min-h-480,
    .liceosportivo .bg_gray.min-h-480,
    .liceoinformatico .bg_gray.min-h-480 {
        display: table;
        position: relative;
        vertical-align: middle;
    }
    .liceoaeronautico .bg_gray.min-h-480 > .w_50,
    .liceosportivo .bg_gray.min-h-480 > .w_50,
    .liceoinformatico .bg_gray.min-h-480 > .w_50 {
        display: table-cell;
        position: relative;
        float: none;
        vertical-align: middle;
    }
    .liceoaeronautico .container_slider_fullheight:before,
    .liceosportivo .container_slider_fullheight:before,
    .liceoinformatico .container_slider_fullheight:before {
        content: "";
        padding-top: 65%;
        display: block;
    }
    .page-template-page-landing .text-colonne {
        padding-right: 12px;
    }
}

@media (max-width: 780px) {

    .liceoaeronautico div#piano,
    .liceosportivo div#piano,
    .liceoinformatico div#piano{ 
        display: block;
    }
    .liceoaeronautico div#piano .p_35,
    .liceosportivo div#piano .p_35,
    .liceoinformatico div#piano .p_35 {
        width: 100%;
        padding: 10px 0;
    }


}

@media (max-width: 480px){

    .swiper-slide-icone {
        width: 100%;
        display: block;
        margin: 0 auto 30px;
        max-width: 300px;
    } 
    .homebanner h2.slider_title {
        font-size: calc(20px + 0.5vw);
        width: 55%;
    }
}

/* BANNER TESTI */
.banner_textes {
	margin-left: 5%;    
}
.this { 
	background-position: bottom right;
	background-repeat: no-repeat;
    background-size: contain;
}


/* SLIDER ICONE*/
.image_cent {
    margin: 0 auto;
    height: 180px;
    position: relative;
	display: -webkit-flex;
	display: flex;
    max-width: 60%;
    align-items: flex-end;
    margin-bottom: 20px;
    justify-content: center;
}
.image_cent img,
.image_png img {
    max-width: 100%;
}
.text-icone p {
    font-size: 17px;
}


/* IMMAGINE + ELENCO */
.full_abs {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.check_list ul {
	margin: 0;
}
.check_list li {
    vertical-align: middle;
    display: block;
    padding: 15px 0 8px 35px;
    position: relative;
	line-height: 25px;
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
    font-size: 20px;
}
.check_list li:before {
    content: "";
    pointer-events: none;
    top: 0;
    left: 0;
    bottom: 0;
    width: 25px;
    background-repeat: no-repeat;
    position: absolute;
    background-image: url(img/tick.png);
    background-size: contain;
    background-position: center center;
}
img.inline {
    height: 100%;
    vertical-align: bottom;
    margin: 0 0 0 10px;
}

.container_slider_fullheight {
	position: absolute;
}



/* FORM + TESTI */
.b_radius_30 {
	border-radius: 30px;
}
div.wpcf7 .ajax-loader {
    border: none;
    margin: 0;
    position: absolute;
    top: 10px;
    left: 50%;
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
span.wpcf7-not-valid-tip {
    text-shadow: 0px 0px 10px #fff;
	margin-top: 7px;
}
.wpcf7-form p {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}
input.wpcf7-submit {
	font-family: 'poppins', Helvetica, Arial, 'Open Sans', sans-serif;
	font-weight: bold;
    padding: 3px 20px 0;
	margin-top: 20px !important;
	border: 1px solid;
	text-decoration:none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;	
    white-space: unset;
}
.m_top-20 {
	margin-top: -20px;
}
.form label {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    padding-top: 5px;
}



/* FASCIA DIVISORIA ICONA+TESTO */
.inline_icon {
	margin-right: 25px;
}
.inline_icon img {
	display: block;
}



/* IMMAGINE/GALLERIA CONTAIN + TESTI CUSTOM */
.text.custom p {
	font-size: 17px;
	line-height: 20px;
}

.swiper-button-next, .swiper-button-prev {
    width: 18px;
	height: 35px;
	background-image: none !important; 
}
.semifull_abs {
    position: absolute !important;
    left: 5%;
    right: 5%;
    bottom: 5%;
    top: 5%;
}
/*
.content-area{margin-top:70px;}
 TESTI IN COLONNE */
@media screen and (min-width: 1201px){
	.colonne > .w_25:nth-child(4n+1){
		clear: left;
	}
	.colonne > .w_50:nth-child(odd){
		clear: left;
	}
	.colonne > .w_333:nth-child(3n+1){
		clear: left;
	}
}

.icon_colonne {
	margin-right: 10px;
}
.text-colonne {
	
}

a.ctcc-more-info-link {
    text-decoration: underline;
}

.w_50 table{width: 100%;}
	.min-h-480{min-height: 480px;}
	iframe{height:330px;}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/


@media (max-width: 1200px) and (min-width: 801px){

	.colonne > .w_pad_333:nth-child(3n){
		clear:left;
	}
	.colonne > .w_pad_50:nth-child(odd){
		clear:left;
	}
    .this {
        padding-bottom: 100px;
        background-size: 50% auto;
    }
}

@media (max-width: 1150px){
    h1 {
        font-size: 48px;
        line-height: 54px;
    }

}

@media (max-width: 800px) and (min-width: 460px){
	
	.colonne > .w_pad_port_333:nth-child(3n){
		clear:left;
	}
	.colonne > .w_pad_port_50:nth-child(odd){
		clear:left;
	}
	.colonne > .w_pad_port_100 {
		clear:left;
	}
}

@media (max-width: 850px){
	
}

@media (max-width: 800px){
	.w_100.this {
		padding-bottom: 200px;
		background-size: auto 300px;
	}
	.container_slider_fullheight {
		position: relative;
	}
    .container_slider_fullheight .full_abs {
        position: relative !important;
    }
    .container_slider_fullheight .img_container:before {
        content: "";
        display: block;
        padding-top: 65%;
        width: 100%;
    }
	h1 {
		font-size: 45px;
		line-height: 50px;
	}
	h2 {
		font-size: 28px;
		line-height: 32px;
	}
	.big {
		font-size: 36px;
		line-height: 42px;
	}
	.medium-big {
		font-size: 32px;
		line-height: 35px;
	}
	.medium-big h3 {
		font-size: 24px;
		line-height: 28px;
	}
	.medium-big p {
		font-size: 20px;
		line-height: 22px;
	}
}

@media (max-width: 700px){
	
}

@media (max-width: 640px){
	.top_bar {
		display: none;
	}
	#logo_cont, p.copyright, .text_privacy {
		padding: 10px 0;
		display: block;
		margin: 0 auto;
	}
}

@media (max-width: 530px){
	
	.nav ul {
		padding-top: 40px;
	}	
    .banner h2 {
        font-size: 25px;
        line-height: 28px;
    }
    .this h1 {
        font-size: 26px;
        line-height: 38px;
    }
    .cta > img {
        position: absolute;
        -o-transform: rotate(90deg) translate(125%,-50%);
        -ms-transform: rotate(90deg) translate(125%,-50%);
        -moz-transform: rotate(90deg) translate(125%,-50%);
        -webkit-transform: rotate(90deg) translate(125%,-50%);
        transform: rotate(90deg) translate(125%,-50%);
    }
}

@media (max-width: 480px){
	
	.banner_textes.p_top_70 {
		padding-top: 20px;
	}
	div#form.p_35,
	div#form .p_35 {
		padding: 15px;
	}
	
}

@media (max-width: 460px){
	
	.colonne > .w_phone_100 {
		clear:left;
	}
	.colonne > .w_pad_port_100 {
		clear:left;
	}
}

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

	input.wpcf7-submit {
		width: auto;
	}

}
@media only screen and (min-width:768px) {
	
}
@media only screen and (min-width:801px) {
	
	
}
@media only screen and (min-width:1024px) {
	.nav li.menu-item {
		display: inline-block;
		margin: 0 25px;
		opacity: 1;
	}
	.nav li.menu-item a {
		-ms-touch-action: initial;
		touch-action: initial;
		pointer-events: auto;
	}
	.nav {
		max-height: initial;
		display: inline;
		float: right;
	}
	nav.nav ul {
		display: inline-block;
		padding-top: 8px;
	}
	#nav-button {
		display: none;
	}

	.nav li.menu-item:last-child a {
		margin-top: 0px;
	}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (min-width:1400px) {


    body {
        font-size: 18px;
        line-height: 21px;
    }


    h1 {
        font-size: 72px;
        line-height: 82px;
    }
    h2 {
        font-size: 40px;
        line-height: 44px;
    }
    h3 {
        font-size: 28px;
        line-height: 32px;
    }
    h4 {
        font-size: 25px;
    }
    .big {
        font-size: 65px;
        line-height: 70px;
    }
    .medium-big {        
        font-size: 42px;
        line-height: 48px;
    }
    .medium-big h3 {
        font-size: 40px;
        line-height: 46px;
    }
    .medium-big p {
        font-size: 26px;
        line-height: 28px;
    }

    .cta a {
        line-height: 22px;
        font-size: 18px;
    }

    .banner p {
        font-size: 25px;
        line-height: 32px;
    }
    .text h3 {
        font-size: 25px;
    }
    .text h4 {
        margin-bottom: 15px;
    	line-height: 28px;
    }
    .text h5 {
        font-size: 22px;
        line-height: 28px;
    }
    .text.custom p {
        font-size: 20px;
        line-height: 24px;
    }
    .m_bottom_10 {
        margin-bottom: 20px;
    }

    .check_list li {
        line-height: 30px;
        font-size: 24px;
    }
    h1.m_top_20.m_bottom_20 {
        margin: 40px 10% 40px 0;
    }
	
}

@media (max-width: 1500px) and (min-width: 1400px){
    h1 {
        font-size: 65px;
        line-height: 70px;
    }
}
@media (min-width:650px) and (max-width: 800px){
    .w_100.this {
        background-size: 50% auto;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:rgba(242, 174, 0, 0.3);
	/*color:#FFF;*/
	text-shadow:none;
}
::-webkit-selection {
	background:rgba(242, 174, 0, 0.3);
	/*color:#FFF;*/
	text-shadow:none;
}
::-moz-selection {
	background:rgba(242, 174, 0, 0.3);
	/*color:#FFF;*/
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    RESPONSIVE ENRICO
\*------------------------------------*/

/* PAD ORIZZONTALE*/
@media screen and (max-width: 1200px){
	.w_pad_10 {
		width: 10%;
	}
	.w_pad_20 {
		width: 20%;
	}
	.w_pad_30 {
		width: 30%;
	}
	.w_pad_33 {
		width: 33%;
	}
	.w_pad_333 {
		width: 33.333333333%;
	}
	.w_pad_40 {
		width: 40%;
	}
	.w_pad_50 {
		width: 50%;
	}
	.w_pad_60 {
		width: 60%;
	}
	.w_pad_66 {
		width: 66%;
	}
	.w_pad_60 {
		width: 66.666666666%;
	}
	.w_pad_70 {
		width: 70%;
	}
	.w_pad_80 {
		width: 80%;
	}
	.w_pad_90 {
		width: 90%;
	}
	.w_pad_100 {
		width: 100%;
	}
	.inline_flex.flex_pad_column {
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* PAD VERTICALE */
@media screen and (max-width: 800px){
	.w_pad_port_10 {
		width: 10%;
	}
	.w_pad_port_20 {
		width: 20%;
	}
	.w_pad_port_30 {
		width: 30%;
	}
	.w_pad_port_33 {
		width: 33%;
	}
	.w_pad_port_333 {
		width: 33.333333333%;
	}
	.w_pad_port_40 {
		width: 40%;
	}
	.w_pad_port_50 {
		width: 50%;
	}
	.w_pad_port_60 {
		width: 60%;
	}
	.w_pad_port_66 {
		width: 66%;
	}
	.w_pad_port_60 {
		width: 66.666666666%;
	}
	.w_pad_port_70 {
		width: 70%;
	}
	.w_pad_port_80 {
		width: 80%;
	}
	.w_pad_port_90 {
		width: 90%;
	}
	.w_pad_port_100 {
		width: 100%;
	}
	.inline_flex.flex_pad_port_column {
		-ms-flex-direction: column;
		flex-direction: column;
	}
}


/* PHONE */
@media screen and (max-width: 460px){
	.w_phone_10 {
		width: 10%;
	}
	.w_phone_20 {
		width: 20%;
	}
	.w_phone_30 {
		width: 30%;
	}
	.w_phone_33 {
		width: 33%;
	}
	.w_phone_333 {
		width: 33.333333333%;
	}
	.w_phone_40 {
		width: 40%;
	}
	.w_phone_50 {
		width: 50%;
	}
	.w_phone_60 {
		width: 60%;
	}
	.w_phone_66 {
		width: 66%;
	}
	.w_phone_60 {
		width: 66.666666666%;
	}
	.w_phone_70 {
		width: 70%;
	}
	.w_phone_80 {
		width: 80%;
	}
	.w_phone_90 {
		width: 90%;
	}
	.w_phone_100 {
		width: 100%;
	}
	.inline_flex.flex_phone_column {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.no_float_phone {
		float: none;
	}
}





/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
