﻿/**
 * Estilos Enlaces de interes
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

.enlaces-interes{
	background: #f9f9f9;
	display: block;
	padding: 2em 0;
}

.enlaces-interes .enlaces-interes__titulo{
	color: #212f3d;
	text-align: center;
    font-size: 36px;
    position: relative;
    padding-bottom: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;    
}

.enlaces-interes .enlaces-interes__titulo:after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 210px;
	height: 5px;
	background: #009640;
	transform: translateX(-50%);
}

.enlaces-interes .enlaces-interes__carrusel{
	display: block;
	padding: 5em 0;
	width: calc(100vw - 10em);
	max-width: 1140px;
    margin: 0 auto;
}

.enlaces-interes .enlaces-interes__lista{
	display: block;
	list-style: none;
	padding: 0;
	justify-content: center;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}

.enlaces-interes .enlaces-interes__item{
	display: flex !important;
	height: 160px;
	justify-content: center;
	flex-grow: 1;
	padding: 0 1.5em;
}

.enlaces-interes .enlaces-interes__link{
	display: flex !important;
	justify-content: center;
	flex-grow: 1;
	transition: all 0.3s ease 0s;
}

.enlaces-interes .enlaces-interes__link:hover{
	text-decoration : none;
	transform: scale(1.1);
}

.enlaces-interes .enlaces-interes__link-img{
	flex-grow: 1;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.enlaces-interes .enlaces-interes__content{
	flex-grow: 3;
	padding: 0 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.enlaces-interes .enlaces-interes__item-img{
	display: block;
}

.enlaces-interes .enlaces-interes__item-text{
	color: #506172;
	font-family: 'Montserrat', sans-serif;
	/*text-align: justify;*/
}

.enlaces-interes h3.enlaces-interes__item-text{
	font-weight: 600;
	line-height: 1em;
	font-size: 1.5em;
	margin-left: 0;
	margin-right: 0;
}

.enlaces-interes p.enlaces-interes__item-text{
	font-family: 'Work Sans', sans-serif;
	line-height: 1.3em;
	margin-bottom: 0;
}

.enlaces-interes .enlaces-interes__link-text{
	color: inherit;	
}
.enlaces-interes .pre-btn,.next-btn{
  position:absolute;
  top:50%;
  font-size:18px;
  color:#506172;
  cursor:pointer;
  border-radius:50%;
  width:40px;
  height:40px;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  transform:translateY(-50%);
}

.enlaces-interes .pre-btn{
  left:-40px;
  z-index:10;
}

.enlaces-interes .next-btn{
  right:-40px;
  z-index:10;
}
.enlaces-interes .slick-dots{
	margin-top: 2em;
}
.enlaces-interes .slick-dots li{
	width: 10px;
    height: 10px;
}
.enlaces-interes .slick-dots li button{
	background: #212f3d;
	width: 10px;
    height: 10px;
    border: none;
    border-radius: 100%;
    opacity: 0.5;
}
.enlaces-interes .slick-dots li.slick-active button{
    opacity: 1;
}

@media (max-width: 768px) {
	.enlaces-interes .enlaces-interes__carrusel{
		display: block;
		padding: 3em 0;
		width: 100vw;
	    margin: 0;
	}
}