body{
    background: url('../img/bg-web.jpg') no-repeat fixed;
    background-size: cover;
}
.bg-degradado-naranja{
    background: #f58434; /* Old browsers */
    background: -moz-linear-gradient(top,  #f58434 0%, #f89a33 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #f58434 0%,#f89a33 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #f58434 0%,#f89a33 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f58434', endColorstr='#f89a33',GradientType=0 ); /* IE6-9 */

}
strong{
    font-weight: bold;
}
.menu-full{
    list-style: none;
    align-items: center;
    flex-direction: row;
}
.menu-full > li{
    display: block;
}
.menu-full > li > a{
    color: white;
    padding: 1.4em 1em;
    display: block;
}
.menu-full > li > a::after{
    content: ' ';
    display: block;
    width: 0%;
    height: 1px;
    background: white;
    margin: 0 auto;
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: ease-in-out;
}
.menu-full > li > a:hover::after,
.menu-full > li > a.activo::after{
    width: 80%;
}
.carousel .carousel-control-next-icon, .carousel .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
}
a.img-banners img{
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: ease-in-out;
}
a.img-banners:hover img{
    transform: scale(1.05);
    box-shadow: 0 0 0.5em rgba(0,0,0,0.3);
}