:root {
  --black: #0e0e0c;
  --link: #000;
  --red: #b8b8b8;
  --light-grey: #f4f4f4;
  --transparent: rgba(255, 255, 255, 0);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 5.75rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton Regular, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  z-index: 1;
  background-color: var(--link);
  position: relative;
}

.padding-xxsmall {
  padding: .5rem;
}

.button {
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--link);
  text-align: center;
  letter-spacing: .25px;
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-family: Anton Regular, sans-serif;
  transition: background-color .3s cubic-bezier(.165, .84, .44, 1), border-color .3s cubic-bezier(.165, .84, .44, 1), transform .3s cubic-bezier(.165, .84, .44, 1);
}

.button:hover {
  color: var(--red);
  background-color: rgba(0, 0, 0, 0);
  transform: translate(0, -10px);
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--link);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .6);
}

.text-color-white {
  color: var(--link);
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, .08), 0 4px 6px -2px rgba(0, 0, 0, .03);
}

.section_div {
  position: relative;
}

.second-section {
  width: auto;
}

._2nd-hero_track {
  height: 400vh;
  display: block;
}

._2n-hero_horizontal-scroll-camera {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

._2nd-hero_horizontal-scroll-content {
  align-items: center;
  min-width: 300vw;
  display: flex;
}

._2nd-hero_content-wrapper {
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta_section {
  z-index: 0;
  background-color: var(--black);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.cta_section.text-color-white {
  position: relative;
}

.hero {
  background-color: #0e0e0c;
  background-image: url('../images/enrique_portad01.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.eg {
  opacity: .7;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 250px;
  transition: all .9s;
  display: flex;
}

.eg:hover {
  opacity: .8;
  transform: scale3d(1.09, 1.09, 1.09);
}

.work-card2 {
  background-color: rgba(0, 0, 0, 0);
  border: .5em #000;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  position: relative;
}

.background-video-2 {
  aspect-ratio: auto;
  opacity: .34;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: visible;
}

.image0 {
  opacity: 0;
  width: auto;
  max-width: none;
  height: 100svh;
  display: block;
}

.work-card {
  background-color: rgba(0, 0, 0, 0);
  border: .5em #000;
  flex: none;
  width: auto;
  height: auto;
  position: relative;
}

.im {
  opacity: .5;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  border: 20px solid #000;
  border-radius: 0;
  width: 100%;
  height: 100svh;
  transition: all .9s;
  display: block;
}

.im:hover {
  opacity: 1;
  border-width: 20px;
  transform: scale(1.03);
}

.background-video-3 {
  opacity: .5;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
  display: flex;
  position: relative;
}

.footer {
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: fill;
  background-clip: border-box;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 75px;
  margin: 10px 0;
  font-size: 10px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block {
  opacity: .38;
  color: var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
  margin-left: 0;
  font-size: 12px;
  font-weight: 700;
  transition: all .9s;
  display: block;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block:hover {
  opacity: .7;
  transform: translate(0);
}

.header-izq {
  object-fit: fill;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: 40px;
  margin-top: 40px;
  margin-left: 50px;
  margin-right: 50px;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.logo_enrique {
  opacity: .4;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  width: 220px;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  transition: all .9s;
}

.logo_enrique:hover {
  opacity: .7;
}

.separador {
  color: rgba(51, 51, 51, 0);
  width: 100%;
  height: 40px;
  display: none;
}

.body {
  color: var(--black);
  background-color: #000;
}

.navbar_principal {
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ths04-slide-lightbox {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 50%;
  position: relative;
  overflow: hidden;
}

.lightbox-link {
  opacity: .7;
  transform: scale3d(1none, 1none, 1none);
  color: var(--transparent);
  transform-style: preserve-3d;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 10px;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  height: auto;
  transition: all .9s;
  display: flex;
}

.lightbox-link:hover {
  opacity: 1;
  transform: scale3d(1.02, 1.02, 1.02);
}

.image-6 {
  color: var(--transparent);
  width: auto;
  max-width: none;
  height: 100svh;
}

.image-6:hover {
  pointer-events: auto;
}

.div-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100vh;
  display: block;
}

.image-7 {
  opacity: .12;
  border: 20px solid rgba(0, 0, 0, 0);
  border-radius: 0;
  width: 200px;
  height: 200px;
  transition: all .9s;
  position: absolute;
}

.image-7:hover {
  opacity: .12;
  border: 0 solid rgba(0, 0, 0, 0);
  border-radius: 0;
}

.text-block-2 {
  color: var(--light-grey);
  text-align: center;
  background-color: rgba(185, 12, 12, 0);
  width: 100px;
  font-family: Oswald, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
}

.link-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100vh;
  display: flex;
}

.c-nav-social-media-link {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.c-menu-item {
  margin-bottom: 20px;
}

._w-menu-item-link {
  display: flex;
  position: relative;
}

.c-nav-social-contact-item-link {
  color: #1e756e;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.btn_menu {
  opacity: .8;
  transform: scale3d(1none, 1none, 1none);
  cursor: pointer;
  transform-style: preserve-3d;
  background-color: rgba(0, 0, 0, 0);
  width: 40px;
  height: 28px;
  transition: all .9s;
  display: block;
}

.btn_menu:hover {
  opacity: 1;
  transform: scale(1.3);
}

.header-der {
  object-fit: fill;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: 60px;
  margin-top: 40px;
  margin-left: 50px;
  margin-right: 50px;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.menu2 {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--light-grey);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #000;
  background-clip: border-box;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Verdana, Geneva, sans-serif;
  display: flex;
  position: fixed;
  overflow: auto;
}

.text {
  opacity: .3;
  color: var(--light-grey);
  mix-blend-mode: normal;
  margin-bottom: 5px;
  font-family: Open Sans, sans-serif;
  font-size: 3rem;
  font-style: normal;
  line-height: 1.2;
  text-decoration: none;
  transition: all .5s;
  display: flex;
  transform: translate(0);
}

.text:hover {
  opacity: .8;
  transform: scale(1.3);
}

.menu_principal {
  background-color: #000;
  background-image: url('../images/01_1.jpg');
  background-position: 100%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.section {
  background-color: #fff;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-image {
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)), url('../images/daniel-menakhovsky-zqyk7S_FoGA-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-image.section-image-fourth {
  background-color: #000;
  background-image: none;
}

.section-image.section-image-first {
  background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25));
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-image.section-image-second {
  background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)), url('../images/01_1.jpg');
}

.section-image.section-image-fourth {
  background-color: #000;
  background-image: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-image.section-image-third {
  background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)), url('../images/02_1.jpg');
}

.section-heading-izq {
  color: #a5a5a5;
  text-align: left;
  letter-spacing: .9px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 100%;
  font-family: PT Sans, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1em;
  display: flex;
}

.section-heading-2 {
  color: #494949;
  text-align: right;
  letter-spacing: .9px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 100%;
  font-family: PT Sans, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1em;
  display: flex;
}

.container {
  text-align: right;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  max-width: 1600px;
  min-height: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
}

.section-content-2 {
  z-index: 2;
  color: #fff;
  text-align: right;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.container-copy-2 {
  text-align: right;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  min-height: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
}

.section2 {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-2 {
  background-color: #0e0e0c;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.section-heading-copy-2 {
  color: #a5a5a5;
  text-align: center;
  letter-spacing: .9px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 100%;
  font-family: PT Sans, sans-serif;
  font-size: 1.8rem;
  line-height: 1.1em;
  display: flex;
}

.div-block-5 {
  width: 120px;
  height: 40px;
}

.eg-disolv {
  opacity: 0;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  width: 300px;
  transition: all .9s;
  display: block;
}

.eg-disolv:hover {
  opacity: .8;
  transform: scale3d(1.09, 1.09, 1.09);
}

.container-copy-copy {
  text-align: right;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  min-height: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
}

.section-heading-der {
  color: #a5a5a5;
  text-align: right;
  letter-spacing: .9px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 100%;
  font-family: Lato, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1em;
  display: flex;
}

.section-heading-izq-obs {
  color: #494949;
  text-align: left;
  letter-spacing: .9px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 100%;
  font-family: PT Sans, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1em;
  display: flex;
}

.container-copy-4 {
  text-align: right;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  min-height: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
}

.section-heading-4 {
  color: #494949;
  text-align: center;
  letter-spacing: .9px;
  max-width: 100%;
  font-family: PT Sans, sans-serif;
  font-size: 1.8rem;
  line-height: 1.1em;
}

.e-c-isotipo {
  opacity: .7;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  width: 70px;
  transition: all .9s;
}

.e-c-isotipo:hover {
  opacity: .8;
  transform: scale3d(1.09, 1.09, 1.09);
}

.flex-block-3 {
  height: auto;
}

.secon-section-vertical {
  display: none;
}

.div-block-mobile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100vh;
  display: flex;
}

.second-section-veriical {
  display: none;
}

.ths04-menu-close-bar {
  background-color: #fff;
  width: 30px;
  height: 1.5px;
  transform: rotate(45deg);
}

.ths04-menu-close-bar.ths04-absolute {
  position: absolute;
  transform: rotate(-45deg);
}

.ths04-header {
  z-index: 9;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  justify-content: space-between;
  align-items: stretch;
  height: 15vh;
  display: flex;
}

.ths04-menu-close {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 15vw;
  height: 15vh;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.ths04-header-block-right {
  justify-content: center;
  align-items: center;
  width: 15vw;
  display: flex;
}

.ths04-menu-social-link {
  opacity: .8;
  justify-content: center;
  align-items: center;
  height: 15vh;
  padding: 10px;
  text-decoration: none;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.ths04-menu-social-link:hover {
  opacity: 1;
}

.ths04-menu-link {
  opacity: .8;
  color: #fff;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 100px;
  font-weight: 400;
  line-height: 90px;
  transition: opacity .3s ease-in-out;
}

.ths04-menu-link:hover {
  opacity: 1;
}

.ths04-social-link {
  opacity: .8;
  color: #e5d6c6;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px;
  font-family: Lato, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.ths04-social-link:hover {
  opacity: 1;
}

.ths04-nav-bars-wrapper {
  opacity: .8;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 45px;
  height: 50px;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.ths04-nav-bars-wrapper:hover {
  opacity: 1;
}

.ths04-menu-close-bars-wrapper {
  opacity: .8;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: relative;
}

.ths04-menu-close-bars-wrapper:hover {
  opacity: 1;
}

.ths04-menu-header-block {
  justify-content: center;
  align-items: center;
  height: 15vh;
  display: flex;
}

.ths04-header-block-left {
  justify-content: center;
  align-items: center;
  width: 15vw;
  display: flex;
}

.ths04-menu {
  z-index: 9;
  background-color: #000;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 100%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ths04-social-icon {
  color: #fff;
  width: 20px;
}

.ths04-brand {
  color: #e5d6c6;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-decoration: none;
}

.ths04-brand.w--current {
  color: #fff;
}

.ths04-nav-bar {
  background-color: var(--light-grey);
  height: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.ths04-menu-links-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.ths04-menu-social-icon {
  width: 25px;
}

.ths04-hero-wrapper {
  min-height: 100vh;
  display: none;
  position: absolute;
}

.ths04-menu-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.ths04-header-block-center {
  border-left: 1px solid rgba(255, 255, 255, .06);
  border-right: 1px solid rgba(255, 255, 255, .06);
  width: 70vw;
  padding-left: 5vw;
  padding-right: 5vw;
}

.instagram {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.social-media {
  opacity: .3;
  transform: scale3d(1none, 1none, 1none);
  mix-blend-mode: normal;
  transform-style: preserve-3d;
  width: 30px;
  height: 30px;
  transition: all .5s;
}

.social-media:hover {
  opacity: .8;
  transform: scale(1.3);
}

.body-maestro {
  background-color: #000;
}

.container-contacto-txt {
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  max-width: 100%;
  height: 60%;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.h1 {
  color: var(--light-grey);
  align-items: flex-start;
  font-family: PT Sans, sans-serif;
  font-weight: 700;
  display: flex;
}

.h2 {
  opacity: .6;
  color: var(--light-grey);
  justify-content: flex-start;
  align-items: flex-start;
  font-family: PT Sans, sans-serif;
  font-size: .9rem;
  font-style: normal;
  display: flex;
}

.columns {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

.column-01 {
  padding-left: 0;
  padding-right: 20px;
}

.column-02 {
  padding-left: 20px;
  padding-right: 0;
}

.link {
  color: var(--red);
  border: 1px rgba(0, 0, 0, 0);
  font-family: PT Sans, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 60ms;
}

.link:hover {
  opacity: .8;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  width: 100vw;
  height: 100%;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.imgroll {
  transform-style: preserve-3d;
  transition: all .7s;
}

.imgroll:hover {
  opacity: .4;
  pointer-events: auto;
  transform: scale3d(1none, 1none, 1none) translate(0px, 0px) translate(0px, 0px);
  mix-blend-mode: normal;
}

.footer-regresar {
  z-index: 50;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: fill;
  background-clip: border-box;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 45px 0 10px;
  font-size: 10px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.link-block-4 {
  color: var(--light-grey);
  font-weight: 400;
  position: static;
}

.container_menu {
  background-color: #000;
  max-width: 100%;
}

.cursor-wrapper {
  z-index: 60;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cursor {
  opacity: 1;
  color: var(--transparent);
  background-color: rgba(255, 255, 255, 0);
  border: 0 rgba(255, 255, 255, 0);
  border-radius: 0;
  display: flex;
}

.image-11 {
  opacity: 1;
  color: var(--transparent);
  border: 0 rgba(255, 255, 255, 0);
  width: 50px;
  max-width: 50px;
  height: 50px;
}

.html-embed {
  color: var(--transparent);
  border: 0 rgba(0, 0, 0, 0);
}

.container-contacto {
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: flex-start;
  width: 81%;
  max-width: 100%;
  height: 70%;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block-3, .text-block-3-copy {
  display: none;
}

.container-2 {
  -webkit-text-fill-color: inherit;
  background-color: rgba(255, 255, 255, 0);
  background-clip: border-box;
  border-radius: 0;
  width: 100vw;
  max-width: 100%;
  height: 90px;
}

.degradado {
  z-index: 100;
  background-image: linear-gradient(rgba(0, 0, 0, .63), rgba(255, 255, 255, 0));
  width: 100%;
  height: 120px;
  position: fixed;
}

.text-block-3-copy-copy {
  display: none;
}

.text-block-copy {
  opacity: .38;
  color: var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  height: auto;
  margin-top: 42px;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 12px;
  font-weight: 700;
  transition: all .9s;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.text-block-copy:hover {
  opacity: .7;
  transform: translate(0);
}

.container-3 {
  object-fit: fill;
  background-image: url('../images/contacto_fondo.png');
  background-position: 100% 100%;
  background-size: auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  position: fixed;
}

.link-2, .link-3, .link-4, .link-5 {
  color: var(--light-grey);
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  ._2nd-hero_track {
    flex-direction: column;
    display: none;
  }

  ._2n-hero_horizontal-scroll-camera {
    height: auto;
  }

  ._2nd-hero_horizontal-scroll-content {
    flex-direction: column;
    width: auto;
    min-width: auto;
  }

  .eg {
    width: 400px;
  }

  .work-card2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .image0 {
    width: 100svw;
    height: 100%;
  }

  .work-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .im {
    width: 100svw;
    height: 100%;
  }

  .background-video-3 {
    height: 100vh;
  }

  .text-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .header-izq {
    z-index: 50;
    width: auto;
  }

  .navbar_principal {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .lightbox-link {
    border-width: 10px;
    width: 100%;
    height: 100%;
  }

  .image-6 {
    max-width: 100%;
    height: auto;
  }

  .link-block.w--current {
    width: 150px;
    height: 150px;
  }

  .header-der {
    width: auto;
  }

  .text {
    text-decoration: none;
    display: flex;
  }

  .menu_principal {
    display: none;
  }

  .section-heading-izq {
    text-align: left;
    font-size: 1.2rem;
  }

  .section-heading-2 {
    text-align: center;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .section2 {
    justify-content: center;
    align-items: center;
  }

  .section-heading-copy-2 {
    font-size: 1.2rem;
  }

  .eg-disolv {
    width: 400px;
  }

  .section-heading-der {
    text-align: right;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .section-heading-izq-obs {
    opacity: 1;
    text-align: center;
    font-size: 1.2rem;
  }

  .section-heading-4 {
    text-align: center;
    font-size: 1.2rem;
  }

  .e-c-isotipo {
    width: 70px;
  }

  .secon-section-vertical {
    display: block;
  }

  .div-block-mobile {
    width: 100%;
    height: 150px;
  }

  .link-block-3.w--current {
    max-height: none;
  }

  .second-section-veriical {
    flex-direction: column;
    display: flex;
  }

  .container-contacto-txt {
    height: 55%;
  }

  .columns {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .column-01 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-02 {
    padding-right: 0;
  }

  .link {
    color: var(--red);
    border: 1px rgba(0, 0, 0, 0);
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .cursor {
    display: none;
  }

  .container-contacto {
    width: 81%;
    height: 65%;
  }

  .text-block-copy {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .container-3 {
    background-size: auto;
  }

  .link-2, .link-3, .link-4, .link-5 {
    color: var(--light-grey);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  ._2nd-hero_track {
    display: none;
  }

  ._2n-hero_horizontal-scroll-camera {
    margin-top: -10vh;
  }

  ._2nd-hero_horizontal-scroll-content {
    grid-column-gap: 1.5rem;
    width: auto;
  }

  .cta_section.text-color-white {
    display: none;
  }

  .eg {
    width: 300px;
  }

  .work-card2, .work-card {
    width: auto;
  }

  .text-block {
    margin-left: 0;
  }

  .header-izq {
    z-index: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 220px;
    display: flex;
  }

  .separador {
    display: none;
  }

  .navbar_principal {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .lightbox-link {
    width: 100%;
    height: 100%;
  }

  .image-6 {
    max-width: 100%;
    height: auto;
  }

  .c-menu-item {
    margin-bottom: 15px;
  }

  .header-der {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
  }

  .text {
    text-decoration: none;
  }

  .menu_principal {
    display: none;
  }

  .section {
    padding-bottom: 2rem;
  }

  .section-image.section-image-fourth {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-heading-izq {
    text-align: left;
    font-size: .9rem;
  }

  .section-heading-2 {
    text-align: right;
    font-size: .9rem;
  }

  .container, .container-copy-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section2 {
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }

  .section-heading-copy-2 {
    font-size: .9rem;
  }

  .eg-disolv {
    width: 300px;
  }

  .container-copy-copy {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-heading-der {
    text-align: left;
    flex-direction: row;
    font-size: .9rem;
  }

  .section-heading-izq-obs {
    text-align: right;
    font-size: .9rem;
  }

  .container-copy-4 {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-heading-4 {
    font-size: .9rem;
  }

  .e-c-isotipo {
    width: 70px;
  }

  .link-block-3.w--current {
    width: 220px;
  }

  .container-contacto-txt {
    height: 85%;
  }

  .h1 {
    margin-top: 40px;
  }

  .columns {
    max-width: 100%;
    height: 100%;
  }

  .column-02 {
    padding-left: 0;
  }

  .link {
    color: var(--red);
    border: 1px rgba(0, 0, 0, 0);
    font-size: .9rem;
    font-style: normal;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-regresar {
    width: 120px;
    padding-right: 230px;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .container_menu {
    z-index: 50;
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .container-contacto {
    height: 90%;
  }

  .text-block-copy {
    text-align: right;
    width: 150px;
    margin-left: 0;
    margin-right: 120px;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .container-3 {
    background-size: auto;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  ._2nd-hero_track {
    display: none;
  }

  ._2n-hero_horizontal-scroll-camera {
    position: relative;
  }

  ._2nd-hero_horizontal-scroll-content {
    width: auto;
  }

  .cta_section.text-color-white {
    height: 700px;
    display: none;
  }

  .hero {
    -webkit-text-fill-color: inherit;
    background-repeat: repeat-x;
    background-size: cover;
    background-clip: border-box;
    width: 100vw;
    height: 100vh;
  }

  .eg {
    width: 200px;
    margin-bottom: 40px;
  }

  .work-card2 {
    width: 100%;
  }

  .image0 {
    width: 100svw;
    height: 100%;
  }

  .work-card {
    width: 100%;
  }

  .background-video-3 {
    height: 700px;
  }

  .footer {
    height: 20px;
    display: block;
  }

  .text-block {
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 10px;
    display: block;
  }

  .header-izq {
    flex-direction: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 180px;
    height: 60px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .logo_enrique {
    text-align: center;
    width: 180px;
    margin-left: 20px;
  }

  .separador {
    display: none;
  }

  .navbar_principal {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    max-height: 190px;
  }

  .lightbox-link {
    opacity: 1;
    mix-blend-mode: normal;
    border-width: 10px;
  }

  .lightbox-link:hover {
    opacity: .7;
    transform: scale3d(1.01, 1.01, 1.01);
  }

  .image-6 {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .image-7, .image-7:hover {
    opacity: .12;
  }

  .link-block {
    flex-direction: row;
    width: 100%;
    max-width: 150px;
    height: 150px;
  }

  .c-menu-item {
    margin-bottom: 10px;
  }

  .btn_menu {
    margin-right: 20px;
  }

  .header-der {
    z-index: auto;
    flex-direction: row;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: center;
    width: 50px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .text {
    font-size: 2.5rem;
  }

  .menu_principal {
    display: none;
  }

  .section {
    height: 700px;
  }

  .section-image.section-image-second {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/01_1.jpg');
    background-position: 0 0, 100% 100%;
  }

  .section-image.section-image-fourth {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-heading-izq {
    color: #e6e6e6;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
    font-size: .6rem;
    display: none;
  }

  .section-heading-2 {
    color: #929292;
    text-align: right;
    border: 1px rgba(255, 255, 255, 0);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    min-width: .2em;
    max-width: 100%;
    font-size: .6rem;
    display: none;
  }

  .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .section-content-2 {
    text-align: center;
  }

  .section2 {
    justify-content: center;
    align-items: center;
    height: 700px;
  }

  .hero-2 {
    -webkit-text-fill-color: inherit;
    background-image: none;
    background-clip: border-box;
    width: 100vw;
    height: 700px;
  }

  .section-heading-copy-2 {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    font-size: .6rem;
    display: none;
  }

  .eg-disolv {
    width: 200px;
  }

  .container-copy-copy {
    font-size: 1rem;
  }

  .section-heading-der {
    color: #e6e6e6;
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    max-width: 100%;
    font-size: .6rem;
    display: none;
  }

  .section-heading-izq-obs {
    color: #929292;
    text-align: left;
    border: 1px rgba(255, 255, 255, 0);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: .2em;
    max-width: 100%;
    font-size: .6rem;
    display: none;
  }

  .container-copy-4 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-heading-4 {
    width: 100%;
    max-width: 100%;
    font-size: .5rem;
    display: none;
  }

  .e-c-isotipo {
    width: 70px;
  }

  .div-block-mobile {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
  }

  .link-block-3 {
    width: 150px;
  }

  .link-block-3.w--current {
    aspect-ratio: auto;
    width: auto;
  }

  .body-maestro {
    background-image: none;
  }

  .container-contacto-txt {
    height: 80%;
  }

  .h2 {
    font-size: .8rem;
  }

  .columns {
    max-width: 100%;
    height: 100%;
  }

  .column-01, .column-02 {
    padding-left: 0;
  }

  .link {
    border: 1px rgba(0, 0, 0, 0);
    text-decoration: none;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-regresar {
    z-index: 200;
    max-height: none;
    margin-top: 23px;
    padding-right: 170px;
  }

  .link-block-4 {
    width: auto;
    height: auto;
    margin-right: 60px;
  }

  .container_menu {
    z-index: auto;
  }

  .cursor-wrapper {
    z-index: 250;
  }

  .container-contacto {
    height: 90%;
  }

  .link-block-5 {
    text-decoration: none;
    display: flex;
  }

  .text-block-3, .text-block-3-copy {
    color: #8f8f8f;
    text-align: left;
    font-family: PT Sans, sans-serif;
    font-size: .8rem;
    font-weight: 400;
    display: flex;
  }

  .degradado {
    display: none;
  }

  .text-block-3-copy-copy {
    color: #8f8f8f;
    text-align: right;
    font-family: PT Sans, sans-serif;
    font-size: .8rem;
    font-weight: 400;
    display: flex;
  }

  .text-block-copy {
    text-align: right;
    align-items: center;
    width: 20%;
    margin: 22px 80px 0 0;
    font-size: 10px;
    display: block;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .container-3 {
    opacity: .38;
    background-image: url('../images/contacto_fondo.png');
    background-position: 100% 100%;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    position: fixed;
  }

  .link-block-6, .link-block-7 {
    text-decoration: none;
  }
}


@font-face {
  font-family: 'Anton Regular';
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}