/*slider*/
.ContentSlider{
	width: 100%;
	height: 67vh;
	position: relative;
	overflow: hidden;
}
.SliderItems{
	display: none;
	position: relative;
}
.ImgSlider>img {
    width:100%;
 }

.TitleSlider{
	width: 520px;
	background-color: rgba(0, 0, 0,0.6);
	padding: 10px;
	position: absolute;
	top: 30%;
	left: 15%;
	z-index: 995;
}
.TitleSlider>h2{
	font-size: 1.8em;
	font-family: 'Open Sans', sans-serif;
	color: #D9AA0B;
}

.BtnSliderSw{
	border: 1px solid #f2f2f2;
	padding: 5px;
	border-radius: 5px;
	text-decoration: none;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.BtnSliderSw>span{
	font-size: 1em;

}
.BtnSliderSw:hover{
	background-color: #D9AA0B;
	transition: all 0.6s ease;
	border: 1px solid #D9AA0B;
}

.SliderBtn{
	display: none;
	width: 100%;
	height: 10%;
	top: 50%;
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 990;
}

.SliderBtn>a{
	display: inline-block;
	padding: 20px;
	font-size: 2.4em;
	text-decoration: none;
	color: #f2f2f2;
	cursor: pointer;
}

.Barras{
	display: none;
	width: 100%;
	height: 10%;
	bottom: 10px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.Barra{
	cursor: pointer;
	height: 4px;
	width: 35px;
	margin: 0 5px;
	background-color: #f3f3f3;
	display: inline-block;
}
.Active{
	background-color: #00194e;
}
.Fade{
	animation-name: fade;
	animation-duration: 1.5s;
}

 @keyframes fade{
 	from {opacity: .4;}
 	to {opacity: 1;}
 }

/*Nostros*/
.NosotrosIndex{
	padding:  15px 150px;

}
.TitleNosotros{
	width: 100%;
	color: #00194e;
	border-bottom: 1px solid #D9AA0B;
	padding-bottom: 5px
}
.TitleNosotros h3{
	font-size: 1.2em;
}

.NosotrosIndex>p{
	font-size: 1em;
	padding-top: 10px;
	text-align: justify;
	word-wrap: break-word;
}

.Alianzas{
	padding:  15px 150px;
	display: flex;
	flex-direction: column;
}
.Alianzas>.AlianzaTitle{
	width: 100%;
	color: #00194e;
	border-bottom: 1px solid #D9AA0B;
	padding-bottom: 5px
}
.AlianzaTitle h4{
	width: 100%;
	font-size: 1.2em;
	color: #00194e;
}
.AlianzaImg{
	width: 100%;
	padding: 10px;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(5, 1fr);
}
.AlianzaItems>img{
	width: 180px;
}
.AlianzaItems>a>span>img{
	width: 170px;
}

/*Responsive*/
@media screen and (max-width: 900px) {
	.ContentSlider{
		width: 100%;
		height: 23vh;
		position: relative;
		overflow: hidden;
	}

	.NosotrosIndex{
		padding:  15px 50px;
	}
	.Alianzas{
		padding: 50px;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.Alianzas>.AlianzaTitle{
		border-bottom: 1px solid #D9AA0B;
		width: 100%;
		
	}
	.AlianzaImg{
		padding: 10px;
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}
	.TitleSlider{
		width: 50%;
		background-color: rgba(0, 0, 0,0.6);
		padding: 10px;
		position: absolute;
		top: 30%;
		left: 70px;
		z-index: 995;
	}
	.TitleSlider>h2{
		font-size: 1.8em;
		font-family: 'Open Sans', sans-serif;
		color: #D9AA0B;
	}
	.BtnSliderSw>span{
		/*font-size: 1em;*/
		font-size: 16px;

	}
	.SliderBtn{
		display: none;
		width: 100%;
		height: 10%;
		top: 40%;
		position: absolute;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 990;
	}
	.TitleNosotros h3{
		font-size: 1.2em;
	}
	.AlianzaTitle h4{
		font-size: 1.2em;
		padding-left: 10px;
	}

}
@media screen and (max-width: 500px) {
	.NosotrosIndex{
		padding:  15px 20px;
	}
	.NosotrosIndex p{
		font-size: 1em;
	}
	.Alianzas{
		padding: 30px;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.Alianzas>.AlianzaTitle{
		border-bottom: 1px solid #D9AA0B;
		width: 100%;
		margin: 10px auto;
	}
	.AlianzaImg{
		padding: 10px;
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(1, 1fr);
	}
	.TitleSlider{
		width: 70%;
		background-color: rgba(0, 0, 0,0.6);
		padding: 10px;
		position: absolute;
		top: 10%;
		left: 70px;
		z-index: 995;
	}
	.TitleSlider>h2{
		font-size: 1.7em;
		font-family: 'Open Sans', sans-serif;
		color: #D9AA0B;
	}
		/*Ajuste imagen sin link*/
	.AlianzaItems img{
		width: 100%;
	}
	/*Ajuste de imagen con link*/
	.AlianzaItems>a>span>img{
		width: 100%;
	}
	.TitleNosotros h3{
		font-size: 1.2em;
	}
	.AlianzaTitle h4{
		font-size: 1.2em;
		padding-left: 10px;
	}
}
@media screen and (max-width: 412px) {
	.ContentSlider{
		width: 100%;
		height: 20vh;
		position: relative;
		overflow: hidden;
	}
	.TitleSlider{
		background-color: rgba(0, 0, 0,0.6);
		padding: 5px;
		position: absolute;
		top: 15%;
		left: 15%;
		z-index: 995;
	}

	.Barras{
		display: none;
		width: 100%;
		height: 10%;
		bottom: 10px;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
	.TitleSlider>h2{
		font-size: 1em;
		font-family: 'Open Sans', sans-serif;
		color: #D9AA0B;
	}
	.TitleNosotros h3{
		font-size: 1em;
	}	
}
@media screen and (max-width: 380px) {
	.Alianzas{
		padding: 10px;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	/*Ajuste imagen sin link*/
	.AlianzaItems img{
		width: 100%;
	}
	/*Ajuste de imagen con link*/
	.AlianzaItems>a>span>img{
		width: 100%;
	}
	.TitleSlider{
		width: 70%;
		background-color: rgba(0, 0, 0,0.6);
		padding: 10px;
		position: absolute;
		top: 10%;
		left: 60px;
		z-index: 995;
	}
	.TitleSlider>h2{
		font-size: 1em;
		font-family: 'Open Sans', sans-serif;
		color: #D9AA0B;
	}
	.TitleNosotros h3{
		font-size: 1em;
	}
	.AlianzaTitle h4{
		font-size: 1em;
		padding-left: 10px;
	}
	.NosotrosIndex>p{
		font-size: 0.9em;
		padding-top: 10px;
		text-align: justify;
		word-wrap: break-word;
	}

	.Barras{
		display: none;
		width: 100%;
		height: 10%;
		bottom: 10px;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
}
@media screen and (max-width: 375px) {
	.ContentSlider{
		width: 100%;
		height: 25vh;
		position: relative;
		overflow: hidden;
	}
	.TitleSlider{
		background-color: rgba(0, 0, 0,0.6);
		padding: 5px;
		position: absolute;
		top: 5%;
		left: 15%;
		z-index: 995;
	}

	.Barras{
		display: none;
		width: 100%;
		height: 10%;
		bottom: 10px;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
	.TitleSlider>h2{
		font-size: 1em;
		font-family: 'Open Sans', sans-serif;
		color: #D9AA0B;
	}
	.TitleNosotros h3{
		font-size: 1em;
	}
	.AlianzaTitle h4{
		font-size: 1em;
		padding-left: 10px;
	}
	.NosotrosIndex>p{
		font-size: 0.9em;
		padding-top: 10px;
		text-align: justify;
		word-wrap: break-word;
	}

}

