
header.carousel {
    height: 80%;
}

.noticia-slide{
    color: white;
    font-size: 26px;
}

/* Bouncing arrows */
.scrollToTop{
    z-index: 500; 
    text-align:center; 
    background: unset;
    font-weight: bold;
    color: #A5A5A5;
    text-decoration: none;
    position:fixed;
    top: 85px;
    right: 0px;
    padding: 10px;
    display:none;
}

.scrollToBottom{
    z-index: 500; 
    text-align:center; 
    background: unset;
    font-weight: bold;
    color: #A5A5A5;
    text-decoration: none;
    position:fixed;
    bottom: 7px;
    right: 0px;
    padding: 10px;
    display:none;
}
.scrollToBottom:hover, .scrollToTop:hover{
    text-decoration:none;
    color: #A5A5A5;
}

.scrollToBottom:active, .scrollToTop:active{
    color: #A5A5A5;
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
                transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
                transform: translateY(-15px);
    }
}

/* Introduction area */
.introduction-text{
    padding: 0 12% 0 12%;
    font-size: 15px;
    text-align: center;
}

/* Social area */
.twitter-container{
    text-align: right;
}

.facebook-container{
    text-align: left;
}



@media (max-width: 991px){
    #twitter-widget-0{
        width: 400px;
    }

    .twitter-container{
        text-align: center;
        padding-right: 60px;

    }
    
    .facebook-container{
        text-align: center;
    }
    
    .facebook-container iframe{
        width: 405px;
    }    
}

@media (max-width: 540px){
    .twitter-container{
        padding-right: unset;
    }

    .facebook-container iframe{
        width: 100%;
    }  
}