@charset "utf-8";
/* CSS Document Concejo */

.sec-noti{          /* noticias */
	position:relative; width:90%; height: auto; margin: 0px; z-index:350; padding: 5%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
	}
/*--------------- Noticias ---------------*/
/*.sec-noti h1{
	float:left; position: relative; width: 100%; height: auto; overflow: hidden; 
    }*/
.noti-content{
	position: relative; width: 100%; height: auto; 
}
.noti-content h1{
	text-align: center; margin-top: 0px;
}
.noti-content h2{
	/*font-size: 20px;*/ margin-bottom: 40px; /*color: grey;*/
}
.noti-100{
	float:left; position: relative; width: 100%; height: auto; /*overflow-x: hidden;*/
    }
.noti-pnls{ /*3 elementos*/
	float:left; position: relative; width: 100%; height: auto; 
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
	-moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
	
	gap:30px;
    }
.noti-pnl{
	position: relative; width: calc(27% - 2px); padding: 2%; /*border: 1px solid rgb(41,41,41);*/ overflow: hidden; cursor:pointer; background-color: rgb(255,255,255);
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;	
	
    }
.noti-marco{
	position:relative; margin:0px; height: 100%; overflow: hidden; 
	
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
		
	}
.img-noti{
	float:left; position:relative; /*max-width: 100%;*/ display:block;  /*z-index: 5001;*/
	width: 100%;
    height: auto;
	
	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/

	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;		
    
	filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    }
@supports(object-fit: cover){
    .img-noti{
         height: 60%; max-height: 320px;
         object-fit: cover;
         object-position: center center;
         }
}
.noti-pnl:hover{
	-webkit-transform:scale(1.03);
	-moz-transform:scale(1.03);
	-ms-transform:scale(1.03);
	-o-transform:scale(1.03);
	transform:scale(1.03);
}
.noti-pnl:hover > img{
	/*filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;*/
    }
.noti-pnl:hover > p{
	/*color:rgb(160,160,160);*/
    }
.noti-pnl p{
	float:left; position:relative; width: calc(100% - 30px); text-align: left; font-size: 16px; margin: 15px 15px 0px 15px;  
    }

.noti-pnl h2{
	float:left; position:relative; text-align: left; font-size: 20px; font-weight: bold;
	margin: 15px 15px 0px 15px; padding: 0px;
}

.lst-noti{
	float:left; margin-left:calc(50% - 43px); margin-top: 20px; display: none; width:86px; height:auto; 
	}
.noti-nro{
    float:left; width:12px; height:12px; border:1px solid rgb(100,100,100); margin: 0px; margin-right: 10px; cursor:pointer;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%; 
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    }
.noti-nro:last-of-type{
	margin-right: 0px; 
    }
.noti-nro:first-of-type{
	background-color: rgb(100,100,100);
	}
.noti-nro:hover{
	background-color: rgb(100,100,100);
	}	
.noti-btn{
	float:left; position:relative; margin-left: calc(50% - 120px); width: 240px; height: 60px; line-height: 60px; text-align: center; color: white; background-color: #13457A; border: none; cursor: pointer; max-width: 100%; margin-top: 30px; font-size: 15px; font-weight: bold;
	
	display: inline-flex;          /* coloca ícono y texto en línea */
  align-items: center;           /* centra verticalmente */
  justify-content: center;       /* centra horizontalmente */
	
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	
	transition: background-color 0.3s ease, transform 0.2s ease;
	}
.noti-btn:hover{	
    color: white;
	background-color: #13457A;
	transform: scale(1.05); 
}

@media all and (max-width: 1000px) {
	/* noticias */
	.sec-noti{
	    position:relative; height: auto; margin: 0px; width:90%; padding: 5%;
        }
	.noti-100{
		width:100%; overflow: hidden; 
	}
	.noti-pnls{ /*1 elementos funciona ok */
	    float:left; position:relative; width: 300%; padding: 0px; margin:0px;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		
		-webkit-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
		
		gap: 0px;
        }
	.noti-pnl{
	    float:left; position: relative; width: 29.33%; padding: 2%; background-color: rgb(255,255,255);
        }
	.noti-marco{
		/**margin:5%; height: 90%; background-color: rgb(255,255,255); overflow: hidden;
		-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.2);*/
	}
	.img-noti{
	    min-width: 100%;
        }
	.lst-noti{
		display: block; 
	    }
	.noti-btn{
		display: block;
	    }
	.noti-content h1{
		font-size: 36px;
	}

	
}