#slider{
    visibility: hidden;
    opacity: 0;
}

/* slide wrapper */
.slider {
	position: relative;
	height: 100%;
	width: 100%;
	overflow:hidden;
}

/*ventana de slide*/
.slider-content {
	margin-top: 70px;
	position: relative;		
	width: 100%;
}

/* SLIDER TITLE */

.slider__brands-title{
    position: absolute;
    top: 10px;
    width: 100%;

    display: flex;
    justify-content: center;
}
.slider__brands-title > hr{
    height: 3px;
    width: 50px;
    background-color: #D6D6D6;
    border: 0;
    border-radius: 10px;

    margin: 20px 50px;
}
.slider__title{
    font-size: 2rem;
    color: #004D9A;
}

.slider__title > span{
font-weight: 700;
}

/*container para sliders*/
.slider-content-wrapper {
	display: flex;
	height:300px;
	transition: transform 0.5s ease-in-out;
}

/*Slide*/
.slider-content__item {
	flex: 1 0 100%;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 100px;
	color: rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-1 {
    background-image: url('../img/AVS-Electronics.png');
    background-size: auto;
}
.image-2 {
    background-image: url('../img/Clarius.png');
    background-size: auto;
}
.image-3 {
    background-image: url('../img/gjd-logo.png');
    background-size: auto;
}
.image-4 {
    background-image: url('../img/KBC.png');
    background-size: auto;
}
.image-5 {
    background-image: url('../img/TAKEX.png');
    background-size: auto;
}
.image-6 {
    background-image: url('../img/Tempos-Analytics.png');
    background-size: auto;
}
.image-7 {
    background-image: url('../img/logo.png');
    background-size: auto;
}



/* bloque de controles */
.slider-controls {
	padding:20px;
	text-align: center;
}

/* bloque de control dentro de la ventana */
.slider-content__controls {
	position:absolute;
	top:0;left:0;
	width: 100%;
	height: 100%;
	z-index:1;
}

/* Arrows */
.prev-arrow, .next-arrow {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	cursor: pointer;
	color:rgba(0,0,0, 0.3);
	width: 20px;
	transition: all 0.3s;
}
.prev-arrow {left: 20px;}
.next-arrow {right: 20px;}

.prev-arrow:hover,
.next-arrow:hover {
	cursor: pointer;
	color:rgba(0,0,0, 0.7);
}

/* Dots */
.dots {
	position:absolute;
	display: flex;
	left:50%;
	transform: translateX(-50%);
	bottom:10%;
}

.dot {
	cursor: pointer;
	width: 8px;
	height: 8px;
	margin-right: 4px;
	background-color: hsl(210, 40%, 69%);
	border-radius: 50%;
	transition:all 0.3s;
}

.dot:last-child {margin-right: 0;}
.dot--active {background-color: #004D9A;}


/* Mods */
.disabled {
	background-color: #DCCFCF;
	color:#B0A8A8;
	cursor: default;
	pointer-events:none;
}

.d-none {display: none;}
.active {opacity: 1;}
.centered {
	position:relative;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);	
}
