

/**************************HOME CSS**************************/

.publications-rubros {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.publications-rubros>.pub-dest {
    -ms-flex: 1 0 70%;
    -webkit-box-flex: 1 0 70%;
    flex: 1 0 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-direction: column;
    flex-direction: column;	
}

.pub-dest header {
    font-size: 2rem;
    line-height: 4.4rem;
	padding-left:2px;
}

.pub-dest header img {
    width: 5rem;
    filter: brightness(0.29) saturate(225) hue-rotate(125.5deg);
}

.pub-dest .content {
    position: relative;
    background-color: rgb(242, 242, 242);
}

.pub-dest .content>div {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
}
.pub-dest .content>div .list-item {
    -ms-flex:  0 49%;
    -webkit-box-flex:  0 49%;
    flex:  0 49%;
	width:49%;
	margin-bottom:2rem;
}
.pub-dest .content .block-publish img {
    height: 150px;
}

.pub-dest .content .bootom-link:before {
    position: absolute;
    top: 0;
    content: "";
    width: 50%;
    height: 1px;
    background-color: rgb(179, 179, 179);
}

.pub-dest .content .bootom-link {
    padding: 1rem;
    font-size: 2rem;
    line-height: 2.5rem;
    color: rgb(51, 51, 51);
    position: absolute;
    bottom: 0;
    left: 0;
}

.publications-rubros .SDPub {
    -ms-flex: 1 0 30%;
    -webkit-box-flex: 1 0 30%;
    flex: 1 0 30%;
	text-align:center;
	margin:0 auto;
}

@media only screen and (min-width:960px) {
    .pub-dest .content {
        padding: 3rem;
        padding-bottom: 5rem;
    }
}

@media only screen and (max-width:960px) {
    .publications-rubros>* {
        width: 100%;
    }
    .pub-dest .content {
        padding: 1rem;
        padding-bottom: 5rem;
    }
}

@media only screen and (max-width:768px) {
    .pub-dest .content .block-publish img {
        height: 100px;
    }
}

@media only screen and (max-width:560px) {
    .pub-dest .content .block-publish img {
        height: 150px;
    }
    .pub-dest .content .block-publish {
		margin: 0;
        margin-bottom: 2rem;
    }
    .publications-rubros,
    .pub-dest .content>div {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .pub-dest .content .bootom-link {
        position: relative;
        width: -moz-fit-content;
        width: fit-content;
    }
    .pub-dest .content>div .list-item {
        -ms-flex: 1 0 100%;
        -webkit-box-flex: 1 0 100%;
        flex: 1 0 100%;
		width:100%;
    }
}

