﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

.pop_contenedor {
	margin: 30px auto;
	/*max-width: calc(100vw - 100px);*/
	max-width:1140px;
	width: calc(100vw - 10em);
	padding: 0;
	display: flex;
	align-items: center;
}

.pop_contenedor * {
	box-sizing: border-box;
}

.pop_contenedor .pop_titulo_contenedor {
	width: 50%;	
	text-align: left;
	justify-content: center;
}

.pop_contenedor .pop_titulo {
	color: #212f3d;
    font-size: 36px;
    position: relative;
    padding-bottom: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;
}

.pop_contenedor .pop_titulo:after{
	content: "";
	position: absolute;
	left: 10%;
	bottom: 0;
	width: 270px;
	height: 5px;
	background: #009640;
	transform: translateX(-10%);
}

.pop_contenedor .pop_carrusel_contenedor {
	width: 50%;
	display: block;	
}

/*Ancho del contenedor y margenes superior y auto para centrar*/
.pop_contenedor .slider {
	width: 90%;
	margin: 0px auto;
}

/*Margen entre elementos*/
.pop_contenedor .slick-slide {
	margin: 0px 30px;
}

.pop_contenedor .slick-prev:before,
.pop_contenedor .slick-next:before {
	color: black;
}

.pop_contenedor .slick-slide {
	transition: all ease-in-out .3s;
}

.pop_contenedor .prev-btn, .pop_contenedor .next-btn {
	position:absolute;
	top:50%;
	font-family:monospace;
	font-size:29px;
	color:#f5f5f5;
	cursor:pointer;
	border-radius:50%;
	width:40px;
	height:40px;
	display:flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	transform:translateY(-50%);
}

.pop_contenedor .prev-btn {
	left:-40px;			
}

.pop_contenedor .next-btn {
	right:-40px;
}	

.pop_contenedor .slick-dots {
    margin-top: 2em;
}
.pop_contenedor .slick-dots li{
	width: 10px;
    height: 10px;
}
.pop_contenedor .slick-dots li button{
	background: #212f3d;
	width: 10px;
    height: 10px;
    border: none;
    border-radius: 100%;
    opacity: 0.5;
}
.pop_contenedor .slick-dots li.slick-active button{
    opacity: 1;
}


.pop_contenedor .pop_item {
	padding: 10px 0;
}

.pop_contenedor .pop__link-img {
	display: flex;
	transition: all 0.3s ease 0s;
    flex-direction: column;
    align-items: center;
}

.pop_contenedor .pop__link-img:hover {
	text-decoration : none;
	transform: scale(1.1);
}

.pop_contenedor .pop_item-text {
	color: #506172;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
    font-size: 1rem;
}

.pop_contenedor .pop_item-img {
	width: 90px;
}