/* ANIMATE.CSS --------------------------------------------------------------------------------------------------*/
/* ANIMATIONS */
/* line 3, ../assets/sass/_animate.scss */
.animated {
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 10, ../assets/sass/_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1) rotate(135deg);
    transform: scale3d(1, 1, 1) rotate(135deg);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate(135deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate(135deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) rotate(135deg);
    transform: scale3d(1, 1, 1) rotate(135deg);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1) rotate(135deg);
    transform: scale3d(1, 1, 1) rotate(135deg);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate(135deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate(135deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) rotate(135deg);
    transform: scale3d(1, 1, 1) rotate(135deg);
  }
}
/* line 49, ../assets/sass/_animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes technicolor {
  from {
    background-color: rgba(71, 64, 86, 0.3);
    transition: 42s background-color ease-in-out;
  }
  25% {
    background-color: rgba(117, 112, 131, 0.3);
    transition: 4s background-color ease-in-out;
  }
  50% {
    background-color: rgba(138, 149, 165, 0.3);
    transition: 4s background-color ease-in-out;
  }
  75% {
    background-color: rgba(185, 198, 174, 0.3);
    transition: 4s background-color ease-in-out;
  }
  100% {
    background-color: rgba(71, 64, 86, 0.3);
    transition: 4s background-color ease-in-out;
  }
}
@keyframes technicolor {
  from {
    background-color: rgba(71, 64, 86, 0.5);
    transition: 42s background-color ease-in-out;
  }
  25% {
    background-color: rgba(117, 112, 131, 0.5);
    transition: 4s background-color ease-in-out;
  }
  50% {
    background-color: rgba(138, 149, 165, 0.5);
    transition: 4s background-color ease-in-out;
  }
  75% {
    background-color: rgba(185, 198, 174, 0.5);
    transition: 4s background-color ease-in-out;
  }
  100% {
    background-color: rgba(71, 64, 86, 0.5);
    transition: 4s background-color ease-in-out;
  }
}
/* line 108, ../assets/sass/_animate.scss */
.technicolor {
  -webkit-animation-name: technicolor;
  animation-name: technicolor;
}

/* GLOBAL --------------------------------------------------------------------------------------------------*/
/* GLOBAL STYLES */
/* line 3, ../assets/sass/_global.scss */
*, *:after, *:before, *:focus {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 9, ../assets/sass/_global.scss */
html {
  font-size: 62.5%;
}

/* line 13, ../assets/sass/_global.scss */
body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000;
  /* background: #fff url(../images/layout/escheresque_ste_@2X.png) repeat fixed 0 0;*/
  background: #fff url(../images/layout/footer_lodyas.png) repeat fixed 0 0;
  padding: 0;
  margin: 0;
}

/* TYPOGRAPHY */
/* line 27, ../assets/sass/_global.scss */
p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.01rem;
  font-weight: 400;
  margin: 0 0 1.4rem 0;
}

/* line 36, ../assets/sass/_global.scss */
h1 {
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 3.2rem 0;
}

/* line 44, ../assets/sass/_global.scss */
h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 2.8rem 0;
}

/* line 52, ../assets/sass/_global.scss */
h3 {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 2.4rem 0;
}

/* line 60, ../assets/sass/_global.scss */
hr {
  background-color: #00b3be;
  border: 0 none;
  clear: both;
  color: #EDEDED;
  height: 1px;
  margin: 20px auto;
  width: 100%;
}

/* line 70, ../assets/sass/_global.scss */
menu,
ol,
ul {
  padding: 0 0 0 2rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.43;
  margin: 0 0 1.4rem 0;
}

/* line 80, ../assets/sass/_global.scss */
a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px #000 dotted;
  transition: color .1s ease-in-out, border-bottom .1s ease-in-out;
}

/* line 88, ../assets/sass/_global.scss */
a:hover {
  color: #555;
  text-decoration: none;
  border-bottom: 1px #555 solid;
}

/* line 94, ../assets/sass/_global.scss */
a:active, a:focus {
  color: #63656a;
  text-decoration: none;
  border-bottom: 1px #ccc solid;
}

/* line 100, ../assets/sass/_global.scss */
strong {
  font-weight: 700;
}

/* IMAGES, VIDEO, OBJECT */
/* line 105, ../assets/sass/_global.scss */
img, embed, object, video {
  max-width: 100%;
  height: auto !important;
  width: auto\9;
}

/* MEDIA QUERIES */
@media screen and (min-width: 580px) {
  /* TYPOGRAPHY */
  /* line 116, ../assets/sass/_global.scss */
  h1 {
    font-size: 50px;
    font-size: 5rem;
  }

  /* line 121, ../assets/sass/_global.scss */
  h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }

  /* line 126, ../assets/sass/_global.scss */
  h3 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 980px) {
  /* line 134, ../assets/sass/_global.scss */
  h2 {
    font-size: 60px;
    font-size: 6rem;
    margin: 2em 0 1em 0;
    text-align: center;
  }

  /* line 141, ../assets/sass/_global.scss */
  h3 {
    font-size: 30px;
    font-size: 3rem;
  }
}
/* MISCELLANEOUS --------------------------------------------------------------------------------------------------*/
/* MISC */
/* line 2, ../assets/sass/_misc.scss */
#top {
  height: 0;
}

/* line 6, ../assets/sass/_misc.scss */
.clear {
  clear: both;
}

/* line 10, ../assets/sass/_misc.scss */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* line 19, ../assets/sass/_misc.scss */
* html .clearfix {
  zoom: 1;
}

/* IE6 */
/* line 24, ../assets/sass/_misc.scss */
*:first-child + html .clearfix {
  zoom: 1;
}

/* line 28, ../assets/sass/_misc.scss */
.nowrap {
  white-space: nowrap;
}

/* line 32, ../assets/sass/_misc.scss */
.hide-for-screenreader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 43, ../assets/sass/_misc.scss */
#skip-links {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin-left: 0;
  list-style: outside none;
}

/* line 52, ../assets/sass/_misc.scss */
a.skip-links-item {
  font-size: 14px;
  text-decoration: underline;
  position: absolute;
  left: 15px;
  top: -100px;
  z-index: 10000;
  height: auto;
  margin: 0 auto;
  padding: 10px 15px;
  background-color: #000;
  color: #ffba00;
  transition: top .2s,background-color .2s;
}

/* line 67, ../assets/sass/_misc.scss */
a.skip-links-item:active,
a.skip-links-item:focus {
  top: 0;
  background-color: #000;
}

/* Colors: #6A5837, #050517, #988F2A , #FE5F00, #E6AA68  */
@media screen and (min-width: 992px) {
  /* line 76, ../assets/sass/_misc.scss */
  .hide-for-desktop {
    display: none;
  }
}
/* ARROWS --------------------------------------------------------------------------------------------------*/
/* line 1, ../assets/sass/_arrow.scss */
.icono-arrow2-down {
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  /* margin: 10px; */
  display: inline-block;
  vertical-align: middle;
  color: #666;
  box-sizing: border-box;
  transform: rotate(135deg);
  position: absolute;
  bottom: 10em;
  align-self: center;
}

/* line 22, ../assets/sass/_arrow.scss */
.icono-arrow2-down:after,
.icono-arrow2-down:before {
  content: "";
  box-sizing: border-box;
}

/* line 29, ../assets/sass/_arrow.scss */
.icono-arrow2-down:before {
  right: 0;
  top: -3px;
  position: absolute;
  height: 4px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  width: 18px;
  transform-origin: right top;
}

/* GENERAL --------------------------------------------------------------------------------------------------*/
/* line 1, ../assets/sass/_general.scss */
.main {
  background-color: #fff;
  background: #fff url(../images/layout/shattered_@2X.png) repeat fixed 0 0;
  z-index: 99999;
  position: relative;
}

/* line 8, ../assets/sass/_general.scss */
.main__main-gutter {
  padding: 5em 10%;
}

/* line 12, ../assets/sass/_general.scss */
footer {
  padding: 2em;
  text-align: right;
}

/* line 17, ../assets/sass/_general.scss */
footer p,
footer a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  /* line 24, ../assets/sass/_general.scss */
  .main__main-gutter {
    padding: 5em 5%;
  }
}
/* HEADER --------------------------------------------------------------------------------------------------*/
/* HEADER */
/* line 2, ../assets/sass/_header.scss */
.header {
  /* padding: 2em;
  height: 80vh; */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* line 16, ../assets/sass/_header.scss */
.header__header-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 26, ../assets/sass/_header.scss */
.header__header-copy {
  width: auto;
  display: flex;
  flex-direction: column;
  padding: 10em 10%;
  z-index: 10;
  background-image: radial-gradient(#000000, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
}

/* line 35, ../assets/sass/_header.scss */
.header__header-h1 {
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0;
  padding: 0 0 0;
  color: #FE5F00;
  font-weight: 400;
}

/* line 44, ../assets/sass/_header.scss */
.header__header-about {
  font-size: 22px;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.3;
  max-width: 860px;
  margin: .25em 0 0 0.1em;
}

@media screen and (min-width: 580px) {
  /* line 55, ../assets/sass/_header.scss */
  .header__header-h1 {
    font-size: 80px;
    font-size: 8.0rem;
  }

  /* line 60, ../assets/sass/_header.scss */
  .header__header-about {
    font-size: 52px;
    font-size: 5.2rem;
    text-align: center;
    margin-top: .5em;
  }
}
@media screen and (min-width: 992px) {
  /* line 71, ../assets/sass/_header.scss */
  .header__header-h1 {
    font-size: 100px;
    font-size: 10rem;
  }
}
/* NAVIGATION --------------------------------------------------------------------------------------------------*/
/* NAVIGATION */
/* line 2, ../assets/sass/_navigation.scss */
.nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

/* line 9, ../assets/sass/_navigation.scss */
.nav__nav-ul {
  display: table;
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
  padding: 0;
  margin: 0;
  float: right;
}

/* line 19, ../assets/sass/_navigation.scss */
.nav__nav-ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  margin: 0;
  float: right;
}

/* line 28, ../assets/sass/_navigation.scss */
.nav__nav-li {
  display: table-cell;
  font-size: 18px;
  font-size: 1.8rem;
}

/* line 34, ../assets/sass/_navigation.scss */
.nav__nav-a {
  color: #FE5F00;
  border-bottom: none;
  font-weight: 400;
  display: block;
  text-align: center;
  padding: 1em 0;
  transition: background-color .1s ease-in-out;
}

/* line 44, ../assets/sass/_navigation.scss */
.nav__nav-a:hover {
  color: #FE5F00;
  background-color: #252525;
  border-bottom: none;
}

@media screen and (min-wdith: 580px) {
  /* line 52, ../assets/sass/_navigation.scss */
  .nav__nav-li {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
/* PORTFOLIO --------------------------------------------------------------------------------------------------*/
/* PORFOLIO */
/* line 2, ../assets/sass/_portfolio.scss */
.entry {
  padding: 2em 0;
  border-bottom: 1px solid #ccc;
}

/* line 7, ../assets/sass/_portfolio.scss */
.entry img {
  display: block;
}

/* line 11, ../assets/sass/_portfolio.scss */
.entry__entry-link {
  line-height: 1.5;
}

/* line 15, ../assets/sass/_portfolio.scss */
.entry__entry-role {
  margin: 0;
}

/* line 23, ../assets/sass/_portfolio.scss */
.entry__entry-img {
  margin: 5em 0;
}

/* line 27, ../assets/sass/_portfolio.scss */
.entry__entry-awards p {
  line-height: 1.5;
}

/* line 31, ../assets/sass/_portfolio.scss */
.entry__entry-awards-list {
  background-color: #fff;
  padding: 1em;
  list-style-type: none;
  margin-bottom: 3em;
}

/* line 38, ../assets/sass/_portfolio.scss */
.entry__entry-awards-list > li {
  padding-bottom: .75em;
  line-height: 1.5;
}

/* line 43, ../assets/sass/_portfolio.scss */
.ar .entry__entry-role {
  margin-bottom: 1.4rem;
}

/* line 47, ../assets/sass/_portfolio.scss */
.ar_ar-urls {
  margin-bottom: 2em;
}

/* line 51, ../assets/sass/_portfolio.scss */
.projects {
  padding-top: 5em;
}

/* line 55, ../assets/sass/_portfolio.scss */
.projects_projects-list {
  list-style-type: none;
}

/* line 59, ../assets/sass/_portfolio.scss */
.projects_projects-list > li {
  padding-bottom: 1em;
  font-size: 18px;
  font-size: 1.8rem;
}

/* line 65, ../assets/sass/_portfolio.scss */
.projects_projects-list > li > ul {
  padding-top: .25em;
}

@media screen and (min-width: 768px) {
  /* line 71, ../assets/sass/_portfolio.scss */
  .entry__entry-gutter {
    display: table;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  /* line 79, ../assets/sass/_portfolio.scss */
  .entry__entry-text {
    display: table-cell;
    vertical-align: top;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: row1-start;
    grid-row-end: 3;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
    padding: 2em 5em 2em 2em;
  }

  /* line 94, ../assets/sass/_portfolio.scss */
  .entry__entry-img {
    display: table-cell;
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: row1-start;
    grid-row-end: 3;
    margin-left: 26%;
    margin-top: 5em;
    position: relative;
    z-index: 20;
  }

  /* line 108, ../assets/sass/_portfolio.scss */
  .projects {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  /* line 116, ../assets/sass/_portfolio.scss */
  .entry {
    padding: 10em 0;
  }

  /* line 120, ../assets/sass/_portfolio.scss */
  .entry__entry-link {
    font-size: 1.8rem;
    margin: 0 0 4rem 0;
  }

  /* line 125, ../assets/sass/_portfolio.scss */
  .entry__entry-text {
    padding: 6em 10em 6em 6em;
  }

  /* line 129, ../assets/sass/_portfolio.scss */
  .entry__entry-img {
    margin: 0 10% 0 30%;
    padding-top: 5em;
  }

  /* line 134, ../assets/sass/_portfolio.scss */
  .projects {
    padding-bottom: 10em;
  }

  /* line 138, ../assets/sass/_portfolio.scss */
  .projects_projects-list {
    display: inline-block;
    width: auto;
    text-align: left;
    max-width: 800px;
  }
}
