@charset "UTF-8";
/* CSS Document */

/*!
Theme Name: UDP_portable
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: udp_portable
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

UDP_portable is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibilityh1
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 .row{
 	display: flex;
 	flex-wrap: wrap;
  width: calc(100% + 1.5rem);
  margin-left: -0.75rem;
 }
 .row .col{
 	margin-left:0!important;
 }
.logo, .branding{
	    height: 70px;
    width: auto;
}
footer img{
	max-width:335px;
	height:auto;
}
 html, body{
   max-width:100vw;
   overflow-x:hidden;
 }
 input{
   margin-bottom:0!important;
   border-bottom:2px solid rgba(0,0,0,0.5)!important;
   box-shadow: none!important;
 }
 body{
 	font-family: 'museo-sans', sans-serif;
 	font-size:15px;
 	line-height:24px;
  font-weight: 300;
 }
 a, a:hover, a:focus, a:active{
 	color:inherit;
 	outline:none;
 }
 body, body *{
 	margin:0;
 	padding:0;
 }
 h1{
 	font-weight: 300;
  font-size: 32px;
      line-height: 40px;
  text-transform:uppercase;
 }
 h2{
 	font-size: 23px;
 	font-weight: 700;
 	line-height: 30px;
 }
 h3{
 	line-height: 27px;
 	font-size:20px;
 	font-weight: 300;
 }
 h4{
 	line-height: 20px;
 	font-size:17px;
 	font-weight: 700;
 }
 h5{
 	line-height: 20px;
 	font-size:16px;
 	font-weight: 500;
 }
 h6{
 	line-height: 18px;
 	font-size:14px;
 	font-weight: 700;
 }
 header{
   position: fixed;
   top:0;
   left:0;
   width:100vw;
   z-index:100;
   background: white;
   transition:transform 0.66s ease;
 }
 header .top_part{
   display:flex;
   justify-content: space-between;
   align-items: flex-start;
   padding-top:10px;
   padding-bottom:10px;
 }
 header .right-side{
   display:flex;
   justify-content: space-between;
   align-items: center;
 }
  header .right-side .fa{
    margin-right:20px;
    font-size:18px;
  }
 header .right-side .fa-search.fa{
   margin-left:50px;
   font-size:22px;
 }
 .right-side .menu li{
   margin-left:20px;
 }
 .right-side ul.menu{
   display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 11px;
    min-width: 360px;
    justify-content: space-between;
        margin-right: 50px;
 }
 header.slide-up{
   transform:translateY(-100%);
 }
 .whitesmoke{
   background-color: whitesmoke;
 }
 .noscroll{
  overflow:hidden;
 }
 .hidden{
  display:none!important;
 }
 img{
  max-width: 100%;
 }
 .container_div, .container_fluid{
  padding-left:10vw;
  padding-right:10vw;
 }
 @media(max-width:1400px){
   .container_div, .container_fluid{
    padding-left:3vw;
    padding-right:3vw;
   }
 }
 .small_space{
   padding-top:30px;
   padding-bottom:30px;
 }
 .with_space{
  padding-top:60px;
  padding-bottom:60px;
 }
 .with_big_space{
   padding-top:90px;
   padding-bottom:90px;
 }
 .separated{
   margin-bottom:30px;
 }
.alignleft {float: left; margin-right: 30px; margin-bottom: 30px;}

 @media(min-width:1400px){
  .container_div{
 	 padding-left: calc(50vw - 550px);
 	 padding-right: calc(50vw - 550px);
  }
 }
 .mobile{
  display: none;
 }
 @media(max-width:1200px){
  .mobile{
 	 display: inline-block;
  }
  .desktop{
 	 display: none;
  }
 }
 .button-like{
 	display: inline-block;
 	padding: 5px 15px;
 	text-transform: uppercase;
 	font-weight: 300;
 	cursor: pointer;
  border:2px solid #ffa1ff;
  color:#ffa1ff;
  transition:all 0.66s ease;
 }
  .button-like:hover{
  color:#ffa1ff;
  background: rgba(0,0,0,0.1);

  }
 .disabled{
 	cursor:not-allowed;
 	pointer-events:none;
 	opacity:0.5;
 }
 .link-with-arrow{
 	display: flex;
 		align-items: center;
 		font-weight: bold;
    cursor: pointer;
 }
 .link-with-arrow .fa{
 	margin-right:15px;
 	transition:all 0.66s ease;
 }
 .link-with-arrow:hover .fa{
 	transform:translateX(10px);
 }
 .opacity_in{
 	transition:all 0.66s ease;
 	opacity:1;
 	filter:blur(0px);
 }
 .release_effect .opacity_in{
 	opacity:0;
 	filter:blur(15px);
 }
 .bottom_in{
 	transition:all 0.66s ease;
 	opacity:1;
 	filter:blur(0px);
 	transform:translateY(0px);
 }
 .from_up{
 	transition:all 0.66s ease;
 	opacity:1;
 	filter:blur(0px);
 	transform:translateY(0px);
 }
 .release_effect .bottom_in, .release_effect.bottom_in{
 	opacity:0;
 	filter:blur(15px);
 	transform:translateY(50px);
 }
 .release_effect .from_up{
 	opacity:0;
 	filter:blur(15px);
 	transform:translateY(-20px);
 }
 .menu-header-menu-container ul{
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 .menu-header-menu-container ul{
      position: relative;
      z-index: 20;
 }
 .menu-header-menu-container  li{
   padding:10px 15px;
   position: relative;
   list-style-type:none;
   font-size:15px;
   font-weight:300;
   line-height:25px;
 }
  .menu-header-menu-container  .sub-menu li{
  }
 .menu-header-menu-container  li.menu-item-has-children{
 padding-right: 30px;
 }
 .menu-header-menu-container ul .sub-menu{
   padding:0 10px;
   position: absolute;
   z-index: 10;
   transform:scaleX(0) translateX(-100%); z-index:-1;
   filter:blur(10px);
   background: white;
   top: 100%;
   left: -40px;
   flex-flow: column;
   align-items: stretch;
   width: 270px;
   -webkit-box-shadow: -1px 2px 5px -2px rgba(0,0,0,0.75);
 -moz-box-shadow: -1px 2px 5px -2px rgba(0,0,0,0.75);
 box-shadow: -1px 2px 5px -2px rgba(0,0,0,0.75);
 opacity:0;
 transition:all 0.11s linear;
 }
 .menu-header-menu-container ul .sub-menu li{
   padding:10px 0;
   border-bottom:1px solid rgba(0,0,0,0.1);
 }
  .menu-header-menu-container ul .sub-menu li:last-child{
    border-bottom:none;
  }
   .menu-header-menu-container ul li.menu-item-has-children:hover .sub-menu{
     opacity:1;
     transform:none;
     filter:none;
   }
   .menu-header-menu-container ul .sub-menu li:hover::before, .menu-header-menu-container ul .sub-menu li:hover a::before{
     width:100%;
     left:0;
   }
   .menu-header-menu-container ul li.menu-item-has-children:hover .sub-menu .sub-menu, .menu-header-menu-container ul li.menu-item-has-children:hover .sub-menu .sub-menu .sub-menu{
     opacity:0;  transform:scaleX(0) translateX(-100%); z-index:-1;
       filter:blur(10px);
   }
   .menu-header-menu-container ul .sub-menu li.menu-item-has-children:hover .sub-menu{
     opacity:1;
     transform:none;
     filter:none;
   }
   .menu-header-menu-container ul .sub-menu li.menu-item-has-children:hover .sub-menu .sub-menu{
     opacity:0;  transform:scaleX(0) translateX(-100%); z-index:-1;
       filter:blur(10px);
   }
   .menu-header-menu-container ul .sub-menu .sub-menu li.menu-item-has-children:hover .sub-menu{
     opacity:1;
     transform:none;
     filter:none;
   }
   .menu-header-menu-container ul li:hover a, .menu-header-menu-container ul li ul.sub-menu li:hover a{
     color:#ffa1ff;
   }
   .menu-header-menu-container ul li:hover .sub-menu li a,  .menu-header-menu-container ul.sub-menu li:hover .sub-menu  li a{
     color:black;
   }
 .menu-header-menu-container ul .sub-menu li.menu-item-has-children::after{
   content:"";
   position: absolute;top:50%;
   transform:translateY(-50%) rotate(-135deg);
   right:15px;
   width: 0;
 height: 0;
 border-style: solid;
 border-width: 4px 4px 0 4px;
 border-color: transparent transparent transparent black;
 }

 .sub-menu .sub-menu{
       top: 0!important;
       left: 100%!important;
       z-index: 11;
 }
 .menu-header-menu-container ul li.menu-item-has-children::after{
   transition: all 0.33s ease;
   width: 0;
 height: 0;
 border-style: solid;
 border-width: 4px 4px 0 4px;
 border-color: #000000 transparent transparent transparent;
 content:"";
 position: absolute;top:50%;
 transform:translateY(-50%);
 right:15px;
 }
 .menu-header-menu-container ul li.menu-item-has-children:hover::after{
   transform:rotate(180deg);
 }
 .menu-header-menu-container ul.sub-menu li.menu-item-has-children:hover::after{
     transform: translateY(-50%) rotate(-135deg);
 }
 .sub-menu .sub-menu .sub-menu{
 z-index: 12;
 }
 footer{
   background: #393939;
   color: white;
 }
footer .flex{
  justify-content: center;
}
footer .flex .fa{
  margin:0 20px;
  font-size:20px;
}
footer .contact-col{
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 30px!important;
  border-top: 1px solid white;
}
.title-flex{
  display: flex;
justify-content: space-between;
align-items: flex-start;
}
.title-flex h1{
  margin-bottom:40px;
}
.slider_inicio h1{
  font-weight: 600;
font-size: 48px;
line-height: 56px;
max-width: 70%;
margin-bottom:40px;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 10px 0 30px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.3), 10px 10px 30px rgba(0, 0, 0, 0.3);
}
.image-holder{
  position: relative;
  height: 400px;
}
.image-holder img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel {
    height: auto!important;
  }
  .text-holder{
    padding: 30px;
  }
  .text-holder h2{
    margin-bottom:20px;
  }
.type{
  text-transform: uppercase;
  font-size: 13px;
  line-height: 18px;
  margin-bottom:20px;
  letter-spacing:1px;
  font-weight:300;
}
.fecha{
  color:#ffa1ff;
  font-size:15px;
  font-weight:500;
  line-height:23px;
  letter-spacing:0.5px;
  padding-bottom:20px;
  border-bottom:1px solid black;
}
.slick-dots *{
  opacity:1 !important;
}
.slider-destacados .slick-dots li button::before{
  border:2px solid black;
}
.slider-destacados .slick-dots li.slick-active button:before{
  background: black;
}
.slider-destacados .slick-dots{
  left: auto;
      right: 0;
      width: 40%;
      justify-content: flex-start;
      padding-left: 10px;
}
.card{
  box-shadow:none!important;
  margin:20px!important;
}
.flex-between{
  justify-content: space-between;
  display: flex;
}
.card.page{
  height: 24vw;
    position: relative;
}
.card.page .image-holder{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card.page .text{
  background: white;
  position: absolute;
  display: block;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
  z-index: 2;
  height: calc(50% - 30px);
  display: flex;
  flex-flow: column;
  padding-bottom: 30px!important;
      min-height: 150px;
}
.text .flex-between{
  margin-top:auto;
}
.padre{
  color:#ffa1ff;
  font-size:13px;
  font-weight:500;
  line-height:23px;
  letter-spacing:0.5px;
  margin-bottom:10px;
  text-transform:uppercase;
}
.card.video, .card.video .text{
  background: transparent;
}
.card.video .image-holder{
  position: relative;
height: auto;
padding-bottom: 70%;
background: rgba(0,0,0,0.45);
}
.card.video .image-holder img{
  z-index:-1;
}
.card.video .image-holder .fa-play{
  color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 45px;
    transform: translateY(-50%) translateX(-50%);
}
.card.video .fecha{
  border-bottom:0px;
}
.card.video h5{
  margin-bottom:20px;
  padding-top:15px;
  border-top:2px solid;
  text-transform: uppercase;
  height: auto;
    overflow: hidden;
}
.card.agenda{
  background:#ffa1ff;
  padding: 20px;
  display: block;
}
.post-type-archive-agenda .card.agenda{
	background:whitesmoke!important
}
.card.agenda .fecha {
    color: white;
    border-bottom: none;
	display: none;
}
.card.agenda h4{
  height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}
.with_fa .fa{
  width:25px;
}
.title-section{
  background: #ffa1ff;
padding-top: 100px;
}
.title-section h1{
  width:550px;
  max-width:100%;
}
body.single .title-section h1{
  width:100%;
  max-width:100%;
  margin-bottom:30px;
}
 .breadcrumbs{
  margin-bottom:30px;
  font-size:12px;
}
.breadcrumbs span{
  display: inline-block;
  margin:0 7px;
}
.for_icons.single{
  float: right;
  margin-top: -30px;
  font-size: 12px;
}
.for_icons.single .fa{
  width: 30px;
      height: 30px;
      border: 2px solid black;
      line-height: 30px;
      text-align: center;
      margin-left: 8px;
      cursor: pointer;
}
.embed-holder{
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    margin-bottom: 30px;
}
.embed-holder iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wswig p, .wswig h1, .wswig h2, .wswig h3, .wswig h4, .wswig h5, .wswig h6{
  margin-bottom:30px;
}

.wswig table{
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
}
.wswig table td{
	padding: 5px 10px;
	border-left: 1px solid rgba(0,0,0,0.2);
}
.wswig table tr{
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.wswig table *{
	margin:0;
}
.descargable{
  padding-bottom: 30px;
margin-bottom: 30px;
border-bottom: 1px solid black;
}
.descargable h3{
  text-transform: uppercase;
    margin-bottom: 30px;
}
.descargable .button-like{
  margin-top:30px;
}
.collapsible{
  box-shadow: none;
    border: none;
}
.collapsible-header{
  position: relative;
}
.active .collapsible-header, .collapsible-header:hover{
  color:#ffa1ff;
}
.plus_minus{
  position: absolute;
    top: 50%;
    right: 15px;
}
.plus_minus::before{
  content: "";
position: absolute;
width: 20px;
height: 2px;
background: black;
left: -20px;
}
.plus_minus::after{
  content:"";
  position: absolute;
width: 20px;
height: 2px;
background: black;
left: -20px;
transform: rotate(90deg);
transition:all 0.66s ease;
opacity:1;
}
.active .plus_minus::after{
  transform:rotate(0deg);
  opacity:0;
}
.sub-contenido{
  margin-bottom: 15px;
padding: 30px;
background: #EDEDED;
}
.external_link{
  margin-top: 30px;
padding-top: 30px;
border-top: 1px solid black;
}
.external_link img{
  width:100%;
  height:auto;
}
.external_link h3{
  text-transform: uppercase;
    margin-bottom: 30px;
}
.external_link .button-like{
  margin-top:30px;
}
.gallery{
  display: flex;
  flex-wrap:wrap;
  margin-bottom:30px;
}
.gallery .material-placeholder{
  width: 30%;
  margin: 1.5%;
  position: relative;
  padding-bottom: 30%;
}
.gallery img{
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.materialboxed.active {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    width: auto!important;
    height: auto!important;
    max-width: 90vw;
    position: fixed!important;
    max-height: 90vh;
    z-index: 100000;
    top: 50%!important;
    left: 50%!important;
    transform: translateY(-50%) translateX(-50%);
}
.inner.link{
  padding:60px 30px 30px;
background: #EDEDED;
margin: 10px;
position: relative;
height: 100%;
}
.status{
  position: absolute;
    top: 15px;
    right: -15px;
    display: inline-block;
    width: 120px;
    text-align: center;
    color: white;
    letter-spacing: 1px;
    background: #393939;
        font-size: 12px;
}
.link-ver-mas{
  display: block;
padding-top: 15px;
margin-top: 30px;
color: #ffa1ff;
border-top: 1px solid black;
}
.row.links-in-collumns .col{
      margin-bottom: 40px;
}
.row.centered{
  justify-content: center;
}
 .col.centered{
   margin:0 auto!important;
   text-align: center;
   margin-bottom:30px!important;
 }
.thumbnail-holder{
  position: relative;
padding-bottom: 50%;
}
.thumbnail-holder img{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-holder img.acreditacion{
  z-index:2;
  position: absolute;
  bottom: 30px;
  right: 30px;
  width:auto;
  height:auto;
  top:auto;
  left:auto;
}
.attributes{
  margin: 40px 0;
  padding: 10px 30px;
  background: #EDEDED;
}
.attribute{
  display: flex;
      padding: 10px 0;
      border-bottom: 1px solid rgba(0,0,0,0.2);
      align-items: center;
}
.attribute:last-child{
  border-bottom:none;
}
.attribute .title{
    width: 40%;
    text-transform:uppercase;
}
.attribute .valor{
    width: 60%;
}
.buttons-large{
  margin: 40px 0;
}
.buttons-large .button-like{
  display:block;
  text-align: center;
  margin-bottom: 10px;
}
.autoridades{
  background: #393939;
  color: white;
}
.slider-destacados-page-wrap .slick-track, .slider-destacados-page-wrap .slick-list{
  width:100%;
}
.card.persona{
  display: block;
  background: transparent;
}
.card.persona .image-holder{
  height:auto;
  padding-bottom:100%;
}
.card.persona .text {
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid white;
}
.academicos .card.persona .text {
    border-top: 1px solid black;
}
.card.persona .text h4{
margin-bottom:5px;
text-transform:uppercase;
}
.autoridades .card.persona .text h4{
  color:#ffa1ff;
}
.slider-destacados-page-wrap, .wrap{
  position: relative;
  width: calc(100% + 1.5rem + 30px);
    margin-left: calc((0.5rem + 15px) * -1);
}
.arrow-left{
  position: absolute;
    top: 30%;
    left: -70px;
    width: 70px;
    height: 70px;
    z-index: 10;
cursor: pointer;
}
 .arrow-right{
  position: absolute;
    top: 30%;
    right: -70px;
    width: 70px;
    height: 70px;
    z-index: 10;
cursor: pointer;
}
 .arrow-right::before{
  content: "";
  height: 2px;
  width: 40px;
  background: black;
  position: absolute;
  transform: rotate(45deg);
  top: 23px;
  left: 10px;
}
.arrow-right::after{
  content: "";
  height: 2px;
  width: 40px;
  background: black;
  position: absolute;
  transform: rotate(-45deg);
  top: 50px;
  left: 10px;
}
.arrow-left::before{
  content: "";
  height: 2px;
  width: 40px;
  background: black;
  position: absolute;
  transform: rotate(45deg);
  top: 50px;
  left: 10px;
}
 .arrow-left::after{
  content: "";
  height: 2px;
  width: 40px;
  background: black;
  position: absolute;
  transform: rotate(-45deg);
  top: 23px;
  left: 10px;
}
.autoridades  .arrow-left::after,
.autoridades .arrow-left::before,
.autoridades .arrow-right::after,
.autoridades  .arrow-right::before{
  background: white;
}
.videos_slider{
  background: #ffa1ff;
}
.videos_slider .subtitulo{
  color: white;
padding-bottom: 15px;
border-bottom: 1px solid black;
}
.videos_slider .row{
  align-items: center;
}
.card.post{
  display: block;
background: transparent;
}
.card.post .image-holder{
  height: auto;
  padding-bottom:100%;
}
.card.post .fecha {
    color: #ffa1ff;
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.5px;
    padding-bottom: 0;
    border-bottom:none;
    margin-top:20px;
}
.card.post h4{
  padding-top: 15px;
  border-top:1px solid black;
}
.card.post .text {
    padding: 15px 0;
}
.persona-header{
  background:#ffa1ff;
}
.persona-header .row{
  align-items: center;
}
.persona-header .cargo{
  font-weight: bold;
  margin-top:30px;
}
.persona-header .carrera{
  text-transform: uppercase;
}
.persona-header .correo{
  padding-top: 20px;
margin-top: 20px;
border-top: 1px solid black;
}
.single-persona .for_icons.single{
  margin-top: 50px;
    margin-bottom: 0px;
    float: none;
    text-align: right;
}
strong{
  font-weight: bold;
}
.volver-boton{
  margin-bottom:20px;
  display:inline-block;
}
.volver-boton .fa{
  margin-right:10px;
}
.single .thumbnail-holder{
  margin-bottom:40px;
}
.single .subtitle{
  margin-bottom:30px;
  padding-bottom:30px;
  border-bottom:1px solid black;
  font-weight: bold;
}
.single .fecha{
  margin-bottom:0;
  border-bottom:none;
  padding-bottom:30px;
  font-weight: bold;
}
.single .with_fa{
  font-weight: bold;
}
.single-agenda .fecha{
  padding-top:30px;
  margin-top:30px;
  border-top:1px solid black;
}
.grupo{
  font-weight: 300;
	padding: 20px!important;
}

.archivo{
  display: block;
margin-bottom: 10px;
padding-left: 30px;
position: relative;
}
.archivo::before{
  content:"";
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  left:0;
  width:15px;
  height: 15px;
  border-radius: 50%;
  background: #ffa1ff;
}
.indicator{
  display: none;
}
.tabs .tab a{
  color: black;
  border: 1px solid black;
  margin-right:20px;
}
.tabs .tab a:hover, .tabs .tab a.active{
  color:#ffa1ff;
  border:1px solid #ffa1ff;
}
.tabs{
  border-bottom:1px solid black;
  padding-bottom:30px!important;
      height: auto;
}
.grupo h2{
  font-weight: 300;
  margin-bottom:30px;
  text-transform:uppercase;
}
.proyect-container{
  background: #ffa1ff;
padding: 80px 60px;
margin-bottom: 60px;
}
.proyect-container h1{
  margin: 30px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid black;
}
.bold{
  font-weight: bold;
}
.proyect-container .wswig{
  margin-top:30px;
}
.proyect-container .button-like{
  margin-top:30px;
  border:none;
}
.row.archive .col{
  margin-bottom:40px;
}
.card.archive{
  background: whitesmoke!important;
  display: block;
  height: 100%;
  padding: 20px;
}
.card.archive .fecha{
  border: none;
}
.card.archive h4{
  padding-bottom: 12px;
  margin-bottom:12px;
  border-bottom: 1px solid black;
}
.navigation{
  text-align: center;
}
.navigation .fa{
  margin:0 10px;
}
.select-wrapper span.caret{
  height: 100%;
align-items: center;
display: flex;
width: 47px;
justify-content: center;
background: black;
color: white;
}
.select-wrapper{
  border: 1px solid black;
margin: 0 20px;
}
.select-dropdown{
  border: none!important;
  padding-left: 10px!important;
}
.input-container{
  display: flex;
  margin: 0 20px;
  border: 1px solid black;
}
.input-container input{
  border:none!important;
  padding-left: 10px!important;
}
.input-container .fa{
  width: 47px;
    height: 47px;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 47px;
}
.row.filters{
  justify-content: center;
}
.row.filters p{
  font-weight: bold;
  margin-bottom:30px;
  text-transform:uppercase;
  text-align:center;
}
.spaced{
  margin-top:40px;
}

.flex.small{
  width: 150px;
      justify-content: space-between;
      font-size: 23px;
      margin-top: 40px;
}
.contact-part .row{
      padding: 30px;
}
.contact-flex-page.row{
  align-items:flex-start;
  margin-top:40px;
}
.contact-part .row .small{
  margin-top:20px;
}
.contact-flex-page .buttons-large{
  margin:0!important;
}
@media(min-width:990px){
  .contact-flex-page .buttons-large{
    padding-left:40px!important;
  }
}
.card.programa .image-holder{
  height: auto;
padding-bottom: 100%;
}
.card.programa .text{
  margin-top:15px;
  padding:15px 0;
  border-top:1px solid black;
  text-transform:uppercase;
}
.card.proyecto{
  display: block;
background: #EDEDED;
padding: 30px 15px;
    height: 100%;
}
.card.proyecto h4{
  padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
}
.brand-color{
  color:#ffa1ff;
}
.global_description{
  padding-bottom: 30px;
margin-bottom: 60px;
border-bottom: 1px solid black;
}
h5.center{
  margin-bottom:30px;
}
.row.archive .col{
  margin-bottom:30px;
}
select{
  display: block!important;
  margin: 0 20px;
  width: calc(100% - 40px);
  border: 1px solid black;
}
.mobile-menu{
  display:none;
}
#nav-icon {
 width: 34px;
 min-width:34px;
 height: 25px;
 position: relative;
 -webkit-transform: rotate(0deg);
 -moz-transform: rotate(0deg);
 -o-transform: rotate(0deg);
 transform: rotate(0deg);
 -webkit-transition: .5s ease-in-out;
 -moz-transition: .5s ease-in-out;
 -o-transition: .5s ease-in-out;
 transition: .5s ease-in-out;
 transition:0s!important;
 cursor: pointer;
}
 #nav-icon.open{
  width: 25px;
min-width: 25px;
}
#nav-icon span {
 display: block;
 position: absolute;
 height: 3px;
 width: 100%;
 background: black;
 border-radius: 5px;
 opacity: 1;
 left: 0;
 -webkit-transform: rotate(0deg);
 -moz-transform: rotate(0deg);
 -o-transform: rotate(0deg);
 transform: rotate(0deg);
 -webkit-transition: .25s ease-in-out;
 -moz-transition: .25s ease-in-out;
 -o-transition: .25s ease-in-out;
 transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
 top: 0px;
 -webkit-transform-origin: left center;
 -moz-transform-origin: left center;
 -o-transform-origin: left center;
 transform-origin: left center;
}
#nav-icon span:nth-child(2) {
 top: 12px;
 -webkit-transform-origin: left center;
 -moz-transform-origin: left center;
 -o-transform-origin: left center;
 transform-origin: left center;
}
#nav-icon span:nth-child(3) {
 top: 24px;
 -webkit-transform-origin: left center;
 -moz-transform-origin: left center;
 -o-transform-origin: left center;
 transform-origin: left center;
}
 #nav-icon.open span:nth-child(1) {
 -webkit-transform: rotate(45deg);
 -moz-transform: rotate(45deg);
 -o-transform: rotate(45deg);
 transform: rotate(45deg);
 top: 0px;
 left: 0px;
 width:35px;
}
 #nav-icon.open span:nth-child(2) {
 width: 0%;
 opacity: 0;
}
#nav-icon.open  span:nth-child(3) {
 -webkit-transform: rotate(-45deg);
 -moz-transform: rotate(-45deg);
 -o-transform: rotate(-45deg);
 transform: rotate(-45deg);
 top: 24px;
 left: 0px;
 width:35px;
}
@media(max-width:1200px){
  .mobile-menu{
    display: block;
      position: fixed;
      top: 90px;
      left: 100%;
      opacity: 0;
      width: 100vw;
      height: calc(100vh - 90px);
      z-index:100;
      transition:all 0.66s ease;
      background: white;
      padding:20px 3vw;
      overflow-y:scroll;
  }
  .menu_open .mobile-menu{
    opacity:1;
    left:0;
  }
  header .bottom_part{
    display:none;
  }
  header .menu-menu-links-container{
    display:none;
  }
  #nav-icon{
    position: fixed;
    top: 47px;
    right: 4vw;
  }
  .branding, .logo{
    height: 70px;
  }
  .menu-header-menu-container ul , .mobile-menu ul{
      display: flex;
      align-items: flex-end;
      flex-flow: column;
  }
  .menu-header-menu-container li {
    width: 300px;
    max-width: 90vw;
}
.menu-header-menu-container li.menu-item-has-children {
    padding-right: 50px;
}
.menu-header-menu-container ul .sub-menu {
    padding: 0 10px;
    position: static!important;
    box-shadow: none!important;
    height:0!important;
    max-height:0!important;
    overflow:hidden;
  }
  .menu-header-menu-container li:hover .sub-menu{
    height:auto!important;
    max-height:none!important;
  }
  .menu-header-menu-container li:hover .sub-menu .sub-menu{
    height:0!important;
    max-height:0!important;
  }
  .menu-header-menu-container li .sub-menu li:hover .sub-menu{
    height:auto!important;
    max-height:none!important;
  }
  .menu-header-menu-container ul li.menu-item-has-children::after {
    top: 20px;
    transform: none;
  }
  .menu-header-menu-container ul .sub-menu li.menu-item-has-children::after {
    top: 20px;
    transform: rotate(-45deg);
    right: 38px;
  }
  .mobile-menu li{
    padding: 10px 15px;
    position: relative;
    list-style-type: none;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    width: 300px;
    max-width: 90vw;
  }
      header .right-side .fa-search.fa {
        margin-left: 23px;
        font-size: 22px;
    }
    header .right-side .fa {
        margin-right: 8px;
        font-size: 18px;
    }

}
@media(max-width:550px){
  .slider-destacados-page-wrap, .wrap {
    position: relative;
    width: 100%;
    margin-left: 0;
}
  .logo {
    height: 55px;
  }
  .branding{
    display:flex;
    align-items: center;
  }
  .slider_inicio h1 {
    font-weight: 300;
    font-size: 35px;
    line-height: 42px;
    max-width: 90vw;
    margin-bottom: 0;
  }
  .title-flex {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    margin-bottom: 40px;
  }
  .title-flex h1 {
    margin-bottom: 10px;
}
.image-holder {
    position: relative;
    height: 100vw;
}
.image-holder {
    position: relative;
    height: 100vw;
}
.text-holder {
    padding: 30px 0 60px;
}
.card.page {
    height: 100vw;
    position: relative;
}
footer img{
  max-width:80vw;
  display: block;
  margin:30px auto;
}
footer .contact-col {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px!important;
    border-top: 1px solid white;
    flex-flow: column;
    align-items: center;
}
footer .contact-col .contact-flex{
  margin-bottom:30px;
}
.for_icons.single {
    float: none;
    margin-top: 30px;
    font-size: 12px;
}
.thumbnail-holder img.acreditacion {
    z-index: 2;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    max-width: 50%;
}
.attribute {
    flex-flow: column;
    align-items: flex-start;
}
.attribute .title {
    width: 100%;
}
.attribute .valor {
    width: 80%;
    margin-left: 20%;
}
}
.search-form{
  display: flex;
width: 100%;
}
.search-form input[type="search"]{
  flex: 1 auto;
      border: 1px solid black;
      box-shadow: none!important;
      padding-left: 15px!important;
}
.search-form button{
  background: black!important;
color: white!important;
border: none!important;
margin: 0!important;
display: block;
padding-left: 15px;
padding-right: 15px;
}
.sb_instagram_header{
  display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px!important;
    padding-bottom: 30px!important;
}
.wswig ul li{
  position: relative;
  padding-left: 40px;
}
.wswig ul li::before{
  position: absolute;
  content:"";
  top: 8px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffa1ff;
}
.wswig a:not(.button-like){
  color: #ffa1ff;
}
main .row .col{
  margin-bottom:30px;
}
.grid-container {
  display: grid;
  grid-gap: 20px;
  padding: 0px;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  height: 300px;
  background-color: whitesmoke;
  position: relative;
}
.grid-item.height2{
  height: 600px;
}
.grid-item .titulo{
  position: absolute;
      top: 20px;
      left: 20px;
      padding: 2px 8px;
      z-index: 2;
      background: white;
text-transform: uppercase;
font-weight: bold;
}
.grid-item.width1{
  max-width: 33vw;
}
.grid-item.width2{
  max-width:67vw;
}
.inner_slider_wrap{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.inner_slider{
  max-height:300px;
  height:300px;
}
.inner_slider *{
  max-height:300px;
}
.height2 .inner_slider{
  max-height:600px;
  height:600px;
}
.height2 .inner_slider *{
  max-height:600px;
}
.inner_slider_wrap .fa-long-arrow-right{
  position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    color: white;
    width: 30px;
    height: 30px;
    background: black;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
.inner_slider_wrap .fa-long-arrow-left{
  position: absolute;
    bottom: 15px;
    right: 50px;
    z-index: 10;
    color: white;
    width: 30px;
    height: 30px;
    background: black;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
.inner_slider_wrap .card{
    display: block;
    background: transparent;
    margin: 0!important;
    height: 300px;
    position: relative;
}
.height2 .inner_slider_wrap  .card{
height: 600px;
}
.inner_slider_wrap .card .text {
    padding: 15px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    z-index: 10;
    background: white;
}
.inner_slider .card.post img{
  display: none!important;
}
.inner_slider .card.post {
  background: #ffa1ff;
}
.mosaico{
  background: #ededed;
}
.mosaico_slider_wrap{
  position: relative;
}
.mosaico_slider_wrap .fa-long-arrow-left{
  position: absolute;
    bottom: 35px;
    left: 50px;
    z-index: 10;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
}
.mosaico_slider_wrap .fa-long-arrow-right{
  position: absolute;
    bottom: 35px;
    right: 50px;
    z-index: 10;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
}
.slick-hidden{
  display: none!important;
}
@media(max-width:1200px){
  .card.page{
    margin:5px!important;
  }
  .mosaico_slider_wrap .fa-long-arrow-left {
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
  .mosaico_slider_wrap .fa-long-arrow-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
  }
}
.search_results h3{
	color:red;
	margin-bottom:20px;
}
.search_results .child{
	margin-bottom:20px;
}
.separated-list{
	margin-bottom:30px;
}
.separated-list li{
  padding-top:10px;
  padding-bottom: 10px;
  border-top:1px solid rgba(0,0,0,0.2);
  padding-left: 30px;
      position: relative;
}
.separated-list li:last-child{
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
 ul.separated-list li::before {
     position: absolute;
     content:"";
     top: 8px;
     left: 10px;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #ffa1ff;
    top: 16px;
  }
.separated-list a{
  color:#ffa1ff;
}
.grupo h2{
  font-weight: 300;
  margin-bottom:30px;
  text-transform:uppercase;
}.grupo{
  font-weight: 300;
}
.linea{
	
    display: inline-block;
    color: white!important;
    margin-right: 10px;
    margin-top: 10px;
    padding: 3px 8px;
    background: black;
    text-transform: uppercase;
    font-size: 12px;

}
.flex-icons{
	display: flex;
    justify-content: center;
}
.flex-icons .fa{
	    font-size: 25px;
    color: #ffa1ff;
    margin-top: 10px;
    margin-right: 15px;
}
@media(max-width:600px){
.slider-destacados .slick-dots{
   left: 0;
   width: 100%;
   justify-content: flex-start;
   padding: 0;
   margin: 0;
   flex-wrap: wrap;
}
}
.alignright{
float:right!important;
}
.initials{
  position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
color: #ffa1ff;
font-weight: bold;
background:whitesmoke;
}
.persona-header .initials{
color: black;
text-shadow:none;
background:transparent;
}
.tag-abierta {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    background: #dd3333;
    z-index: 2;
}