/*

Cazú Zegers Arquitectura

Authors: Weichi He / Ignacio Pérez

*/

@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700");

@font-face {
  font-family: "granville-bold";
  src: url("../fonts/granvilleweb-bold.eot");
  src: url("../fonts/granvilleweb-bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/granvilleweb-bold.woff") format("woff");
  font-weight: normal;
}

@font-face {
  font-family: "granville-regular";
  src: url("../fonts/granvilleweb-regular.eot");
  src: url("../fonts/granvilleweb-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/granvilleweb-regular.woff") format("woff");
  font-weight: normal;
}

/* Reset
-------------------------------------------------- */

/**,
*:before,
*:after {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
/*main,*/ nav,
section,
summary {
  display: block;
}

/* Pix
-------------------------------------------------- */

img {
  display: block;
  /*max-width: 100%;*/
}

/* Links
-------------------------------------------------- */

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
}

a:hover {
  color: white;
}

/* Site
-------------------------------------------------- */

html {
  height: 100%;
  font-family: "Work Sans";
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
}

@keyframe myfadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes myfadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  -webkit-animation: myfadeInAnimation 1s;

  animation: myfadeInAnimation 1s;
  margin: 0 auto;
  font-size: 0.8em;
  line-height: 1.5em;
  /*    padding: 2em;*/
  background: #c3c3c3;
  /*color: #222;*/
  height: 100%;
}

p {
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}

.proyectos {
  background-color: #eaeaea;
  /*was #f2f2f2*/
}

.tesis {
  background-color: #e5e5e5;
}

.about {
  /*background-image: url('../images/linepng-01.png'); */
  background-color: #c3c3c3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2px;
}

.error {
  background-color: #2b2b2b;
}

.about .grid {
  padding: 0;
}

.coverimage {
  height: 100vh;
  width: 100vw;
  /*background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;*/
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%) contrast(60%);
  position: absolute;
}

section .coverimage {
  -o-object-fit: cover;
  object-fit: cover;
}

.contenedorprojects h2 {
  color: #white;
}

.contenedorprojects:before {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 110px;
  margin-left: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(242, 242, 242, 1)),
    to(rgba(242, 242, 242, 0))
  );
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 0) 100%
  );
}

.contenedorprojects:after {
  content: "";
  pointer-events: none;
  width: 100%;
  height: 110px;
  bottom: 0;
  left: 0;
  position: fixed;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(242, 242, 242, 1)),
    to(rgba(242, 242, 242, 0))
  );
  background: linear-gradient(
    to top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 0) 100%
  );
}

.project-title {
  padding-top: 47vh;
  text-align: center;
  width: 100%;
  margin-top: 0;
  position: relative;
  font-weight: normal;
}

.gallery-filters button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-style: none;
}

.filterbuttons {
  font-family: "granville-regular";
  font-size: 1.8em;
  line-height: 1.6em;
}

.filtervivienda {
  display: none !important;
}
.materialhide {
  display: none !important;
}

.show {
  display: block !important;
}

.gallery-filters button:hover {
  color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.gallery-filters .active {
  color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: url("../cursors/cancel.png") 15 15, default;
  cursor: -webkit-image-set(
      url("../cursors/cancel.png") 1x,
      url("../cursors/cancel2x.png") 2x
    ),
    auto;
}

.imagebanner {
  width: 100%;
  height: 100%;
  /*padding-top: 7vh;*/
  padding-bottom: 7vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.imagebanner-location {
  width: 100%;
  height: 100%;
  /*padding-top: 7vh;*/
  padding-bottom: 7vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.imagebanner img {
  height: 85%;
  width: auto;
}

.norte {
  background-image: url("../images/01_norte.png");
  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
}

.centro {
  background-image: url("../images/02_centro.png");
  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
}

.sur {
  background-image: url("../images/03_sur.png");

  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
}

.ubicacion {
  text-align: center;
  padding-top: 20vh;
}

.bodytext {
  display: table;
  height: 100%;
  width: 100%;
  font-size: 1.25em;
  line-height: 1.5em;
}

.bodytext p {
  padding-left: 25vw;
  padding-right: 25vw;
  display: table-cell;
  vertical-align: middle;
  width: 60vw;
}

.bodytext figure {
  padding-left: 25vw;
  padding-right: 25vw;
  display: table-cell;
  vertical-align: middle;
  width: 60vw;
}

.bodytext figure iframe {
  width: 100%;
  height: 25vw;
}

.bodytext a {
  text-decoration: underline;
}

/* Header
-------------------------------------------------- */

.header {
  margin-bottom: 1.5em;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.logo {
  display: block;
  margin-bottom: 1.5em;
}

.logo img {
  width: 2em;
}

.permanentes {
  font-size: 1.1em;
  font-family: "granville-bold";
}

.subrayado {
  text-decoration: underline;
}
.medium {
  /*font-family: 'Roboto'; */
  font-weight: 500;
}

.permanente-derecha {
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 20;
  text-align: right;
}

.currentslide {
  color: #bfbfbf;
}

.permanente-izquierda {
  position: fixed;
  top: 3%;
  left: 3%;
  z-index: 99999;
  line-height: 1.2em;
}

.langswitch {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 999;
}

.langswitch li {
  display: inline-block;
}

.langactive {
  border-bottom: solid 1px black;
}

/* ______ INTRO ______*/

.introcontainer {
  height: 100vh;
  width: 100vw;
}

.enter {
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100%;
}

video#bgvid {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url() no-repeat;
  background-size: cover;
}

.flecha {
  position: absolute;
  right: 2%;
  bottom: 2%;
  height: 40px;
  width: 40px;
  background-image: url("../images/flecha.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.copyright_intro {
  position: absolute;
  left: 2%;
  bottom: 0;
  height: 40px;
  color: white;
  opacity: 0.5;
  cursor: default;
}

.white {
  color: white;
}

.white a {
  color: white;
}

.transform {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contenedorbefore {
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.contenedorafter {
  position: relative;
  width: 96%;
  height: 94%;
  top: 3%;
  left: 2%;
  margin: 0;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.dotintro {
  width: 13px;
  height: 13px;
  background-image: url("../images/dot_white.svg");
  background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.top-before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  pointer-events: all;
}

.top-before a {
  color: white;
}

.right-before {
  pointer-events: all;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
}

.right-before a {
  color: white;
  position: absolute;
  top: 42%;
  right: 0;
}

.left-before {
  pointer-events: all;
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
}

.left-before a {
  color: white;
  position: absolute;
  top: 42%;
  left: 0;
}

.bottom-before {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
}

.bottom-before a {
  color: white;
}

/* Navigation
-------------------------------------------------- */

.title {
  position: fixed;
  z-index: 99999;
}

.indicador {
  /* color: black; */

  /* display: inline-block; */
  /* display: block; */
  font-family: "granville-regular";
  font-size: 0.9rem;
}
.top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 1.5%;
  text-align: center;
  pointer-events: all;
}

.top a {
  cursor: pointer;
  color: black;
}

.left .nav-link span,
.right .nav-link span {
  display: inline-block;
}

.bottom .nav-link span,
.top .nav-link span {
  display: inline-block;
}

.right {
  pointer-events: all;
  position: fixed;
  right: 0;
  width: 4%;
  height: 100%;
  top: 0;
}

.right a {
  cursor: pointer;
  color: black;
  position: absolute;
  top: 46%;
  right: 0.3em;
}
.indicador_right {
  right: -0.6em;
  top: 46%;
  position: relative;
  margin-left: -1em;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.left {
  pointer-events: all;
  position: fixed;
  left: 0;
  width: 4%;
  height: 100%;
  top: 0;
}

.left a {
  cursor: pointer;
  color: black;
  position: absolute;
  top: 46%;
  left: 0.3em;
}

.indicador_left {
  left: -0.6em;
  top: 46%;
  position: relative;
  margin-right: -1em;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.left,
.right,
.top,
.bottom {
  pointer-events: none;
}

.bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 1.5%;
  text-align: center;
}

.bottom a {
  cursor: pointer;
  color: black;
}

nav {
  position: fixed;
  z-index: 50000;
}

.navintro {
  width: 100%;
  height: 100%;
}

.navoverlay {
  position: fixed;
  z-index: 40000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.navoverlay-active a {
  color: white !important;
}

.navoverlay-active {
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: all;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.indicador-active {
  display: block;
}

nav a {
  text-decoration: none;
  font-size: 3vh;
  font-family: "granville-bold";
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}

nav a:hover {
  color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav-link {
  width: auto;
  pointer-events: auto;
}

.nav-link span {
  vertical-align: middle;
  display: block;
}

.active,
.active .indicador {
  color: white !important;
}

.quote {
  height: 300px;
  font-size: 30px;
}

/* Headings
-------------------------------------------------- */

h1 {
  font-size: 3em;
  line-height: 0.5;
  font-family: "granville-regular";
  color: white;
  font-weight: normal;
  margin: 0;
}

.proyectos h1 {
  font-family: "granville-bold";
  color: #bfbfbf;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}

h2 {
  width: 100%;
  font-size: 4vw;
  color: white;
  font-family: "granville-regular";
}

h3 {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  color: red;
}

h1 a,
h2 a,
h3 a,
h4 a {
  color: inherit;
  border: 0 !important;
}

/* Main
-------------------------------------------------- */

.main {
  /*margin-top: 50vh;*/
  margin-bottom: 50vh;
  /*    height: 100%;*/
  width: 100%;
}

.contenedor {
  padding: 3%;
  height: 100vh;
  width: 100%;
}

.contact .contenedor {
  padding: 0;
}

.main hr {
  margin: 3em 0;
  height: 2px;
  background: #ddd;
}

.main p,
.main figure,
.main ul,
.main ol {
  margin-bottom: 1.5em;
}

.main a:hover {
  /*    border-color: #222;*/
}

/* Text blocks */

.text ul,
.text ol {
  margin-left: 1em;
}

/* Project meta
-------------------------------------------------- */

.meta {
  margin-bottom: 1.5em;
}

.meta li {
  float: left;
  list-style: none;
  margin-right: 2em;
  color: red;
}

.meta li b {
  font-weight: 400;
  color: #000;
  padding-right: 0.25em;
}

.clickzone {
  position: absolute;
  opacity: 0.5;
  width: 50vw;
  height: 100%;
  top: 0;
  pointer-events: none;
  z-index: 0;
}

/*
.prev {
    pointer-events: all;
    left: 0;
    background-color: red;

}

.next {
    pointer-events: all;
    right: 0;
    background-color: blue;

}
*/

.slick-slider {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.arrownext {
  cursor: url("../cursors/right.png") 15 15, default;
  cursor: -webkit-image-set(
      url("../cursors/right.png") 1x,
      url("../cursors/right2x.png") 2x
    ),
    auto;
}

.arrowprev {
  cursor: url("../cursors/left.png") 15 15, default;
  cursor: -webkit-image-set(
      url("../cursors/left.png") 1x,
      url("../cursors/left2x.png") 2x
    ),
    auto;
}

.slick-track {
  height: 100vh;
  outline: none;
}

.slick-slider {
  position: absolute !important;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: #f7f5f4;
}

.slick-slide {
  min-height: 90%;
  width: 100%;
  background-size: cover;
  outline: none !important;
}

.fichatecnica {
  display: table;
  width: 100%;
  height: 100%;
  line-height: 1.5em;
  font-size: 1em;
  text-align: center;
}

.ficha {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  padding-left: 42vh;
  padding-right: 42vh;
  /*padding: 0;*/
}

.nextproject {
  display: table-cell;
  vertical-align: middle;
  font-family: "granville-regular";
  font-size: 3em;
  line-height: 1.5em;
}

.sigproy {
  height: 94%;
}

.nextproject a {
  color: #c2c2c2;
}

.fichatecnica ul li ul {
  text-align: center;
  list-style: none;
  margin-bottom: 1.5vh;
  padding: 0;
}

.fichatecnica ul li {
}

.fichatitle {
  font-weight: 700;
  margin-bottom: 0;
}

/* About
---------------------------------------------------*/

/*About*/

.about .contenedor {
  padding-top: 0;
  padding-bottom: 0;
}

.perfil {
  overflow-y: scroll;
  height: 100%;
}

/*.perfil:before {

    content:"";
    width: 100%;
    height: 110px;
    margin-left: 1%;
    position: fixed;
    background: -webkit-linear-gradient(rgba(195, 195, 195, 0) 15%, rgba(195, 195, 195, 1) 100%);
    background: linear-gradient(to bottom, rgba(195, 195, 195, 1) 15%, rgba(195, 195, 195, 0) 100%);
}

.perfil:after { content:"";
width: 48%;
height: 110px;
bottom: 0;
right: 0;
position: fixed;
background: -webkit-linear-gradient(rgba(195, 195, 195, 0) 15%, rgba(195, 195, 195, 1) 100%);
background: linear-gradient(to top, rgba(195, 195, 195, 1) 15%, rgba(195, 195, 195, 0) 100%);
}*/

.perfil:before {
  top: 0;
  content: "";
  width: 50%;
  height: 110px;
  /*margin-left: 1%;*/
  position: fixed;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(195, 195, 195, 1)),
    to(rgba(195, 195, 195, 0))
  );
  background: linear-gradient(
    to bottom,
    rgba(195, 195, 195, 1) 0%,
    rgba(195, 195, 195, 0) 100%
  );
}

.perfil:after {
  content: "";
  width: 50%;
  height: 110px;
  bottom: 0;
  right: 0;
  position: fixed;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(195, 195, 195, 1)),
    to(rgba(195, 195, 195, 0))
  );
  background: linear-gradient(
    to top,
    rgba(195, 195, 195, 1) 0%,
    rgba(195, 195, 195, 0) 100%
  );
}

.publicaciones:before {
  content: "";
  width: 50%;
  height: 110px;

  position: fixed;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(187, 187, 187, 1)),
    to(rgba(187, 187, 187, 0))
  );
  background: linear-gradient(
    to bottom,
    rgba(187, 187, 187, 1) 0%,
    rgba(187, 187, 187, 0) 100%
  );
}

.publicaciones:after {
  content: "";
  width: 50%;
  height: 110px;
  bottom: 0;
  left: 0;
  position: fixed;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(187, 187, 187, 1)),
    to(rgba(187, 187, 187, 0))
  );
  background: linear-gradient(
    to top,
    rgba(187, 187, 187, 1) 0%,
    rgba(187, 187, 187, 0) 100%
  );
}

.tabla {
  height: 100vh;
  overflow: auto;
  padding-top: 24%;
  padding-bottom: 12%;
}

.outlink {
  display: block;
  height: 0.9em;
  width: 10%;
  background-image: url(../images/out.svg);
  background-repeat: no-repeat;
  background-size: contain;
  float: right;
  background-position: right bottom;
  cursor: pointer;
}

.downlink {
  display: inline-block;
  height: 1em;
  width: 10%;
  background-image: url(../images/download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  float: right;
  background-position: right bottom;
  cursor: pointer;
}

.filtros-tabla {
  height: 100%;
  overflow: auto;
  padding-top: 118%;
  padding-left: 2%;
}

.perfil-texto {
  /*overflow: auto;*/
  padding-left: 5%;
  padding-right: 19.5%;
  padding-top: 48.5%;
  padding-bottom: 12%;
  font-size: 1.26em;
  /* clear: left;*/
}

.perfil-texto p {
  margin-top: 0;
}

.perfil-texto a {
  color: white;
}

.perfil-texto a:hover {
  color: inherit;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  /*background: linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;*/
}

.titulo {
  width: 48%;
  position: fixed;
  height: 20%;
  top: 0;
  padding-top: 10%;
  text-align: center;
  z-index: -1;
  -webkit-backface-visibility: hidden !important;
}

.table thead {
  display: none;
}

/*.table {}*/

/*About*/

table {
  /*    border-collapse: collapse*/
}

tr td {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

td:first-child {
  padding-top: 3%;
}

td:last-child {
  padding-bottom: 5%;
}

tr {
  border-bottom: solid 1px black;
  /*    line-height: 2.5em;*/
}
.perfil {
  padding: 0;
}

.publicaciones,
.publications {
  font-family: "Work Sans";
  /*letter-spacing: .05em;*/
  /*padding: 0;*/
  /*background-color: #bbbbbb ;*/
  padding-left: 3%;
  line-height: 1.4em;
}

.mitad1 {
  background-color: #bbbbbb;
  position: fixed;
  z-index: -5;
  width: 50%;
  height: 100vh;
  left: 0;
}

/*
td:first-child {
  padding-left:20px;
  padding-right:0;
}
*/

.sort-active {
  color: white;
}

/* Contacto ---------------------------------------*/

.fullcontainer {
  width: 100%;
  height: 100vh;
  text-align: center;
  display: table;
}

.contacto-container {
  background-image: url("../images/contact-bg2.svg");
  background-position: center center;
  background-size: 25%;
  background-repeat: no-repeat;
}

.contacto-contenido {
  width: 33%;
  display: table-cell;
  vertical-align: middle;
}

.contacto-contenido a {
  cursor: pointer;
}

/* Project teaser
-------------------------------------------------- */

.proyecto-wrapper {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.proyecto-wrapper a img {
}

.proyecto-wrapper a img:hover {
  cursor: url("../cursors/plus.png") 15 15, default;
  cursor: -webkit-image-set(
      url("../cursors/plus.png") 1x,
      url("../cursors/plus2x.png") 2x
    ),
    auto;
}

.destacado {
  width: 33% !important;
}

.proyectos {
  margin-top: 9vh;
  min-height: 25vh;
  margin-bottom: 4vh;
  text-align: center;
}

.proyectos span {
  letter-spacing: 0.05em;
}

.hide {
  display: none;
}

.titulo-proyecto {
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: left;
  color: #7f7f7f;
}

.kawelluco {
  background-color: #f2f2f2 !important;
}

.kawelluco .main {
  margin-bottom: 10vh;
  padding-left: 30vh;
  padding-right: 30vh;
}

.planourbanizacion img {
  margin-top: 5%;
  max-width: 100%;
}

/*.kawellucoproy{margin-top: 50vh;}*/

/*.teaser {
    list-style: none;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5%;
}*/

.imagen-proyecto {
  overflow: hidden;
}

.imagen-proyecto img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
  filter: grayscale(100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  min-height: 100%;
  width: auto;
}

.imagen-proyecto img:hover {
  -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
  filter: grayscale(0%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.aspect-4-3 {
  width: 100%;
  height: 250px;
}

.aspect-1-1 {
  width: 100%;
  height: 350px;
}

.aspect-3-4 {
  width: 100%;
  height: 555px;
}

/*.aspect-2-3 {
    height: 555px;
    width: 33.33%;
}*/

/*.terr {
    width: 66.66%;

display: inline-block;
    float: left;
    min-height: 1px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

/*
.teaser li {
    margin-bottom: 1.5em;
    list-style: none;
}
*/

/*
.teaser {
    height 50vh;
}
*/

/*
@media screen and (min-width: 50em) {
    .teaser {width: 100%; background-color: aqua;}


    .teaser li {
        float: left;
        width: 30%;
        margin-left: 4%;
    }
    .teaser li:first-child {
        margin-left: 0;
    }
}

*/

/* Tesis
-------------------------------------------------- */
.cierreparrafo {
  width: 100vw;
  height: 20px;
  background-color: red;
  position: relative;
}

.containercover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
}

.containercover h2 {
  position: absolute;
  margin-top: 25vh;
  text-align: center;
}

.contenedortesis {
  margin-top: 50vh;
  padding: 4%;
}

.contenedorprojects {
  padding: 4%;
}

/*.contenedortesis:after {


    content:""; clear:both; display:block;


 }*/

.contenedortesis:before {
  content: "";
  width: 100%;
  height: 110px;
  margin-left: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(229, 229, 229, 1)),
    to(rgba(229, 229, 229, 0))
  );
  background: linear-gradient(
    to bottom,
    rgba(229, 229, 229, 1) 0%,
    rgba(229, 229, 229, 0) 100%
  );
}

.contenedortesis:after {
  content: "";
  width: 100%;
  height: 110px;
  bottom: 0;
  left: 0;
  position: fixed;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(229, 229, 229, 1)),
    to(rgba(229, 229, 229, 0))
  );
  background: linear-gradient(
    to top,
    rgba(229, 229, 229, 1) 0%,
    rgba(229, 229, 229, 0) 100%
  );
}

.covertesis {
  position: absolute;
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -webkit-filter: grayscale(100%) contrast(80%);
  filter: grayscale(100%) contrast(80%);
}

.cita {
  width: 100%;
  text-align: center;
}
.textocita p {
  color: white;
  font-family: "granville-regular";
  font-size: 2.8em;
  line-height: 1em;
  margin-bottom: 10vh;
  margin-top: 10vh;
}

.citanegra p {
  color: black;
}

.autorcita {
  font-size: 0.5em;
  float: right;
}

.imgfull img {
  width: 100%;
  height: 20vh;
}

.contenedor-img-tesis {
  padding-top: 2.5vw;
  padding-right: 0;
  margin-right: -2px;
}

.videotesis {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.videotesis iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.linkdescarga {
  border-top: solid 1px black;
}

.contenedor-img-tesis img {
  max-width: 100%;
}

.imghalf {
  width: 100%;

  /*height: 50vh; */

  -o-object-fit: cover;

  object-fit: cover;
}

/*.imghalf img {height: 200px; object-fit: contain;}*/

.parrafotesis {
  padding-top: 2.5vw;
  padding-left: 2.5vw;
  padding-right: 14vw !important;
  margin-right: 2px;
}

.parrafotesis h5 {
  font-family: "granville-bold";
  font-size: 1.3em;
  margin-bottom: 2vh;
}

.parrafotesis p {
  margin-top: 0;
  font-size: 1.2em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.parrafotesis p:hover {
  opacity: 0.4;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bajadatesis {
  margin-top: 1em;
  font-size: 0.9em;
}

/* Next/Prev nav
-------------------------------------------------- */

.nextprev {
  padding: 1em 0;
}

.nextprev a {
  border: 0;
}

.nextprev .prev {
  float: left;
}

.nextprev .next {
  float: right;
}

/* Footer
-------------------------------------------------- */

/*.footer {}*/

.copyright {
  float: left;
}

.colophon {
  float: right;
}

.colophon a b {
  color: red;
  padding-left: 0.25em;
}

@media screen and (max-width: 768px) {
  .left,
  .right {
    width: 12%;
  }

  .indicador {
    font-size: 0.85rem;
  }

  .indicador_left {
    left: -0.5em;
  }

  .rotate_left {
    display: inline-block;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  .indicador_right {
    right: -0.5em;
  }

  .filterbuttons {
    font-size: 1.3em;
    padding: 7%;
  }

  .proyectos {
    margin-bottom: 8vh;
  }

  .grid {
    padding: 0;
  }

  .aspect-3-4,
  .aspect-1-1 {
    height: 250px;
  }

  .proyecto-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 8vw;
  }

  .bodytext {
    font-size: 1em;
  }

  .bodytext p {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .ficha {
    padding: 35px;
  }

  .fichatecnica {
    font-size: 0.9em;
  }

  .nextproject {
    font-size: 1.5em;
    margin-bottom: 5px;
    line-height: 0.6em;
  }

  .titulo {
    position: relative;
  }

  .contenedor {
    height: auto;
  }

  .gff {
    display: none !important;
  }

  .filtros-tabla {
    padding-top: 10%;
    text-align: center;
  }

  .perfil-texto {
    font-size: 0.85em;
    padding-left: 15%;
    padding-top: 15%;
    padding-bottom: 0;
  }

  .titulo {
    padding-top: 30%;
    width: 100%;
  }

  .imagebanner .landscape {
    height: auto;
    width: 100%;
  }

  .imagebanner .portrait {
    height: 100%;
    width: auto;
  }

  .tabla {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 5%;
    height: auto;
    padding-bottom: 30%;
  }

  .perfil,
  .tabla,
  .publications,
  .publications {
    position: relative;
    overflow: auto;
  }

  .publicaciones:after,
  .publicaciones:before {
    display: none;
  }

  .perfil:before,
  .perfil:after {
    width: 100%;
  }

  .contenedortesis {
    padding: 12%;
  }
  .parrafotesis {
    font-size: 0.7em;
  }

  .textocita p {
    font-size: 1.8em;
    width: 100%;
  }

  .kawelluco .main {
    margin-bottom: 10vh;
    padding-left: 5vh;
    padding-right: 8vh;
  }

  .norte {
    background-image: url("../images/01_norte_rotated.png");
    background-size: 40%;
  }

  .centro {
    background-image: url("../images/02_centro_rotated.png");
    background-size: 40%;
  }

  .sur {
    background-image: url("../images/03_sur_rotated.png");

    background-size: 40%;
  }
}
