/*!
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
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite
# 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.
 */
 .branding, .branding img{
   height:70px;
 }
 .row{
 	display: flex;
 	flex-wrap: wrap;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
 }
 .row .col:not(.offset-m1){
 	margin-left:0!important;
 }
 .row .col{
   padding:1.5rem;
 }
 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;
 }
 p{
   margin-bottom:20px;
 }
 h1{
 	font-family: 'Calluna', sans-serif;
 	font-weight: 700;
 	font-size: 40px;
  margin-bottom:20px;
 	line-height: 45px;
 }
 h2{
 	font-family: 'Calluna', sans-serif;
 	font-size: 25px;
  margin-bottom:20px;
 	font-weight: 700;
 	line-height: 30px;
 }
 h3{
 	font-family: 'Calluna', sans-serif;
 	line-height: 28px;
  margin-bottom:20px;
 	font-size:21px;
 	font-weight: 700;
 }
 h4{
 	font-family: 'Calluna', sans-serif;
 	line-height: 20px;
  margin-bottom:20px;
 	font-size:18px;
 	font-weight: 700;
 }
 h5{
 	font-family: 'Calluna', sans-serif;
 	line-height: 25px;
  margin-bottom:20px;
 	font-size:17px;
 	font-weight: 700;
 }
 h6{
 	font-family: 'Calluna', sans-serif;
 	line-height: 22px;
  margin-bottom:20px;
 	font-size:16px;
 	font-weight: 700;
 }
 .small_uppercase{
   font-size:13px;
   text-transform:uppercase;
   letter-spacing:1px;
 }
 .very-small{
   font-size:12px;
   line-height: 15px;
   letter-spacing:0.3px;
 }
 .uppercase{
   text-transform:uppercase;
 }
 header{
   position: fixed;
   top:0;
   left:0;
   width:100vw;
   z-index:100;
   background: white;
   display:flex;
   justify-content: space-between;
   transition:transform 0.66s ease;
 }
 header .right-side{
   display:flex;
   justify-content: space-between;
   font-size:23px!important;
   align-items: center;
   width:110px;
 }
 header .right-side .fa{
   margin-right:20px;
 }
 header.slide-up{
   transform:translateY(-100%);
 }
 .noscroll{
  overflow:hidden;
 }
 .hidden{
  display:none!important;
 }
 img{
  max-width: 100%;
 }
 .container_div{
  padding-left:5vw;
  padding-right:5vw;
 }
 .big_container{
   padding-left:50px;
   padding-right:50px;
 }
 .small_space{
   padding-top:15px;
   padding-bottom:15px;
 }
 .with_space{
   padding-top: 60px;
   padding-bottom: 60px;
 }
 .with_big_space{
   padding-top:60px;
   padding-bottom:60px;
 }
 .separated{
   margin-bottom:30px;
 }
 @media(min-width:1400px){
  .container_div{
 	 padding-left: calc(50vw - 640px);
 	 padding-right: calc(50vw - 640px);
  }
 }
 .mobile{
  display: none;
 }
 @media(max-width:760px){
  .mobile{
 	 display: inline-block;
  }
  .desktop{
 	 display: none;
  }
 }
 .button-like{
   display: inline-block;
  padding: 5px 23px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid;
  font-size: 12px;
  letter-spacing: 1px;
 }
 .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;
   flex-flow: column;
   align-items: flex-start;
   justify-content: center;
   font-size:18px;
 }
 .icons-flex{
   margin-top:30px;
   margin-bottom:30px;
   flex:1 auto;
 }
 .site-menu .fa{
   font-size:25px;
   margin-right:20px;
 }
 .menu-header-menu-container ul.sub-menu{
 font-size:15px;
 }
 .menu-header-menu-container ul{
      position: relative;
      z-index: 20;
 }
 .menu-header-menu-container  li{
   padding:10px 0;
   position: relative;
   list-style-type:none;
 }
 .menu-header-menu-container  li.menu-item-has-children{
 }
 .menu-header-menu-container ul .sub-menu{
   position: static;
   z-index:-1;
   filter:blur(10px);
   height:0;
   max-height:0;
   overflow:hidden;
   top: 100%;
   left: 0;
   flex-flow: column;
   align-items: stretch;
 opacity:0;
 transition:none;
 }
 .menu-header-menu-container ul .sub-menu li{
   padding:5px 0px;
 }
.menu-header-menu-container ul li.menu-item-has-children.open{
font-weight:bold;
}
.menu-header-menu-container ul li.menu-item-has-children.open a{
font-weight:bold;
}
.menu-header-menu-container ul li.menu-item-has-children.open .sub-menu a{
font-weight:normal;

}
   .menu-header-menu-container ul li.menu-item-has-children.open .sub-menu{
     margin-top:15px;
     transition:all 0.66s linear 0.33s;
     opacity:1;
     transform:none;
     filter:none;
     height:auto;
     max-height:200px;
     font-weight:normal;
   }
   .menu-header-menu-container ul .sub-menu li.open::before, .menu-header-menu-container ul .sub-menu li.open a::before{
     width:100%;
     left:0;
   }
   .menu-header-menu-container ul li.menu-item-has-children.open .sub-menu .sub-menu, .menu-header-menu-container ul li.menu-item-has-children.open .sub-menu .sub-menu .sub-menu{
     opacity:0;  transform:scaleY(0); z-index:-1;
       filter:blur(10px);
   }
   .menu-header-menu-container ul .sub-menu li.menu-item-has-children.open .sub-menu{
     opacity:1;
     transform:none;
     filter:none;
   }
   .menu-header-menu-container ul .sub-menu li.menu-item-has-children.open .sub-menu .sub-menu{
     opacity:0;  transform:scaleY(0) ; z-index:-1;
       filter:blur(10px);
   }
   .menu-header-menu-container ul .sub-menu .sub-menu li.menu-item-has-children.open .sub-menu{
     opacity:1;
     transform:none;
     filter:none;
   }
   .menu-header-menu-container ul li.open{
   }

 .sub-menu .sub-menu{
       top: 0!important;
       left: 100%!important;
       z-index: 11;
 }
main, footer{
  transition:all 0.66s linear;
}
footer{
  padding-top:30px!important;
    padding-bottom:30px!important;
}
body.menu_open main{
  filter:grayscale(100%);
}
body.menu_open footer{
filter:grayscale(100%);
}
 body.menu_open main,  body.menu_open footer{
   transform:translateX(-400px);
 }
 #site_navigation{
   position: fixed;
   left:100vw;
   top: 0;
   height:100vh;
   max-height:100vh;
   transition:none;
   width:100vw;
    z-index: 99;
 }
 .menu-header-menu-container{
   overflow-y:scroll;
 }
 .menu-header-menu-container::-webkit-scrollbar {
  display: none!important;
}
 #site_navigation .site-menu{
   width:400px;
   position: absolute;
   top:0;
   left:100%;
   filter:blur(15px);
   background: white;
   transition:all 0.66s linear;
   height:100%;
   display: flex;
flex-flow: column;
justify-content: center;
padding: 120px 50px 50px;
 }
 #site_navigation.active .site-menu{
   left:calc(100% - 400px);
   opacity:1;
   filter:blur(0px);
 }
 #site_navigation.active{
   left:0;
   opacity:1;
   filter:blur(0px);
 }
 #site_navigation .underlay{
   position: fixed;
   top:0;
   left:100vw;
   width:100vw;
   height:100vh;
   z-index:-1;
   cursor:pointer;
   opacity:0;
   transition:opacity 0.66s ease;
 }
 #site_navigation.active .underlay{
   opacity:1;
   left:0;
 }
 .noscroll{
   overflow:hidden!important;
 }
 #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 {
   -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
 -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
 box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
  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;
 }
 .slider_wrap{
   position: relative;
 }
.arrow_left{
  position: absolute;
      bottom: 50px;
      right: 110px;
      width: 50px;
      height: 50px;
      background: white;
      z-index: 10;
      opacity: 0.5;
      border-radius: 50%;
      cursor: pointer;
  }
   .arrow_right{
     display: block;
     position: absolute;
     bottom: 50px;
     right: 50px;
     width: 50px;
     height: 50px;
     background: white;
     z-index: 10;
     opacity: 0.5;
     border-radius: 50%;
     cursor: pointer;
}
.arrow_left .line, .arrow_right .line{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: black;
  transform: translateY(-50%) translateX(-50%);
}
.arrow_left .line::before{
    content:"";
    position: absolute;
    top: 5px;
    left: -1px;
    width: 13px;
    height: 2px;
    background: black;
    transform: rotate(45deg);
}
.arrow_left .line::after{
    content: "";
    position: absolute;
    top: -5px;
    left: -1px;
    width: 13px;
    height: 2px;
    background: black;
    transform: rotate(-45deg);
}
.arrow_right .line::before{
  content: "";
  position: absolute;
  top: 5px;
  right: -1px;
  width: 13px;
  height: 2px;
  background: black;
  transform: rotate(-45deg);
}
.arrow_right .line::after{
  content: "";
      position: absolute;
      top: -5px;
      right: -1px;
      width: 13px;
      height: 2px;
      background: black;
      transform: rotate(45deg);
}
header:not(.sticky){
  background: transparent!important;
}
.header-fix{
  margin-top:0px!important;
}
body.home header{
  background: transparent;
  color:white;
}
body.home header #nav-icon span{
  background: white;
}
body.home header.sticky #nav-icon span, body.home.menu_open #nav-icon span{
  background: black;
}
body.single:not(.menu_open) header:not(.sticky) #nav-icon span{
  background: white;
}
body.single:not(.menu_open) header:not(.sticky){
  color:white;
}
body.home header.sticky{
  background: white;
  color:black;
}
 body.home.menu_open header{
   color:black;
 }
.slider_inicio .text_part{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  padding: 100px 50px 130px;
  background:whitesmoke;
}
h1{
  padding-bottom:25px;
  position: relative;
}
h1::before{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:70px;
  border-top: 1px solid;
}
.slide h1{
  padding-bottom:50px;
}
.arrow_right:hover, .arrow_left:hover{
  opacity:1;
}
body.home .logo{
  display: none;
}
body:not(.home) .logo-blanco{
  display: none!important;
}
body.home .logo-blanco{
  display:inline-block;
}
body.home header.sticky .logo{
  display:inline-block;
}
body.home header.sticky .logo-blanco{
  display: none;
}
footer{
  background: #F0F0F0;
}
footer .row{
  align-items: center;
}
.flex-title{
  display: flex;
    justify-content: space-between;
    align-items:flex-start;
}
.title-section{
      padding-top: 200px;
}
.for_icons{
  display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 8px;
    letter-spacing: 0.3px;
    margin-top: 60px;
}
.for_icons .fa{
  font-size: 17px;
width: 27px;
height: 27px;
text-align: center;
line-height: 25px;
margin-left: 15px;
border: 1px solid;
cursor: pointer;
}
.page-thumbnail{
  width:100%;
  height:auto;
}
.title-section.equipo .row{
  align-items: center;
}
.title-section.equipo{
  background: #E3D2AA;
}
.equipo-content .wswig{
  width: 58.3333333333%;
    margin-left: auto;
      padding: 0 0.75rem;
}
.title-section.equipo p{
  margin-bottom:0;
}

@keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%{
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60%{
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.arrow{
  position: absolute;
  top: calc(100vh - 70px);
  left: 50%;
  cursor: pointer;
  margin-left: -17px;
  width: 34px;
  height: 34px;
  z-index: 99;
  background-color: transparent;
  border-radius: 50em;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.bounce{
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.gallery_slider .slick-slide{
  width:100vw;
  height:56vw;
}
.gallery_slider .slick-slide img{
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumbnail-section{
  position: relative;
padding-bottom: 29%;
background: black;
}
.thumbnail-section .filter{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.thumbnail-section .thumbnail{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.poster{
  width: 100%;
height: auto;
}
.link-with-fa{
  display: flex;
    align-items: center;
    margin: 10px 0;
}
.link-with-fa .fa{
  font-size: 19px;
margin-right: 15px;
}
.top-space{
  margin-top:30px;
}
.subtitulo{
  margin:0;
}
.title-section .flex.icons{
  margin-top:30px;
  width:100px;
}
.title-section .contact-flex{
  margin-bottom:10px;
}
.filter_cat{
  display: inline-block;
padding: 5px 10px;
cursor: pointer;
margin: 0 15px 15px 0;
}
.filter_cat:hover{
  background: whitesmoke;
}
.filter_cat.active{
  font-weight:bold;
}
.search_content.active {
    opacity: 1;
    transform: none;
    top: 100%;
    height: 100vh;
    color: black!important;
}

@media(max-width:760px){
  header .right-side {
    width: 77px;
}
.big_container {
    padding-left: 15px;
    padding-right: 15px;
}
.branding, .branding img {
    height: 53px;
}
.slide h1 {
    font-size: 30px;
    line-height: 30px;
}
.slider_inicio .text_part {
    width: 85vw;
    padding: 15px;
  }
  #site_navigation.active .site-menu {
    left: 0;
    opacity: 1;
    filter: blur(0px);
}
#site_navigation .site-menu {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 100%;
    filter: blur(15px);
    background: white;
    transition: all 0.66s linear;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 120px 15px 20px;
    overflow-y: scroll;
}
.flex-title {
    flex-flow: column;
}
footer {
    background: #F0F0F0;
    text-align: center;
}
footer .m8.flex{
  flex-flow: column;
align-items: center;
}
footer .flex .contact-flex {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.equipo-content .wswig {
    width: 100%;
    padding: 0 0.75rem;
}
}
.local-menu{
  position: relative;
      display: inline-block;
      cursor: pointer;
}
.local-menu .fa{
  margin-left: 5px;
}
.local-menu .fa-chevron-up{
  display:none;
}
.siblings{
  padding: 15px!important;
    position: absolute;
    top: calc(100% - 10px);
  left: 0;
  background: black;
  z-index: 10;
  opacity:0;
  height: 0;
  overflow:hidden;
  max-height:0;
  width: 200px;
  transition:all 0.66s ease;
}
.active .siblings{
  height:auto;
  max-height:350px;
  opacity:1;
border-top: 1px solid black;
}
.active .launcher .fa-chevron-up{
  display:inline-block;
}
.active .launcher .fa-chevron-down{
  display:none;
}
.sibling:hover{
 padding-left:10px;
 font-weight:bold;
}
.sibling{
  transition: all 0.66s ease;
}
footer .m2 .fa{
  font-size:22px;
}
.gallery-open{
  position: relative;
}
.gallery-slider-wrap{
  position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -10;
background: black;
color: white;
opacity:0;
transition:opacity 0.66s ease;
}
.gallery-slider-wrap.active{
  z-index:101;
  opacity:1;
}
.open-gallery{
  position: absolute;
bottom: 15px;
border: none;
right: 15px;
cursor: pointer;
}
.js-close-gallery{
  top: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: black;
    text-align: center;
    line-height: 50px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
        z-index: 10;
        opacity:0.5;
}
.js-close-gallery:hover{
  opacity:1;
}
.gallery-slider .slick-slide{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-slider .slick-slide img{
  max-width:80vw;
  max-height:90vh;
  width:auto;
  height:auto;
}
.inscribe-button{
  margin-top:30px;
}
.card.proyecto{
  display: block;
  background: #F0F0F0;
  padding: 60px 30px;
  margin: 30px 15px!important;
  height: calc(100% - 30px);
}
.card.proyecto h3{
  height: 132px;
  padding-bottom: 20px;
  overflow:hidden;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.card.proyecto p{
  font-size: 12px;
letter-spacing: 0.2px;
text-transform: uppercase;
margin: 0;
}
.single_project .row{
  margin:0!important;
}
.top-separated{
  padding-top:40px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.attribute{
    margin-bottom: 10px;
}
.single-proyecto .row{
  margin-left:0!important;
}
.image-description{
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 5px;
}
