/*!
Theme Name: iFdP-WebTheme
Theme URI: https://www.ilfestivaldellapeste.com
Author: Nuño de la Serna
Author URI: http://action-io.com/ 
Description: Custom theme for the 'Festival della Peste' 2023
Version: 0.1.7
Text Domain: iFdP-WebTheme
 */
:root{
    --main-bg-color:#fef5e4;
    --text-color:#000;
    --brand-color:red;
    --secondary-color:#79b27f;
    --logo-width:250px;
    --logo-mobile-width:45%;
    --page-dektop-padding:40px;
    --page-mobile-padding:15px;
  	--page-footer-height: 330px;
    --container-max-width-page:1100px;
    --container-max-width-project:1500px
}
*{
    background-color:transparent;
    border:0;
    box-sizing:border-box;
    font:inherit;
    margin:0;
    padding:0
}
html{
    background-color:#fff;
    font-size:100%;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
    text-rendering:optimizeLegibility;
    -webkit-tap-highlight-color:rgba(0,0,0,0)
}
button,input,select,textarea{
    color:inherit;
    display:inline-block
}
button[disabled],input[disabled],select[disabled],textarea[disabled]{
    cursor:not-allowed
}
button{
    cursor:pointer
}
table{
    border-collapse:collapse;
    border-spacing:0
}
table td,table th{
    text-align:left
}
@media only screen and (min-width:1025px){
    .visible-lg{
        display:block!important
    }
}
@media only screen and (min-width:1025px){
    .hidden-lg{
        display:none!important
    }
}
@media only screen and (min-width:769px)and (max-width:1024px){
    .visible-md{
        display:block!important
    }
}
@media only screen and (min-width:769px)and (max-width:1024px){
    .hidden-md{
        display:none!important
    }
}
@media only screen and (min-width:481px)and (max-width:768px){
    .visible-sm{
        display:block!important
    }
}
@media only screen and (min-width:481px)and (max-width:768px){
    .hidden-sm{
        display:none!important
    }
}
@media only screen and (max-width:480px){
    .visible-xs{
        display:block!important
    }
}
@media only screen and (max-width:480px){
    .hidden-xs{
        display:none!important
    }
}
.alignleft,.float-left{
    float:left
}
img .alignleft,img .float-left{
    margin-right:30px
}
.alignright,.float-right{
    float:right
}
img .alignright,img .float-right{
    margin-left:30px
}
.aligncenter,.float-center{
    display:block;
    margin-left:auto;
    margin-right:auto
}
img .aligncenter,img .float-center{
    margin-bottom:30px
}
.clearfix:after,.clearfix:before{
    content:" ";
    display:table
}
.clearfix:after{
    clear:both
}
.align-text-left{
    text-align:left
}
.align-text-right{
    text-align:right
}
.align-text-center{
    text-align:center
}
.visible-on-mobile{
    display:none!important
}
@media screen and (max-width:768px){
    .visible-on-mobile{
        display:block!important
    }
}
.visible-on-tablet{
    display:none!important
}
@media screen and (max-width:1024px){
    .visible-on-tablet{
        display:block!important
    }
}
@media screen and (max-width:768px){
    .visible-on-tablet{
        display:none!important
    }
}
@media screen and (max-width:1024px){
    .visible-on-desktop{
        display:none!important
    }
}
.no-break br{
    display:none
}
.padding-top-xs{
    padding-top:5px
}
.padding-top-sm{
    padding-top:10px
}
.padding-top-md{
    padding-top:15px
}
.padding-top-l{
    padding-top:20px
}
.padding-top-xl{
    padding-top:25px
}
html{
    position:relative;
    min-height:100%
}
body,html{
    background-color:var(--main-bg-color)
}
body{
    color:var(--text-color);
    font-family:mrseaves, Times, "Times New Roman", "serif";
    line-height:1.5;
    -webkit-text-size-adjust:none;
    -moz-text-size-adjust:none;
    text-size-adjust:none;
    font-size:20px;
    font-size:1.25rem
}
/* body.home:not(.page) */
nav.footer-home-menu .nav,dl,h1,h2,h3,h4,h5,h6,hr,ol,p,ul{
    margin-bottom:30px
}
/* body.home:not(.page) */
nav.footer-home-menu .nav:last-child,dl:last-child,h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child,hr:last-child,ol:last-child,p:last-child,ul:last-child{
    margin-bottom:0
}
a{
    color:var(--brand-color);
    text-decoration:none
}
a:hover{
    color:var(--text-color);
    text-decoration:underline
}
a[href^=tel]{
    font-size:inherit;
    font-family:inherit;
    color:inherit;
    text-decoration:none;
    font-style:inherit
}
hr{
    height:1px;
    background-color:var(--text-color)
}
.grid{
    display:grid;
    grid-gap:30px
}
@media screen and (max-width:768px){
    .grid{
        grid-gap:15px
    }
}
@media only screen and (min-width:1025px){
    .grid.grid--lg-1x{
        grid-template-columns:repeat(1,minmax(0,1fr))
    }
    .grid.grid--lg-2x{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .grid.grid--lg-3x{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .grid.grid--lg-4x{
        grid-template-columns:repeat(4,minmax(0,1fr))
    }
    .grid.grid--lg-5x{
        grid-template-columns:repeat(5,minmax(0,1fr))
    }
    .grid.grid--lg-6x{
        grid-template-columns:repeat(6,minmax(0,1fr))
    }
}
@media only screen and (min-width:769px)and (max-width:1024px){
    .grid.grid--md-1x{
        grid-template-columns:repeat(1,minmax(0,1fr))
    }
    .grid.grid--md-2x{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .grid.grid--md-3x{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .grid.grid--md-4x{
        grid-template-columns:repeat(4,minmax(0,1fr))
    }
    .grid.grid--md-5x{
        grid-template-columns:repeat(5,minmax(0,1fr))
    }
    .grid.grid--md-6x{
        grid-template-columns:repeat(6,minmax(0,1fr))
    }
}
@media only screen and (min-width:481px)and (max-width:768px){
    .grid.grid--sm-1x{
        grid-template-columns:repeat(1,minmax(0,1fr))
    }
    .grid.grid--sm-2x{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .grid.grid--sm-3x{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .grid.grid--sm-4x{
        grid-template-columns:repeat(4,minmax(0,1fr))
    }
    .grid.grid--sm-5x{
        grid-template-columns:repeat(5,minmax(0,1fr))
    }
    .grid.grid--sm-6x{
        grid-template-columns:repeat(6,minmax(0,1fr))
    }
}
@media only screen and (max-width:480px){
    .grid.grid--xs-1x{
        grid-template-columns:repeat(1,minmax(0,1fr))
    }
    .grid.grid--xs-2x{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .grid.grid--xs-3x{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .grid.grid--xs-4x{
        grid-template-columns:repeat(4,minmax(0,1fr))
    }
    .grid.grid--xs-5x{
        grid-template-columns:repeat(5,minmax(0,1fr))
    }
    .grid.grid--xs-6x{
        grid-template-columns:repeat(6,minmax(0,1fr))
    }
}
@font-face{
    font-family:gobold;
    font-style:normal;
    font-weight:100;
    font-display:swap;
    src:url(fonts/gobold_light-webfont.ttf) format("truetype"),url(fonts/gobold_light-webfont.eot) format("opentype"),url(fonts/gobold_light-webfont.woff) format("woff"),url(fonts/gobold_light-webfont.svg) format("svg")
}
@font-face{
    font-family:mrseaves;
    font-style:normal;
    font-weight:700;
    font-display:swap;
    src:url(fonts/mrseavesbold-webfont.woff2) format("woff2"),url(fonts/mrseavesbold-webfont.woff) format("woff")
}
@font-face{
    font-family:mrseaves;
    font-style:italic;
    font-weight:400;
    font-display:swap;
    src:url(fonts/mrseavesitalic-webfont.woff2) format("woff2"),url(fonts/mrseavesitalic-webfont.woff) format("woff")
}
@font-face{
    font-family:mrseaves;
    font-style:normal;
    font-weight:400;
    font-display:swap;
    src:url(fonts/mrseavesroman-webfont.woff2) format("woff2"),url(fonts/mrseavesroman-webfont.woff) format("woff")
}
/*! * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */
@font-face{
    font-family:Font Awesome\ 5 Free;
    font-style:normal;
    font-weight:400;
    src:url(fonts/fa-regular-400.eot);
    src:url(fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(fonts/fa-regular-400.woff2) format("woff2"),url(fonts/fa-regular-400.woff) format("woff"),url(fonts/fa-regular-400.ttf) format("truetype"),url(fonts/fa-regular-400.svg#fontawesome) format("svg")
}
.far{
    font-family:Font Awesome\ 5 Free;
    font-weight:400
}
/*! * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */
@font-face{
    font-family:Font Awesome\ 5 Brands;
    font-style:normal;
    font-weight:400;
    src:url(fonts/fa-brands-400.eot);
    src:url(fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(fonts/fa-brands-400.woff2) format("woff2"),url(fonts/fa-brands-400.woff) format("woff"),url(fonts/fa-brands-400.ttf) format("truetype"),url(fonts/fa-brands-400.svg#fontawesome) format("svg")
}
.fab{
    font-family:Font Awesome\ 5 Brands
}
/*! * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */
@font-face{
    font-family:Font Awesome\ 5 Free;
    font-style:normal;
    font-weight:900;
    src:url(fonts/fa-solid-900.eot);
    src:url(fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(fonts/fa-solid-900.woff2) format("woff2"),url(fonts/fa-solid-900.woff) format("woff"),url(fonts/fa-solid-900.ttf) format("truetype"),url(fonts/fa-solid-900.svg#fontawesome) format("svg")
}
.fa,.fas{
    font-family:Font Awesome\ 5 Free;
    font-weight:900
}
/*! * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */
.fa,.fab,.fal,.far,.fas{
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    display:inline-block;
    font-style:normal;
    font-variant:normal;
    text-rendering:auto;
    line-height:1
}
.fa-lg{
    font-size:1.3333333333em;
    line-height:.75em;
    vertical-align:-.0667em
}
.fa-xs{
    font-size:.75em
}
.fa-sm{
    font-size:.875em
}
.fa-1x{
    font-size:1em
}
.fa-2x{
    font-size:2em
}
.fa-3x{
    font-size:3em
}
.fa-4x{
    font-size:4em
}
.fa-5x{
    font-size:5em
}
.fa-6x{
    font-size:6em
}
.fa-7x{
    font-size:7em
}
.fa-8x{
    font-size:8em
}
.fa-9x{
    font-size:9em
}
.fa-10x{
    font-size:10em
}
.fa-fw{
    text-align:center;
    width:1.25em
}
.fa-ul{
    list-style-type:none;
    margin-left:2.5em;
    padding-left:0
}
.fa-ul>li{
    position:relative
}
.fa-li{
    left:-2em;
    position:absolute;
    text-align:center;
    width:2em;
    line-height:inherit
}
.fa-border{
    border:.08em solid #eee;
    border-radius:.1em;
    padding:.2em .25em .15em
}
.fa-pull-left{
    float:left
}
.fa-pull-right{
    float:right
}
.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{
    margin-right:.3em
}
.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{
    margin-left:.3em
}
.fa-spin{
    -webkit-animation:a 2s infinite linear;
    animation:a 2s infinite linear
}
.fa-pulse{
    -webkit-animation:a 1s infinite steps(8);
    animation:a 1s infinite steps(8)
}
@-webkit-keyframes a{
    0%{
        transform:rotate(0deg)
    }
    to{
        transform:rotate(1turn)
    }
}
@keyframes a{
    0%{
        transform:rotate(0deg)
    }
    to{
        transform:rotate(1turn)
    }
}
.fa-rotate-90{
    -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform:rotate(90deg)
}
.fa-rotate-180{
    -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform:rotate(180deg)
}
.fa-rotate-270{
    -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform:rotate(270deg)
}
.fa-flip-horizontal{
    -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform:scaleX(-1)
}
.fa-flip-vertical{
    transform:scaleY(-1)
}
.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{
    -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}
.fa-flip-horizontal.fa-flip-vertical{
    transform:scale(-1)
}
:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{
    filter:none
}
.fa-stack{
    display:inline-block;
    height:2em;
    line-height:2em;
    position:relative;
    vertical-align:middle;
    width:2em
}
.fa-stack-1x,.fa-stack-2x{
    left:0;
    position:absolute;
    text-align:center;
    width:100%
}
.fa-stack-1x{
    line-height:inherit
}
.fa-stack-2x{
    font-size:2em
}
.fa-inverse{
    color:#fff
}
.fa-500px:before{
    content:""
}
.fa-accessible-icon:before{
    content:""
}
.fa-accusoft:before{
    content:""
}
.fa-address-book:before{
    content:""
}
.fa-address-card:before{
    content:""
}
.fa-adjust:before{
    content:""
}
.fa-adn:before{
    content:""
}
.fa-adversal:before{
    content:""
}
.fa-affiliatetheme:before{
    content:""
}
.fa-algolia:before{
    content:""
}
.fa-align-center:before{
    content:""
}
.fa-align-justify:before{
    content:""
}
.fa-align-left:before{
    content:""
}
.fa-align-right:before{
    content:""
}
.fa-amazon:before{
    content:""
}
.fa-amazon-pay:before{
    content:""
}
.fa-ambulance:before{
    content:""
}
.fa-american-sign-language-interpreting:before{
    content:""
}
.fa-amilia:before{
    content:""
}
.fa-anchor:before{
    content:""
}
.fa-android:before{
    content:""
}
.fa-angellist:before{
    content:""
}
.fa-angle-double-down:before{
    content:""
}
.fa-angle-double-left:before{
    content:""
}
.fa-angle-double-right:before{
    content:""
}
.fa-angle-double-up:before{
    content:""
}
.fa-angle-down:before{
    content:""
}
.fa-angle-left:before{
    content:""
}
.fa-angle-right:before{
    content:""
}
.fa-angle-up:before{
    content:""
}
.fa-angrycreative:before{
    content:""
}
.fa-angular:before{
    content:""
}
.fa-app-store:before{
    content:""
}
.fa-app-store-ios:before{
    content:""
}
.fa-apper:before{
    content:""
}
.fa-apple:before{
    content:""
}
.fa-apple-pay:before{
    content:""
}
.fa-archive:before{
    content:""
}
.fa-arrow-alt-circle-down:before{
    content:""
}
.fa-arrow-alt-circle-left:before{
    content:""
}
.fa-arrow-alt-circle-right:before{
    content:""
}
.fa-arrow-alt-circle-up:before{
    content:""
}
.fa-arrow-circle-down:before{
    content:""
}
.fa-arrow-circle-left:before{
    content:""
}
.fa-arrow-circle-right:before{
    content:""
}
.fa-arrow-circle-up:before{
    content:""
}
.fa-arrow-down:before{
    content:""
}
.fa-arrow-left:before{
    content:""
}
.fa-arrow-right:before{
    content:""
}
.fa-arrow-up:before{
    content:""
}
.fa-arrows-alt:before{
    content:""
}
.fa-arrows-alt-h:before{
    content:""
}
.fa-arrows-alt-v:before{
    content:""
}
.fa-assistive-listening-systems:before{
    content:""
}
.fa-asterisk:before{
    content:""
}
.fa-asymmetrik:before{
    content:""
}
.fa-at:before{
    content:""
}
.fa-audible:before{
    content:""
}
.fa-audio-description:before{
    content:""
}
.fa-autoprefixer:before{
    content:""
}
.fa-avianex:before{
    content:""
}
.fa-aviato:before{
    content:""
}
.fa-aws:before{
    content:""
}
.fa-backward:before{
    content:""
}
.fa-balance-scale:before{
    content:""
}
.fa-ban:before{
    content:""
}
.fa-band-aid:before{
    content:""
}
.fa-bandcamp:before{
    content:""
}
.fa-barcode:before{
    content:""
}
.fa-bars:before{
    content:""
}
.fa-baseball-ball:before{
    content:""
}
.fa-basketball-ball:before{
    content:""
}
.fa-bath:before{
    content:""
}
.fa-battery-empty:before{
    content:""
}
.fa-battery-full:before{
    content:""
}
.fa-battery-half:before{
    content:""
}
.fa-battery-quarter:before{
    content:""
}
.fa-battery-three-quarters:before{
    content:""
}
.fa-bed:before{
    content:""
}
.fa-beer:before{
    content:""
}
.fa-behance:before{
    content:""
}
.fa-behance-square:before{
    content:""
}
.fa-bell:before{
    content:""
}
.fa-bell-slash:before{
    content:""
}
.fa-bicycle:before{
    content:""
}
.fa-bimobject:before{
    content:""
}
.fa-binoculars:before{
    content:""
}
.fa-birthday-cake:before{
    content:""
}
.fa-bitbucket:before{
    content:""
}
.fa-bitcoin:before{
    content:""
}
.fa-bity:before{
    content:""
}
.fa-black-tie:before{
    content:""
}
.fa-blackberry:before{
    content:""
}
.fa-blind:before{
    content:""
}
.fa-blogger:before{
    content:""
}
.fa-blogger-b:before{
    content:""
}
.fa-bluetooth:before{
    content:""
}
.fa-bluetooth-b:before{
    content:""
}
.fa-bold:before{
    content:""
}
.fa-bolt:before{
    content:""
}
.fa-bomb:before{
    content:""
}
.fa-book:before{
    content:""
}
.fa-bookmark:before{
    content:""
}
.fa-bowling-ball:before{
    content:""
}
.fa-box:before{
    content:""
}
.fa-boxes:before{
    content:""
}
.fa-braille:before{
    content:""
}
.fa-briefcase:before{
    content:""
}
.fa-btc:before{
    content:""
}
.fa-bug:before{
    content:""
}
.fa-building:before{
    content:""
}
.fa-bullhorn:before{
    content:""
}
.fa-bullseye:before{
    content:""
}
.fa-buromobelexperte:before{
    content:""
}
.fa-bus:before{
    content:""
}
.fa-buysellads:before{
    content:""
}
.fa-calculator:before{
    content:""
}
.fa-calendar:before{
    content:""
}
.fa-calendar-alt:before{
    content:""
}
.fa-calendar-check:before{
    content:""
}
.fa-calendar-minus:before{
    content:""
}
.fa-calendar-plus:before{
    content:""
}
.fa-calendar-times:before{
    content:""
}
.fa-camera:before{
    content:""
}
.fa-camera-retro:before{
    content:""
}
.fa-car:before{
    content:""
}
.fa-caret-down:before{
    content:""
}
.fa-caret-left:before{
    content:""
}
.fa-caret-right:before{
    content:""
}
.fa-caret-square-down:before{
    content:""
}
.fa-caret-square-left:before{
    content:""
}
.fa-caret-square-right:before{
    content:""
}
.fa-caret-square-up:before{
    content:""
}
.fa-caret-up:before{
    content:""
}
.fa-cart-arrow-down:before{
    content:""
}
.fa-cart-plus:before{
    content:""
}
.fa-cc-amazon-pay:before{
    content:""
}
.fa-cc-amex:before{
    content:""
}
.fa-cc-apple-pay:before{
    content:""
}
.fa-cc-diners-club:before{
    content:""
}
.fa-cc-discover:before{
    content:""
}
.fa-cc-jcb:before{
    content:""
}
.fa-cc-mastercard:before{
    content:""
}
.fa-cc-paypal:before{
    content:""
}
.fa-cc-stripe:before{
    content:""
}
.fa-cc-visa:before{
    content:""
}
.fa-centercode:before{
    content:""
}
.fa-certificate:before{
    content:""
}
.fa-chart-area:before{
    content:""
}
.fa-chart-bar:before{
    content:""
}
.fa-chart-line:before{
    content:""
}
.fa-chart-pie:before{
    content:""
}
.fa-check:before{
    content:""
}
.fa-check-circle:before{
    content:""
}
.fa-check-square:before{
    content:""
}
.fa-chess:before{
    content:""
}
.fa-chess-bishop:before{
    content:""
}
.fa-chess-board:before{
    content:""
}
.fa-chess-king:before{
    content:""
}
.fa-chess-knight:before{
    content:""
}
.fa-chess-pawn:before{
    content:""
}
.fa-chess-queen:before{
    content:""
}
.fa-chess-rook:before{
    content:""
}
.fa-chevron-circle-down:before{
    content:""
}
.fa-chevron-circle-left:before{
    content:""
}
.fa-chevron-circle-right:before{
    content:""
}
.fa-chevron-circle-up:before{
    content:""
}
.fa-chevron-down:before{
    content:""
}
.fa-chevron-left:before{
    content:""
}
.fa-chevron-right:before{
    content:""
}
.fa-chevron-up:before{
    content:""
}
.fa-child:before{
    content:""
}
.fa-chrome:before{
    content:""
}
.fa-circle:before{
    content:""
}
.fa-circle-notch:before{
    content:""
}
.fa-clipboard:before{
    content:""
}
.fa-clipboard-check:before{
    content:""
}
.fa-clipboard-list:before{
    content:""
}
.fa-clock:before{
    content:""
}
.fa-clone:before{
    content:""
}
.fa-closed-captioning:before{
    content:""
}
.fa-cloud:before{
    content:""
}
.fa-cloud-download-alt:before{
    content:""
}
.fa-cloud-upload-alt:before{
    content:""
}
.fa-cloudscale:before{
    content:""
}
.fa-cloudsmith:before{
    content:""
}
.fa-cloudversify:before{
    content:""
}
.fa-code:before{
    content:""
}
.fa-code-branch:before{
    content:""
}
.fa-codepen:before{
    content:""
}
.fa-codiepie:before{
    content:""
}
.fa-coffee:before{
    content:""
}
.fa-cog:before{
    content:""
}
.fa-cogs:before{
    content:""
}
.fa-columns:before{
    content:""
}
.fa-comment:before{
    content:""
}
.fa-comment-alt:before{
    content:""
}
.fa-comments:before{
    content:""
}
.fa-compass:before{
    content:""
}
.fa-compress:before{
    content:""
}
.fa-connectdevelop:before{
    content:""
}
.fa-contao:before{
    content:""
}
.fa-copy:before{
    content:""
}
.fa-copyright:before{
    content:""
}
.fa-cpanel:before{
    content:""
}
.fa-creative-commons:before{
    content:""
}
.fa-credit-card:before{
    content:""
}
.fa-crop:before{
    content:""
}
.fa-crosshairs:before{
    content:""
}
.fa-css3:before{
    content:""
}
.fa-css3-alt:before{
    content:""
}
.fa-cube:before{
    content:""
}
.fa-cubes:before{
    content:""
}
.fa-cut:before{
    content:""
}
.fa-cuttlefish:before{
    content:""
}
.fa-d-and-d:before{
    content:""
}
.fa-dashcube:before{
    content:""
}
.fa-database:before{
    content:""
}
.fa-deaf:before{
    content:""
}
.fa-delicious:before{
    content:""
}
.fa-deploydog:before{
    content:""
}
.fa-deskpro:before{
    content:""
}
.fa-desktop:before{
    content:""
}
.fa-deviantart:before{
    content:""
}
.fa-digg:before{
    content:""
}
.fa-digital-ocean:before{
    content:""
}
.fa-discord:before{
    content:""
}
.fa-discourse:before{
    content:""
}
.fa-dna:before{
    content:""
}
.fa-dochub:before{
    content:""
}
.fa-docker:before{
    content:""
}
.fa-dollar-sign:before{
    content:""
}
.fa-dolly:before{
    content:""
}
.fa-dolly-flatbed:before{
    content:""
}
.fa-dot-circle:before{
    content:""
}
.fa-download:before{
    content:""
}
.fa-draft2digital:before{
    content:""
}
.fa-dribbble:before{
    content:""
}
.fa-dribbble-square:before{
    content:""
}
.fa-dropbox:before{
    content:""
}
.fa-drupal:before{
    content:""
}
.fa-dyalog:before{
    content:""
}
.fa-earlybirds:before{
    content:""
}
.fa-edge:before{
    content:""
}
.fa-edit:before{
    content:""
}
.fa-eject:before{
    content:""
}
.fa-elementor:before{
    content:""
}
.fa-ellipsis-h:before{
    content:""
}
.fa-ellipsis-v:before{
    content:""
}
.fa-ember:before{
    content:""
}
.fa-empire:before{
    content:""
}
.fa-envelope:before{
    content:""
}
.fa-envelope-open:before{
    content:""
}
.fa-envelope-square:before{
    content:""
}
.fa-envira:before{
    content:""
}
.fa-eraser:before{
    content:""
}
.fa-erlang:before{
    content:""
}
.fa-ethereum:before{
    content:""
}
.fa-etsy:before{
    content:""
}
.fa-euro-sign:before{
    content:""
}
.fa-exchange-alt:before{
    content:""
}
.fa-exclamation:before{
    content:""
}
.fa-exclamation-circle:before{
    content:""
}
.fa-exclamation-triangle:before{
    content:""
}
.fa-expand:before{
    content:""
}
.fa-expand-arrows-alt:before{
    content:""
}
.fa-expeditedssl:before{
    content:""
}
.fa-external-link-alt:before{
    content:""
}
.fa-external-link-square-alt:before{
    content:""
}
.fa-eye:before{
    content:""
}
.fa-eye-dropper:before{
    content:""
}
.fa-eye-slash:before{
    content:""
}
.fa-facebook:before{
    content:""
}
.fa-facebook-f:before{
    content:""
}
.fa-facebook-messenger:before{
    content:""
}
.fa-facebook-square:before{
    content:""
}
.fa-fast-backward:before{
    content:""
}
.fa-fast-forward:before{
    content:""
}
.fa-fax:before{
    content:""
}
.fa-female:before{
    content:""
}
.fa-fighter-jet:before{
    content:""
}
.fa-file:before{
    content:""
}
.fa-file-alt:before{
    content:""
}
.fa-file-archive:before{
    content:""
}
.fa-file-audio:before{
    content:""
}
.fa-file-code:before{
    content:""
}
.fa-file-excel:before{
    content:""
}
.fa-file-image:before{
    content:""
}
.fa-file-pdf:before{
    content:""
}
.fa-file-powerpoint:before{
    content:""
}
.fa-file-video:before{
    content:""
}
.fa-file-word:before{
    content:""
}
.fa-film:before{
    content:""
}
.fa-filter:before{
    content:""
}
.fa-fire:before{
    content:""
}
.fa-fire-extinguisher:before{
    content:""
}
.fa-firefox:before{
    content:""
}
.fa-first-aid:before{
    content:""
}
.fa-first-order:before{
    content:""
}
.fa-firstdraft:before{
    content:""
}
.fa-flag:before{
    content:""
}
.fa-flag-checkered:before{
    content:""
}
.fa-flask:before{
    content:""
}
.fa-flickr:before{
    content:""
}
.fa-flipboard:before{
    content:""
}
.fa-fly:before{
    content:""
}
.fa-folder:before{
    content:""
}
.fa-folder-open:before{
    content:""
}
.fa-font:before{
    content:""
}
.fa-font-awesome:before{
    content:""
}
.fa-font-awesome-alt:before{
    content:""
}
.fa-font-awesome-flag:before{
    content:""
}
.fa-fonticons:before{
    content:""
}
.fa-fonticons-fi:before{
    content:""
}
.fa-football-ball:before{
    content:""
}
.fa-fort-awesome:before{
    content:""
}
.fa-fort-awesome-alt:before{
    content:""
}
.fa-forumbee:before{
    content:""
}
.fa-forward:before{
    content:""
}
.fa-foursquare:before{
    content:""
}
.fa-free-code-camp:before{
    content:""
}
.fa-freebsd:before{
    content:""
}
.fa-frown:before{
    content:""
}
.fa-futbol:before{
    content:""
}
.fa-gamepad:before{
    content:""
}
.fa-gavel:before{
    content:""
}
.fa-gem:before{
    content:""
}
.fa-genderless:before{
    content:""
}
.fa-get-pocket:before{
    content:""
}
.fa-gg:before{
    content:""
}
.fa-gg-circle:before{
    content:""
}
.fa-gift:before{
    content:""
}
.fa-git:before{
    content:""
}
.fa-git-square:before{
    content:""
}
.fa-github:before{
    content:""
}
.fa-github-alt:before{
    content:""
}
.fa-github-square:before{
    content:""
}
.fa-gitkraken:before{
    content:""
}
.fa-gitlab:before{
    content:""
}
.fa-gitter:before{
    content:""
}
.fa-glass-martini:before{
    content:""
}
.fa-glide:before{
    content:""
}
.fa-glide-g:before{
    content:""
}
.fa-globe:before{
    content:""
}
.fa-gofore:before{
    content:""
}
.fa-golf-ball:before{
    content:""
}
.fa-goodreads:before{
    content:""
}
.fa-goodreads-g:before{
    content:""
}
.fa-google:before{
    content:""
}
.fa-google-drive:before{
    content:""
}
.fa-google-play:before{
    content:""
}
.fa-google-plus:before{
    content:""
}
.fa-google-plus-g:before{
    content:""
}
.fa-google-plus-square:before{
    content:""
}
.fa-google-wallet:before{
    content:""
}
.fa-graduation-cap:before{
    content:""
}
.fa-gratipay:before{
    content:""
}
.fa-grav:before{
    content:""
}
.fa-gripfire:before{
    content:""
}
.fa-grunt:before{
    content:""
}
.fa-gulp:before{
    content:""
}
.fa-h-square:before{
    content:""
}
.fa-hacker-news:before{
    content:""
}
.fa-hacker-news-square:before{
    content:""
}
.fa-hand-lizard:before{
    content:""
}
.fa-hand-paper:before{
    content:""
}
.fa-hand-peace:before{
    content:""
}
.fa-hand-point-down:before{
    content:""
}
.fa-hand-point-left:before{
    content:""
}
.fa-hand-point-right:before{
    content:""
}
.fa-hand-point-up:before{
    content:""
}
.fa-hand-pointer:before{
    content:""
}
.fa-hand-rock:before{
    content:""
}
.fa-hand-scissors:before{
    content:""
}
.fa-hand-spock:before{
    content:""
}
.fa-handshake:before{
    content:""
}
.fa-hashtag:before{
    content:""
}
.fa-hdd:before{
    content:""
}
.fa-heading:before{
    content:""
}
.fa-headphones:before{
    content:""
}
.fa-heart:before{
    content:""
}
.fa-heartbeat:before{
    content:""
}
.fa-hips:before{
    content:""
}
.fa-hire-a-helper:before{
    content:""
}
.fa-history:before{
    content:""
}
.fa-hockey-puck:before{
    content:""
}
.fa-home:before{
    content:""
}
.fa-hooli:before{
    content:""
}
.fa-hospital:before{
    content:""
}
.fa-hospital-symbol:before{
    content:""
}
.fa-hotjar:before{
    content:""
}
.fa-hourglass:before{
    content:""
}
.fa-hourglass-end:before{
    content:""
}
.fa-hourglass-half:before{
    content:""
}
.fa-hourglass-start:before{
    content:""
}
.fa-houzz:before{
    content:""
}
.fa-html5:before{
    content:""
}
.fa-hubspot:before{
    content:""
}
.fa-i-cursor:before{
    content:""
}
.fa-id-badge:before{
    content:""
}
.fa-id-card:before{
    content:""
}
.fa-image:before{
    content:""
}
.fa-images:before{
    content:""
}
.fa-imdb:before{
    content:""
}
.fa-inbox:before{
    content:""
}
.fa-indent:before{
    content:""
}
.fa-industry:before{
    content:""
}
.fa-info:before{
    content:""
}
.fa-info-circle:before{
    content:""
}
.fa-instagram:before{
    content:""
}
.fa-internet-explorer:before{
    content:""
}
.fa-ioxhost:before{
    content:""
}
.fa-italic:before{
    content:""
}
.fa-itunes:before{
    content:""
}
.fa-itunes-note:before{
    content:""
}
.fa-jenkins:before{
    content:""
}
.fa-joget:before{
    content:""
}
.fa-joomla:before{
    content:""
}
.fa-js:before{
    content:""
}
.fa-js-square:before{
    content:""
}
.fa-jsfiddle:before{
    content:""
}
.fa-key:before{
    content:""
}
.fa-keyboard:before{
    content:""
}
.fa-keycdn:before{
    content:""
}
.fa-kickstarter:before{
    content:""
}
.fa-kickstarter-k:before{
    content:""
}
.fa-korvue:before{
    content:""
}
.fa-language:before{
    content:""
}
.fa-laptop:before{
    content:""
}
.fa-laravel:before{
    content:""
}
.fa-lastfm:before{
    content:""
}
.fa-lastfm-square:before{
    content:""
}
.fa-leaf:before{
    content:""
}
.fa-leanpub:before{
    content:""
}
.fa-lemon:before{
    content:""
}
.fa-less:before{
    content:""
}
.fa-level-down-alt:before{
    content:""
}
.fa-level-up-alt:before{
    content:""
}
.fa-life-ring:before{
    content:""
}
.fa-lightbulb:before{
    content:""
}
.fa-line:before{
    content:""
}
.fa-link:before{
    content:""
}
.fa-linkedin:before{
    content:""
}
.fa-linkedin-in:before{
    content:""
}
.fa-linode:before{
    content:""
}
.fa-linux:before{
    content:""
}
.fa-lira-sign:before{
    content:""
}
.fa-list:before{
    content:""
}
.fa-list-alt:before{
    content:""
}
.fa-list-ol:before{
    content:""
}
.fa-list-ul:before{
    content:""
}
.fa-location-arrow:before{
    content:""
}
.fa-lock:before{
    content:""
}
.fa-lock-open:before{
    content:""
}
.fa-long-arrow-alt-down:before{
    content:""
}
.fa-long-arrow-alt-left:before{
    content:""
}
.fa-long-arrow-alt-right:before{
    content:""
}
.fa-long-arrow-alt-up:before{
    content:""
}
.fa-low-vision:before{
    content:""
}
.fa-lyft:before{
    content:""
}
.fa-magento:before{
    content:""
}
.fa-magic:before{
    content:""
}
.fa-magnet:before{
    content:""
}
.fa-male:before{
    content:""
}
.fa-map:before{
    content:""
}
.fa-map-marker:before{
    content:""
}
.fa-map-marker-alt:before{
    content:""
}
.fa-map-pin:before{
    content:""
}
.fa-map-signs:before{
    content:""
}
.fa-mars:before{
    content:""
}
.fa-mars-double:before{
    content:""
}
.fa-mars-stroke:before{
    content:""
}
.fa-mars-stroke-h:before{
    content:""
}
.fa-mars-stroke-v:before{
    content:""
}
.fa-maxcdn:before{
    content:""
}
.fa-medapps:before{
    content:""
}
.fa-medium:before{
    content:""
}
.fa-medium-m:before{
    content:""
}
.fa-medkit:before{
    content:""
}
.fa-medrt:before{
    content:""
}
.fa-meetup:before{
    content:""
}
.fa-meh:before{
    content:""
}
.fa-mercury:before{
    content:""
}
.fa-microchip:before{
    content:""
}
.fa-microphone:before{
    content:""
}
.fa-microphone-slash:before{
    content:""
}
.fa-microsoft:before{
    content:""
}
.fa-minus:before{
    content:""
}
.fa-minus-circle:before{
    content:""
}
.fa-minus-square:before{
    content:""
}
.fa-mix:before{
    content:""
}
.fa-mixcloud:before{
    content:""
}
.fa-mizuni:before{
    content:""
}
.fa-mobile:before{
    content:""
}
.fa-mobile-alt:before{
    content:""
}
.fa-modx:before{
    content:""
}
.fa-monero:before{
    content:""
}
.fa-money-bill-alt:before{
    content:""
}
.fa-moon:before{
    content:""
}
.fa-motorcycle:before{
    content:""
}
.fa-mouse-pointer:before{
    content:""
}
.fa-music:before{
    content:""
}
.fa-napster:before{
    content:""
}
.fa-neuter:before{
    content:""
}
.fa-newspaper:before{
    content:""
}
.fa-nintendo-switch:before{
    content:""
}
.fa-node:before{
    content:""
}
.fa-node-js:before{
    content:""
}
.fa-npm:before{
    content:""
}
.fa-ns8:before{
    content:""
}
.fa-nutritionix:before{
    content:""
}
.fa-object-group:before{
    content:""
}
.fa-object-ungroup:before{
    content:""
}
.fa-odnoklassniki:before{
    content:""
}
.fa-odnoklassniki-square:before{
    content:""
}
.fa-opencart:before{
    content:""
}
.fa-openid:before{
    content:""
}
.fa-opera:before{
    content:""
}
.fa-optin-monster:before{
    content:""
}
.fa-osi:before{
    content:""
}
.fa-outdent:before{
    content:""
}
.fa-page4:before{
    content:""
}
.fa-pagelines:before{
    content:""
}
.fa-paint-brush:before{
    content:""
}
.fa-palfed:before{
    content:""
}
.fa-pallet:before{
    content:""
}
.fa-paper-plane:before{
    content:""
}
.fa-paperclip:before{
    content:""
}
.fa-paragraph:before{
    content:""
}
.fa-paste:before{
    content:""
}
.fa-patreon:before{
    content:""
}
.fa-pause:before{
    content:""
}
.fa-pause-circle:before{
    content:""
}
.fa-paw:before{
    content:""
}
.fa-paypal:before{
    content:""
}
.fa-pen-square:before{
    content:""
}
.fa-pencil-alt:before{
    content:""
}
.fa-percent:before{
    content:""
}
.fa-periscope:before{
    content:""
}
.fa-phabricator:before{
    content:""
}
.fa-phoenix-framework:before{
    content:""
}
.fa-phone:before{
    content:""
}
.fa-phone-square:before{
    content:""
}
.fa-phone-volume:before{
    content:""
}
.fa-php:before{
    content:""
}
.fa-pied-piper:before{
    content:""
}
.fa-pied-piper-alt:before{
    content:""
}
.fa-pied-piper-pp:before{
    content:""
}
.fa-pills:before{
    content:""
}
.fa-pinterest:before{
    content:""
}
.fa-pinterest-p:before{
    content:""
}
.fa-pinterest-square:before{
    content:""
}
.fa-plane:before{
    content:""
}
.fa-play:before{
    content:""
}
.fa-play-circle:before{
    content:""
}
.fa-playstation:before{
    content:""
}
.fa-plug:before{
    content:""
}
.fa-plus:before{
    content:""
}
.fa-plus-circle:before{
    content:""
}
.fa-plus-square:before{
    content:""
}
.fa-podcast:before{
    content:""
}
.fa-pound-sign:before{
    content:""
}
.fa-power-off:before{
    content:""
}
.fa-print:before{
    content:""
}
.fa-product-hunt:before{
    content:""
}
.fa-pushed:before{
    content:""
}
.fa-puzzle-piece:before{
    content:""
}
.fa-python:before{
    content:""
}
.fa-qq:before{
    content:""
}
.fa-qrcode:before{
    content:""
}
.fa-question:before{
    content:""
}
.fa-question-circle:before{
    content:""
}
.fa-quidditch:before{
    content:""
}
.fa-quinscape:before{
    content:""
}
.fa-quora:before{
    content:""
}
.fa-quote-left:before{
    content:""
}
.fa-quote-right:before{
    content:""
}
.fa-random:before{
    content:""
}
.fa-ravelry:before{
    content:""
}
.fa-react:before{
    content:""
}
.fa-rebel:before{
    content:""
}
.fa-recycle:before{
    content:""
}
.fa-red-river:before{
    content:""
}
.fa-reddit:before{
    content:""
}
.fa-reddit-alien:before{
    content:""
}
.fa-reddit-square:before{
    content:""
}
.fa-redo:before{
    content:""
}
.fa-redo-alt:before{
    content:""
}
.fa-registered:before{
    content:""
}
.fa-rendact:before{
    content:""
}
.fa-renren:before{
    content:""
}
.fa-reply:before{
    content:""
}
.fa-reply-all:before{
    content:""
}
.fa-replyd:before{
    content:""
}
.fa-resolving:before{
    content:""
}
.fa-retweet:before{
    content:""
}
.fa-road:before{
    content:""
}
.fa-rocket:before{
    content:""
}
.fa-rocketchat:before{
    content:""
}
.fa-rockrms:before{
    content:""
}
.fa-rss:before{
    content:""
}
.fa-rss-square:before{
    content:""
}
.fa-ruble-sign:before{
    content:""
}
.fa-rupee-sign:before{
    content:""
}
.fa-safari:before{
    content:""
}
.fa-sass:before{
    content:""
}
.fa-save:before{
    content:""
}
.fa-schlix:before{
    content:""
}
.fa-scribd:before{
    content:""
}
.fa-search:before{
    content:""
}
.fa-search-minus:before{
    content:""
}
.fa-search-plus:before{
    content:""
}
.fa-searchengin:before{
    content:""
}
.fa-sellcast:before{
    content:""
}
.fa-sellsy:before{
    content:""
}
.fa-server:before{
    content:""
}
.fa-servicestack:before{
    content:""
}
.fa-share:before{
    content:""
}
.fa-share-alt:before{
    content:""
}
.fa-share-alt-square:before{
    content:""
}
.fa-share-square:before{
    content:""
}
.fa-shekel-sign:before{
    content:""
}
.fa-shield-alt:before{
    content:""
}
.fa-ship:before{
    content:""
}
.fa-shipping-fast:before{
    content:""
}
.fa-shirtsinbulk:before{
    content:""
}
.fa-shopping-bag:before{
    content:""
}
.fa-shopping-basket:before{
    content:""
}
.fa-shopping-cart:before{
    content:""
}
.fa-shower:before{
    content:""
}
.fa-sign-in-alt:before{
    content:""
}
.fa-sign-language:before{
    content:""
}
.fa-sign-out-alt:before{
    content:""
}
.fa-signal:before{
    content:""
}
.fa-simplybuilt:before{
    content:""
}
.fa-sistrix:before{
    content:""
}
.fa-sitemap:before{
    content:""
}
.fa-skyatlas:before{
    content:""
}
.fa-skype:before{
    content:""
}
.fa-slack:before{
    content:""
}
.fa-slack-hash:before{
    content:""
}
.fa-sliders-h:before{
    content:""
}
.fa-slideshare:before{
    content:""
}
.fa-smile:before{
    content:""
}
.fa-snapchat:before{
    content:""
}
.fa-snapchat-ghost:before{
    content:""
}
.fa-snapchat-square:before{
    content:""
}
.fa-snowflake:before{
    content:""
}
.fa-sort:before{
    content:""
}
.fa-sort-alpha-down:before{
    content:""
}
.fa-sort-alpha-up:before{
    content:""
}
.fa-sort-amount-down:before{
    content:""
}
.fa-sort-amount-up:before{
    content:""
}
.fa-sort-down:before{
    content:""
}
.fa-sort-numeric-down:before{
    content:""
}
.fa-sort-numeric-up:before{
    content:""
}
.fa-sort-up:before{
    content:""
}
.fa-soundcloud:before{
    content:""
}
.fa-space-shuttle:before{
    content:""
}
.fa-speakap:before{
    content:""
}
.fa-spinner:before{
    content:""
}
.fa-spotify:before{
    content:""
}
.fa-square:before{
    content:""
}
.fa-square-full:before{
    content:""
}
.fa-stack-exchange:before{
    content:""
}
.fa-stack-overflow:before{
    content:""
}
.fa-star:before{
    content:""
}
.fa-star-half:before{
    content:""
}
.fa-staylinked:before{
    content:""
}
.fa-steam:before{
    content:""
}
.fa-steam-square:before{
    content:""
}
.fa-steam-symbol:before{
    content:""
}
.fa-step-backward:before{
    content:""
}
.fa-step-forward:before{
    content:""
}
.fa-stethoscope:before{
    content:""
}
.fa-sticker-mule:before{
    content:""
}
.fa-sticky-note:before{
    content:""
}
.fa-stop:before{
    content:""
}
.fa-stop-circle:before{
    content:""
}
.fa-stopwatch:before{
    content:""
}
.fa-strava:before{
    content:""
}
.fa-street-view:before{
    content:""
}
.fa-strikethrough:before{
    content:""
}
.fa-stripe:before{
    content:""
}
.fa-stripe-s:before{
    content:""
}
.fa-studiovinari:before{
    content:""
}
.fa-stumbleupon:before{
    content:""
}
.fa-stumbleupon-circle:before{
    content:""
}
.fa-subscript:before{
    content:""
}
.fa-subway:before{
    content:""
}
.fa-suitcase:before{
    content:""
}
.fa-sun:before{
    content:""
}
.fa-superpowers:before{
    content:""
}
.fa-superscript:before{
    content:""
}
.fa-supple:before{
    content:""
}
.fa-sync:before{
    content:""
}
.fa-sync-alt:before{
    content:""
}
.fa-syringe:before{
    content:""
}
.fa-table:before{
    content:""
}
.fa-table-tennis:before{
    content:""
}
.fa-tablet:before{
    content:""
}
.fa-tablet-alt:before{
    content:""
}
.fa-tachometer-alt:before{
    content:""
}
.fa-tag:before{
    content:""
}
.fa-tags:before{
    content:""
}
.fa-tasks:before{
    content:""
}
.fa-taxi:before{
    content:""
}
.fa-telegram:before{
    content:""
}
.fa-telegram-plane:before{
    content:""
}
.fa-tencent-weibo:before{
    content:""
}
.fa-terminal:before{
    content:""
}
.fa-text-height:before{
    content:""
}
.fa-text-width:before{
    content:""
}
.fa-th:before{
    content:""
}
.fa-th-large:before{
    content:""
}
.fa-th-list:before{
    content:""
}
.fa-themeisle:before{
    content:""
}
.fa-thermometer:before{
    content:""
}
.fa-thermometer-empty:before{
    content:""
}
.fa-thermometer-full:before{
    content:""
}
.fa-thermometer-half:before{
    content:""
}
.fa-thermometer-quarter:before{
    content:""
}
.fa-thermometer-three-quarters:before{
    content:""
}
.fa-thumbs-down:before{
    content:""
}
.fa-thumbs-up:before{
    content:""
}
.fa-thumbtack:before{
    content:""
}
.fa-ticket-alt:before{
    content:""
}
.fa-times:before{
    content:""
}
.fa-times-circle:before{
    content:""
}
.fa-tint:before{
    content:""
}
.fa-toggle-off:before{
    content:""
}
.fa-toggle-on:before{
    content:""
}
.fa-trademark:before{
    content:""
}
.fa-train:before{
    content:""
}
.fa-transgender:before{
    content:""
}
.fa-transgender-alt:before{
    content:""
}
.fa-trash:before{
    content:""
}
.fa-trash-alt:before{
    content:""
}
.fa-tree:before{
    content:""
}
.fa-trello:before{
    content:""
}
.fa-tripadvisor:before{
    content:""
}
.fa-trophy:before{
    content:""
}
.fa-truck:before{
    content:""
}
.fa-tty:before{
    content:""
}
.fa-tumblr:before{
    content:""
}
.fa-tumblr-square:before{
    content:""
}
.fa-tv:before{
    content:""
}
.fa-twitch:before{
    content:""
}
.fa-twitter:before{
    content:""
}
.fa-twitter-square:before{
    content:""
}
.fa-typo3:before{
    content:""
}
.fa-uber:before{
    content:""
}
.fa-uikit:before{
    content:""
}
.fa-umbrella:before{
    content:""
}
.fa-underline:before{
    content:""
}
.fa-undo:before{
    content:""
}
.fa-undo-alt:before{
    content:""
}
.fa-uniregistry:before{
    content:""
}
.fa-universal-access:before{
    content:""
}
.fa-university:before{
    content:""
}
.fa-unlink:before{
    content:""
}
.fa-unlock:before{
    content:""
}
.fa-unlock-alt:before{
    content:""
}
.fa-untappd:before{
    content:""
}
.fa-upload:before{
    content:""
}
.fa-usb:before{
    content:""
}
.fa-user:before{
    content:""
}
.fa-user-circle:before{
    content:""
}
.fa-user-md:before{
    content:""
}
.fa-user-plus:before{
    content:""
}
.fa-user-secret:before{
    content:""
}
.fa-user-times:before{
    content:""
}
.fa-users:before{
    content:""
}
.fa-ussunnah:before{
    content:""
}
.fa-utensil-spoon:before{
    content:""
}
.fa-utensils:before{
    content:""
}
.fa-vaadin:before{
    content:""
}
.fa-venus:before{
    content:""
}
.fa-venus-double:before{
    content:""
}
.fa-venus-mars:before{
    content:""
}
.fa-viacoin:before{
    content:""
}
.fa-viadeo:before{
    content:""
}
.fa-viadeo-square:before{
    content:""
}
.fa-viber:before{
    content:""
}
.fa-video:before{
    content:""
}
.fa-vimeo:before{
    content:""
}
.fa-vimeo-square:before{
    content:""
}
.fa-vimeo-v:before{
    content:""
}
.fa-vine:before{
    content:""
}
.fa-vk:before{
    content:""
}
.fa-vnv:before{
    content:""
}
.fa-volleyball-ball:before{
    content:""
}
.fa-volume-down:before{
    content:""
}
.fa-volume-off:before{
    content:""
}
.fa-volume-up:before{
    content:""
}
.fa-vuejs:before{
    content:""
}
.fa-warehouse:before{
    content:""
}
.fa-weibo:before{
    content:""
}
.fa-weight:before{
    content:""
}
.fa-weixin:before{
    content:""
}
.fa-whatsapp:before{
    content:""
}
.fa-whatsapp-square:before{
    content:""
}
.fa-wheelchair:before{
    content:""
}
.fa-whmcs:before{
    content:""
}
.fa-wifi:before{
    content:""
}
.fa-wikipedia-w:before{
    content:""
}
.fa-window-close:before{
    content:""
}
.fa-window-maximize:before{
    content:""
}
.fa-window-minimize:before{
    content:""
}
.fa-window-restore:before{
    content:""
}
.fa-windows:before{
    content:""
}
.fa-won-sign:before{
    content:""
}
.fa-wordpress:before{
    content:""
}
.fa-wordpress-simple:before{
    content:""
}
.fa-wpbeginner:before{
    content:""
}
.fa-wpexplorer:before{
    content:""
}
.fa-wpforms:before{
    content:""
}
.fa-wrench:before{
    content:""
}
.fa-xbox:before{
    content:""
}
.fa-xing:before{
    content:""
}
.fa-xing-square:before{
    content:""
}
.fa-y-combinator:before{
    content:""
}
.fa-yahoo:before{
    content:""
}
.fa-yandex:before{
    content:""
}
.fa-yandex-international:before{
    content:""
}
.fa-yelp:before{
    content:""
}
.fa-yen-sign:before{
    content:""
}
.fa-yoast:before{
    content:""
}
.fa-youtube:before{
    content:""
}
.fa-youtube-square:before{
    content:""
}
.sr-only{
    border:0;
    clip:rect(0,0,0,0);
    height:1px;
    margin:-1px;
    overflow:hidden;
    padding:0;
    position:absolute;
    width:1px
}
.sr-only-focusable:active,.sr-only-focusable:focus{
    clip:auto;
    height:auto;
    margin:0;
    overflow:visible;
    position:static;
    width:auto
}
img{
    max-width:110%;
    height:auto;
    vertical-align:top
}
.is-fluid{
    display:block;
    width:100%;
    height:auto
}
:focus{
    outline:0
}
input,select,textarea{
    background-color:var(--main-bg-color);
    border:solid 1px var(--text-color);
    border-radius:0;
    color:var(--text-color);
    line-height:45px;
    height:45px;
    padding:0 15px;
    width:100%
}
input[type=checkbox],input[type=radio]{
    background:transparent;
    border:0;
    line-height:normal;
    height:auto;
    width:auto
}
input[type=file]{
    line-height:normal;
    height:auto;
    padding:7.5px 15px
}
input[type=submit]{
    border-radius:0
}
input[type=submit]:hover{
    background-color:var(--text-color);
    color:#fff;
    cursor:pointer
}
input[disabled]{
    background-color:#f5f5f5;
    cursor:not-allowed
}
select{
    line-height:normal;
    padding:0;
    padding-left:15px
}
textarea{
    min-height:120px;
    overflow:auto;
    vertical-align:top;
    resize:vertical
}
.form--inline .form__group{
    display:inline-block
}
.form .form__group{
    display:block;
    margin-bottom:30px
}
.form .form__group .form__label{
    display:block;
    margin-bottom:15px
}
ol,ul{
    margin-left:30px
}
li>ol,li>ul{
    margin-bottom:0
}
.list--unstyled{
    margin-left:0;
    list-style:none
}
h1,h2,h5,h6,strong{
    font-weight:700
}
em{
    font-style:italic
}
small{
    font-size:.75em
}
h1{
    font-family:gobold;
    font-weight:400;
    font-size:80px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    color:var(--text-color);
    line-height:130%
}
@media screen and (max-width:768px){
    h1{
        font-size:50px;
        line-height:normal
    }
}
h2{
    font-family:mrseaves;
    font-size:30px;
    font-weight:400;
    font-style:italic;
    color:var(--brand-color)
}
@media screen and (max-width:768px){
    h2{
        font-size:30px
    }
}
h3{
    font-family:mrseaves;
    font-size:30px;
    color:var(--brand-color)
}
/* body.home:not(.page) */
nav.footer-home-menu .nav,h4{
    font-family:gobold;
    font-weight:400;
    font-size:20px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    color:var(--text-color)
}
/* body.home:not(.page) */
nav.footer-home-menu .small.nav,h4.small{
    font-size:16px
}
h5{
    font-family:mrseaves;
    font-size:24px;
    font-weight:400;
    color:var(--text-color)
}
.container{
    padding:0 var(--page-dektop-padding);
    max-width:var(--container-max-width-page);
    box-sizing:content-box;
    margin:0 auto
}
body.home .container,body.single-ifdp_project .container{
    max-width:var(--container-max-width-project)
}
@media screen and (max-width:1024px){
    .container{
        padding:0 var(--page-mobile-padding)
    }
}
main.main,main.post--main{
    margin-top:50px; /*era 210 110*/
    margin-bottom:110px;
  	margin-bottom: var(--page-footer-height);
}
@media screen and (max-width:768px){
    main.main,main.post--main{
        margin-top:90px;
		margin-bottom: calc(var(--page-footer-height) + 90px);
    }
}
.page__header,.post__header{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:70px
}
@media screen and (max-width:768px){
    .page__header,.post__header{
        display:flex;
        flex-direction:column;
        flex-wrap:nowrap;
        align-items:flex-start;
        margin-bottom:40px
    }
}
@media screen and (min-width:768px){
    .page__header .post__title,.post__header .post__title{
        padding-right:70px
    }
}
.page__header .post__artist,.post__header .post__artist{
    flex:none
}
.page__header h1,.page__header h2,.post__header h1,.post__header h2{
    margin:0
}
.post__footer{
    display:inline-block;
    width:100%;
    margin-top:var(--page-dektop-padding-project)
}
header.header{
    padding-top:57px
}
header.header .container{
    position:relative
}
.header--logo{
    text-align:center;
    max-width:var(--logo-width);
    margin:0 auto;
    display:block
}
@media screen and (max-width:768px){
    .header--logo{
        max-width:var(--logo-mobile-width);
        min-width:180px
    }
}
.header--logo h1{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}


footer.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-top: var(--page-dektop-padding);
  font-size: 17px;
  padding-bottom: 20px;
}
footer.footer .footer-CTA .host {
  font-size: 0.95rem;
}
footer.footer .footer-CTA .location {
  font-size: 1.5rem;
  font-weight: 700;
}
footer.footer hr {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  footer.footer {
    padding-top: var(--page-mobile-padding);
  }
}
footer.footer .container.grid {
  grid-template-columns: 1fr minmax(0, 100px) 1fr;
}
@media screen and (max-width: 768px) {
  footer.footer .container.grid {
    grid-template-columns: 64% 1fr;
  }
}
footer.footer .lazzarettoLogo {
  display: flex;
  align-items: flex-start;
}
footer.footer .zz-logo {
  width: auto;
  height: 42px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  footer.footer .participation {
    grid-row: 2;
    grid-column: 1/3;
  }
}
footer.footer .media-icons {
  font-size: 30px;
}
footer.footer .media-icons a:hover {
  text-decoration: none;
}
footer.footer a {
  color: var(--text-color);
  display: inline-block;
}
.widget.widget_ifdpwebtheme_footer_widget .footer_copyright,.widget_block.footer .footer_copyright{
    font-weight:700
}
.widget.widget_ifdpwebtheme_footer_widget a,.widget_block.footer a{
    color:var(--text-color);
    display:inline-block
}
body.page-template-template-just-footer-page main.main,body.page-template-template-splashscreen main.main{
    margin-top:0
}
body.page-template-template-just-footer-page main.main>.container,body.page-template-template-splashscreen main.main>.container{
    padding:0
}
.btn{
    background-color:var(--brand-color);
    color:var(--main-bg-color);
    border:1px solid transparent;
    display:inline-block;
    padding:cing-unit/4 30px;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    width:auto;
    transition:all .5s
}
.btn::-moz-focus-inner{
    border:0;
    padding:0
}
.btn:hover{
    text-decoration:none;
    background-color:var(--main-bg-color);
    color:var(--brand-color);
    border-color:var(--brand-color)
}
.btn.is-disabled,.btn:disabled{
    pointer-events:none;
    opacity:.65
}
.btn--inverse{
    background-color:var(--main-bg-color);
    color:var(--brand-color);
    border:1px solid var(--brand-color)
}
.btn--inverse:hover{
    background-color:var(--brand-color);
    color:var(--main-bg-color);
    border-color:transparent
}
.btn--block{
    display:block;
    width:100%
}
.btn--block+.btn--block{
    margin-top:7.5px
}
.btn--link{
    background-color:transparent;
    color:var(--brand-color)
}
body.menu-open{
    overflow-y:hidden
}
.nav-burger{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:var(--page-dektop-padding);
    z-index:550;
    transition:all .25s ease-in-out
}
@media screen and (max-width:1024px){
    .nav-burger{
        right:var(--page-mobile-padding)
    }
}
.nav-burger__line{
    border-radius:1px;
    width:30px;
    height:3px;
    background-color:var(--brand-color);
    display:none;
    margin:4px auto;
    transition:all .25s ease-in-out;
    display:block
}
.nav-burger.open .nav-burger__line:nth-child(2){
    opacity:0
}
.nav-burger.open .nav-burger__line:first-child{
    transform:translateY(9px) rotate(45deg)
}
.nav-burger.open .nav-burger__line:nth-child(3){
    transform:translateY(-9px) rotate(-45deg)
}
.nav>ul{
    list-style:none;
    margin:0
}
.nav>ul>li{
    display:inline-block;
    margin-right:30px
}
.nav>ul>li:last-child{
    margin-right:0
}
.nav>ul>li>a{
    display:block
}
.nav--header{
    position:fixed;
    top:0;
    left:0;
    visibility:hidden;
    width:0;
    height:100%;
    margin:0;
    transition:opacity .5s ease;
    transition:opacity .35s ease,visibility .35s ease,width .35s ease;
    text-align:center;
    opacity:0;
    background:var(--main-bg-color);
    -webkit-overflow-scrolling:touch
}
.nav--header.open{
    z-index:500;
    visibility:visible;
    width:100%;
    opacity:1
}
.nav--header.open ul{
    position:absolute;
    top:50%;
    left:0;
    overflow:auto;
    width:100%;
    max-height:100%;
    margin:0;
    padding:0;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    transform:translateY(-50%);
    -webkit-touch-callout:none;
    -webkit-overflow-scrolling:touch
}
.nav--header.open ul>li{
    width:100%;
    margin:0
}
.alert{
    padding:30px;
    margin-bottom:30px;
    border:1px solid transparent
}
.alert>p,.alert>ul{
    margin-bottom:0
}
.alert>p+p{
    margin-top:30px
}
.alert.alert--success{
    color:#5cb85c;
    border-color:#5cb85c
}
.alert.alert--info{
    color:var(--brand-color);
    border-color:var(--brand-color)
}
.alert.alert--warning{
    color:#f0ad4e;
    border-color:#f0ad4e
}
.alert.alert--danger{
    color:#d9534f;
    border-color:#d9534f
}
.ifdp_mailchimp_widget form.validated .input:invalid{
    border-color:red
}
.ifdp_mailchimp_widget form.validated .input:invalid[type=checkbox]:after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    border-radius:4px;
    border:1px solid red;
    padding:1px;
    box-sizing:border-box
}
.ifdp_mailchimp_widget .mc-field-group{
    margin-bottom:10px
}
.ifdp_mailchimp_widget .submit-group{
    margin-top:30px
}
.ifdp_mailchimp_widget .submit-group input{
    background:#ff5c00;
    color:#fff;
    cursor:pointer
}
.ifdp_mailchimp_widget .submit-group input:hover{
    background:initial;
    color:initial
}
.ifdp_mailchimp_widget .checkbox-group{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-end;
    align-items:center;
    direction:rtl;
    text-align:left
}
.ifdp_mailchimp_widget .checkbox-group input[type=checkbox]{
    padding:0 10px 0 0
}
.prev-next-post-wrapper{
    display:flex;
    align-content:space-between;
    align-items:flex-start;
    flex-direction:row;
    justify-content:space-between;
    margin-top:35px;
    width:100%
}
.prev-next-post-wrapper a{
    display:inline-flex
}
.prev-next-post-wrapper .prev-next-post .post-title{
    padding:0 10px
}
.prev-next-post-wrapper .prev-next-post .post-arrow{
    display:inline;
    font-size:22px;
    line-height:0
}
.pizza-box-wrapper{
    margin-bottom:60px;
    position:relative
}
@media screen and (max-width:768px){
    .pizza-box-wrapper{
        margin-bottom:120px
    }
}
.pizza-box-wrapper picture{
    display:flex
}
.pizza-box-wrapper img{
    max-width:100vw;
    max-height:100vh;
    margin:0 auto
}
@media screen and (max-width:768px){
    .pizza-box-wrapper img{
        max-height:none
    }
}
.pizza-box-wrapper .landing-page-menu{
    position:absolute;
    width:100%;
    bottom:20%;
    max-width:1100px
}
@media screen and (max-width:1024px){
    .pizza-box-wrapper .landing-page-menu{
        top:80%;
        bottom:auto
    }
}
.pizza-box-wrapper .landing-page-menu ul{
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    flex-wrap:nowrap;
    align-items:center
}
@media screen and (max-width:1024px){
    .pizza-box-wrapper .landing-page-menu ul{
        flex-direction:column;
        justify-content:center;
        align-content:center
    }
    .pizza-box-wrapper .landing-page-menu ul li{
        margin:0;
        margin-bottom:30px
    }
}
.pizza-box-wrapper .landing-page-menu li{
    font-family:gobold;
    display:flex;
    flex-direction:column;
    align-content:center;
    justify-content:center;
    align-items:center;
    text-align:center;
    line-height:1.2em;
    cursor:pointer;
    margin-right:50px
}
.pizza-box-wrapper .landing-page-menu li.register{
    background-image:url(img/landingpage/yellow-tag.svg);
    background-size:100%;
    background-position:50%;
    width:150px;
    height:150px;
    padding:35px
}
.pizza-box-wrapper .landing-page-menu li a{
    color:var(--text-color)
}
.pizza-box-wrapper .date-tag-wrapper{
    position:absolute;
    right:0;
    left:0;
    bottom:9%;
    max-width:1400px;
    width:60%;
    margin:0 auto
}
@media screen and (max-width:768px){
    .pizza-box-wrapper .date-tag-wrapper{
        width:90%;
        bottom:-15%
    }
}
.pizza-box-wrapper .date-tag-wrapper .date-tag{
    font-family:gobold;
    display:flex;
    flex-direction:column;
    align-content:center;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    line-height:1.2em;
    background-image:url(img/landingpage/yellow-tag.svg);
    background-size:100%;
    background-position:50%;
    width:180px;
    height:180px;
    padding:35px
}
@media screen and (min-width:768px){
    .pizza-box-wrapper .date-tag-wrapper .date-tag{
        float:right
    }
}
.pizza-box-wrapper .date-tag-wrapper .date-tag .caption{
    font-family:mrseaves;
    font-style:italic;
    margin-top:10px
}
body{
    opacity:0;
    transition:opacity .4s ease-in-out
}
h1:not(.header-web-title){
    transform:translate(-100%);
    transition:transform .4s ease-in-out;
    transition-delay:.2s
}
.header--logo{
    transform:translateY(-100%);
    transition:transform .4s ease-in-out
}
body.fade{
    opacity:1
}
body.fade .header--logo,body.fade h1{
    transform:translate(0)
}
body.home:not(.page) header.header{
    position:absolute;
    z-index:3;
    top:0;
    left:0;
    width:100%;
    pointer-events:none
}
body.home:not(.page) header.header .header__navigation,body.home:not(.page) header.header .nav-burger{
    pointer-events:auto
}
body.home:not(.page) header.header .nav-burger{
    top:28px
}
body.home:not(.page) header.header .header--logo{
    max-width:400px
}
@media screen and (max-width:768px){
    body.home:not(.page) header.header .header--logo{
        max-width:60%
    }
}
body.home:not(.page) main.main{
    margin-top: 0;
}
@media screen and (max-width:768px){
    body.home:not(.page) main.main{
        margin-top: 0;
    }
}
/* body.home:not(.page) */
nav.footer-home-menu{
    margin-bottom:50px;
    background-color:#ff5c00
}
/* body.home:not(.page) */
nav.footer-home-menu .nav{
    font-size:25px;
    font-weight:400
}
/* body.home:not(.page) */
nav.footer-home-menu ul{
    padding:20px 0;
    display:flex;
    flex-direction:row;
    justify-content:center;
    flex-wrap:nowrap
}
/* body.home:not(.page) */
nav.footer-home-menu li{
    color:#fff;
    margin-right:15px
}
/* body.home:not(.page) */
nav.footer-home-menu li:after{
    content:"_";
    margin-left:15px
}
/* body.home:not(.page) */
nav.footer-home-menu li:last-child{
    margin-right:0
}
/* body.home:not(.page) */
nav.footer-home-menu li:last-child:after{
    display:none
}
/* body.home:not(.page) */
nav.footer-home-menu .menu-item a{
    display:inline;
    color:#fff
}
#home-arlequin-wrapper{
    position:relative;
    width:100%;
    background-image:url(img/arlequin/background.jpg);
	background-size: cover;
}
#home-arlequin-wrapper .canvas-wrapper{
    position:relative;
    height:130vh;
    opacity:0;
    transition:opacity 2s;
    transition-delay:.1s;
    opacity:1;
/*     background-image:url(img/arlequin/saltimbanco_preloader.png); */
    background-image:url(img/arlequin/Borocillino-Sciccc.jpg);
    background-repeat:no-repeat;
    background-position:50%;
    background-size:90%;
    filter:blur(5px);
	
	overflow: hidden;
}
@media screen and (max-width:768px){
    #home-arlequin-wrapper .canvas-wrapper{
        height:80vh;
    }
}
#home-arlequin-wrapper .canvas-wrapper canvas{
    opacity:0;
    transition:opacity 2s;
    transition-delay:.1s
}
#home-arlequin-wrapper .canvas-wrapper.loaded{
    opacity:1;
    filter:blur(0);
    background-image:none
}
#home-arlequin-wrapper .canvas-wrapper.loaded canvas{
    opacity:1
}
#home-arlequin-wrapper #home-arlequin-canvas{
    position:absolute;
    top:140px;
    left:0;
    right:0;
    width:100%;
    height:100%;
    z-index:1
}
@media(any-hover:none){
    #home-arlequin-wrapper #home-arlequin-canvas{
        pointer-events:none;
    	top:100px;
    }
}
#home-arlequin-wrapper .logo-tag{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    margin:0 auto;
    max-width:400px;
    padding:50px;
    box-sizing:content-box
}
#home-arlequin-wrapper .logo-tag img{
    width:100%
}
#home-arlequin-wrapper .home-menu-wrapper{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:2;
    pointer-events:none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
#home-arlequin-wrapper .home-menu-wrapper .secondary{
    display: none;
}
@media screen and (max-width: 768px) {
  #home-arlequin-wrapper .home-menu-wrapper {
    position: relative;
    padding-bottom: 20px;
  }
}
#home-arlequin-wrapper .home-menu-wrapper .home-menu{
    width:100%;
    position:relative
}
@media screen and (min-width:768px){
    #home-arlequin-wrapper .home-menu-wrapper .home-menu{
        height:100vh
    }
}
#home-arlequin-wrapper .home-menu-wrapper .home-menu li{
    opacity:0;
    transition:opacity .9s;
    transition-delay:.1s;
    margin:0 0 30px
}
@media screen and (min-width:768px){
    #home-arlequin-wrapper .home-menu-wrapper .home-menu li{
        display:initial;
        position:absolute
    }
}
@media screen and (max-width:768px){
    #home-arlequin-wrapper .home-menu-wrapper .home-menu li{
        display:block;
        transform:translate(0)!important;
        opacity:1
    }
}
#home-arlequin-wrapper .home-menu-wrapper .home-menu span{
    display:block;
    text-align:center;
/*     height:40px; */
    white-space:nowrap;
	line-height: 1;
}
#home-arlequin-wrapper .home-menu-wrapper .featured a{
    color:var(--brand-color);
    font-size:30px
}
#home-arlequin-wrapper .home-menu-wrapper .featured a .caption{
    font-size:23px;
    font-style:italic;
	margin-top: 5px;
}
#home-arlequin-wrapper .home-menu-wrapper .secondary a{
    color:var(--secondary-color);
    font-size:24px
}
#home-arlequin-wrapper .home-menu-wrapper .secondary a .caption{
    font-size:20px;
    font-style:italic
}
#home-arlequin-wrapper .home-menu-wrapper li{
    cursor:pointer;
    pointer-events:auto
}
