﻿/**
 * Estilos POP
 */

 .pop .pop__cabecera{
    display: flex;
    width: 100%;
    height: 256px;
    justify-content: center;
    align-items: center;
    /*background: green;*/
    background-image: url("/es-co/planificacion/PublishingImages/bg_pop.png");
    background-repeat: no-repeat;
    background-position: center;
}

.pop .pop__titulo-superior{
	font-family: 'Montserrat', sans-serif;
    font-weight: bold;
	color: white;
	font-size: 3em;
    text-align: center;
}

.pop .pop__descripcion{
    margin: 80px 0;
}

.pop .pop__titulo{
	color: #212f3d;
	text-align: center;
    font-size: 36px;
    position: relative;
    padding-bottom: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0 0 1em;    
}

.pop .pop__titulo:after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 210px;
	height: 5px;
	background: #009640;
	transform: translateX(-50%);
}

.pop .pop__resumen{
	font-size: 1.4em;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #506172;
    line-height: 1.3em;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.pop .pop__contenedor{
    margin: 1em auto;
    background:#f9f9f9;
}

.pop .pop__categorias{
    align-items: flex-end;
    margin: 0 auto;
    padding: 50px 150px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.pop .pop__tabs{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    height: 200px;
}

.pop .pop__boton{
	background: white;
    box-shadow: 2px 2px 5px #00000030;
    color: black;
    appearance: none;
    -webkit-appearance: none;
    outline: 0;
    width: 100%;
    max-width: 230px;
    height: 180px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    border: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.pop .pop__boton:hover{
    border-top: 5px solid #009640;
    transform: translateY(-5px);
    color: #009640;
    height: 200px;
    text-decoration: none;
}


