/*
Theme name: Qtheme Child
Template: qtheme
Theme url: http://www.craqdesignstudio.it
Version: 1.0
Author: <a href="http://www.craqdesignstudio.it" title="Craq Design Studio">Craq Design Studio</a>
Author url: http://www.craqdesignstudio.it
*/
/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
1.0  Global
    1.1 Main Rules
    1.2 Font
    1.3 Global Classes
    1.4 Loading Wrap
    1.5 Entry Content
2.0  Forms
    2.1 Gravity Forms
    2.2 Select
    2.3 Checkbox & Radio
    2.4 Date Picker
    2.5 Submit
    2.6 CF7
3.0  Cookies Banner
4.0  Header
    4.1 Social Links
    4.2 Language Switch
    4.3 Search Form
    4.4 Mobile Icon
    4.5 Mobile Menu
    4.6 Wide Menu
5.0 Buttons
    5.1 Regular
    5.2 Raised & Conversion
    5.3 Material
6.0 Gallery
    6.1 Slider
    6.2 Gallery
6.0bis Stripe
7.0 Pages
    7.1 Header
    7.2 Page #404
8.0 Archive
    8.1 Filters
    8.2 Archive Navigation
11.0 Single Pages
12.0 Loop
13. Stripe Override
14.0 Extra
    14.1 Calendar
9.0 Footer
10.0 Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Global 
--------------------------------------------------------------*/

/* 1.1 Font and Editor
----------------------*/
/*.languageSwitch{display: none;}*/
body{font-size: 1.25rem;color: #2D2D2D;line-height: 1.3em;}
a{color: #2D2D2D}
h1, .fs58{font-size: 3.5rem;}
h2, .fs48{font-size: 3rem;}
h3, .fs36{font-size: 2.5rem;}
h4, .fs24{font-size: 1.66rem;}
h5, .fs21{font-size: 1.45rem;}
h6{font-size: 1.4rem;}
h1, h2, h3, h4, h5, h6 {
    clear: both;
    margin: 0 0 2rem;
    padding: 1rem 0 0;
    line-height: 1.3em;
}
h4, h5, h6 {
    margin: 0 0 1rem;
}
p{margin: 0;}

.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
.fs14{
    font-size: 1rem;
}
.fs18{
    font-size: 1.25rem;
}

.onlyMobile {
    display: none;
}
.onlyPad {
    display: none;
}

/* 1.2 Main Rules
----------------------*/
#main.classicMain{
    margin-top: 7.4rem;
}

/* 1.3 Global Classes
----------------------*/

/*colors*/
.mainColor{color: #ff0600}
.hoverMainColor{
    transition: 0.5s ease;
}
.hoverMainColor:hover{
    color: #ff0600;
}
.bgMainColor{
    background-color: #ff0600;
}
.grey{color: #a5a5a5}
.bgGrey{
    background: #F8F8F8;
}
.bgDark{
    background: #2D2D2D;
}

.gradient{
    background-image: linear-gradient(to right,#FF0600, #EE2A7B, #F7941D);
/*    background-image:linear-gradient(to right, #c4d7e6 0, #c4d7e6 33%, #66a5ad 33%, #66a5ad 66%, #ff0000 66%, #ff0000 100%);*/
}
/**/
.underline{
    margin-top: 1.5rem;
    margin-bottom: 2.77rem;
    height: 0px;
    max-width: 16rem;
    border-bottom: 1px solid #cccccc;
}


.underlinedTitle, .boxSlider .slideTitle{
    position: relative;
    margin-bottom: 3rem;
}
.stripe .stripeTitle h2{
    position: relative;
    margin-bottom: 1rem;
}
.underlinedTitle:after,.boxSlider .slideTitle:after, .stripe .stripeTitle h2:after{
    content:"";
    width: 8rem;
    height: 0.6rem;
    background: red;
    position: absolute;
    background-image: linear-gradient(to right,#FF0600, #EE2A7B, #F7941D);
    bottom: -1rem;
    left: 0;
}
.round3{
    width: 3rem;
    height: 3rem;
    -webkit-border-radius: 3rem 3rem 3rem 3rem;
    border-radius: 3rem 3rem 3rem 3rem;
}
.round4{
    width: 4rem;
    height: 4rem;
    -webkit-border-radius: 4rem 4rem 4rem 4rem;
    border-radius: 4rem 4rem 4rem 4rem;
}
.pointer{
    cursor: pointer;
}
.hoverShadow:hover{
    -webkit-box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.5);
    box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.5);
}
.translateMiddle{
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.translateMiddleX{
    -webkit-transform: translate(-50%, -0%);
    -moz-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    -o-transform: translate(-50%, -0%);
    transform: translate(-50%, -0%);
}
.translateMiddleY{
    -webkit-transform: translate(-0%, -50%);
    -moz-transform: translate(-0%, -50%);
    -ms-transform: translate(-0%, -50%);
    -o-transform: translate(-0%, -50%);
    transform: translate(-0%, -50%);
}
/*column width*/
.col12 {width: 45%;}
.col13{width: 30%}
.col23{width: 60%}
.mainCol, .leftCol{width: 65%}
.sidebar, .rightCol{width: 25%}
/*borders*/
.bordered{
    border: 1px solid #cccccc;
}
.borderTop{
    border-top: 1px solid #cccccc;
}
.borderBottom{
    border-bottom: 1px solid #cccccc;
}
/*FLEXBOX*/
.flex{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex.space-between {
    justify-content: space-between;
}
.flex.space-around {
    justify-content: space-around;
}
.flex.center {
    align-items: center;
}
.flex.wrap{
    flex-wrap: wrap;
}
.flex.column {
    flex-direction: column;
}
.flex.grow {
    flex-grow: 1;
}
.flex.end {
    justify-content: flex-end;
}
.flex.start{
    justify-content: flex-start;
}
/*questa classe va data ai figli di .flex.wrap che risulteranno essere i primi di ogni riga. */
.flex.wrap > .openLine{
    margin-left: 0;
}



/* 1.4 Loading Wrap
----------------------*/


/* 1.4 Entry Content
----------------------*/


/*--------------------------------------------------------------
2.0 Forms
--------------------------------------------------------------*/


/* 2.1 Input
----------------------*/


/* 2.2 Select
----------------------*/
.qthemeSelectWrap .select-selected{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1rem;
}
.qthemeSelectWrap .select-selected:after{
    top: 1.2rem;
}

/* 2.3 Checkbox & Radio
----------------------*/


/* 2.4 Date Picker
----------------------*/


/* 2.5 Submit
----------------------*/


/* 2.6 CF7
----------------------*/
/*.wpcf7[role='form']{
    position: relative;
}*/
/*acceptance*/
/*.wpcf7-acceptance span.wpcf7-list-item {
    margin: 0;
        
}
.wpcf7-acceptance span.wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    position: relative;
        
}
.wpcf7-form-control-wrap.acceptance input {
    cursor: pointer;
    display: block;
    width: 1.7rem;
    margin-right: 1rem;
}
.wpcf7-form-control-wrap.acceptance input:before {
    position: absolute;
    top: -0.2rem;
    height: 1.7rem;
    width: 1.7rem;
    background-color: #eee;
    margin: 0;
    content: " ";
}*/
.qthemeField {
    margin: 2rem 0;
}
.wpcf7-form-control-wrap {
    margin-bottom: 2rem;
}
.wpcf7-form-control-wrap.acceptance input:checked:before {
    background-color: #ff0600;
}
.wpcf7-form-control-wrap input[type=checkbox]:after{
    border-left: 3px solid white;
    border-bottom: 3px solid white;
}
.wpcf7-form-control-wrap input[type=checkbox]:before{
    width: 1.5rem;
}    
/*.wpcf7-form-control-wrap.acceptance input:checked:after {
    display: block;
}
.wpcf7-form-control-wrap.acceptance input:after {
    left: 0.6rem;
    top: -0.1rem;
    width: 0.4rem;
    height: 0.8rem;
    border: solid white;
    border-width: 0 0.2rem 0.2rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wpcf7-form-control-wrap.acceptance input:after {
    content: "";
    position: absolute;
    display: none;
}*/
/**/
/*newsletter form*/
#wpcf7-f21-o1 .cf7-email-wrapper{
    position: relative;
}
#wpcf7-f21-o1 input[type='submit']{
    background: initial;
    background-image: url('img/invia.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 1.5rem;
    width: 1.5rem;
    border: none;
    color: transparent;
    top: 0;
    position: absolute;
    padding: 1.5rem 1.5rem 1.5rem 0;
    right:1rem;
}
#wpcf7-f21-o1 input[type='email']{
    background: #C3CCD3;
    color: #ffffff;
}



/*--------------------------------------------------------------
3.0 Cookies Banner
--------------------------------------------------------------*/


/*--------------------------------------------------------------
4.0 Header
--------------------------------------------------------------*/

.headerLogo{
    width: 14rem;
    transition: 0.5s ease;
}
.headerInside{
    padding: 1rem 0;
}
.navTop .headerLogo{
    width: 20rem;
}
.ecmQuest {
    opacity: 0;
    transition: 0.8s ease;
}
.navTop .ecmQuest{
    transition: 0.8s ease;
    opacity: 1;
}

#siteHead{position: fixed;}
.siteHeader.navUp{
    top: -125px;
}
.accountAccess i{
    font-size: 2.5rem;
    padding-left: 1.5rem;
    margin-left: 2rem;
    border-left: 1px solid #cccccc;
}
#backToTop{
    position: fixed;
    right: 5rem;
    bottom: 4rem;
    z-index: 8;
    font-size: 3rem;
    color: white;
    display: none;
}
.headerInside .navWrapper > div{
    margin-left: 1rem;
}
/* 4.1 Social Link
----------------------*/
.socialLinksWrapper .item:first-child{
    margin-left: 1rem;
}
.socialLinks.colored .socialLinksWrapper a{
    background-color: #ff0600;
    width: 3rem;
    height: 3rem;
    -webkit-border-radius: 3rem 3rem 3rem 3rem;
    border-radius: 3rem 3rem 3rem 3rem;
    position: relative;
    margin-right: 1rem;

}
.socialLinks.colored .socialLinksWrapper a:hover{
    -webkit-box-shadow: 3px 0px 8px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 0px 8px 0px rgba(0,0,0,0.3);
    box-shadow: 3px 0px 8px 0px rgba(0,0,0,0.3);
}
    

.socialLinks.colored .socialLinksWrapper .item{
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.socialLinks.colored .socialLinksWrapper path{
    fill: #ffffff;
}

.socialLinksWrapper .item{
    margin-left: 1rem;
}

/* 4.2 Language Switch
----------------------*/


/* 4.3 Search Form
----------------------*/
.searchForm input[type=search]{
    padding: 0.5rem 0!important;
    border: 0px!important;
}
.searchForm input.inputSearchPadding{
    padding: 0.5rem 1rem!important;
    border: 1px solid #c4c4c4!important;
}

.searchForm .searchIcon{
    cursor: pointer;
    margin-left: 0.5rem;
    color: #ff0600;
    transform: scaleX(-1);
    font-size: 2rem;
}

.searchForm form{
    display: flex;
    width:0;
    margin-left: 1rem;
}
.searchForm{display:none}


/* 4.5 Mobile Menu
----------------------*/
.mobNav .close{
    font-size: 4rem;
    margin: 0;
}
.mobNav li{
    display: block;
    margin: 2.5rem 0;
    font-size: 2.5rem;
    line-height: 1.5rem;
    font-weight: bold;
}
.mobNav li.current-menu-item a{
    color: #ff0600;
}
.mobNav img {
    width: 4.6rem!important;
}
.menuSocials{
    margin-top: 4rem;
}

/* 4.6 Mobile Icon
----------------------*/


/*--------------------------------------------------------------
5.0 Buttons
--------------------------------------------------------------*/


/* 5.1 Regular
----------------------*/

.button{
    margin-left: 2rem;
    color: #ff0600;
    text-transform: initial;
    font-weight: bold;
    transition: 0.5s ease;
}
.button:hover{
    color: #000000;
}
.button.noLeftMargin{
    margin-left: 0;
}
.buttonsContainer  .iconWrap .icon{margin-right: 0.2rem}
/* 5.2 Raised & Conversion
----------------------*/
.button.raised, .button.conversion {
    background: #ff0600;
    border-radius: 2rem;
    border: 1px solid #ff0600;
}
.button.raised:hover, .button.conversion:hover {
    background: #ffffff;
    color: #ff0600;
    border: 1px solid #cccccc;
    -webkit-box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
}


/* 5.3 Material
----------------------*/


/*--------------------------------------------------------------
6.0 Gallery
--------------------------------------------------------------*/

/* 6.1 Slider
----------------------*/

.qsliderArrows i.qsliderArrow[aria-disabled=true]{
    color: grey;
}

.qsliderDots li{
    background-color: #cccccc
}
/*css per centrare le frecce*/
.centerArrows.qsliderWrap{
    position: relative;
}
.centerArrows .qsliderArrow{
    position: absolute;
    top: 50%;
    transform: translate(-50%, 0%);
    z-index: 9;
}
.centerArrows .qsliderPrev{
    left: 0%;
    transform: translate(0%, -50%);
}
.centerArrows .qsliderNext{
    right: 0%;
    transform: translate(0%, -50%);
}
.centerArrows .qsliderArrows i{
    padding-top: 1rem;
    font-size: 3rem;
    color: white;
    width: 3rem;
    height: 4rem;
/*    -webkit-border-radius: 3rem 3rem 3rem 3rem;
    border-radius: 3rem 3rem 3rem 3rem;*/
    background-color:rgba(0, 0, 0, 0.5);
}
/*.centerArrows .qsliderPrev{
    border-bottom-right-radius: 200rem;
    border-top-right-radius: 200rem;
}
.centerArrows .qsliderNext{
    border-bottom-left-radius: 200rem;
    border-top-left-radius: 200rem;
}*/
/*.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
    display:none;
}*/
/**/
.sliderForWrap.qsliderWrap .imageWrap, .sliderForWrap.qgalleryWrap .imageWrap {
    padding: 0;
}

/*slider per acf*/
.acfSlider .imageWrap{
    width: auto;
}
.acfSlider .qgalleryItem{
    height: 37rem;
    width: auto;
}
/**/

/* 6.2 Gallery
----------------------*/

/*--------------------------------------------------------------
7.0 Page 
--------------------------------------------------------------*/


/* 7.1 Header
----------------------*/
/*.postHeader {
    max-width: 50%;
}*/

/* 7.2 Page #404
----------------------*/


/*--------------------------------------------------------------
8.0 Archive
--------------------------------------------------------------*/
#archiveForm {
    margin-bottom: 5.5rem;
}
.filterWrap{
    font-size: 1rem;
}
.filterListWrap{
    border-bottom: 1px solid #cccccc;
}
.filterItemWrap{
    margin-right: 4.5rem;
}
.filterItemList:not(.filterFor){
    font-style: italic;
}
.filterItemList input[type=radio] + label:hover, .filterItemList input[type=radio]:checked + label {
    color: #ff0600;
    text-decoration: underline;
}
.filterItemList.filterFor .material-icons{
    position: relative;
    top: 0.4rem;
    margin-right: 0.5rem;
    font-size: 2rem;
}
.navLoadMore .loadMore{
    margin-top: 5rem;
}
/* 8.1 post archive
----------------------*/
.postArchiveWrap{
    margin-top: 5rem;
}

/*8.2 event archive*/
.eventArchive #filterSection{
    margin-top: 3rem;
}
.monthWrap .filterItemWrap{
    margin-right: 0;
}

/*.eventArchive .filterFirstRow .searchFilterWrap{
    flex-grow: 1;
}*/
.eventArchiveWrap #archiveReplace{
    display: flex;
    flex-wrap: wrap;
}
.ecmCheckbox .filterItemWrap, .ecmCheckbox .filterItemWrap label, .fadCheckbox .filterItemWrap, .fadCheckbox .filterItemWrap label{
    margin-right: 0;
    margin-bottom: 0;
}
#filterSection .ecmWrap .filterCheckboxWrap{
    width: 10%;
}
#filterSection .professionWrap,#filterSection .disciplineWrap{
    width: 35%;
}
#filterSection .yearWrap{
    width: 13%;
    margin-left: 2rem;
    text-align: center;
}
.eventArchive .searchEvent{transition: 0.8s ease; color:#ff0600}
.eventArchive .labelSearch{color:#ff0600}
.eventArchive .searchFilterWrap input{width: auto!important; flex-grow: 1}
.eventArchive .searchEvent:hover{color:#2D2D2D}
.professionWrap .select-items, .disciplineWrap .select-items{
    overflow-y: scroll;
    max-height: 18rem;
    font-size: 1rem;
}



    

/*--------------------------------------------------------------
11.0 Single Pages 
--------------------------------------------------------------*/

.single h1{
    font-size: 2.5rem;
}
/*single-post*/
.postSingle .postCover img{width: 100%; height: auto}
.single .postLoop{margin-bottom: 6rem;}
.single .postLoop.flex{display:block}
.single .postLoop.flex>*{width:100%}
.single .postLoop .title{
    font-size: 1.66rem;
}
.single .postLoop .info{margin-top: 1.3rem}
.single-post .subCover{margin: 2rem 0 3rem 0;}
.postSingle .back{margin-top: 3rem;}
/*single-blog*/
.blogSingle .subjectWrap {margin-bottom: 3rem}
.blogSingle .subjectWrap .icon{margin-bottom: 1.7rem}
.blogSingle .subjectWrap .title{margin-bottom: 0.5rem}
.blogSingle .subjectWrap .subheading{margin-bottom: 2.5rem}


/*single-portfolio*/
.reportsContainer {
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
}

.reportItem{
    margin-bottom: 4rem;
}
.reportNumber{
    font-size: 5rem; 
    min-height: 5rem; 
    min-width: 10rem}

.portfolioSingle  .portfolioContent .rightCol{
    display: none;
}
.portfolioSingle  .portfolioContent{
    padding-top: 5.55rem;
    padding-bottom: 5.55rem;
}
.portfolioContent .title{margin-bottom: 1rem;}
.portfolioSingle .portfolioContent .gradient{
    margin-top: 1rem;
    margin-bottom: 4rem;
    height: 1rem;
    max-width: 20rem;
}
.portfolioSingle .sectionContent{
    margin-bottom: 4rem;
}
.methodologyIcon{
    margin-right: 1rem;
    width: 2rem;
}
.methodologyIcon.material-icons{
    font-size: 2rem;
}
.methodologyIcon.awesome{
    padding: 0 0.3rem;
}
.portfolioSingle .gallerySection{
    padding: 3rem 0;
    color: white;
}
.portfolioSingle .backWrapper{
    margin-top: 3rem;
    padding-bottom: 6rem;
}
.portfolioSingle .lastInsights{display: none}

/*single-event*/
.eventSingle .postTitle{
    line-height: 4rem;
}
.eventSingle .material-icons{
    margin-right: 1rem;
}
.eventSingle .postCover img{
    max-width: 100%;
    max-height: 30rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
}
.eventSingle .leftCol .item{
    margin-bottom: 3rem;
}
.eventSingle .leftCol .item:not(:last-of-type){
    border-bottom: 1px solid #cccccc;
    padding-bottom: 2rem;
}

.eventSingle .leftCol .itemTitleWrap{
    margin-bottom: 1.5rem;
}
.eventSingle .attachments .button{margin-left: 0}
.eventSingle .ecmWrap:not(:last-of-type) {
    line-height: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
}
.eventSingle .ecmItem.Profession{
    position: relative;
}
.eventSingle .Profession .disciplines{
    z-index: 99;
    background-color: white;
    position: absolute;
    text-align: center;
    left:50%;
    transform: translate(-50%, 0%);
    padding: 2rem 1rem;
    line-height: 1.7rem;
    width: 30rem;
    min-width: 270px;
    font-size: 1rem;
        -webkit-box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.3);
}
.eventSingle .closeDisciplines{
    margin-right: 0;
    text-align: right;
    width:100%;
    margin-bottom: 1rem;
}
.eventSingle .back{
    margin-top: 2rem;
    margin-bottom: 7rem;
}
.eventSingle .rightCol.sidebar{
    width: 32%;
}
.eventSingle .rightCol.sidebar .itemWrap{
    margin-bottom: 5rem;
}


.eventSingle .rightCol.sidebar .titleWrap{
    margin-bottom: 1.25rem;
}
.eventSingle .rightCol.sidebar .button{
    margin-top: 1rem;
}

/*single-speech*/
.single .speechSingle h1 {
    font-size: 3.5rem;
}
.speechSingle .speechHeader {
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}
.speechesWrapper .speechWrap {
    margin-bottom: 4rem;
}
.speechesWrapper .sideGradient{
    width: 0.7rem;
    min-width: 0.7rem;
}
.speechesWrapper .speech {
    flex-grow: 1;
    padding: 2rem 1.5rem 1rem 1.5rem;
}
.speechesWrapper .speech:hover {
    background-color: #F8F8F8;
}
.speech .top > *{
    margin-bottom: 1rem;
}
.speech .top .title {
    width: 45%;
    margin-right: 1%;
}
.speech .top .date {
    width: 20%;
    margin-right: 1%;
}
.speech .speakerWrap i {
    font-size: 1.7rem;
    margin-right: 1rem;
}
.speech .buttonsContainer .button {
    margin-right: 8rem;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
12.0 Loop
--------------------------------------------------------------*/
/*Loop-post*/
    /*default*/
.postLoop{
    margin-bottom: 4rem;
}
.postLoop.flex > *{
    width: 47%;
    display: block;
}
.postLoop .title{
    font-size: 2rem
}

.postLoop .thumbnail{
    height: 0;
    padding-top: 40%;
}
    /*slider*/
    .postSlider .slick-track{
        flex-wrap: wrap;
    }    
.postSlider .postLoop{
    padding: 0 1.5rem;   
}    
    
.postSlider .qslider .slick-track{
    align-items: flex-start;
}
.postSlider .postLoop.flex > *{
    width: auto;
}
.postSlider .postLoop .info{
    margin-top: 1.25rem;
}
.postLoop .title{
    font-size: 1.66rem;
}
.postSlider .postLoop .thumbnail{
    padding-top: 100%;
}
/* Loop-blog*/
.blogLoop{
    margin-bottom: 4rem;
}
.blogLoop > *{
    width: 48%;
}
    
.blogLoop .gradient{
    width: 1.5%;
    margin-right: 2%;
      
}
.blogLoop .thumbnail{
    height: 0;
    padding-top: 60%;
    display: block;
    flex-grow:1;
}
.blogLoop .term{
    margin-bottom: 1.8rem;
    margin-right: 2.2rem;
}
.blogLoop .buttonsContainer{
    margin-top: 1.4rem;
}
    /*Loop-Blog Slider*/
    

.blogSlider .qsliderDot{
    bottom: 4rem;
    position: absolute;
    right: 2%;
    z-index: 9;
        
}    
.slick-initialized .slick-slide.blogLoop{
    display: flex;
}

/*Loop-portfolio*/
.archivePortfolio .filterWrap{
    margin: 3rem 0;
}
.portfolioLoop{
    min-height: 35rem;
    box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.5);
    transition: 0.8s ease;
}
.portfolioHref .portfolioLoop:hover{
    box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.2);
}
.portfolioLoop .content{
    color: white;
    display: block;
    transition: 0.5s ease;
    max-width: 800px;
    padding: 0 5rem;
}
.portfolioLoop .content .title{
    transition: 0.5s ease;
    text-align: center;
}

.portfolioSlider .qsliderDot{
    position: absolute;
    left: 50%;
    z-index: 9;
    bottom: 1rem;
    transform: translate(-50%, -50%);
}
/*.archivePortfolio .portfolioLoop .content:hover .portfolioLoop{
    box-shadow:inset 0 0 0 2000px rgba(0,0,0,0);
}*/
/* Loop-facebook*/
.facebookStramWrapper > .title{
    margin-bottom: 3rem;
}
.facebookLoop {
    padding: 2.3rem 1.67rem;
    background-color: #F8F8F8;
    margin-bottom: 3.8rem;
}
.facebookLoop .header{
    margin-bottom: 1.95rem;
}
.facebookLoop .logo img{
    width: 3.5rem;
    height: auto;
    margin-right: 0.9rem;
}
.facebookLoop .cover{
    height: 0;
    padding-top: 40%;
    margin-bottom: 2.35rem;
}

/*Loop Founding Member / Staff*/
.founding_memberStreamWrapper, .staffStreamWrapper{
    display: flex;
    flex-wrap: wrap;
}
.foundingMemberLoop{
    width: 21%;
    margin-right: 4%;
}
.staffLoop{
    width: 16%;
    margin-right: 4%;
    margin-bottom: 5%;
}
.foundingMemberLoop .picture, .staffLoop .picture{
    height: 0;
    padding-top: 100%;
}
.foundingMemberLoop .title, .staffLoop .title{
    margin: 2rem 0 1rem 0
}
.foundingMemberLoop .role, .staffLoop .role{
    margin-bottom: 0.5rem;
}
.foundingMemberLoop .email, .staffLoop .email{
    font-size: 1rem;
}

/*.staffStreamWrapper{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.staffLoop{
    width: 16rem;
    height: 8rem;
    margin-bottom: 1rem;
}
.staffLoop .picture{
    height: 0;
    padding-top: 100%;
}
.staffLoop.last:last-of-type{
    flex-grow: 1;
}*/
/*Loop Chronicle*/
.chronicleSlider .qsliderArrows{
    text-align: center;
}

.chronicleSlider .qsliderArrows i{
    font-size: 3rem;
        position: relative;
    left: -0.3rem;
}

.chronicleLoop{
    text-align: center;
    padding-right: 1rem;
    position: relative;
}
.chronicleLoop .round{
    height: 3rem;
    width: 3rem;
    margin: auto;
    margin-bottom: 3rem;
    padding: 2px;
}
.chronicleLoop .line{
    height: 1px;
    background: #cccccc;
    position: absolute;
    top: 1.5rem;
    width: 50%;
    left: 70%;
}
/* Loop Clients
----------------------*/
.clientStreamWrapper{
    display: flex;
    flex-wrap: wrap;
}
.clientLoop {
    width: 16%;
    text-align: center;
    margin: 2%;
}
.clientLink{
    display: block;
}
.clientLoop img{
/*    max-height: 10rem;
    max-width: 100%;
    height: auto;
    width: auto;
    padding: 10%;*/
    padding: 1rem;
    display: block;
    box-sizing: border-box;
    height: auto;
}



/*loop events*/
.eventStreamWrapper{display: flex; flex-wrap: wrap;}
.eventLoop{
    width: 30%;
    margin-left: 5%;
    margin-bottom: 8rem;
}

.eventLoop.firstOfRow{
    margin-left: 0;
}
.eventLoop .cover{
    height: 0; 
    padding-top: 70%;
/*    background-size: contain;*/
}
.eventLoop .info{
    padding: 1.8rem 0.4rem 0.8rem 0.4rem;
}
.eventLoop:hover .info{
    background: #F8F8F8;
}
.eventLoop .infoItem {
    margin-bottom: 1.25rem;
    font-style: italic;
}
.eventLoop .material-icons {
    margin-right: 1.25rem;
}

.eventSlider .eventLoop{
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 0 2rem;
}
.qslider .slick-track{
    align-items: flex-start;
}
/*loop  past events*/
.pastEventLoop {
    border: 1px solid #cccccc;
    padding: 2rem;
    margin-bottom: 2rem;
}

/*--------------------------------------------------------------
13.0 STRIPE OVERIDE
--------------------------------------------------------------*/
.stripeTitle .inside *{
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 0;
}
/*--------------------------------------------------------------
14.0 EXT
--------------------------------------------------------------*/
/*13.1 Calendar*/
.qchildCalendar{
    padding: 2.5rem 2rem;
}
.qchildCalendar #calendar{
    width: 100%;
    text-align: center;
    border-spacing: 0;
    
}
.qchildCalendar .calendarHeader{
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #cccccc;
}
.qchildCalendar .material-icons{
    margin-right: 0;
}

#calendar td, #calendar th{
    padding: 2%;
    box-sizing: border-box;
}
#calendar td.active{
    background-color: #ff0600;
    color: white;
}

/*--------------------------------------------------------------
9.0 Footer
--------------------------------------------------------------*/
.siteFooter{
    padding:0
}
.siteFooter .qmenu {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    margin: 0;
}
.siteFooter .qmenu li{
    list-style: none;
    margin: 1rem 2rem 1rem 0;
}

.footerWrap{
   align-items: flex-start;
   padding-top: 2rem;
   padding-bottom: 2rem;
}

.footerWrap > *{
    width: 30%;
    box-sizing: border-box;
}
.footerWrap .footerLogo{
    max-width: 60%;
}

.footerWrap .right > *:not(:last-child){
    margin-bottom: 3rem;
}
.subFooter{
    min-width: 60px;
    padding: 1rem 0;
}
.subFooter svg {
    width: 200px;
    transition: 0.5s ease;
}




/*--------------------------------------------------------------
Stripe
--------------------------------------------------------------*/
.stripeHeader .stripeSubtitle{
    margin-top: 2rem;
}
.stripe .buttonsContainer {
    margin-top: 3rem;
}

.boxHeader .iconWrap .icon.material, .boxHeader .iconWrap .icon.awesome{
    font-size: 3rem;
}
.stripe{padding: 6rem 0}
.stripe.padding_top_max{padding-top: 9rem;}
.stripe.padding_top_min{padding-top: 3rem;}
.stripe.padding_bottom_max{padding-bottom: 9rem;}
.stripe.padding_bottom_min{padding-bottom: 3rem;}

/*stripe classes*/
/*boxIconsCover*/
.stripe.boxIconsCover .boxHeader .iconWrap .icon.custom{
    padding: 10rem;
    width: 100%;
}
/*boxTitleH4*/
.stripe.boxTitleH4 .boxHeader h3{
    font-size: 1.66rem;
}
.stripe.boxTitleH4 .boxHeader .iconWrap .icon.material, .stripe.boxTitleH4 .boxHeader .iconWrap .icon.awesome {
    font-size: 2rem;
}
.stripe.boxTitleH4 .boxHeader .iconWrap .icon.custom{
    padding: 1rem;
}
.stripe.boxTitleH4 .stripeTitle h2:after{
    display: none;
}
.stripe#eventi .stripeTitle, .stripe#eventi .icon{
    color: #FF0600
}
.stripe#formazione .stripeTitle, .stripe#formazione .icon{
    color: #302A7B
}
.stripe#consulenza .stripeTitle, .stripe#consulenza .icon{
    color: #76C063
}


/*--------------------------------------------------------------
Box
--------------------------------------------------------------*/
.box .icon.icon_above {
    margin-bottom: 2rem;
}
.box.align_rule_left .iconWrap{
    align-items: flex-start;
}

.box.titleH1 .boxHeader h3{
    font-size: 4rem;
}
.boxHeader .iconWrap .icon.custom {
    padding: 2rem;
}
/* 2.7 Box Slide
----------------------*/
.boxSlider .slideWrap {
    position: relative;
    min-height: 30rem;
}
.boxSlider .slide {
    width: 70%;
    right: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.boxSlider .slideCaption{
    width: 40rem;
    position: absolute;
    top: 3rem;
    max-width: 80%;
}
.boxSlider .contentWrap {
    padding: 3rem;
}


    
    
.boxSlider .qsliderDots {width: 40rem}
.entryContent a{color: #2D2D2D}
.entryContent a:hover{color: #FF0600}

/*--------------------------------------------------------------
10.0 Responsive
--------------------------------------------------------------*/
@media all and (min-width: 1025px) { 
    
}
@media all and (max-width: 1690px) { }
@media all and (max-width: 1280px) { }
@media all and (max-width: 1024px) {
    
    .col23,.col12{width: 100%;}
   /*loop partner*/
    .clientLoop {
        width: 25%;
        margin: 4.16%;
        text-align: center;
    }

    
    /*footer*/
    .footerWrap{text-align: center;}
    .footerWrap .footerLogo{
        max-width: 60%;
    }
    .footerWrap .underline{display: none;}
    .footerWrap .ecmQuest{justify-content: center; margin: 2rem 0;}
    

@media all and (max-width: 768px) {
    .onlyPad {display: block;}
    .notPad{display: none;}
    .flex.flexPad{display: block;}
    .flex.flexPad >*{width: 100%; margin-right: 0; margin-left: 0}
    
    /*loop*/
    .blogLoop .coverWrapper{margin-bottom: 2.5rem;}
/*    .eventLoop .cover{
        padding-top: 50%;
    }*/
    .slick-initialized .slick-slide.blogLoop{
        display: block;
    }
    .blogSlider .qsliderDot{
        bottom: 0rem;
    } 
    /*slider*/
    .qslider.slider-nav{display: none}
    /**/
    .filterWrap.monthWrap {justify-content: center; flex-wrap: wrap;}
    .filterWrap.monthWrap > *{
        margin-right: 2rem;
    }
    #filterSection .professionWrap,#filterSection .disciplineWrap{
        width: 100%;
    }
    #filterSection .professionWrap{margin-bottom: 2rem;}
    .founding_memberStreamWrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .foundingMemberLoop{
        width: 45%;
        margin-right: 0%;
        margin-bottom: 5%;
    }
    .staffLoop{
        width: 28%;
        margin-right: 5%;
    }
    .eventSingle .rightCol.sidebar {
        width: 50%;
    }
    .footerWrap .socialLinksWrapper {
        justify-content: center;
    }
    .speech .top > *{
        width: 100%!important;
        margin-bottom: 1rem!important;
    }
    

 
}
@media all and (max-width: 480px) {
    .onlyMobile {display: block;}
    .notMobile{display: none;}
    .stripe.boxIconsCover .boxHeader .iconWrap .icon.custom{
        width: 0;
    }
    
    .boxSlider .slideWrap{
        position: static;
    }
    .boxSlider .slide {
        width: 90%;
        position: static;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .boxSlider .slideCaption {
        width: 90%;
        position: relative;
        top: -10rem;
        margin-bottom: -10rem;
        left: 10%;
        max-width: 90%;
    }
    .clientLoop {
        width: 40%;
        margin: 5%;
        text-align: center;
    }
    .staffStreamWrapper{
        justify-content: space-between;
        
    }
    .foundingMemberLoop{
        width: 100%;
        margin-right: 0%;
    }
    .eventSingle .rightCol.sidebar {
        width: 100%;
    }
    .staffLoop{
        width: 45%;
        margin-right: 0%;
    }
/*    .slick-list {
        overflow: visible;
    }*/
    .flex.flexMob{display: block;}
    .flex.flexMob >*{width: 100%; margin-right: 0; margin-left: 0; box-sizing: border-box}
    
    /*slider*/
    .qslider .slick-list{}
    .boxSlider .qsliderDots {width: 10rem}
/*    .boxSlider .slideContent {text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}*/
    
    /*font-size*/
    h1 {font-size: 3rem;}
    .labelSearch{width: 100%; margin-bottom: 1rem;}
    .filterItemWrap{margin-right: 2rem;}
}