@charset "UTF-8";
/* sass --watch site.scss:site.css */
.bg-color-morado {
  background-color: #3c115e; }

.bg-color-acero {
  background-color: #006b68; }

.bg-color-rojo {
  background-color: #bf0411; }

.bg-color-gris {
  background-color: #292929; }

.bg-color-azul {
  background-color: #0066ad; }

.bg-color-amarillo {
  background-color: #ce6b00; }

.bg-color-marron {
  background-color: #631201; }

.bg-color-rosa {
  background-color: #bd0052; }

.bg-color-verde {
  background-color: #009045; }

[data-dialog] {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 999; }
  [data-dialog] .dialog_overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    background: rgba(119, 119, 119, 0.9);
    opacity: 0;
    transition: opacity .3s ease-in-out;
    -webkit-backface-visibility: hidden; }
  [data-dialog].dialog--open .dialog_overlay {
    opacity: 1;
    pointer-events: auto; }
  [data-dialog].dialog--close .dialog_overlay {
    opacity: 0; }
  [data-dialog] .dialog_content {
    width: 50%;
    max-width: 560px;
    min-width: 290px;
    background: #e33c49;
    padding: 4em;
    text-align: center;
    position: relative;
    z-index: 5;
    opacity: 0;
    border-radius: 4px;
    color: #FFF; }
    @media (max-width: 768px) {
      [data-dialog] .dialog_content {
        padding: 3em 2em; } }
  [data-dialog].dialog--open .dialog_content {
    opacity: 1;
    pointer-events: auto; }
  [data-dialog].dialog--open .dialog_content, [data-dialog].dialog--close .dialog_content {
    animation-duration: 0.3s;
    animation-fill-mode: forwards; }
  [data-dialog].dialog--open .dialog_content {
    animation-name: dialog-anim-open; }
  [data-dialog].dialog--close .dialog_content {
    animation-name: dialog-anim-close; }
  [data-dialog].dialog--open .dialog_inner, [data-dialog].dialog--open .dialog_actions {
    animation: dialog-anim-elem 0.3s both; }
  [data-dialog].dialog--open .dialog_inner {
    animation-delay: 0.05s; }
  [data-dialog].dialog--open .dialog_actions {
    animation-delay: 0.1s; }
  [data-dialog] .closer {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer; }
    [data-dialog] .closer svg {
      transition: transform .3s ease-in-out;
      transform: scale(1, 1); }
    html.desktop [data-dialog] .closer:hover svg {
      transform: scale(1.2, 1.2); }
  [data-dialog] .dialog_inner .title {
    font-size: 16px;
    font-weight: 700;
    border-bottom: #9e2e37 solid 1px;
    padding: .5em;
    margin-bottom: .8em; }
  [data-dialog] .dialog_inner .text {
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 500; }
    [data-dialog] .dialog_inner .text strong {
      font-weight: 600; }
    [data-dialog] .dialog_inner .text.textHighlight {
      background-color: #d23a46;
      border-radius: 4px;
      padding: .6em 1em; }
  [data-dialog] .dialog_inner .errors ul {
    list-style: none;
    margin: .3em 0 0 0;
    padding: 0; }
    [data-dialog] .dialog_inner .errors ul li {
      margin: 0;
      padding: 0; }
      [data-dialog] .dialog_inner .errors ul li + li {
        margin-top: .7em; }
  [data-dialog] .dialog_actions {
    margin-top: 20px; }
    [data-dialog] .dialog_actions button,
    [data-dialog] .dialog_actions .button {
      background-color: rgba(255, 255, 255, 0);
      border: #FFF solid 2px;
      color: #FFF;
      font-weight: 700;
      padding: 8px 16px;
      font-size: 16px;
      line-height: 1em;
      transition: background-color .3s ease-in-out, color .3s ease-in-out;
      cursor: pointer;
      text-transform: uppercase; }
      [data-dialog] .dialog_actions button + button,
      [data-dialog] .dialog_actions button + .button,
      [data-dialog] .dialog_actions .button + button,
      [data-dialog] .dialog_actions .button + .button {
        margin-left: 6px; }
      html.desktop [data-dialog] .dialog_actions button:hover,
      html.desktop [data-dialog] .dialog_actions .button:hover {
        background-color: #902a33;
        text-decoration: none; }
      [data-dialog] .dialog_actions button.simple,
      [data-dialog] .dialog_actions .button.simple {
        background: none;
        color: #888;
        font-weight: 400; }
        html.desktop [data-dialog] .dialog_actions button.simple:hover,
        html.desktop [data-dialog] .dialog_actions .button.simple:hover {
          color: #555;
          background-color: #DDD; }
        [data-dialog] .dialog_actions button.simple.red,
        [data-dialog] .dialog_actions .button.simple.red {
          color: #ea8f8f; }
          html.desktop [data-dialog] .dialog_actions button.simple.red:hover,
          html.desktop [data-dialog] .dialog_actions .button.simple.red:hover {
            color: #FFF;
            background-color: #ea8f8f; }

@keyframes dialog-anim-open {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes dialog-anim-close {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0); }
  100% {
    opacity: 0;
    transform: translate3d(0, 50px, 0); } }
/* Inner elements animations */
@keyframes dialog-anim-elem {
  0% {
    opacity: 0;
    transform: translate3d(0, 25px, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
body, input, textarea, select, button {
  font-family: "PT Sans", sans-serif;
  font-synthesis: none;
  -moz-font-feature-settings: 'kern';
  -moz-osx-font-smoothing: grayscale; }

.titleStyle1 {
  font-family: "Raleway", serif;
  font-style: italic;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.84); }

.label-box {
  text-align: right;
  overflow: hidden; }
  .label-box > * {
    display: inline-block;
    color: #FFF !important;
    background-color: #e33b49;
    line-height: 1em;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important; }
    .label-box > * span {
      padding: 9px 5px 7px 10px;
      transition: padding-right .15s ease-in-out;
      display: inline-block;
      line-height: 18px; }
    .label-box > * i {
      font-size: .7em;
      background-color: #252525;
      line-height: 18px;
      padding: 10px 9px 8px 10px; }
  html.desktop .label-box > a:hover span {
    padding-right: 10px; }

.btnSquare {
  background-color: #e33b49;
  display: inline-block;
  color: #FFF;
  padding: .3em 1em;
  font-weight: 700; }
  html.desktop .btnSquare:hover {
    color: #FFF;
    background-color: #902a33;
    text-decoration: none; }

.btnOutline {
  color: #e33b49;
  border: 3px solid #e33b49;
  padding: .3em 1em; }
  .btnOutline .btnOutlineWhite {
    color: #FFF; }

.blockText1 .title {
  font-size: 2em;
  color: #353535;
  font-weight: 700;
  margin: 0 0 .6em;
  line-height: 1.1em; }
.blockText1 p {
  max-width: 700px;
  margin: 0 auto; }
  .blockText1 p + p {
    margin-top: 1em; }
    .blockText1 p + p > a {
      margin-top: 1em; }

.text-content {
  color: #353535; }
  .text-content h1 {
    font-weight: 700;
    color: #e33b49;
    font-size: 2.2rem;
    line-height: 1.15em; }
    @media (max-width: 768px) {
      .text-content h1 {
        font-size: 1.8rem; } }
    .text-content h1 + p, .text-content h1 + ul {
      margin-top: 2em; }
  .text-content .intro {
    font-family: "Raleway", serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.25em;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.64);
    margin-bottom: 1.5em;
    margin-top: .8em; }
  .text-content h2 {
    font-weight: 700;
    font-family: "Raleway", serif; }
    @media (max-width: 768px) {
      .text-content h2 {
        font-size: 1.6rem; } }
  .text-content * + h2 {
    margin-top: 1em; }
  .text-content h3 {
    font-family: "Raleway", serif;
    font-size: 1.8rem;
    letter-spacing: -.03em;
    margin-bottom: .5em; }
    @media (max-width: 768px) {
      .text-content h3 {
        font-size: 1.3rem; } }
  .text-content * + h3 {
    margin-top: 1.5em; }
    @media (max-width: 768px) {
      .text-content * + h3 {
        margin-top: 1.1rem; } }
  .text-content h4 {
    font-weight: 700;
    color: #e33b49;
    font-size: 1.2rem; }
  .text-content * + h4 {
    margin-top: 1em; }
  .text-content p {
    line-height: 1.58em; }
  .text-content a {
    color: #353535;
    text-decoration: underline; }
    html.desktop .text-content a:hover {
      color: #e33b49; }

.page-content .article-page .content-header {
  margin-bottom: -4em;
  box-shadow: 8px 8px 0px 0px #e33b49;
  position: relative;
  z-index: 1; }
  @media (max-width: 768px) {
    .page-content .article-page .content-header {
      margin-bottom: -2em; } }
  .page-content .article-page .content-header + .content {
    position: relative;
    z-index: 2; }
    .page-content .article-page .content-header + .content h1 {
      background-color: #FFF;
      padding: 1em 1em .5em; }
      @media (max-width: 768px) {
        .page-content .article-page .content-header + .content h1 {
          padding: .5em .5em .5em;
          font-size: 1.6em; } }
.page-content .article-page .content {
  padding: 3% 5%;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.84); }
  .page-content .article-page .content h3 {
    font-weight: 700;
    color: #e33b49;
    margin-top: 2em; }
  .page-content .article-page .content blockquote {
    border-top: #EEE solid 1px;
    font-family: "Raleway", serif;
    font-style: italic;
    color: #656565;
    width: 40%;
    margin-left: -2em;
    padding: 1em .5em 1em 2em;
    margin-top: 1em;
    float: left;
    margin-right: 2.5em;
    font-size: 1.2em; }
    @media (max-width: 768px) {
      .page-content .article-page .content blockquote {
        padding: 1em 0em 1em 1em;
        font-size: .9em;
        margin-right: 1.5em; } }
    .page-content .article-page .content blockquote + p {
      float: left;
      max-width: calc(60% - .6em);
      clear: right; }
      .page-content .article-page .content blockquote + p + p {
        clear: both; }
    .page-content .article-page .content blockquote p {
      margin-bottom: 0; }
  .page-content .article-page .content a {
    color: #e33b49; }
  .page-content .article-page .content .boxed {
    background-color: #333;
    padding: 20px;
    border: #EEE solid 1px;
    margin: 1em 2em;
    color: #FFF !important;
    font-size: 16px; }
    .page-content .article-page .content .boxed h4 {
      margin-top: 0;
      margin-bottom: .6em;
      font-weight: 700;
      font-family: "Raleway", serif; }
  .page-content .article-page .content .boxed-right {
    float: right;
    width: 30%;
    margin-right: 0; }
  .page-content .article-page .content .image img {
    box-shadow: 8px 8px 0px 0px #e33b49; }
  .page-content .article-page .content .image-center {
    margin: 2em auto;
    text-align: center; }
    .page-content .article-page .content .image-center img {
      width: 50% !important;
      height: auto !important; }
      @media (max-width: 768px) {
        .page-content .article-page .content .image-center img {
          width: 85% !important; } }
  .page-content .article-page .content .image-left {
    width: 40%;
    height: auto;
    float: left;
    margin: 1em -2em 2em -2em;
    position: relative;
    z-index: 1; }
    .page-content .article-page .content .image-left img {
      width: 100%;
      height: auto; }
    .page-content .article-page .content .image-left + p {
      position: relative;
      z-index: 2;
      background-color: #FFF;
      float: left;
      clear: right;
      max-width: calc(60% + 2em);
      transform: translate(-5%, 0);
      padding: 1em 2em;
      margin-top: 2em; }
      .page-content .article-page .content .image-left + p + p {
        clear: both; }
  .page-content .article-page .content .image-full {
    width: 100%; }
    .page-content .article-page .content .image-full img {
      width: 100% !important;
      height: auto !important;
      box-shadow: none; }
    .page-content .article-page .content .image-full + p.image-credits {
      margin-top: -1rem; }
  .page-content .article-page .content .image-credits {
    font-size: 13px;
    font-family: "Raleway", serif;
    font-style: italic;
    padding: .8em;
    background-color: #F6F6F6;
    text-align: center; }
  .page-content .article-page .content .embeddedContent {
    width: 60%;
    padding-top: 33.75%;
    position: relative;
    overflow: hidden;
    margin: 2em auto; }
    @media (max-width: 768px) {
      .page-content .article-page .content .embeddedContent {
        width: 100%;
        padding-top: 56.25%; } }
    .page-content .article-page .content .embeddedContent iframe {
      left: 0;
      top: 0;
      width: 100% !important;
      height: 100% !important;
      position: absolute; }
  .page-content .article-page .content hr {
    float: none;
    clear: both;
    margin-top: 3rem;
    margin-bottom: 3rem; }
  .page-content .article-page .content .content-meta {
    margin-top: 3em;
    border-top: #DDD solid 2px;
    padding-top: 1em;
    font-size: .9em; }
    .page-content .article-page .content .content-meta .taxonomy {
      color: rgba(0, 0, 0, 0.84); }
      .page-content .article-page .content .content-meta .taxonomy i {
        color: #e33b49;
        margin-right: .4em;
        font-size: 1rem;
        vertical-align: middle; }
      .page-content .article-page .content .content-meta .taxonomy .tag {
        color: rgba(0, 0, 0, 0.64);
        border: #DDD solid 1px;
        display: inline-block;
        padding: .2em .5em;
        border-radius: 4px;
        font-size: .9em;
        text-decoration: none; }
      .page-content .article-page .content .content-meta .taxonomy .category {
        font-weight: 700; }
      .page-content .article-page .content .content-meta .taxonomy + .taxonomy {
        margin-top: .8em; }
      .page-content .article-page .content .content-meta .taxonomy a {
        color: rgba(0, 0, 0, 0.84); }
        html.desktop .page-content .article-page .content .content-meta .taxonomy a:hover {
          color: #e33b49; }

.project-page .project_subtitle {
  color: rgba(0, 0, 0, 0.84);
  border-top: #e33b49 solid 4px;
  border-bottom: #e33b49 solid 4px;
  padding: 1em 1em 1em 1em;
  margin: 8% 0 0;
  font-family: "Raleway", serif;
  background-color: #F8F8F8;
  position: relative;
  overflow: hidden; }
  .project-page .project_subtitle:before {
    content: '“';
    position: absolute;
    z-index: 1;
    left: -.03em;
    top: -.25em;
    color: rgba(0, 0, 0, 0.07);
    font-size: 15em; }
  .project-page .project_subtitle:after {
    content: '”';
    position: absolute;
    z-index: 1;
    right: -0.03em;
    bottom: -.75em;
    color: rgba(0, 0, 0, 0.07);
    font-size: 15em; }
  .project-page .project_subtitle span {
    position: relative;
    z-index: 2; }
.project-page .project-details {
  display: flex;
  font-size: .9em; }
  @media (max-width: 768px) {
    .project-page .project-details {
      flex-direction: column; } }
  .project-page .project-details .block + .block {
    margin-left: 1em;
    padding-left: 1em;
    border-left: #DDD solid 1px; }
    @media (max-width: 768px) {
      .project-page .project-details .block + .block {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1em;
        padding-top: 1em;
        border-top: #DDD solid 1px; } }
  .project-page .project-details .block p {
    margin: 0;
    line-height: 1.25em; }
    .project-page .project-details .block p.title {
      color: rgba(0, 0, 0, 0.64); }
    .project-page .project-details .block p.zone {
      color: rgba(0, 0, 0, 0.84); }
.project-page .side-box.map {
  margin-top: 3em; }
.project-page .objectives {
  padding: 2em 4em; }
  @media (max-width: 768px) {
    .project-page .objectives {
      padding: 2em 1em 2em 2em; } }
  .project-page .objectives h3 {
    font-weight: 700;
    color: #e33b49;
    font-size: 2.2em;
    /*text-shadow: 1px 1px #99999966;*/
    letter-spacing: -0.03em;
    text-align: center;
    display: block;
    margin-bottom: 1em; }
  .project-page .objectives .grid-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3em;
    grid-row-gap: 5px;
    position: relative; }
    @media (max-width: 768px) {
      .project-page .objectives .grid-block {
        grid-template-columns: 1fr; } }
    .project-page .objectives .grid-block:after {
      position: absolute;
      content: "";
      width: 3px;
      background-color: #e33b49;
      top: 2em;
      bottom: 0;
      left: 50%;
      margin-left: -1.5px;
      z-index: 1; }
      @media (max-width: 768px) {
        .project-page .objectives .grid-block:after {
          left: -1.5em; } }
    .project-page .objectives .grid-block .block {
      padding: 2em;
      border: #DDD solid 1px;
      align-self: start;
      position: relative;
      z-index: 2;
      background-color: #FFF;
      box-shadow: 8px 8px 0px 0px #EEE; }
      @media (max-width: 768px) {
        .project-page .objectives .grid-block .block {
          padding: 1.5em; } }
      .project-page .objectives .grid-block .block:after {
        position: absolute;
        z-index: 2;
        content: "";
        right: -2.3em;
        top: 25%;
        width: 1.5em;
        height: 1.5em;
        background-color: #FFF;
        border: #e33b49 3px solid;
        border-radius: 50%; }
        @media (max-width: 768px) {
          .project-page .objectives .grid-block .block:after {
            right: auto;
            left: -2.3em; } }
      .project-page .objectives .grid-block .block:before {
        position: absolute;
        z-index: 1;
        content: "";
        right: -2em;
        top: 25%;
        width: 2em;
        height: 3px;
        margin-top: calc(.75em - 1.5px);
        background-color: #e33b49; }
        @media (max-width: 768px) {
          .project-page .objectives .grid-block .block:before {
            right: auto;
            left: -2em; } }
      .project-page .objectives .grid-block .block:nth-child(even) {
        margin-top: 4em; }
        @media (max-width: 768px) {
          .project-page .objectives .grid-block .block:nth-child(even) {
            margin-top: 1em; } }
        .project-page .objectives .grid-block .block:nth-child(even):after {
          right: auto;
          left: -2.3em; }
        .project-page .objectives .grid-block .block:nth-child(even):before {
          right: auto;
          left: -2em; }
      .project-page .objectives .grid-block .block:nth-child(odd) {
        margin-top: -6em;
        margin-bottom: 7em; }
        @media (max-width: 768px) {
          .project-page .objectives .grid-block .block:nth-child(odd) {
            margin-top: 1em;
            margin-bottom: 1em; } }
      .project-page .objectives .grid-block .block:nth-child(1) {
        margin-top: 0; }
      .project-page .objectives .grid-block .block .title {
        color: #e33b49;
        font-size: 1.6em;
        font-family: "Raleway", serif;
        font-weight: 700;
        line-height: 1.25em; }
      .project-page .objectives .grid-block .block .description {
        font-size: 14px; }
.project-page .gallery {
  padding: 2em 4em; }
  @media (max-width: 768px) {
    .project-page .gallery {
      padding: 2em 2em; } }
  .project-page .gallery h3 {
    font-weight: 700;
    color: #e33b49;
    font-size: 2.2em;
    /*text-shadow: 1px 1px #99999966;*/
    letter-spacing: -0.03em;
    text-align: center;
    display: block;
    margin-bottom: 1em; }
  .project-page .gallery .grid-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    position: relative; }
    @media (max-width: 768px) {
      .project-page .gallery .grid-block {
        grid-template-columns: 1fr 1fr; } }
    .project-page .gallery .grid-block .imgHolder {
      width: 100%;
      padding-top: 75%;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background-color: #111; }
      html.desktop .project-page .gallery .grid-block .imgHolder:after {
        position: absolute;
        z-index: 2;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: #000;
        transition: opacity .3s ease-in-out; }
      html.desktop .project-page .gallery .grid-block .imgHolder:hover:after {
        opacity: .45; }
      .project-page .gallery .grid-block .imgHolder img {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%); }
      .project-page .gallery .grid-block .imgHolder i {
        font-size: 4em;
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #FFFFFF;
        text-shadow: 1px 1px #22222266; }

.side-menu {
  border-right: #DDD solid 1px;
  line-height: 1.15em;
  margin-right: 1em; }
  @media (max-width: 768px) {
    .side-menu {
      border-right: none;
      margin-right: 0;
      margin-bottom: 2em;
      padding-bottom: 1em;
      border-bottom: #DDD solid 1px; } }
  .side-menu dt {
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #e33b49; }
  .side-menu dd {
    font-weight: 400;
    margin-top: .8em;
    margin-bottom: 0;
    padding-left: .5em;
    border-left: transparent 4px solid; }
  .side-menu a {
    color: rgba(0, 0, 0, 0.84); }
  .side-menu dd.active {
    border-left: #e33b49 4px solid; }
  .side-menu dd a:hover {
    color: #e33b49; }

.side-box {
  padding: 1em 1em;
  border-top: #e33b49 solid 4px; }
  .side-box .side-box-title {
    color: rgba(0, 0, 0, 0.84);
    font-weight: 700;
    font-size: 1.3em; }
  .side-box ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .side-box ul li {
      padding: 0;
      margin: 0; }
      .side-box ul li a {
        display: inline-block;
        padding: .5em 0;
        color: rgba(0, 0, 0, 0.84); }
      .side-box ul li.active, .side-box ul li.active a {
        color: #e33b49;
        font-weight: 700; }
      .side-box ul li + li {
        border-top: #DDD solid 1px; }

.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  color: #FFF;
  font-size: 45px;
  line-height: 1em;
  padding: .1em .5em !important;
  height: auto;
  width: auto;
  margin-top: -.5em;
  outline: none !important; }

.swiper-no-nav .swiper-button-prev,
.swiper-no-nav .swiper-button-prev,
.swiper-no-nav .swiper-pagination {
  display: none !important; }

.hamburger {
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 9px 8px 7px;
  border-radius: 5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  border: #EEE solid 1px;
  line-height: 1em; }
  .hamburger .hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 18px; }
    .hamburger .hamburger-box .hamburger-inner, .hamburger .hamburger-box .hamburger-inner:after, .hamburger .hamburger-box .hamburger-inner:before {
      position: absolute;
      width: 100%;
      height: 3px;
      transition-timing-function: ease;
      transition-duration: .25s;
      transition-property: transform;
      border-radius: 1.5px; }
    .hamburger .hamburger-box .hamburger-inner, .hamburger .hamburger-box .hamburger-inner:after, .hamburger .hamburger-box .hamburger-inner:before {
      background-color: #FFF; }
    .hamburger .hamburger-box .hamburger-inner {
      background-color: #FFF; }
    .hamburger .hamburger-box .hamburger-inner:after {
      background-color: #FFF; }
    .hamburger .hamburger-box .hamburger-inner:before {
      background-color: #FFF; }
    .hamburger .hamburger-box .hamburger-inner {
      top: 2px;
      display: block;
      margin-top: -2px; }
      .hamburger .hamburger-box .hamburger-inner:before {
        top: 8px;
        transition-timing-function: ease;
        transition-duration: .25s;
        transition-property: transform,opacity; }
      .hamburger .hamburger-box .hamburger-inner:after {
        top: 16px;
        bottom: -10px; }
      .hamburger .hamburger-box .hamburger-inner:after, .hamburger .hamburger-box .hamburger-inner:before {
        display: block;
        content: ""; }
  .hamburger.is-active .hamburger-box .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
    .hamburger.is-active .hamburger-box .hamburger-inner:before {
      transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
      opacity: 0; }
    .hamburger.is-active .hamburger-box .hamburger-inner:after {
      transform: translate3d(0, -16px, 0) rotate(-90deg); }

body {
  background-color: #f6f6f6; }

header {
  background-color: #e33b49;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%; }
  header .content {
    display: flex;
    align-items: center; }
    @media (max-width: 768px) {
      header .content {
        justify-content: space-between;
        flex-wrap: wrap; } }
  header a {
    color: #FFF;
    text-decoration: none !important; }
  header nav {
    flex: 1 0 auto;
    min-height: 100%;
    display: block;
    font-family: "PT Sans", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 768px) {
      header nav {
        display: none;
        width: 100%;
        order: 3;
        min-height: 0; }
        header nav.enable {
          display: flex; } }
    header nav ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      header nav ul li {
        display: inline-block; }
    header nav .top {
      text-align: right; }
      @media (max-width: 768px) {
        header nav .top {
          order: 2;
          text-align: center;
          margin-top: 1em;
          margin-bottom: 1.5em; } }
      header nav .top .social {
        display: inline-block; }
      header nav .top > a {
        color: #FFF !important;
        font-size: 14px; }
        @media (max-width: 768px) {
          header nav .top > a {
            font-size: 16px; } }
      header nav .top > i {
        color: #FFF;
        padding: 0 .6em;
        font-size: .85em; }
      header nav .top .social {
        padding: .5em 0 .3em .5em; }
        @media (max-width: 768px) {
          header nav .top .social {
            display: block;
            margin-top: 1em; }
            header nav .top .social li + li {
              margin-left: .3em; } }
        header nav .top .social a {
          display: inline-block;
          border: #FFF solid 1px;
          width: 1.8em;
          height: 1.8em;
          line-height: 1em;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 15px; }
          @media (max-width: 768px) {
            header nav .top .social a {
              font-size: 20px; } }
          html.desktop header nav .top .social a:hover {
            color: #e33b49;
            background-color: #FFF; }
    header nav .main {
      text-align: left;
      padding: .5em 0 1em 2em;
      display: flex; }
      @media (min-width: 1201px) {
        header nav .main {
          padding-left: 6em; } }
      @media (max-width: 768px) {
        header nav .main {
          order: 1;
          display: block;
          padding: 0; }
          header nav .main li {
            display: block;
            margin: .6em 0 !important;
            text-align: center; }
            header nav .main li + li {
              padding-top: .6em;
              border-top: rgba(255, 255, 255, 0.15) solid 1px; } }
      header nav .main li + li {
        margin-left: 2.3em; }
      header nav .main a {
        color: #FFF;
        font-weight: 700;
        padding: .2em 0;
        border-bottom: transparent solid 2px;
        font-size: 1.1em;
        letter-spacing: .05em;
        transition: color .3s ease-in-out, border-bottom .3s ease-in-out; }
        html.desktop header nav .main a:hover {
          color: #FFF;
          border-bottom: #FFF solid 2px; }
      header nav .main li.active a {
        color: #FFF;
        border-bottom: #FFF solid 2px; }
      header nav .main li.support {
        position: absolute;
        right: 15px;
        bottom: 0; }
        @media (max-width: 768px) {
          header nav .main li.support {
            position: relative;
            right: auto;
            bottom: auto; } }
        header nav .main li.support a {
          background-color: #FF950B;
          padding: .5em 1em .5em;
          color: #FFF;
          transition: background-color .35s ease-in-out, box-shadow .35s ease-in-out;
          letter-spacing: .02em;
          border: none;
          display: inline-block;
          box-shadow: 0px 0px rgba(0, 0, 0, 0.3);
          text-shadow: 1px 1px rgba(0, 0, 0, 0.3); }
          @media (max-width: 768px) {
            header nav .main li.support a {
              display: block; } }
          html.desktop header nav .main li.support a:hover {
            background-color: #315944;
            color: #FFF;
            border: none;
            box-shadow: 4px -4px rgba(0, 0, 0, 0.3); }
  header button.hamburger {
    display: none !important; }
    @media (max-width: 768px) {
      header button.hamburger {
        display: block !important; } }
  header .logo {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    padding: 1em 0 1em; }
    @media (max-width: 768px) {
      header .logo {
        max-width: 220px; } }
    header .logo img {
      width: 100%;
      height: auto; }

.page-content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background-color: #FFF;
  max-width: 1200px;
  padding: 130px 0 40px;
  /* 130 = 40 + 90 */
  padding: 40px 0 40px;
  /* 130 = 40 + 90 */ }

.image-header {
  margin-top: -40px;
  margin-bottom: 40px;
  padding-top: 20%;
  background-size: cover;
  background-position: center center;
  position: relative; }

.bread-crumb {
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
  font-size: 1rem;
  display: flex; }
  .bread-crumb li {
    display: inline-block;
    padding: 0;
    margin: 0;
    color: rgba(0, 0, 0, 0.84);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50ch; }
    @media (max-width: 768px) {
      .bread-crumb li {
        max-width: none;
        text-overflow: clip; } }
    .bread-crumb li a {
      color: rgba(0, 0, 0, 0.84);
      text-decoration: none !important; }
      html.desktop .bread-crumb li a:hover {
        text-decoration: underline; }
    .bread-crumb li.active a {
      color: #e33b49; }
    @media (max-width: 768px) {
      .bread-crumb li.active {
        text-overflow: ellipsis;
        max-width: 15ch;
        display: inline-block; } }
    .bread-crumb li + li:before {
      content: "/";
      color: #999;
      padding: 0 .4em; }

.page-content .language-selector {
  margin-top: -30px;
  margin-bottom: 25px; }

.language-selector {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end; }
  .language-selector li {
    display: inline-block;
    background-color: #EEE;
    font-weight: 700; }
    .language-selector li a {
      color: #353535;
      padding: .16em 1em;
      display: inline-block; }
    .language-selector li.selected {
      background-color: rgba(0, 0, 0, 0.84); }
      .language-selector li.selected a {
        color: #FFF; }

footer {
  background-color: #4a4949; }
  footer .content {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 200px;
    background-color: #e33b49;
    color: #FFF;
    padding: 30px 0;
    font-size: 15px;
    background-image: url("../img/common/footer-contact.png");
    background-size: auto 100%;
    background-position: right bottom;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      footer .content {
        background-size: auto 50%; } }
  @media (max-width: 768px) {
    footer .legal {
      margin-top: 2em; } }
  footer .contact {
    border-left: rgba(255, 255, 255, 0.1) solid 1px;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px; }
    @media (max-width: 768px) {
      footer .contact {
        margin-top: 2em; } }
    footer .contact p {
      margin-bottom: 0; }
  footer dl {
    margin: 0; }
    footer dl dt {
      margin: 0 0 .5em;
      color: #FFF;
      font-size: 16px;
      line-height: 1.15em; }
    footer dl dd {
      font-weight: 700;
      margin: 0; }
      footer dl dd a {
        color: #eeafb3; }
      footer dl dd + dd {
        margin-top: .3em; }
  footer a {
    color: #FFF; }
    html.desktop footer a:hover {
      color: #FFF; }
  footer .credits p {
    margin: 0;
    color: #eeafb3; }
    @media (max-width: 768px) {
      footer .credits p {
        text-align: center;
        margin-top: 2em; } }

.overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .75;
  z-index: 2;
  width: 100%;
  height: 100%; }

.project-categories .box {
  position: relative;
  margin: 10px;
  overflow: hidden;
  border-radius: 6px; }
  html.desktop .project-categories .box:hover .bg {
    transform: scale(1.1, 1.1); }
  @media (max-width: 768px) {
    .project-categories .box {
      margin: 3px;
      border-radius: 4px; } }
.project-categories .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .06;
  transform: scale(1, 1);
  transition: transform .4s ease-in-out; }
.project-categories a {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 50%;
  font-size: 20px;
  line-height: 1.15em; }
  @media (max-width: 768px) {
    .project-categories a {
      font-size: 15px; } }
  .project-categories a span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    color: #FFF;
    text-align: center;
    width: auto;
    display: inline-block;
    width: 100%;
    max-width: 10em;
    font-weight: 700;
    transform: translate(-50%, -50%); }

[template-id="home"] section.top {
  background-color: #EEE;
  margin-top: -40px; }
  [template-id="home"] section.top .slider {
    position: relative;
    padding-top: 40%; }
    @media (max-width: 768px) {
      [template-id="home"] section.top .slider {
        padding-top: 0%; } }
    [template-id="home"] section.top .slider .swiper-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      @media (max-width: 768px) {
        [template-id="home"] section.top .slider .swiper-container {
          position: relative;
          height: auto; } }
      [template-id="home"] section.top .slider .swiper-container .swiper-button-next:after, [template-id="home"] section.top .slider .swiper-container .swiper-button-prev:after {
        content: "";
        width: 1.3em;
        height: 1.3em;
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 52%;
        left: 54%;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 1; }
        @media (max-width: 768px) {
          [template-id="home"] section.top .slider .swiper-container .swiper-button-next:after, [template-id="home"] section.top .slider .swiper-container .swiper-button-prev:after {
            width: 1em;
            height: 1em;
            top: 50%; } }
      [template-id="home"] section.top .slider .swiper-container .swiper-button-next i, [template-id="home"] section.top .slider .swiper-container .swiper-button-prev i {
        z-index: 2;
        position: relative; }
      @media (max-width: 768px) {
        [template-id="home"] section.top .slider .swiper-container .swiper-button-next, [template-id="home"] section.top .slider .swiper-container .swiper-button-prev {
          top: 30vw; } }
      [template-id="home"] section.top .slider .swiper-container .swiper-button-next:after {
        left: 46%; }
      [template-id="home"] section.top .slider .swiper-container .swiper-pagination-bullet {
        background-color: #FFF; }
      @media (max-width: 768px) {
        [template-id="home"] section.top .slider .swiper-container .swiper-pagination {
          top: 60vw !important;
          margin-top: 2px;
          bottom: auto; } }
      [template-id="home"] section.top .slider .swiper-container .swiper-pagination-bullet-active {
        background-color: #FFF; }
        @media (max-width: 768px) {
          [template-id="home"] section.top .slider .swiper-container .swiper-pagination-bullet-active {
            background-color: #e33b49; } }
      @media (max-width: 768px) {
        [template-id="home"] section.top .slider .swiper-container .swiper-pagination-bullet {
          background-color: #e33b49; } }
      [template-id="home"] section.top .slider .swiper-container .swiper-slide {
        background-size: cover;
        background-position: center center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 1rem;
        padding: 3em;
        text-align: center; }
        @media (max-width: 768px) {
          [template-id="home"] section.top .slider .swiper-container .swiper-slide {
            display: block;
            background-color: #EEE;
            padding-top: 60vw;
            padding-bottom: 2em;
            background-size: auto 60vw;
            background-repeat: no-repeat;
            background-position: center top; }
            [template-id="home"] section.top .slider .swiper-container .swiper-slide[data-id="1"] {
              background-position: right top;
              background-size: auto 72vw; } }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.slideLink {
          cursor: pointer; }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide .title {
          font-weight: 700;
          text-transform: uppercase;
          color: #FFF;
          font-size: 3em;
          max-width: 600px;
          line-height: .9em;
          margin: 0;
          text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide .title + .subtitle {
            margin-top: .6em; }
          @media (max-width: 768px) {
            [template-id="home"] section.top .slider .swiper-container .swiper-slide .title {
              text-align: center !important;
              font-size: 1.8em !important;
              color: rgba(0, 0, 0, 0.64) !important;
              display: block;
              padding-top: 1.7em;
              margin: 0 !important;
              text-shadow: none;
              text-transform: none; } }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide .subtitle {
          color: #FFF;
          font-weight: 400;
          font-size: 1.2em;
          max-width: 700px;
          line-height: 1.3em;
          margin: 0;
          text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide .subtitle + a {
            margin-top: 2em; }
          @media (max-width: 768px) {
            [template-id="home"] section.top .slider .swiper-container .swiper-slide .subtitle {
              font-size: .9em;
              text-align: center !important;
              color: rgba(0, 0, 0, 0.64) !important;
              display: block;
              margin-left: 0 !important;
              margin-right: 0 !important;
              text-shadow: none; }
              [template-id="home"] section.top .slider .swiper-container .swiper-slide .subtitle + a {
                margin-top: 1em; } }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide a {
          display: inline-block;
          color: #FFF;
          border: #FFF 3px solid;
          border-radius: 0;
          font-weight: 700;
          font-size: 1.1em;
          background-color: rgba(0, 0, 0, 0.3);
          transition: background-color .3s ease-in-out;
          padding: .4em 1em; }
          html.desktop [template-id="home"] section.top .slider .swiper-container .swiper-slide a:hover {
            background-color: black; }
          @media (max-width: 768px) {
            [template-id="home"] section.top .slider .swiper-container .swiper-slide a {
              margin-left: auto !important;
              margin-right: auto !important;
              border: #FFF 3px solid !important;
              background-color: rgba(0, 0, 0, 0.5) !important; } }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Izquierda {
          align-items: flex-start; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Izquierda .title {
            text-align: left;
            margin-left: 5vw;
            max-width: 350px; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Izquierda .subtitle {
            text-align: left;
            margin-left: 5vw;
            max-width: 350px; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Izquierda a {
            margin-left: 5vw;
            max-width: 350px; }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Derecha {
          align-items: flex-end; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Derecha .title {
            text-align: right;
            margin-right: 5vw;
            max-width: 350px; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Derecha .subtitle {
            text-align: right;
            margin-right: 5vw;
            max-width: 350px; }
          [template-id="home"] section.top .slider .swiper-container .swiper-slide.align-Derecha a {
            margin-right: 5vw;
            max-width: 350px; }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.color-Oscuro .title {
          color: #303030;
          text-shadow: none; }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.color-Oscuro .subtitle {
          color: #303030;
          text-shadow: none; }
        [template-id="home"] section.top .slider .swiper-container .swiper-slide.color-Oscuro a {
          background-color: #000;
          border-color: #000;
          color: #FFF; }
          html.desktop [template-id="home"] section.top .slider .swiper-container .swiper-slide.color-Oscuro a:hover {
            background-color: rgba(0, 0, 0, 0.7); }
[template-id="home"] section.bio {
  padding: 3.5em 2em;
  font-size: 1rem; }
  [template-id="home"] section.bio .title {
    color: #e33b49; }
    @media (max-width: 768px) {
      [template-id="home"] section.bio .title {
        font-size: 1.4em; } }
  [template-id="home"] section.bio .support {
    background-image: url("../img/home/bg-support.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em; }
    @media (max-width: 768px) {
      [template-id="home"] section.bio .support {
        margin-top: 3em; } }
    [template-id="home"] section.bio .support .title {
      font-weight: 700;
      color: #FFF;
      font-size: 2.6em;
      text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
      letter-spacing: -0.03em;
      margin-bottom: .2em; }
    [template-id="home"] section.bio .support p {
      color: #FFF;
      font-weight: 700;
      text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
      margin-bottom: 0;
      margin-top: 0; }
    [template-id="home"] section.bio .support a.btnSquare {
      background-color: #FF950B;
      padding: .7em 1.5em .7em;
      color: #FFF;
      transition: background-color .35s ease-in-out, box-shadow .35s ease-in-out;
      letter-spacing: .02em;
      border: none;
      display: inline-block;
      box-shadow: 0px 0px rgba(0, 0, 0, 0.5);
      text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
      font-size: 1.1em; }
      html.desktop [template-id="home"] section.bio .support a.btnSquare:hover {
        background-color: #315944;
        color: #FFF;
        border: none;
        box-shadow: 4px -4px rgba(0, 0, 0, 0.75); }
    [template-id="home"] section.bio .support p.links {
      padding-top: 2em;
      line-height: 1em; }
      @media (max-width: 768px) {
        [template-id="home"] section.bio .support p.links {
          padding-top: 1em; } }
      [template-id="home"] section.bio .support p.links a {
        color: #FFF;
        padding: .3em .6em;
        display: inline-block;
        margin-top: .7em; }
        [template-id="home"] section.bio .support p.links a.outline {
          border: #FFF solid 1px;
          margin: .0em .3em 0em; }
          @media (max-width: 768px) {
            [template-id="home"] section.bio .support p.links a.outline {
              border: none;
              margin: .7em 0 0; } }
[template-id="home"] section.featureds {
  font-size: 1rem;
  padding: 3em 2em;
  position: relative;
  background-color: #e5e4e1; }
  [template-id="home"] section.featureds:after {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #FFF;
    border-radius: 4px;
    transform: rotate(45deg);
    transform-origin: center center;
    left: 50%;
    top: 0;
    position: absolute;
    margin-left: -15px;
    margin-top: -18px; }
  [template-id="home"] section.featureds h3 {
    font-weight: 700;
    color: #3c353a;
    font-size: 2.6em;
    text-shadow: 1px 1px #4e4e4e66;
    letter-spacing: -0.03em; }
    @media (max-width: 768px) {
      [template-id="home"] section.featureds h3 {
        font-size: 2.2em; } }
  [template-id="home"] section.featureds .slider {
    position: relative;
    padding: 20px 40px 0; }
    [template-id="home"] section.featureds .slider .swiper-container .swiper-slide {
      padding: 10px;
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: stretch; }
      [template-id="home"] section.featureds .slider .swiper-container .swiper-slide > div {
        border-radius: 5px;
        background-color: #d7d2ca;
        overflow: hidden;
        text-align: center;
        padding: 0 0 1em;
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15); }
        [template-id="home"] section.featureds .slider .swiper-container .swiper-slide > div .img {
          padding-top: 50%;
          background-size: cover;
          background-position: center center; }
        [template-id="home"] section.featureds .slider .swiper-container .swiper-slide > div p {
          padding: 1.5em 2em;
          margin: 0;
          font-size: .9em;
          line-height: 1.25em;
          color: #FFF;
          font-weight: 700;
          color: #3c353a; }
        [template-id="home"] section.featureds .slider .swiper-container .swiper-slide > div a {
          background-color: #847c6f;
          color: #FFF;
          padding: .5em 1.3em;
          display: inline-block;
          border-radius: 5px;
          font-weight: 700;
          transition: background-color .35s ease-in-out;
          align-self: center; }
          html.desktop [template-id="home"] section.featureds .slider .swiper-container .swiper-slide > div a:hover {
            background-color: #6c655a; }
  [template-id="home"] section.featureds .swiper-button-prev {
    left: -20px;
    color: #847c6f; }
  [template-id="home"] section.featureds .swiper-button-next {
    right: -20px;
    color: #847c6f; }
[template-id="home"] section.links {
  text-align: center;
  padding-top: 3.5em; }
  [template-id="home"] section.links .logo {
    margin: 0 auto 20px;
    display: block;
    max-width: 220px; }
    [template-id="home"] section.links .logo img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto; }
  [template-id="home"] section.links p {
    padding: 0 30px 0;
    margin: 0;
    line-height: 1.25em; }
    [template-id="home"] section.links p a {
      font-weight: 700;
      color: #e33b49;
      display: inline-block;
      margin-top: .5em; }
  [template-id="home"] section.links .col-12 + .col-12 {
    position: relative; }
    [template-id="home"] section.links .col-12 + .col-12:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 1px;
      background-color: #DDD; }
    @media (max-width: 768px) {
      [template-id="home"] section.links .col-12 + .col-12 {
        padding-top: 1.5em;
        margin-top: 1.5em;
        border-top: #EEE solid 1px; } }
[template-id="home"] section.categories {
  padding: 3.5em 2em; }
  [template-id="home"] section.categories .project-categories {
    padding-top: 2.5em; }

section.mosaic {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 60px 50px; }
  @media (max-width: 768px) {
    section.mosaic {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 30px; } }
  section.mosaic:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/files/2018-10/dsc-0142.jpg");
    background-position: center center;
    background-size: cover;
    filter: url("#black"); }
  section.mosaic .playerHolder {
    position: relative;
    z-index: 2;
    width: 44%;
    margin-left: 30px; }
    @media (max-width: 768px) {
      section.mosaic .playerHolder {
        width: 100%;
        margin-left: 0;
        margin-top: 6%; } }
    section.mosaic .playerHolder .player {
      position: relative;
      background-color: #000;
      position: relative;
      padding-top: 56.25%; }
    section.mosaic .playerHolder iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
  section.mosaic .mosaic-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: stretch;
    width: 50%;
    overflow: visible;
    transition: width .5s ease-in-out; }
    @media (max-width: 768px) {
      section.mosaic .mosaic-grid {
        width: 100%; } }
    section.mosaic .mosaic-grid > div {
      z-index: 2;
      border-radius: 5px;
      background-size: cover;
      background-position: center center;
      padding-top: 100%;
      position: relative;
      overflow: hidden;
      cursor: pointer; }
      section.mosaic .mosaic-grid > div:nth-of-type(1) {
        background-image: url("../img/home/mosaic/1.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(2) {
        background-image: url("../img/home/mosaic/2.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(3) {
        background-image: url("../img/home/mosaic/3.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(4) {
        background-image: url("../img/home/mosaic/4.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(5) {
        background-image: url("../img/home/mosaic/5.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(6) {
        background-image: url("../img/home/mosaic/6.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(7) {
        background-image: url("../img/home/mosaic/14.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(9) {
        background-image: url("../img/home/mosaic/7.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(10) {
        background-image: url("../img/home/mosaic/13.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(11) {
        background-image: url("../img/home/mosaic/12.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(12) {
        background-image: url("../img/home/mosaic/11.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(13) {
        background-image: url("../img/home/mosaic/10.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(14) {
        background-image: url("../img/home/mosaic/9.jpg"); }
      section.mosaic .mosaic-grid > div:nth-of-type(15) {
        background-image: url("../img/home/mosaic/8.jpg"); }
      section.mosaic .mosaic-grid > div span {
        position: absolute;
        bottom: 4px;
        right: 4px;
        left: 4px;
        display: block;
        background-color: #e33b49;
        color: #FFF;
        padding: .3em 0;
        text-align: center;
        font-weight: 700;
        border-radius: 3px;
        font-size: 12px;
        line-height: 1.15em;
        transition: opacity .35s ease-in-out, transform .35s ease-in-out;
        transform: translate(0, 120%); }
      section.mosaic .mosaic-grid > div.active span, html.desktop section.mosaic .mosaic-grid > div:hover span {
        transform: translate(0, 0%); }
    section.mosaic .mosaic-grid .claim {
      cursor: default;
      padding-top: 0;
      grid-area: 2 / 2 / 2 / 6;
      background-image: url("../img/home/mosaic/claim-quienes.png"); }

#filter {
  height: 0px;
  display: block; }

@media (max-width: 768px) {
  .page-content {
    padding-bottom: 0; } }
[template-id="events"] h4 {
  padding-top: 4rem;
  font-size: 1.8rem; }
[template-id="events"] .event-row {
  display: flex;
  margin-bottom: 2.5em;
  align-items: flex-start; }
  @media (max-width: 768px) {
    [template-id="events"] .event-row {
      flex-wrap: wrap; } }
  [template-id="events"] .event-row + .event-row {
    padding-top: 2.8em;
    border-top: #DDD solid 1px; }
  [template-id="events"] .event-row .date {
    background-color: #e33b49;
    color: #FFF;
    margin: 0;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
    margin-right: .5em;
    text-align: center;
    font-size: 1rem;
    align-self: flex-start;
    flex: 0; }
    @media (max-width: 768px) {
      [template-id="events"] .event-row .date {
        margin-right: .2em;
        margin-left: -1em; } }
    [template-id="events"] .event-row .date span {
      display: block; }
      [template-id="events"] .event-row .date span:nth-child(1) {
        background-color: #353535;
        padding: .3em 0 .3em;
        letter-spacing: .05em; }
      [template-id="events"] .event-row .date span:nth-child(2) {
        font-size: 1.9em;
        margin: .2em 0;
        padding: .1em .5em 0; }
      [template-id="events"] .event-row .date span:nth-child(3) {
        padding: 0 0 .3em;
        letter-spacing: .05em; }
  [template-id="events"] .event-row .imgHolder {
    max-width: 150px;
    flex: 1 0 auto;
    box-shadow: 6px 6px 0px 0px #e33b49;
    margin-left: 1em;
    transform: translate(0, -20%); }
    @media (max-width: 768px) {
      [template-id="events"] .event-row .imgHolder {
        display: block;
        flex: none;
        width: 100%;
        transform: none;
        margin-top: 1em;
        margin-left: 3.7em; } }
    [template-id="events"] .event-row .imgHolder img {
      width: 100%;
      height: auto; }
  [template-id="events"] .event-row .info {
    margin-left: 1.15em; }
    @media (max-width: 768px) {
      [template-id="events"] .event-row .info {
        flex: 1;
        margin-left: .4em;
        margin-top: .15em; } }
    [template-id="events"] .event-row .info a {
      text-decoration: none; }
    [template-id="events"] .event-row .info h3 {
      margin-bottom: .1em;
      margin-top: -.22em;
      line-height: 1.1em; }
      @media (max-width: 768px) {
        [template-id="events"] .event-row .info h3 {
          font-size: 1.2em; } }
    [template-id="events"] .event-row .info ul {
      margin: 0; }
      @media (max-width: 768px) {
        [template-id="events"] .event-row .info ul {
          margin: .5em 0;
          border-top: #F0F0F0 solid 1px;
          border-bottom: #F0F0F0 solid 1px;
          padding: .5em 0; } }
    [template-id="events"] .event-row .info p {
      color: rgba(0, 0, 0, 0.84);
      margin-bottom: 0; }
[template-id="events"] .event-search #calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.7em; }
[template-id="events"] .event-search input {
  flex: 1 1 auto;
  font-size: 13px;
  display: inline-block;
  border-radius: 6px !important;
  padding: .375rem .25rem; }
[template-id="events"] .event-search .input-group-addon {
  font-size: 12px;
  padding: 0 .5em;
  align-self: center;
  font-weight: 700;
  flex: 0 0 auto; }
[template-id="events"] .event-search button {
  background-color: #e33b49;
  font-weight: 700;
  font-size: .9rem;
  color: #FFF;
  border-radius: 0;
  margin: 0 auto;
  display: inline-block;
  padding: .4em 1.7em; }
[template-id="events"] .event-details {
  margin-left: 0;
  padding-left: 0;
  list-style: none; }
  [template-id="events"] .event-details li {
    display: flex;
    border: none; }
    [template-id="events"] .event-details li + li {
      margin-top: .5em; }
  [template-id="events"] .event-details span {
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.15em; }
  [template-id="events"] .event-details i {
    width: 1em;
    text-align: center;
    margin-right: .5em; }
[template-id="events"] .event-address {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-top: 3em; }
  [template-id="events"] .event-address p {
    color: rgba(0, 0, 0, 0.84);
    margin-top: 1em;
    font-size: .9em;
    line-height: 1.35em; }
    [template-id="events"] .event-address p a {
      color: #e33b49; }

[template-id="blog"] .blog-item {
  margin: 1em 0; }
  [template-id="blog"] .blog-item .imageHolder {
    display: block;
    padding-top: 40%;
    background-size: cover;
    background-position: center center;
    margin-bottom: 2em; }
  [template-id="blog"] .blog-item.blog-item-featured {
    border-bottom: #DDD solid 4px; }
    [template-id="blog"] .blog-item.blog-item-featured .imageHolder {
      box-shadow: 8px 8px 0px 0px #e33b49; }
  [template-id="blog"] .blog-item h3 {
    margin-top: 0; }
    [template-id="blog"] .blog-item h3 a {
      text-decoration: none; }
  [template-id="blog"] .blog-item:not(.blog-item-featured) h3 {
    font-size: 1.5rem; }
  [template-id="blog"] .blog-item .taxonomy i {
    color: #e33b49;
    margin-right: .4em;
    font-size: 1rem; }
  [template-id="blog"] .blog-item .taxonomy .tag {
    color: rgba(0, 0, 0, 0.64);
    border: #DDD solid 1px;
    display: inline-block;
    padding: .2em .5em;
    border-radius: 4px;
    font-size: .9em;
    text-decoration: none; }
    html.desktop [template-id="blog"] .blog-item .taxonomy .tag:hover {
      color: #e33b49; }
[template-id="blog"] .side-box + .side-box {
  margin-top: 3em; }
[template-id="blog"] .credits span {
  color: #e33b49; }

[template-id="projects"] .campaigns-holder {
  position: relative; }
  [template-id="projects"] .campaigns-holder:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url("#purple");
    background-image: url("/files/2018-10/1538664960_dsc-0142.jpg?30eff39446");
    background-size: cover;
    background-position: center center; }
  [template-id="projects"] .campaigns-holder h3.title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 2.6em;
    text-shadow: 1px 1px #33333366;
    letter-spacing: -0.03em; }
    @media (max-width: 768px) {
      [template-id="projects"] .campaigns-holder h3.title {
        font-size: 2em; } }
    [template-id="projects"] .campaigns-holder h3.title + p {
      color: #FFF; }
[template-id="projects"] .projects-intro .hiddenText {
  display: none; }

.campaigns-list {
  padding: 50px 30px 60px;
  position: relative; }
  @media (max-width: 768px) {
    .campaigns-list {
      padding: 50px 0px 60px; } }
  .campaigns-list h3.title {
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight: 700; }
    .campaigns-list h3.title + p {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 600px;
      padding: 0 20px;
      margin: 0 auto 3em; }
      @media (max-width: 768px) {
        .campaigns-list h3.title + p {
          margin-bottom: 1.5em; } }
  .campaigns-list .swiper-holder {
    position: relative; }
  .campaigns-list .swiper-container {
    position: relative;
    z-index: 2; }
  .campaigns-list .swiper-button-next {
    right: -40px; }
  .campaigns-list .swiper-button-prev {
    left: -40px; }
  .campaigns-list .swiper-pagination {
    width: 100%;
    bottom: -40px; }
    .campaigns-list .swiper-pagination .swiper-pagination-bullet {
      margin: 0 3px; }
  .campaigns-list .campaign-item {
    display: flex;
    flex-direction: row; }
    @media (max-width: 768px) {
      .campaigns-list .campaign-item {
        flex-direction: column; } }
    .campaigns-list .campaign-item .imageHolder {
      flex: 1 auto;
      width: 50%;
      padding-top: 30%;
      display: block;
      background-size: cover;
      background-position: center center;
      transform: translate(-20px, -20px);
      z-index: 1;
      position: relative;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      background-color: #333; }
      @media (max-width: 768px) {
        .campaigns-list .campaign-item .imageHolder {
          width: 100%;
          transform: none;
          padding-top: 60%;
          order: 1;
          box-shadow: none; } }
    .campaigns-list .campaign-item .details {
      flex: 1 auto;
      width: 50%;
      background-color: #FFF;
      padding: 40px 40px;
      transform: translate(20px, 20px);
      z-index: 2;
      position: relative;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
      @media (max-width: 768px) {
        .campaigns-list .campaign-item .details {
          width: 100%;
          transform: none;
          padding: 40px 20px;
          text-align: center;
          order: 2;
          box-shadow: none; } }
      .campaigns-list .campaign-item .details .credits {
        font-weight: 700; }
      .campaigns-list .campaign-item .details h3 {
        font-family: "Raleway", serif;
        font-style: italic;
        font-weight: 700; }
        .campaigns-list .campaign-item .details h3 a {
          color: #e33b49; }
      .campaigns-list .campaign-item .details .btnMore {
        font-size: .9em;
        letter-spacing: .05em;
        display: inline-block;
        border: #353535 solid 3px;
        padding: .8em 2em;
        color: #353535;
        text-transform: uppercase;
        font-weight: 700;
        margin: 1em 0 1em;
        border-radius: 5px; }

.projects-list h2 {
  color: #e33b49;
  font-weight: 700; }
.projects-list .project-item {
  padding: 1em 1em; }
  .projects-list .project-item .imageHolder {
    display: block;
    padding-top: 40%;
    background-size: cover;
    background-position: center center; }
  .projects-list .project-item .credits {
    font-size: .9em;
    margin: .7em 0 0;
    color: #e33b49;
    font-weight: 700; }
  .projects-list .project-item h3 {
    margin-top: 0;
    font-family: "Raleway", serif; }
    .projects-list .project-item h3 a {
      color: rgba(0, 0, 0, 0.84); }
.projects-list #filter {
  height: 0px;
  display: block; }

[template-id="campaign"] .supporters {
  margin-top: -70px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    [template-id="campaign"] .supporters {
      margin-top: -10px; } }
  [template-id="campaign"] .supporters p {
    color: rgba(0, 0, 0, 0.84);
    display: inline-block;
    vertical-align: bottom;
    margin: 0 .5em 0 0;
    font-size: .8em; }
  [template-id="campaign"] .supporters img {
    vertical-align: bottom;
    display: inline-block;
    width: 182px;
    height: auto; }
[template-id="campaign"] .support-holder {
  background-color: #e33b49;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  margin: 0 auto 2em;
  max-width: 800px; }
  @media (max-width: 768px) {
    [template-id="campaign"] .support-holder {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-top: 2em; } }
  [template-id="campaign"] .support-holder p {
    font-family: "Raleway", serif;
    font-size: 1.4em;
    line-height: 1.25em;
    margin: 0 1em 0 0; }
    @media (max-width: 768px) {
      [template-id="campaign"] .support-holder p {
        margin: 0 0 1em; } }
  [template-id="campaign"] .support-holder a {
    flex: 0 0 auto;
    background-color: #FF950B;
    padding: .7em 1.5em .7em;
    color: #FFF;
    transition: background-color .35s ease-in-out, box-shadow .35s ease-in-out;
    letter-spacing: .02em;
    border: none;
    display: inline-block;
    box-shadow: 0px 0px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    line-height: 1em; }
    html.desktop [template-id="campaign"] .support-holder a:hover {
      background-color: #315944;
      color: #FFF;
      border: none;
      box-shadow: 4px -4px rgba(0, 0, 0, 0.75); }
[template-id="campaign"] .intro {
  display: flex;
  background-position: right center;
  background-size: 64% auto;
  background-repeat: no-repeat;
  margin-bottom: 5%; }
  @media (max-width: 768px) {
    [template-id="campaign"] .intro {
      background-size: 100% auto;
      background-position: top center;
      margin: 0 -15px;
      font-size: 14px; } }
  [template-id="campaign"] .intro > div:first-child {
    color: #FFF;
    width: 50%;
    padding: 2em;
    background-color: #222;
    margin-bottom: -2%;
    margin-top: 4%; }
    @media (max-width: 768px) {
      [template-id="campaign"] .intro > div:first-child {
        width: auto;
        margin: 0; } }
  [template-id="campaign"] .intro.intro-article {
    position: relative; }
    @media (max-width: 768px) {
      [template-id="campaign"] .intro.intro-article {
        padding-top: 60vw; } }
    [template-id="campaign"] .intro.intro-article > div {
      width: 42%;
      margin-top: 20%; }
      @media (max-width: 768px) {
        [template-id="campaign"] .intro.intro-article > div {
          width: 100%;
          margin-top: 0; }
          [template-id="campaign"] .intro.intro-article > div .credits {
            margin-bottom: 1em; }
            [template-id="campaign"] .intro.intro-article > div .credits p {
              margin-top: 0 !important; } }
  [template-id="campaign"] .intro .titleStyle1 {
    color: #FFF; }
    @media (max-width: 768px) {
      [template-id="campaign"] .intro .titleStyle1 {
        line-height: 1.2em;
        font-size: 2em; } }
  [template-id="campaign"] .intro .btnMore {
    background-color: #FFF;
    color: #e33b49; }
[template-id="campaign"] article {
  margin-bottom: 2em;
  position: relative; }
  [template-id="campaign"] article.article {
    background-color: #F5F5F5;
    padding-top: 15px;
    padding-bottom: 15px;
    color: rgba(0, 0, 0, 0.84);
    align-items: stretch; }
    @media (max-width: 768px) {
      [template-id="campaign"] article.article .label-box {
        margin-top: -2.3em; } }
  [template-id="campaign"] article.new {
    margin-top: 1em;
    margin-bottom: 1em; }
    [template-id="campaign"] article.new h3 {
      font-size: 1.3em; }
    [template-id="campaign"] article.new img {
      box-shadow: 8px 8px 0px 0px #F2F2F2; }
  [template-id="campaign"] article .info {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-bottom: 1em; }
    [template-id="campaign"] article .info h3 {
      font-weight: 700;
      margin-bottom: .2em;
      margin-top: .3em; }
      [template-id="campaign"] article .info h3 a {
        color: rgba(0, 0, 0, 0.84); }
[template-id="campaign"] .newsTitle {
  color: #e33b49;
  font-weight: 700;
  font-size: 2em;
  margin-top: 1em;
  padding-bottom: .3em; }
[template-id="campaign"] .label-box {
  text-align: right; }
[template-id="campaign"] .label-box-article {
  position: absolute;
  top: -20%;
  left: 0;
  text-align: left; }
  @media (max-width: 768px) {
    [template-id="campaign"] .label-box-article {
      top: 0%; } }
[template-id="campaign"] .credits {
  font-size: .9em; }
  [template-id="campaign"] .credits p {
    margin-bottom: .2em; }
    @media (max-width: 768px) {
      [template-id="campaign"] .credits p {
        margin-top: 1em;
        line-height: 1.15em;
        margin-bottom: -.3em; } }
  [template-id="campaign"] .credits a {
    color: #e33b49; }
[template-id="campaign"] .human_rights {
  background-color: #EEEEEE;
  padding: 2em 3em;
  margin-top: 4em;
  box-shadow: 8px 8px 0px 0px #e33b49; }
  @media (max-width: 768px) {
    [template-id="campaign"] .human_rights {
      margin-top: 3em;
      margin-bottom: 2em;
      padding: 1.7em 1.5em; } }
  [template-id="campaign"] .human_rights h3 {
    margin: 0 !important;
    font-size: 2em !important;
    line-height: 1em !important; }
    @media (max-width: 768px) {
      [template-id="campaign"] .human_rights h3 {
        font-size: 1.3em !important; } }
  [template-id="campaign"] .human_rights ul {
    margin: 2em 0 0 0;
    padding: 0;
    list-style: none;
    font-size: .9em; }
    @media (max-width: 768px) {
      [template-id="campaign"] .human_rights ul {
        margin-top: 1em; } }
    [template-id="campaign"] .human_rights ul li + li {
      margin-top: .5em;
      padding-top: .5em;
      border-top: rgba(255, 255, 255, 0.3) solid 1px; }

[template-id="support"] .btn {
  flex: 0 0 auto;
  background-color: #e33b49;
  color: #FFF;
  padding: .8em 1.3em;
  line-height: 1em;
  font-weight: 700;
  display: inline-block;
  white-space: normal;
  display: inline-flex;
  justify-content: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; }
  [template-id="support"] .btn span {
    position: relative;
    z-index: 2; }
  [template-id="support"] .btn:after {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1, 0);
    transform-origin: center bottom;
    transition: transform .35s ease-in-out; }
  html.desktop [template-id="support"] .btn:hover:after {
    transform: scale(1, 1); }
[template-id="support"] .methods {
  max-width: 700px;
  display: flex;
  padding: 1em 0; }
  [template-id="support"] .methods a {
    margin: .4em;
    width: 30%; }
[template-id="support"] section {
  background-color: #F8F8F8;
  padding: 2em 3em 2em 7em;
  margin-top: 2em;
  box-shadow: 8px 8px 0px 0px #e33b49;
  color: #353535; }
  @media (max-width: 768px) {
    [template-id="support"] section {
      padding: 2em 1em 2em 1em; } }
  [template-id="support"] section + section {
    margin-top: 5em; }
  [template-id="support"] section h3 {
    margin: 0 0 .8em -2.6em;
    font-size: 2em;
    line-height: 1em;
    color: #e33b49;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
    display: flex;
    align-items: center; }
    [template-id="support"] section h3 span {
      flex: 1 1 auto;
      display: inline-block; }
    @media (max-width: 768px) {
      [template-id="support"] section h3 {
        margin-left: 0; } }
    [template-id="support"] section h3 strong {
      flex: 0 0 auto;
      position: relative;
      color: #FFF;
      background-color: #e33b49;
      width: 2em;
      height: 2em;
      border-radius: 50%;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-right: .3em; }
[template-id="support"] #voluntariado ul img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 1em 1em 2em;
  box-shadow: 6px 6px 0px 0px #e33b49; }
[template-id="support"] #newsletter form {
  max-width: 550px;
  margin: 0 auto;
  text-align: center; }
  [template-id="support"] #newsletter form #iEmail {
    max-width: 350px;
    margin: 0 auto;
    text-align: center; }
  [template-id="support"] #newsletter form .btn {
    margin-top: 1.4em; }

.btn--soli {
  background-color: #e33b49;
  color: #fff;
  display: inline-flex;
  padding: 20px; }

.btn--soli2 {
  color: #000;
  display: inline-flex;
  padding: 20px;
  border: 1px solid #000;
  font-weight: bold; }

[template-id="exhibition"] .supporters {
  margin-top: -70px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    [template-id="exhibition"] .supporters {
      margin-top: -10px; } }
  [template-id="exhibition"] .supporters p {
    color: rgba(0, 0, 0, 0.84);
    display: inline-block;
    vertical-align: bottom;
    margin: 0 .5em 0 0;
    font-size: .8em; }
  [template-id="exhibition"] .supporters img {
    vertical-align: bottom;
    display: inline-block;
    width: 182px;
    height: auto; }

.exhibition__header__img {
  display: block;
  max-width: 100%; }

.banner-mujeres-que-inspiran {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .banner-mujeres-que-inspiran__title {
    font-family: "Raleway", serif;
    font-style: italic;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.84); }

.banner-visita-exposicion {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .banner-visita-exposicion__title {
    font-family: "Raleway", serif;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.84);
    font-style: italic;
    color: #e33b49; }
  .banner-visita-exposicion__subtitle {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.84);
    font-size: 20px;
    margin: 0 0 25px 0; }

/*# sourceMappingURL=site.css.map */

.exhibition__header {
	position: relative;
	background-repeat:no-repeat;
	display: flex;
	align-items: center;
	margin: 0 0 40px 0;
	padding: 60px 0;
}

.exhibition__header__inner {
	background-color: #fff;
	width: 50%;
	padding: 2em;	
}

@media (max-width: 991px){
	.exhibition__header {
		background-size: auto 50%;
		background-position: right center;
		padding: 0;
	}
	
	.exhibition__header__inner {
		width: auto;
	}
}

.banner-mujeres-que-inspiran {
	padding: 40px;
	background-repeat: no-repeat;
}

.row.african-women {
	background-image: url('/theme/solidaridadsi/img/africa_inspira/bg.jpg');
	background-repeat: no-repeat;
	background-size: calc(100% - 30px) auto;
	background-position: 15px 0;
	min-height: 260px;
	overflow: hidden;
	margin: 0 -15px 40px -15px;
}

.row.african-women img {
	mix-blend-mode: multiply;
	max-width: 250px;
	position: absolute;
	top: 0px;
	left: 100px;
}

.african-women__view {
	display: flex;
	align-items: center;
	color: #000;
}

.african-women__view:hover {
	color: #000;
	text-decoration: none;
}
	
.african-women__view__content {
	margin: 0 50px 0 0;
}

.african-women__view::after {
	content: "";
	background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iN2ZlMzJkZjQtNzc1OS00ODVlLWIxOWEtZDkwNjQ1NDBjMjM0IiBkYXRhLW5hbWU9IkNhcGEgMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEuNTMgOC4xOCI+CiAgICA8bGluZSB4MT0iNTAuNDQiIHkxPSI0LjA5IiB5Mj0iNC4wOSIgc3R5bGU9ImZpbGw6IG5vbmU7c3Ryb2tlOiAjMWQxZDFiO3N0cm9rZS1taXRlcmxpbWl0OiAxMCIvPgogICAgPHBvbHlnb24gcG9pbnRzPSI0Ny4xMyAwIDQ2LjQ1IDAuNzMgNTAuMDYgNC4wOSA0Ni40NSA3LjQ1IDQ3LjEzIDguMTggNTEuNTMgNC4wOSA0Ny4xMyAwIiBzdHlsZT0iZmlsbDogIzFkMWQxYiIvPgo8L3N2Zz4K");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px auto;
	display: block;
	width: 100px;
	height: 40px;
	border: 2px solid #000;
}

[template-id="exhibition"] .supporters img {
    width: auto;
	max-height: 50px;
}

[template-id="campaign"] .intro > div.woman-featured {
	background: none !important;
	padding: 0 !important;
}

[template-id="campaign"] .intro > div.woman-featured > div {
	background-color: #222;
	padding: 2em;
}

.africa-inspira--overlay {
	background-color: rgba(0,0,0,0.7);
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	
}

.africa-inspira--modal {
	background-color: #fff;
	width: 80%;
	height: 80%;
	position: fixed;
	z-index: 999999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	max-width: 560px;
	
}

.africa-inspira-modal-where {
	font-family: "Raleway", serif;
	font-style: italic;
	font-weight: 700;
	font-size: 24px;
}

.africa-inspira-modal-when {
	font-family: "Raleway", serif;
	font-weight: 700;
	font-size: 18px;
}

.africa-inspira-modal-content {
	padding: 20px 30px;
}

.africa-inspira-modal-title {
	font-family: "Raleway", serif;
	font-weight: 700;
	font-size: 18px;
	background-color: #e33b49;
	color: #fff;
	padding: 15px;
}

.africa-inspira-form {
  text-align: left;
  width: 100%;
}

[template-id="exhibition"] .btn {
    flex: 0 0 auto;
    background-color: #e33b49;
    color: #FFF;
    padding: .8em 1.3em;
    line-height: 1em;
    font-weight: 700;
    display: inline-block;
    white-space: normal;
    display: inline-flex;
    justify-content: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}