@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{
	/*float: left; position: relative; width: 31.33%; height: auto; margin:1%; overflow: hidden; z-index: 5000; background-color: rgb(255,255,255); cursor:pointer; padding: 0px;*/
	position: relative; width: calc(27% - 2px); padding: 2%; border: 1px solid rgb(41,41,41); overflow: hidden; cursor:pointer; background-color: rgb(21,21,21);
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;	
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
    }
.noti-marco{
	position:relative; margin:0px; height: 100%; overflow: hidden; 
	
	/*-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;*/
	
	-moz-box-shadow: 0px 0px 45px -30px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 0px 45px -30px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 45px -30px rgba(0,0,0,0.5);
		
	}
.img-noti{
	float:left; position:relative; /*max-width: 100%;*/ display:block;  /*z-index: 5001;*/
	width: 100%;
    height: auto;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;

	-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; color:grey; 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; color:rgb(255,255,255);
}

.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% - 130px); width: 260px; height: 60px; line-height: 60px; text-align: center; color: rgb(255,255,255); background-color: rgb(24,50,157); border: none; cursor: pointer; max-width: 100%; margin-top: 30px;
	
	-webkit-border-radius:27px;
	-moz-border-radius:27px;
	border-radius:27px;
	
	-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-btn:hover{	
    color: rgb(41,41,41); background-color: rgb(255,255,255); 
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
    }
.noti-arrow{
	position:absolute; height: 36px; width: 36px; right:-60px; bottom:10px;
	
	-webkit-transition: transform 0.8s; /** Chrome & Safari **/
	-moz-transition: transform 0.8s; /** Firefox **/
	-o-transition: transform 0.8s; /** Opera **/
	transition: transform 0.8s;
    }
.noti-arrow span{
	height: 36px; width: 36px; line-height: 36px;
}
.noti-pnl:hover .noti-arrow{
	-webkit-transform: translate(-70px); /** Chrome & Safari **/
	-moz-transform: translate(-70px); /** Firefox **/
	-o-transform: translate(-70px); /** Opera **/
	transform: translate(-70px);	
}

@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; 
		-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	}
	.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: calc(29.33%); padding: 2%; border: 1px solid rgb(41,41,41); /*overflow: hidden; */cursor:pointer; background-color: rgb(21,21,21);
        }
	.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;
	    }


	
}