/*
Theme Name: EnclavesTheme
Text Domain: Enclaves
Version: 1.0.0
Description: Theme de pagina con perfil institucional y blog
Tags: static-navbar, responsive, institucional, blog
Author: mapache-web
Author URI: https://github.com/mapache-web
*/

:root {
    --primary: #0F75BC;
    --light-primary: #448fc4;
    --secondary: #f7f7f7;
    --info:  #4361a1;
    --violet: #cb93f4;
    --blue: #60bde6;
    --background-info: #afbedf;
    --background-light-secondary: #ffffff;
    --gray: #202020;
    --logo-blue: #4361a1;
    --logo-gray : #606060;
    --webkit-box-sizing: border-box;
    --moz-box-sizing: border-box;
    --webkit-font-smoothing: antialiased;
    --moz-font-smoothing: antialiased;
    --o-font-smoothing: antialiased;
    --font-smoothing: antialiased;
    --text-rendering: optimizeLegibility;
    --fuente-titulos: "Asap", sans-serif;
    --content-max-width: 900px;
    --header-height: 70px;
    --footer-height: 35px;
    --seccion-height: calc(100vh - var(--footer-height) - var(--footer-height));
}



* {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
}

a:hover{
    color: #202020;
}

body {
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth;
    overflow-y: auto;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

.header {
    position: fixed;
    overflow: hidden;
    z-index: 10;
    top: 0;
    padding: 5px;
    transition: .5s;
    display: flex;
    width: 100%;
    align-items: center;
    background-color: white;
    justify-content: space-around;
    opacity: 0.97;
    box-shadow: 0.5px 0.5px 2px lightgray;
}
.logo > img {
    display: block;
}
.custom-logo-link {
    width: 100%;
}
.custom-logo-link img{
    width: auto;
    max-height: 60px;
}
/* ------------------- NAV SECTION ------------------- */
.navbar-desktop {
    align-items: center;
    display: flex;
    text-align: left;
    font-family: var(--fuente-titulos);
    font-optical-sizing: auto;
}
.navbar-mobile {
    text-align: left;
    font-family: var(--fuente-titulos);
    font-optical-sizing: auto;
    display: none;
    background-color: var(--primary);
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 5em;
    height: 100vh;
    min-width: 50%;
    z-index: 12;
    width: 17rem;
}
.icono-menu {
    display: none;
}
.icono-cerrar-menu {
    display: none;
}

.header ul {
    list-style-type: none;
    margin: 0 auto;
}

a {
    transition: all 0.5s ease;
}

.header > ul a {
    width: inherit;
}

.header > ul li {
    display: inline;
}

.header > ul li a {
    display: inline-block;
    text-decoration: none;
    color: var(--logo-gray);
    border-bottom: 3px solid transparent;
    transition: all .4s ease-in-out;
    padding: 5px;
    letter-spacing: 0.5px;
}

.header > ul li a:hover,
.menu li a:hover,
.search-item li a:hover {
    color: var(--primary);
    cursor: pointer;
}

.menu li a,
.search-item li a{
    border: 3px solid transparent;
    display: block;
    width: 100%;
    margin-right: 0;
    padding: 0rem 1rem;
    text-decoration: none;
    color: #FFFFFF;
	font-family: var(--fuente-titulos);
	font-size: 1rem;
}

#nav-wrap-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.search-area,
.searchform {
    position: fixed;
    background-color: transparent;
    z-index: 13;
}

/* Estilo para el menÃº desplegable */
.nav-dropdown ul {
    display: none;
    position: fixed;
    background-color: transparent;
    z-index: 13;

}


/* Estilo para los elementos del menÃº desplegable */
.nav-dropdown ul li{
    display: block;
    background-color: var(--secondary);
    border: 0 solid transparent;
}

/* Estilo para los enlaces del menÃº desplegable */
.nav-dropdown ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border: 3px solid transparent;
}

.search-item{
    margin-left: 2em;
}

.searchform{
    position: relative;
}

.search-item li a{
    border-radius: 5px;
    display: flex;
    justify-content: center;
    margin-right: 0;
    text-decoration: none;
    color: var(--logo-gray);
}

#searchsubmit{
    color: white;
    background-color: var(--primary);
    padding: 2px 10px 2px 10px;
    border-radius: 5px;
}

#searchsubmit:hover {
    background-color: #51A8E3FF;
    cursor: pointer;
}

#s{
    border: 1px solid gray;
    border-radius: 5px;
    padding: 2px;
    margin-bottom: .5em;
}

#s:focus {
    pointer-events: none;
}

.menu,
.search-item{
    list-style: none;
    padding: 0;

}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.menu li a {
    border: 3px solid transparent;
    display: block;
    width: 100%;
    margin-right: 0;
    padding: 0rem 1rem;
    text-decoration: none;
	color: black;
}

.nav-dropdown ul{
    padding: 0;
}

/* Estilo para los elementos del menÃº desplegable */
.nav-dropdown ul li {
    display: block;
    background-color: var(--secondary);
    border: 0 solid transparent;
}
/* Estilo para los enlaces del menÃº desplegable */
.nav-dropdown ul li a{
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    border: 3px solid transparent;
}
.nav-dropdown ul li a:hover {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border: 3px solid transparent;
    background-color: var(--primary);
    color: var(--secondary);
    z-index: 2;
    width: 100%;
}

/* Estilo para el menÃº desplegable activo */
.nav-dropdown:hover ul {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary);
}

.search-area {
    padding: 10px 20px;
    border: 3px solid transparent;
    display: none;
}

.search-area,
.searchform {
    background-color: var(--secondary);
}

.fa-chevron-down:before {
    font-size: 0.65rem;
    display: flex;
    align-self: center;
    position: relative;
    bottom: 1px;
    font-weight: bold;
}

.fa-x:before {
    color: var(--secondary);
}

/*.dropdown:after {
    content: '           >';
    font-family: 'FontAwesome';
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }*/

.first-section{
    margin-top: 50px;
}

.espacio-50 {
    height: 50px;
    width: 100%;
}

/* ------------- Hero - Slider  ---------------*/
/* Slider ocupa todo el ancho */
/* Slider full width */
#heroCarousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Cada slide */
#heroCarousel .carousel-item {
  display: flex;
  flex-direction: column;
  max-height: 100vh;       /* 🔥 nunca supera el alto de pantalla */
  overflow: hidden;
}

/* Imagen */
.hero-image {
  width: 90%;
  height: 60vh;            /* ocupa parte del alto */
  max-height: 70vh;
  min-height: 300px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Contenido */
.hero-content {
  width: 90%;
  margin: auto;
  padding: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Cuando NO hay imagen */
.carousel-item.no-image {
  justify-content: center;
}

.carousel-item.no-image .hero-content {
  padding: 4rem 0;
}

/* Texto */
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-excerpt {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image {
    width: 94%;
    height: 45vh;
  }

  .hero-content {
    width: 94%;
  }
}






.container {
    margin: 0;
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background-color: var(--secondary);
    padding: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 2px rgba(95, 94, 94, 0.026) inset;
}

.card {
    border: none;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    margin: 1rem;
}

.card .card-content {
    padding: 2rem;
}

.boton-link{
    border: 1px solid var(--logo-blue);
    border-radius: 5px;
    background-color: transparent;
    color: var(--logo-blue);
    padding: 5px 15px;
    font-size: medium;
    font-weight: bold;
}

.boton-link:hover{
    background-color: #e4f4ff;
}

.boton-primario {
	background-color: var(--logo-blue);
	color: var(--secondary);
}

.boton-link-container{
    display: flex; 
    justify-content: center; 
    width: 100%;
}

.card a img {
    width: 100%;
    height: auto;
    padding: 30px 30px 20px;
}

.slides li img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.card-title {
    margin-bottom: 5px;
    font-family: var(--fuente-titulos);
	color: var(--logo-blue);
}

.card-title:hover{
    color: var(--primary);
}

.card-body {
    font-size: 1rem;
    line-height: 1.6;
}

.post-data ul li,
.tag {
    font-family: var(--fuente-titulos);
    display: list-item;
    font-size: small;
    list-style: none;
    padding: .1rem .4rem;
    margin: 2px;
    border-radius: 8px;
    background-color: var(--logo-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.post-data ul li a {
    padding: 0;
    font-size: small;
    color: white;
}

.post-data {
    display: flex;
    justify-content: left;
    font-family: var(--fuente-titulos);
}

.post-data span {
    font-size: small;
    color: var(--logo-gray);
}

.post-data ul{
    display: flex;
    list-style-type: disc;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
    float: left;
    font-size: small;
}

/*#contacto {
    position: relative;
    z-index: -1;
    height: 600px;
    width: 100%;
    background-color: var(--violet);
}*/
f
.metaslider .flexslider{
    margin: 0 0 0 0 !important;
}

.content {
    height: 500px;
    width: 100%;
}

.media-container {
    margin: 5%;
    display: flex;
    justify-content: space-evenly;
    height: fit-content;
    padding: 5%;
}

.other-media {
    width: 560px;
    height: 315px;
}

footer {
    background: linear-gradient(90deg, rgba(114, 140, 212, 1) 10%, rgba(121, 144, 210, 1) 16%, rgba(203, 147, 244, 1) 100%);
    position: fixed;
    overflow: hidden;
    z-index: 10;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: .2rem 1rem;
    color: var(--secondary);
    font-weight: bold;
    font-size: 5rem;
}

.footer-inner p,
footer #social-media {
    margin-bottom: 0rem !important;
    margin: auto;
    margin-right: 0%;
}

.footer-inner p {
    font-size: small;
}

.footer-inner {
    flex-basis: 40%;
}

.seccion-column > #social-media ul{
    float: left;
}

footer #social-media ul{
    display: flex;
    justify-content: right;
    float: right;
    margin-bottom: 0;
}

#social-media ul li {
    color: var(--secondary);
    opacity: 0.8;
    margin: 0;
}

#social-media ul li:hover {
    opacity: 1;
}

#social-media ul li a {
      font-size: 1.5rem;
}

footer #social-media ul li a {
      font-size: 1.2rem;
}

/* Estilos para articulo */
.post-container ul li {
    font-size: 1.2rem !important;
	font-family: georgian;
}

.post-container{
    max-width: var(--content-max-width);
    width: 100%;
    padding: 3rem;
    margin-right: auto;
    margin-left: auto;
}

.post-container h2 {
    text-align-last: left;
    padding: 1rem 0rem;
    font-size: 1.4rem;
}
.post-container p {
    padding: 0.7rem 0px;
    line-height: 1.6;
}
.post-container ul {
    width: 95%;
    margin: auto;
}

/* Estilos para seccion de contacto */

.seccion-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 1px 0.5px 2px gray inset;
    background-color: rgb(219, 219, 230);
}

.contacto-container {
    display: flex;
    justify-content: space-around;
}

.contacto-titulo{
    text-align: left;
    width: 100%;
}
.contacto-titulo > h3 {
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 1rem;
    font-family: var(--fuente-titulos);
}

.contacto-mail {
    display: block;
    width: 40%;
}

.contacto-formulario-titulo {
    color: #9c60c8;
    display: block;
    font-family: var(--fuente-titulos);
}

.contacto-titulo > p {
    text-align: left;
}

.contacto-formulario-subtitulo {
    margin: 5px 0 15px;
    display: block;
    font-family: var(--fuente-titulos);
    font-size: 15px;
    color: #4a4a4a;
}

.wpcf7-form-control-wrap {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    border: 1px solid #CCC;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

.wpcf7-form-control {
    font-family: var(--fuente-titulos);
}

.wpcf7-form-control-wrap input:hover,
.wpcf7-form-control-wrap textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #AAA;
}

.wpcf7-form-control-wrap textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

/* 
.contacto-formulario-campo button {
    cursor: pointer;
    width: 100%;
    border: none;
    background: rgb(114, 140, 212);
    background: linear-gradient(90deg, rgba(114, 140, 212, 1) 10%, rgba(121, 144, 210, 1) 16%, rgba(203, 147, 244, 1) 100%);
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    border: 1px solid transparent;
}

.contacto-formulario-campo button:hover {
    background: var(--secondary);
    color: var(--primary);
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    border: 1px solid gray;
}


.contacto-formulario-campo button:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
     */

.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
    outline: 0;
    border: 1px solid #999;
}


::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}

.contacto-email-link a {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--primary);
    transition: .2s;
}

.formulario-submit {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--secondary);
    background-color: var(--logo-blue);
    width: 100%;
    display: flex;
    justify-content: center;
    height: min-content;
    padding: 12px;
    cursor: pointer;
    transition: .2s;
}

.contacto-email-link button:hover {
    background-color: var(--primary);
}

.contacto-email-link a:hover {
    color: var(--primary);
    cursor: pointer;
	text-decoration: underline;
}

.contacto-email-link a p {
    display: flex;
    justify-content: space-between;
    height: min-content;
    padding: 10px;
    font-size: .9rem;
}


.contacto-email{
    padding: 3em;
}


.page-numbers{
    padding: 6px 10px;
    font-family: var(--fuente-titulos);
    color: var(--logo-blue);
}

.page-numbers:hover{
    border: 1px solid var(--logo-blue);
    cursor: pointer;
    color: var(--logo-blue);
    border-radius: 5px;
}

.pagination-container{
    display: flex;
    padding: 1rem;
    justify-content: center;
    background-color: var(--secondary);
}

.border-top {
    border-top: 1px solid lightgray;
}

.border-bottom {
    border-bottom: 1px solid lightgray;
}



.background-secondary{
    background-color: var(--secondary);
}

.background-dark-secondary {
    background-color: rgb(219, 219, 230);
}

.listado-paginas ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.listado-paginas ul li{
    padding: 2rem;
    border: 0px 0px 1px 0px grey;
    margin: 2rem;
}


@media (min-width: 576px) {
    .post-container {
        width: 540px;
    }
}
@media (min-width: 768px) {
    .post-container {
        width: 720px;
    }
}
@media (min-width: 992px) {
    .post-container {
        width: 960px;
    }
}
@media (min-width: 1200px) {
    .post-container {
        width: 1140px;
    }
}

.post-header{
    display: block;
}







/** Cambios globales de estilos ----------------- */

main {
    overflow: hidden; /* evita que el contenido se salga */
}

.seccion {
  flex: 1; /* ocupa el espacio restante */
  display: flex;
  max-width: 1400px;
  margin: auto;
  min-height: var(--seccion-height);
    /* padding-left:10rem;
    padding-right:10rem;
    padding-top: 2rem;
    padding-bottom: 2rem; */
}

.seccion-column {
  flex: 1; /* ocupa el espacio restante */
  display: flex;
  flex-direction: column;
  max-width: 1900px;
  margin: auto;
  padding: 0px 2rem;
  
}


.color-logo-blue {
    color: var(--logo-blue);
}

.color-primary {
    color: var(--primary);
}

.separador {
    height: 1rem;
}

.espacio-5 {
    height: 5rem;
    width: 100%;
}

.espacio-header {
    height: var(--header-height);
    width: 100%;
}

.alto-primera-seccion {
    min-height: 100vh - var(--header-height);
}

/* Párrafo */
p, a, span {
  	font-weight: 400;
  	line-height: 1.6;	
	font-size: 1.2rem;
	color: #333;
	max-width: 1200px;
	text-align: left;
}

.post-container p,
.card-content p,
.bloque p {
	font-family: georgian;
	font-size: 1.17rem;
}

.post-container h3 p{
	font-size: 1.2rem;
	font-family: var(--fuente-titulos);
}

.dos-bloques {
	display: flex;
	height: 100%;
	width: 100%;
}

/* Título principal */
.bloque > h1 {
  font-weight: 700;
  line-height: 1.2;
  //font-size: 2vw;
  color: var(--logo-blue);
}

/* Subtítulo o sección */
.bloque > h3 {
  font-weight: 600;
  line-height: 1.3;
  //font-size: 1.5vw;
  color: var(--logo-gray);
}

.hero {
    height: var(--seccion-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-column {
    margin: auto;
    max-width: 1400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Título principal */
.hero h1 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 3vw;
  margin-bottom: 1rem;
  color: #111;
}

/* Subtítulo o sección */
.hero h3 {
  font-weight: 600;
  line-height: 1.3;
  font-size: 2vw;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.hero p {
	font-family: var(--fuente-titulos);
}
/* ------------- secciones de pagina -----------------*/

.bloque-w-50 {
    width: 50%;
}
.bloque-w-60 {
    width: 60%;
}
.bloque-w-40 {
    width: 40%;
}
.bloque-w-30 {
    width: 30%;
}
.bloque-w-70 {
    width: 70%;
}
.w-100 {
    width: 100%;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}



.background-info {
    background-color: var(--background-info);
}

.seccion-flex {
    width: 100%;
    display: flex;
    flex: 1; /* ocupa el espacio restante */
    max-width: 1900px;
    margin: auto;
    padding: 1rem 2rem;
}


.seccion-archive {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    background-color: var(--background-secondary);
}

.title-archive,
.title {
    font-family: var(--fuente-titulos);
    color: var(--logo-blue);
    width: 100%;
	font-weight: 700;
    line-height: 1.2;
}

.encabezado-pagina{
    font-family: var(--fuente-titulos);
    background-color: var(--secondary);
    display: flex;
    max-width: 1900px;
    flex-direction: column;
    align-items: left;
    margin: auto;
    width: 100%;
	justify-content: center;
}

.centro-centro {
    align-items: center;
    justify-content: center;
}

.centro-between {
    align-items: center;
    justify-content: space-between;
}

.centro-izquierda {
    align-items: center;
    justify-content: left;
}

.alto-100 {
    height: var(--seccion-height);
}

.alto-50 {
    height: calc(var(--seccion-height) % 2);
}

.alto-33 {
    height: calc(var(--seccion-height) % 3);
}

.espacio-s {
    width: 100%;
    height: 3rem;
}

.bloque {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.bloque-imagen {
    align-items: center;
    justify-content: center;
}

.bloque-texto {
    align-items: left;
    justify-content: left;
}

.bloque > h1,
.bloque > h3,
.bloque > p {
    text-align: left;
}

.bloque > .boton-link-container {
    display: flex;
    justify-content: right;
}


.bloque .boton-link-container > a {
    margin: 1rem;
}


.ultima-seccion{
    margin-bottom: var(--footer-height);
    width: 100%;
}

.sub-menu li a {

}


/** -----------------------      RESPONSIVE STYLES     -----------------------*/

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

    .footer-inner {
        width: 50%;
        font-size: small;
    }

    .header {
        justify-content: space-between;
        padding: 0.5rem 1.5rem 0.5rem 1rem;
    }

    .header ul li a  {
        color: var(--secondary);
        padding-right: 0;
        padding: 1rem;
    }

    .logo > img {
        display: block;
    }

    #nav-wrap-container .menu {
        display: inline-block;
        width: 100%;
        margin-right: 1rem;
    }
    .menu li {
        width: 100%;
        text-align: left;
        display: block;
        margin-right: 0;
        color: var(--secondary);
    }
    .menu li a {
        color: #FFFFFF;
    }
    .menu li:hover {
        text-align: left;
        color: var(--secondary);
        display: block;
        background-color: var(--green);
    }

    .header ul li a:hover {
        border-bottom: 3px solid transparent;
        color: var(--secondary);
        padding: 1rem;
    }

    .menu li:hover ul {
        background-color: var(--green);
    }

    .nav-dropdown:hover ul {
       display: none;
    }

    .nav-dropdown ul li a {
        background-color: var(--light-primary);
        color: var(--secondary);
    }

    .nav-dropdown:target ul {
        display: flex;
        color: var(--secondary);
        background-color: var(--green);
    }

    .search-item li a {
        display: none;
    }

    .search-area,
    .searchform {
        display: flex;
        padding: 0;
    }

    .searchform div:hover {
        cursor: none;
        background-color: var(--primary);
    }
    .wrapper .wrapper-opacity {
        opacity: 0.4;
        background: black;
        width: 100vh;
    }
    .icono-menu {
        display: inline;
    }
    .icono-cerrar-menu {
        display: inline;
        position: absolute;
        top: 0;
        right: 0;
        padding: 2em;
    }

    .seccion {
        height: fit-content;
        min-height: var(--seccion-height);
    }

    .seccion-archive {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .menu {
        color: white;
        display: inline-block;
        width: 100%;
        margin-right: 1rem;
        position: inherit;
    }

    .nav-dropdown ul {
        position: inherit;
    }

    .icono-menu {
        display: inline;
    }

    .icono-cerrar-menu {
        display: inline;
        position: absolute;
        top: 0;
        right: 0;
        padding: 2em;
    }

    .card {
        margin: 2rem 0;

    }

    .container {
        display: block;
        padding: 30px;
    }

    .contacto-container {
        display: flex;
        flex-direction: column;
    }

    .contacto-mail {
        width: 100%;
        padding-bottom: 1rem;
    }

    .contacto-formulario {
        width: 100%;
    }

    article > div > p {
        font-size: smaller;
    }

    article > div > h3 {
        font-size: 1.2rem;
    }

    article > div > ol {
        font-size: smaller;
    }


    #social-media ul {
        justify-content: space-evenly;
        display: inline-block;
    }

    #nav-wrap-container{
        display: block;
    }

    .caption{
        right: 60px !important;
        width: 100% !important;
        padding: 5px !important;
    }

    .metaslider div .flexslider ul li {
        display: block;
    }

    .slides li img{
        width: 100%;
        height: 100%;
    }

    .metaslider div {
        width: fit-content;
        height: auto;
        margin-top: 120px;
    }
    .search-area,
    .searchform {
        background-color: var(--primary);
    }
    #searchsubmit{
        background-color: var(--secondary);
        color: #202020;
    }
	
	.post-container {
		padding: 1.5rem;
	}

    .title{
        font-size: 2rem;
    }

     p, span {
        font-weight: 400;
        line-height: 1.6;
        //font-size: 1.4rem;
    }

    .boton-link {
         font-size: 3rem;
        min-width: 50%;
        text-align: center;
        font-size: large;
    }
    

    .dos-bloques {
        flex-direction: column;

    }
    
    .bloque {
        padding: 0.1rem;
        padding-bottom: 1rem;
        max-width: 800px;
        max-height: var(--seccion-height);
        justify-content: left;
    }

    .bloque-w-50,
    .bloque-w-60,
    .bloque-w-40,
    .bloque-w-30,
    .bloque-w-70{
        width: 100%;

    }
	
	.hero h1 {
		font-weight: 700;
		line-height: 1.2;
		font-size: 10vw;
		margin-bottom: 1rem;
		color: #111;
	}
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


