*{
margin:0;
	padding:0;
	box-sizing:border-box;
}
/*
º
*/
.mobileMenu li:before{
    content:unset;
}

.fakeHeaderSocialIcons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fakeHeaderSocialIcons a {
    display: block;
}

.fakeHeaderSocialIcons>div {
    width: 31px;
    height: 31px;
}

.fakeHeaderSocialIcons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}

.fakeHeader {
    display: flex;
    flex-direction: row;
    padding: 0 10%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    left: 0;
    box-sizing: border-box;
    top: 4%;
}

.fakeHeaderSocials {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fakeHeaderNav {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
}

.fakeHeaderBlogButton {
    transform: translateX(-40%);
}

.fakeHeaderNav a {
    text-decoration: none;
    color: black;
    font-family: 'Outfit', 'Sans-serif';
    font-weight: 200;
    font-size: 1.3em;
	transform:scale(1);
	transition:0.3s ease-in-out;
}
.fakeHeader a:hover{
transition:0.3s ease-in-out;
	transform:scale(1.1);
	text-decoration:underline;
}

.fakeHeaderBlogButton a {
    text-decoration: none;
    font-family: 'Outfit', 'Sans-serif';
    font-weight: 200;
    color: black;
    border: 1px solid #163840;
    border-radius: 6px;
    font-size: 1.3em;
    padding: 7px 30px;
}

.fakeHeaderLogo a {
    font-family: 'Outfit', 'Sans-serif';
    font-weight: 600;
    text-decoration: none;
    font-size: 2.4em;
    color: #163840;
}
@media only screen and (max-width:1750px){
    html .fakeHeaderNav a {
        font-size: 1.1em;
    }
    html .fakeHeaderBlogButton a {
        font-size: 1.1em;
    }

}


@media only screen and (max-width:1150px){

    html .fakeHeaderNav {
        display: none;
    }
    html .fakeHeaderSocials {
        display: none;
    }
}


@keyframes growDown {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes growDownR {
    0% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0);
    }
}


.growDown {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.growDownR {
    animation: growDownR 300ms ease-in-out forwards;
    transform-origin: top center;
}

.headerMenuPhone{
    display:none;
  }



@media only screen and (max-width:1100px){
    .displayNone {
        display: none!important;
    }

.headerMenuPhone{
    display:flex;
 justify-content: flex-end;
 position: relative;
 

  }
.menu svg {
        width: 50px;
        height: 50px;
    }



    button.menu {
    background-color: transparent;
    border: none;
    position: relative;
}
.line {
    fill: none;
    stroke: #163840;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }
    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }
    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .mobileMenu {
        position: absolute;
        z-index: 10;
        background-color: white;
        width: max-content;
        border-top: 3px solid #163840;
        transition: all 0.4s ease-in-out;

        top: 88%;
        right: 10%;
        display: flex;
        aspect-ratio: 1/1.2;
        align-items: center;
        padding: 20% 13%;
    }
.mobileMenu ul {
    padding: 0;
    margin: 0;
    transform: scale(0.85);
    flex-direction: column;
    display: flex;
    gap: 0.3em;
    height: 100%;
    justify-content: center;
}

    .mobileMenu li {
        list-style: none;
    }
    .mobileMenu li a {
        text-decoration: none;
        color: #163840;
        font-family: 'Outfit';
        font-size: 1.3em;
    }

}


/*
END HEADER
*/
.container{
padding:2em 11em;
}

.titulo{
display:flex;
	flex-direction:column;
	gap:2em;
}

.container h1{
    text-align: center;
    font-family: 'Outfit';
    font-size: 3em;
}
.titulo h2{
    font-family: 'Outfit';
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 400;
	text-align:center;
	margin-top:-1.5%;
	padding-bottom:2em;
}


img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.contenedor-entradas {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
    flex-wrap: wrap;
}
.entrada {
    width: 27%;
    border: #000 0px solid;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    height: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
}
.entrada h2 {
    font-family: 'Outfit';
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.entrada p {
    font-family: 'Outfit';
    font-size: 1.1em;
    margin-top: 0.4em;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.img-entrada {
    width: 140px;
    margin: 0 auto;
    height: 140px;
}
.desc-entrada {
    padding-bottom: 0.4em;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leer-mas {
    padding-bottom: 1em;
    width: 100%;
}
.leer-mas a {
    font-family: 'Outfit';
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    background-color: #163840;
    width: 100%;
    display: block;
    padding: 0.5em;
	transition:0.4s ease-in-out;
}
.leer-mas a:hover{
background-color:#A9BEAC;
	transition:0.4s ease-in-out;
}


.borde {
    border-bottom: 1px solid #000;
    margin-top: auto;
    width: 40%;
    margin-bottom: 1em;
}

.desc-entrada a{
    text-decoration: none;
    color: #163840;
}


.pagination{
display:flex;
	justify-content:center;
	align-items:center;
	padding-top:2em;
}
.pagination .page-numbers{
font-family: 'Outfit';
    font-size: 1.6em;
    margin: 0 6px;
    border: 1px solid #000;
    padding: 0.1em 0.6em;
    color: #163840;
	transition:0.3s ease-in-out;
}
.page-numbers:not(.current):hover{
	color:#FFF;
	background-color:#A9BEAC;
transition:0.3s ease-in-out;
}
.current{
color: #FFF!important;
	background-color:#163840;
}

/* -------------- Laptop---------*/
@media only screen and (max-width: 1600px) { 
	.container {
    padding: 2em 0;
}
.entrada {
    width: 31%;
}


}


/* -------------- Tablet---------*/
@media only screen and (max-width: 1200px) { 
	.container {
    padding: 2em 2em;
}
	    .entrada {
        width: 46%;
    }
	.entrada h2 {
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 1.3em;
}
.entrada p {
    font-family: 'Outfit';
    font-size: 1em;
    margin-top: 0.4em;
}


}


/* -------------- Mobile---------*/
@media only screen and (max-width: 650px) { 
	.contenedor-entradas{
	flex-direction:column;
	
	}
	#container{
	    padding-top: 3em;
	}
.container {
    padding: 2em 1em;
}
	.entrada {
    width: 90%;
	}
	.entrada h2 {
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 1.4em;
}
	.entrada p {
    font-family: 'Outfit';
    font-size: 1em;
    margin-top: 0.4em;
}
	.borde {
    border-bottom: 1px solid #000;
    margin-top: 1em;
    width: 100%;
    margin-bottom: 1em;
}
	.pagination .page-numbers {
    font-family: 'Outfit';
    font-size: 0.9em;
    margin: 0 6px;
    border: 1px solid #000;
    padding: 0.1em 0.6em;
    color: #163840;
    transition: 0.3s ease-in-out;
}

}

