@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700);

.header{
    padding-top:0px;
    color:white;
    height:560px;
    background: url(https://image.arcafondi.com/lib/fe3e11717564047d7c1472/m/1/838b7be2-dfb4-440f-b64e-c8f5debf245d.jpg) no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.row{
    padding-top:30px;
    padding-bottom:30px;
}

.navbar-default{
    border:0px;
    border-radius:0px;
    background:none;
}

.navbar-default .navbar-brand{
 padding-left: 100px;
}

#the-menu-links{
    display: none;
    padding:25px 0px 0px 150px;
}

#the-menu-links li a{
    padding-top:5px;
    padding-bottom:5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition:  all 300ms ease;
    -o-transition:  all 300ms ease;
    transition:   all 300ms ease;
}

#the-menu-links li a:hover,#the-menu-links li a:active,#the-menu-links li a:focus{
    color:white;
    border-color:rgba(255,255,255,0.5);
    background-color:rgba(255,255,255,0.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition:  all 300ms ease;
    -o-transition:  all 300ms ease;
    transition:   all 300ms ease;
}

.navbar-brand img{
    float:left;
}

.navbar-brand span{
    line-height:50px;
    padding-left:10px;
    color:white;
    font-size:25px;
}

.navbar-default .navbar-toggle{
    border:none;
}

.navbar-default .navbar-toggle .icon-bar{
    background-color:white;
}

.navbar-default .navbar-toggle:hover{
    background-color:#96a6ae;
}


.the-nav-gradient{
    position:absolute;
    height:80px;
    width:100%;
    min-width: 100%;
    top:0px;
    z-index:0;
    background: #00457c; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(30deg, transparent, #00457c); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(30deg, transparent, #00457c); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(30deg, transparent, #00457c); /* For Firefox 3.6 to 15 */
    background: linear-gradient(30deg, transparent, #00457c); /* Standard syntax */
    opacity:0;
    -webkit-transition: opacity 500ms ease;
    -moz-transition: opacity 500ms ease;
    -ms-transition:  opacity 500ms ease;
    -o-transition:  opacity 500ms ease;
    transition:   opacity 500ms ease;
}

.opened-menu .the-nav-gradient{
    opacity:1;
    -webkit-transition: opacity 500ms ease;
    -moz-transition: opacity 500ms ease;
    -ms-transition:  opacity 500ms ease;
    -o-transition:  opacity 500ms ease;
    transition:   opacity 500ms ease;
}

.navbar{
    color:white;
}

.navbar-wrapper .container, .navbar-wrapper .container > *{
    z-index:20;
}

.navbar-default .navbar-nav > li > a{
    color:white;

}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: white;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

#back-to-top i{
    background-color:#4d7da4;
    color:white;
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;
}

#back-to-top i:hover{
    background-color: #a7b9c2;
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;
}

#back-to-top.show{
    opacity: 1;
}

/* BEGIN NAV ICON */

.navicon-button {
    display: inline-block;
    position: relative;
    padding: 2.0625rem 1.5rem;
    transition: 0.25s;
    cursor: pointer;
    opacity: .8;
}
.navicon-button .navicon:before, .navicon-button .navicon:after {
    transition: 0.25s;
}
.navicon-button:hover {
    transition: 0.5s;
    opacity: 1;
}
.navicon-button:hover .navicon:before, .navicon-button:hover .navicon:after {
    transition: 0.25s;
}
.navicon-button:hover .navicon:before {
    top: 11px;
}
.navicon-button:hover .navicon:after {
    top: -11px;
}

.navicon {
    position: relative;
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.5s;
    border-radius: 20px;
}
.navicon:before, .navicon:after {
    display: block;
    content: "";
    height: 3px;
    width: 30px;
    background: white;
    position: absolute;
    z-index: -1;
    transition: 0.5s 0.25s;
    border-radius: 20px;
}
.navicon:before {
    top: 8px;
}
.navicon:after {
    top: -8px;
}

.open:not(.steps) .navicon:before,
.open:not(.steps) .navicon:after {
    top: 0 !important;
}

.open .navicon:before,
.open .navicon:after {
    transition: 0.5s;
}

.open.x .navicon {
    background: transparent;
}
.open.x .navicon:before {
    transform: rotate(-45deg);
}
.open.x .navicon:after {
    transform: rotate(45deg);
}

.the-nav-icon {
    display: flex;
    max-width: 40rem;
    margin: 0 auto;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1px 1px 0 0;
    overflow: hidden;
    /* Smoother animations */
}
.the-nav-icon *, .the-nav-icon *:before, .the-nav-icon *:after {
    transform: translate3d(0, 0, 0);
}

.navicon-block{
    padding-top:25px;
}

.navicon-block > li > a.btn-small{
    background-color:#4d7da4;
    padding:5px 10px;
    font-weight: bold;
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;
}

.navicon-block > li > a:hover.btn-small,.navicon-block > li > a:focus.btn-small{
    color:white;
    background-color:#a7b9c2;
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;
}

/* END NAV ICON */

/* GENERAL FONTS */

html,body{
    font-family: 'Lato', sans-serif;
    font-size:26px;
    font-weight: lighter;
    line-height: 36px;
}

h2{
    font-size:46px;
}

h4{
    font-size:26px;
}

.the_content{
    color:#96a6ae;
    padding-top:40px;
}

.the_content h2{
    color:#000033;
    padding:30px 0px;
    margin:0px;
}

.separator{
    margin:0px;
    height:1px;
    width:160px;
    background-color:#96a6ae;
}

.separator.centered{
    margin:20px auto;   
}

.top-spacer{
    height:170px;
}

.fa.big-icons{
    border:2px solid #96a6ae;
    border-radius:50%;
    height:60px;
    line-height: 60px;
    width:60px;
    text-align: center;
    font-size:24px;
    color:#96a6ae;
}

.fa-search
{
    line-height: 56px;
}

.fa-folder-open-o{
    padding-left:4px;
    line-height: 58px;
}

.fa-file-pdf-o{
    font-size:18px;
    padding-right:4px;
}

/* END GENERAL FONTS */

/* HEADER */

.header .infotext{
    padding-bottom:40px;
}

.header .down-text{
    font-size:18px;
}

.header .small-down-text{
     font-size:13px;
    line-height: 16px;
}

.header .separator{
    background-color: white;
}

.header h2{
    color:white;
    font-weight: bold
}

.header h2 span{
    font-weight: 300;
}

.header .ipad{
    text-align: center;
}

.header .ipad img{
    padding-top:30px;
    max-width:100%;
}

/* END HEADER */

/* SCOPRI ARCA FONDI */

#myCarousel{
    margin:auto;
    width:912px;    
}

.carousel-separator{
    height:80px;
}
#carousel-cornice{
    position:absolute;
    top:0;
    left:0;
}

.carousel-text-item{
    display:none;
    min-height: 140px;
}

.carousel-indicators .active{
    height:14px;
    width:14px;
    border-color: #bb2d2d;
    background: url(https://image.arcafondi.com/lib/fe3e11717564047d7c1472/m/1/194502ed-ba79-4e3e-9e4e-ec8dcd6fc6eb.png) no-repeat center center; 
}

.carousel-indicators li{
    height:14px;
    width:14px;
    border:1px solid #96a6ae;
    background: white;
}

.fa.fa-angle-down{
    border:2px solid #000033;
    border-radius:50%;
    height:60px;
    line-height: 60px;
    width:60px;
    font-size:60px;
    color:#000033;
}

.watchlist-animation-container{
    position:relative;
    width:550px;
    height:422px;
    overflow: hidden;
}

.watchlist-slide{
    position: absolute;
    top:0;
    left:0;  
    width:550px;
}

.watchlist-slide.ws-1{
    display: block;
}

.watchlist-slide img{
    max-width:100%;
}

.watchlist-slide.ws-3{
    top:100%;
}

.watchlist-slide.ws-5,.watchlist-slide.ws-7{
    left:100%;
}

.watchlist-slide.ws-2,.watchlist-slide.ws-4,.watchlist-slide.ws-6,.watchlist-slide.ws-8,.watchlist-slide.ws-9,.watchlist-slide.ws-10{
    display: none;
}

.watchlist-slide.ws-11{
    right:100%;
    left:auto;
}

.interactive-chart-animation-container{
    position:relative;
    width:550px;
    height:422px;
    overflow: hidden;
}

.interactive-chart-slide{
    position: absolute;
    display:none;
    top:0;
    left:0;  
    width:550px;
}

.interactive-chart-slide.ics-3{
    display:block;
}

.interactive-chart-slide img{
    max-width:100%;
}

.portafoglio-animation-container{
    position:relative;
    width:550px;
    height:415px;
    overflow: hidden;
}

.portafoglio-slide{
    position: absolute;
    top:0;
    left:0;  
    width:550px;
}

.portafoglio-slide.ps-1{
    display: block;
}

.portafoglio-slide.ps-3,.portafoglio-slide.ps-15{
    left:100%;
}

.portafoglio-slide.ps-17{
    right:100%;
    left:auto;
}

.portafoglio-slide.ps-2,.portafoglio-slide.ps-4,.portafoglio-slide.ps-5,.portafoglio-slide.ps-6,.portafoglio-slide.ps-7,.portafoglio-slide.ps-8,.portafoglio-slide.ps-9,.portafoglio-slide.ps-10,.portafoglio-slide.ps-11,.portafoglio-slide.ps-12,.portafoglio-slide.ps-13,.portafoglio-slide.ps-14,.portafoglio-slide.ps-16{
    display:none;
}

.portafoglio-slide img{
    max-width:100%;
}


/* END SCOPRI ARCA FONDI */

/* BLOCCO ANIMAZIONI */

.the_content .row{
    padding-top:200px;
}

.the_content .row.first-desc{
    padding-top:100px;
}

.the_content .row.first,.the_content .row.pre-footer{
    padding-top:30px;
}

.animation-description{
    padding-top:20px;
}

.pre-footer .fa-angle-down{
    border:none;
    border-radius:50%;
    height:60px;
    line-height: 60px;
    width:60px;
    font-size:60px;
    background-color:#000033;
    color:white;
}

/* END BLOCCO ANIMAZIONI */

/* FOOTER */

.footer{
    background: #00457c; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.90)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.90)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.90)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.90)); /* Standard syntax */
    min-height: 260px;
    margin-bottom:0px;
    margin-top:40px;
    color:white;
    font-size:26px;
    line-height: 32px;
}

.footer .row{
    padding-top:0px;
    padding-bottom: 0px;
}

.footer .row.last{
    padding-top:60px;
}

.footer .row.first .divider{
    height:1px;
    background-color:white;
    width:100%;
    min-width: 100%;
    margin-top:60px;
}

.footer .branding-description{
    color:white;
}

.footer .branding-description h2{
    margin-top:0px;
    color:white;
    font-weight: bold
}

.footer .branding-description h2 span{
    font-weight: 300;
}

.footer .copy a{
    color:white;
    font-weight: bold;
    font-size:18px;
}

.footer .copy a:hover{
    text-decoration: none;   
}

.footer .copy span{
    font-size:16px;
    line-height: 20px;
}

.footer .fa{
    border:none;
    border-radius:50%;
    height:50px;
    line-height: 50px;
    width:50px;
    text-align: center;
    font-size:28px;
    background-color:white;
    color:rgb(0,69,125);
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;
}

.footer .fa:hover{
    background-color:rgba(255,255,255,0.85);
    -webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -ms-transition:  background 300ms ease;
    -o-transition:  background 300ms ease;
    transition:   background 300ms ease;    
}

.footer .badge-col{
    padding-top:40px;
}

/* END FOOTER */

/* MEDIA QUERY MD */

@media all and (min-width:1200px)
{
    .footer .social{
        padding-top:10px;
    }
    
    .header .arca-logo{
        padding-top:0px;
  font-size:1.0em;
    }
}

@media all and (min-width:992px) and (max-width:1199px)
{
    .header .arca-logo{
        padding-top:0px;
  font-size:0.8em;
    }
    
    #the-menu-links{
        padding-left:100px;
    }

    .footer .badge-col{
        padding-top:40px;
    }

    .footer .social{
        padding-top:20px;
    }

    .watchlist-animation-container
    {
        width:450px;
        height:340px;
    }

    .interactive-chart-animation-container
    {
        width:450px;
        height:340px;
    }


    .portafoglio-animation-container{
        width:450px;
        height:340px;
    }

    .watchlist-slide,.portafoglio-slide,.interactive-chart-slide{
        width:450px;
    }

    .top-spacer.portafoglio{
        height:220px;
    }

}

@media all and (max-width:1199px)
{
 .navbar-default .navbar-brand {
     padding-left: 150px;
 }
    .header .infotext{
        padding-bottom:5px;
    }
}

/* END MEDIA QUERY MD */

/* MEDIA QUERY SM */

@media all and (min-width:768px)
{
    .carousel-indicators{
        right:0;
        width:auto;
        left:auto;
        top:50%;
        margin-left:0px;
    }

    .carousel-indicators .active{
        margin:5px 0px;
    }

    .carousel-indicators li{
        display: inherit;
        margin:5px 0px;
    }
}

@media all and (min-width:768px) and (max-width:991px)
{
 
    #myCarousel{
        width:720px;
    }

    #carousel-cornice{
        width:720px;
        height:auto;
    }

    .navicon-block .btn-small{
        padding-right:10px;
        padding-left:10px;
    }

    #the-menu-links{
        padding-left:10px;
        padding-top:25px;
    }

    #the-menu-links li a{
        padding:5px;
    }

    .footer .social{
        padding-top:15px;
    }

    .footer .copy span{
        line-height: 24px;
        display: block;
        font-size:14px;
    }

    .footer .badge-col{
        padding-top:5px;
    }

}

@media all and (max-width:991px)
{
 #img_novita_arca_click{
  display:none;
 }
 .navbar-default .navbar-brand {
     padding-left: inherit;
 }
    .watchlist-animation-container,.portafoglio-animation-container,.interactive-chart-animation-container{
        width:100%;
        max-width:550px;
        height:1px;
        padding-bottom:60%;
        margin:0 auto;
    }

    .watchlist-slide,.portafoglio-slide,.interactive-chart-slide{
        width:100%;
        height: auto;
    }

    .watchlist-slide img,.portafoglio-slide img,.interactive-chart-slide img{
        width:100%;
        height:auto;
    }

    .row.remove-padding{
        padding-top:0px;
        padding-bottom: 0px;
    }
    .top-spacer{
        height:40px;
    }

    .the_content .col-md-5{
        text-align: center
    }

    .the_content .col-md-5 .separator{
        margin:0 auto;
    }
    .header{
        height:auto;
    }
    .sm-center{
        text-align: center;
    }
    .sm-center .separator
    {
        margin: 0 auto;
    }
    .the_content .row{
        padding-top:140px;
    }
    
    .header .appstore-badge{
        text-align: center;
    }
}

/* END MEDIA QUERY SM */

/* MEDIA QUERY XS */

@media all and (max-width:767px)
{
    .watchlist-animation-container,.portafoglio-animation-container,.interactive-chart-animation-container{
        padding-bottom:78%;
    }

    #myCarousel{
        width:90%;
    }

    #carousel-cornice{
        width:100%;
        height:auto;
    }

    .carousel-indicators{
        bottom:-60px;

    }

    .carousel-indicators .active{
        margin:1px;
    }

    .carousel-text-item{
        min-height: 160px;
    }

    .xs-center{
        text-align: center;
    }
    .branding-container .xs-center > *{
        margin:0 auto;
    }
    .branding-container{
        padding-top:40px;
    }
    .xs-center .logo-header{
        margin:0 auto;
        padding-bottom: 40px;
        padding-top:20px;
    }
    .navbar-toggle{
        margin-top:20px;
    }
    .navbar-collapse{
        position:absolute;
        z-index:999;
        width:100%;
        top:70px;
        background: #00457c; /* For browsers that do not support gradients */
        background: -webkit-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.70)); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.70)); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.70)); /* For Firefox 3.6 to 15 */
        background: linear-gradient(0deg, rgb(0,69,125), rgba(0,69,125,0.70)); /* Standard syntax */
    }
    #the-menu-links{
        display: block !important;
        padding:0px;
    }

    .footer .copy{
        text-align: center
    }

    .footer .social{
        padding-top:40px;
        text-align:center;
    }

    .footer .badge-col .col-xs-6{
        padding-top:20px;
    }
}

/* MEDIA QUERY HYPER SMALL SCREENS */

@media all and (max-width:590px)
{
    .carousel-text-item{
        min-height: 180px;
    }
}

@media all and (max-width:600px)
{
    .carousel-text-item{
        min-height: 180px;
    }
}

@media all and (max-width:570px)
{
    .header .col-xs-6.appstore-badge{
        width:70%;
    }
    
    .header .col-xs-offset-3.appstore-badge{
        margin-left:15%;
    }
}

@media all and (max-width:440px)
{
    .carousel-text-item{
        min-height: 220px;
    }
}

@media all and (max-width:403px)
{
    .header .col-xs-6.appstore-badge{
        width:90%;
    }
    
    .header .col-xs-offset-3.appstore-badge{
        margin-left:5%;
    }
}