/*--------------------     MEDIA QUERIES     ------------------------*/

// Small screens
@media only screen {

    
    

}
/* Define mobile styles */

@media only screen and (max-width: 40em) {
    .tabs .tab-title > a {
        width: 45px;
        height: 45px;
        margin: 0px;
        padding: -10px;
    }
    .tabs .tab-title > a img {
        width: 20px;
    }
    
    p.quote {
    background-image: url(../images/quote_small.jpg);
    background-repeat: no-repeat;
    font-size: 18px;
    padding: 0 10px 0 50px
    }
   
    
    div.bg-burning {
    background-image: url();
    width: 100%;
    height: 200px;
    margin-bottom: 64px;
    }
    
}
/* max-width 640px, mobile-only styles, use when QAing mobile issues */

// Medium screens
@media only screen and (min-width: 40.063em) {

     div.bg-burning {
    background-image: url();
    width: 100%;
    height: 200px;
    margin-bottom: 64px;
    }
    
    p {
    font-size: 1rem;
    }
    
}
/* min-width 641px, medium screens */

@media only screen and (min-width: 40.063em) and (max-width: 64em) {}
/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */

// Large screens
@media only screen and (min-width: 64.063em) {}
/* min-width 1025px, large screens */

@media only screen and (min-width: 64.063em) and (max-width: 90em) {}
/* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

// XLarge screens
@media only screen and (min-width: 90.063em) {}
/* min-width 1441px, xlarge screens */

@media only screen and (min-width: 90.063em) and (max-width: 120em) {}
/* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

// XXLarge screens
@media only screen and (min-width: 120.063em) {}
/* min-width 1921px, xxlarge screens */

/* ---- END   --------------------     MEDIA QUERIES     ------------------------*/

header {
    width:100%;
    height:66px;
    overflow:hidden;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background-color:#022342;
    -webkit-transition:height 0.3s;
    -moz-transition:height 0.3s;
    -ms-transition:height 0.3s;
    -o-transition:height 0.3s;
    transition:height 0.3s;
}

header img {
    margin-top:12px;
    margin-left:20px;
    height:48px;
    line-height:150px;
    float:left;
    font-size:60px;
    color:white;
    font-weight:400;
    position:absolute;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -ms-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}
header #title-head {
    color:#fff;
    position:absolute;
    width:50%;
    left: 25%;
    margin-top:18px;
    opacity:0;
    text-align:center;
    -webkit-transition:all 0.9s;
    -moz-transition:all 0.9s;
    -ms-transition:all 0.9s;
    -o-transition:all 0.9s;
    transition:all 0.9s;
}
header nav {
    display:inline-block;
    float:right;
    width:210px;
    margin-top:10px;
    margin-right:-90px;
}
header nav a {
    color:white;
    background-color:transparent;
    top:10px;
    right:15px;
    opacity:0;
    height:100px;
    width:100px;
    border:solid #fff 1px;
    padding:5px 10px;
    margin:5px;
    border-radius:15px;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -ms-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}
header nav li a i {
    font-size:5px;
}
header nav a:hover {
    color: #da960c;
}
header.smaller {
    height: 45px;
}
header.smaller img {
    height: 25px;
    line-height: 75px;
    margin-top: 9px;
    margin-left: 9px;
}
header nav ul li {
    display: inline-block;
}
header.smaller nav a {
    top: 10px;
    opacity: 1;
    border: solid #fff 1px;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 15px;
    z-index: 1000;
}
header.smaller #title-head {
    opacity: 1;
    margin-top: 12px;
}
@media all and (max-width: 660px) {
    
    
    
    header h1#logo {
        display: block;
        float: none;
        margin: 0 auto;
        height: 100px;
        line-height: 100px;
        text-align: center;
    }
    header {
        height: 60px;
    }
    header img {
        width: 240px;
        height: 38px;
    }
    header.smaller img {
        width: 200px;
        height: 30px;
    }
    header nav {
        display: block;
        float: none;
        height: 50px;
        text-align: center;
        margin: 20px 10px;
    }
    header nav a {
        line-height: 50px;
        margin: 0;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 10px;
    }
    header.smaller {
        height: 50px;
    }
    header.smaller h1#logo {
        height: 40px;
        line-height: 40px;
        font-size: 30px;
    }
    header.smaller nav {
        height: 35px;
    }
    header.smaller nav a {
        line-height: 35px;
        border: solid #fff 1px;
        padding: 5px;
    }
    header.smaller #title-head {
        margin-top: 25px;
    }
}
.title-page {
    height: 100%;
    text-align: center;
    margin-top: 126px;
    
    width: 100%;
    margin-bottom: 60px;
}
@media(min-width: 480px){
	.title-page {
		width: 50%;
	}
}
@media(min-width: 1250px){
	.title-page {
		width: 27%;
	}
}

.title-page h1 {
    margin: -20px;
}
.title-chapter-page {
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 20%;
    padding-bottom: 20%;
}
.title-chapter-page h1 {
    margin: -20px;
}
#delay-01 {
	width: 42%;
	margin: 20px 0px;
	
    -webkit-animation-delay: 0.6s;
    /* Chrome, Safari, Opera */
    animation-delay: 0.6s;
}
#delay-02 {
    -webkit-animation-delay: 1.2s;
    /* Chrome, Safari, Opera */
    animation-delay: 1.2s;
}
/*------------------TYPOGRAPHY-----------*/

.intro-names {
    margin-top: 30px;
}
.names p {
    font-size: 1em;
    margin: -5px;
    text-align: center;
}
.names p b {
    font-size: 1.4em;
}
.firstcharacter {
    float: left;
    color: #da960c;
    font-size: 120px;
    line-height: 80px;
    padding-top: 15px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: Lyon Text OSF Web;
    font-weight: 700
}
.tabs-content h3 {
    margin: 50px 0 31px 0;
}
.tabs-content p i {
    font-size: 13px;
    color: #212121
}
.tabs-content .content p {
    font-size: 0.9em;
    color: #000000;
}
.yellow {
    color: #da960c
}
.quote {
    background-image: url(../images/quote.jpg);
    background-repeat: no-repeat;
    font-size: 23px;
    padding: 0 30px 0 100px
}
.title-chapter-page h3 small {
    border: solid #a5a5a5 1px;
    padding: 7px 10px 7px 10px;
    border-radius: 23px;
}
/*------------------TYPOGRAPHY-----------*/

.tabs a:focus {
    outline: 0;
}
.tabs-content .content {
    height: 300px;
}
.img-01 {
    background-image: url(../images/px-01.jpg);
}
.img-02 {
    background-image: url(../images/px-04.jpg);
}
.img-03 {
    background-image: url(../images/px-03.jpg);
}
.img-04 {
    background-image: url(../images/px-02.jpg);
}
.px-01 {
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 500px;
    margin-bottom: 64px;
}
.bg-burning {
    background-image: url(../images/section_03_burning_02.jpg);
    background-size: cover;
    width: 100%;
    height: 600px;
    margin-bottom: 64px;
}
.tabs a img {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 50%
}
.overlay-Big {
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    margin: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
}
.overlay-first-band {
    background-color: rgba(218, 150, 12, 0.78);
    height: 100%;
    padding-top: 4%;
    color: #fff !important;
}
.overlay-first-band a {
    border: solid #fff 1px;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 15px;
    color: #fff !important;
}
#close {
    float: right;
    position: absolute;
    padding: 15px 15px 0 0;
    right: 0;
    z-index: 1000
}
.show {
    z-index: 1000;
    height: ;
}
.overlay-second-band {
    padding-top: 4%;
}
.overlay-second-band p {
    font-size: 1em;
}
footer {
    background-color: #212121;
    padding: 35px 0 35px 0;
    margin-top: 120px;
}
footer hr {
    border-color: #fff
}
footer h6 {
    color: #da960c;
    text-align: center
}
footer p {
    color: #bebebe;
    text-align: center;
    font-size: 14px;
}

.fa-facebook{ padding: 0 3px;}


/* internazionale */
.row.title-img{
	max-width: 70em;
}

.article_cover_type{
    background: #4EA9D5;
    padding: 15px 15px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;    
    line-height: 1;
    font-family: "Lyon Text OSF Web",Georgia,"Times New Roman",Times,serif;
}

.article_cover_title{
	font-family: "Lyon Text OSF Web",Georgia,"Times New Roman",Times,serif;
    margin-top: 3px;
}                  
.article_cover_title a,
.article_cover_title a:hover,
.article_cover_title a:visited{
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    font-weight: 600;
    background-color: rgba(0,0,0,0.75);
    line-height: 38px;
    display: inline;
    padding: 0px 14px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
} 
.article_cover_title.mac a,
.article_cover_title.mac a:hover,
.article_cover_title.mac a:visited{
    padding: 5px 14px;
    line-height: 42px;
}
@media(min-width: 64em){
    .article_cover_title a,
    .article_cover_title a:hover,
    .article_cover_title a:visited{
        font-size: 42px;
        line-height: 56px;
    }   

    .article_cover_title.mac a,
    .article_cover_title.mac a:hover,
    .article_cover_title.mac a:visited{      
        line-height: 56px;
    }
}