﻿.bnc_home_banners
{
	padding-top: 2em !important;
}
.bnc_home_banners .swiper-slide 
{
	border-radius: 10px;
    overflow: hidden;
}
.bnc_home_banners .bnc-banner-image
{
	display: flex;
	background-color:var(--color-azul-gris);
}
.bnc_home_banners .swiper-slide .bnc-banner-image img
{
	width:100%;
	transition: all linear 0.5s;
}
.bnc_home_banners .swiper-slide:hover .bnc-banner-image img
{
	opacity: 0;
}
.bnc_home_banners .swiper
{
	overflow:hidden;
	width:80vw;
}
.bnc_home_banners .bnc-banner-content
{
	position: absolute;
    top: 0;
    width:100%;
    box-sizing: border-box;
    padding: 1.5em;
    color:#fff;
    opacity: 0;
    transition: all linear 0.5s;
}
.bnc_home_banners .swiper-slide:hover .bnc-banner-content
{
	opacity: 1;
}
.bnc_home_banners .bnc-banner-content h6
{
	font-family:var(--Lato);
	font-weight:bold;
	font-size: 1.4em;
    margin-bottom: 1em;
}
.bnc_home_banners .bnc-banner-content .bnc-banner-card-content
{
	font-family:var(--Lato);
	font-size:1em;
}
.bnc_home_banners .bnc-banner-action
{
	position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.bnc_home_banners .bnc-banner-action a
{
	font-family:var(--Lato);
	background-color:var(--color-azul-principal);
	color:#fff;
	padding: 0.1em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 10px;
    font-weight: 300;
    transition: all linear 0.5s;
}
.bnc_home_banners .swiper-slide:hover .bnc-banner-action a
{
	background-color:transparent;
	border: 1px #fff solid;
	color:#fff;
}
.bnc_seccion_titulo_banners .swiper-pagination
{
	position:relative;
	width: 100%;
    text-align: right;
}
.bnc_seccion_titulo_banners .swiper-pagination-bullet
{
	margin:0.5%;
}
/*MEDIA QUERY*/
@media screen and (min-width: 1500px)
{
	.bnc_home_banners .bnc-banner-content
	{
	    padding: 2em;
	}
	.bnc_home_banners .bnc-banner-content h6 
	{
	    font-size: 2em;
	}
	.bnc_home_banners .bnc-banner-content .bnc-banner-card-content 
	{
	    font-size: 1.2em;
	}
	.bnc_home_banners .bnc-banner-action a
	{
		font-size: 1.1em;
	}

}
@media screen and (min-width: 900px)
{
	.bnc_home_banners .bnc-banner-action a
	{
		font-size:1.4em;
	}
}