

@charset "UTF-8";

@font-face {
    font-family: 'editorial_newregular';
    src: url('../fonts/editorialnew-regular-webfont.woff2') format('woff2'),
         url('../fonts/editorialnew-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'monument_groteskitalic';
    src: url('../fonts/monumentgrotesk-italic-webfont.woff2') format('woff2'),
         url('../fonts/monumentgrotesk-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'monument_groteskmedium';
    src: url('../fonts/monumentgrotesk-medium-webfont.woff2') format('woff2'),
         url('../fonts/monumentgrotesk-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'monument_groteskmedium_italic';
    src: url('../fonts/monumentgrotesk-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/monumentgrotesk-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'monument_groteskregular';
    src: url('../fonts/monumentgrotesk-regular-webfont.woff2') format('woff2'),
         url('../fonts/monumentgrotesk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




html, body{
    width: 100%;
    min-height: 100vh;
    margin:0;
    padding:0;
    font-size: 1vw;
    -webkit-overflow-scrolling: touch;
    color: #1D1D1B;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-family: 'editorial_newregular';
    background-color: #fff;
}
body.hidden,
body.actResponsive{
  overflow: hidden;
}
*{
    line-height: 1.4em;
}
a{
    text-decoration: none;
    color: currentColor;
}
.clear{
    clear: both;
}

/* header */
header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #fff; */
    z-index: 5;
}
.home header{
    margin-bottom: 21rem;
    background-color: #fff;
}
.header_int{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 3rem;
    position: relative;
}
.menu{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.menu:last-child{
}
.m_item{
    display: block;
    padding: 2rem 0 1rem;
}
.m_item::after{
  content:',';
  opacity:0;
}
.m_item.act::after{
    opacity: 1;
}

.logo{
    width: 32rem;
    /* position: relative; */
}
.logo_int{
    position: absolute;
    top: 2rem;
    width: 100%;
    left: 0;
}
.logo_int img{
    height: auto;
    display: block;
    position: relative;
    width: 32rem;
    left: 2rem;
}

.home .logo{
    width: 10rem;
}
.home .logo_int img{
    width: calc(100vw - 2rem);
    left: 0;
}
.home .logo_int img.animation{
    width: 32rem;
    left: 2rem;
}
.home .logo.fish{
    width: 32rem;
}
.home .logo_int{
    width: 100%;
    left: 0;
    top: 5rem;
}
.home .logo_int.animation{
    top: 2rem;
}
.logo_int a{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.wrapper{}
.content{
    width: calc(100% - 4rem);
    margin: 0 auto;
}

/* post */
.post{
    width: 100%;
    position: relative;
    display: block;
    background-color: #fff;
}
.post_image{
    width: 100%;
    padding-bottom: 135%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 0;
    position: relative;
}
.post_image::after{
    content: '';
    width: 100%;
    padding-top: 30%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(255,255,255,1) 100%);
    
}
.post_image::before{
    content: '';
    width: 100%;
    padding-top: 30%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
    padding-top: 135%;
    opacity: 0;
    transition: 300ms ease;
}

.post_info{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}
.post_info div{}
.post_info h3{
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}
.post_info h4{
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}
.post_link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid_tres{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.3rem;
    margin-bottom: 2.3rem;
    position: relative;
    z-index: 2;
}
.grid_tres .post_image{
    padding-bottom: 102.7166%;
}
.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.3rem 1.3rem;
    padding-bottom: 10rem;
    position: relative;
    z-index: 2;
}

.b_single header{
    /* background-color: #fff; */
}

.single{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.single .column{
    width: 100%;
    position: sticky;
    top: 4.2rem;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 10rem;
}
.single .column:nth-child(2)::before{
    content: '';
    background-color: #f5f5f5;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(4px);
}
.single .column .txt.txt_strong{
    padding-left: 2rem;
    width: 65%;
    min-height: calc(100vh - 8rem);
}
.txt.txt_strong p{
    font-family: 'monument_groteskmedium';
    font-size: 1.6rem;
    line-height: 1.3em;
}
.txt{
    font-size: 1.4rem;
}
.txt a{
    font-family: 'monument_groteskmedium';
    font-size: 1rem;
}
.txt_title{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0 0.5rem;
}
.txt_title > div{}
.txt_title h1{
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
}
.txt_title h2{
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
}

.gallery{
    width: calc(100% + 4rem);
    margin-left: -2rem;
}
.gallery_int{
    position: relative;
}
.txt .gallery_int img{
    width: 100%;
    height: auto;
    display: block;
    max-height: initial;
    margin: 0;
    max-width: initial;
}
.sup{
    position: absolute;
    bottom: 0;
    left: -0.3rem;
    width: 0;
    height: 0;
}
.txt .sup p{
    white-space: nowrap;
    transform-origin: 0% 100%;
    transform: rotate(270deg);
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-indent: 0;
    font-family: 'monument_groteskmedium';
    font-size: 1rem;
}
.txt h1{
    margin: 1rem 0 0;
    font-size: 1.6rem;
    font-family: 'monument_groteskmedium';
    font-weight: normal;
}
.txt h2{
    margin: 1rem 0 0;
    font-size: 1.6rem;
    font-family: 'monument_groteskmedium';
    font-weight: normal;
}
.txt .txt_title h1{
    margin: 0;
    font-size:1rem;
    font-family: 'editorial_newregular';
}
.txt .txt_title h2{
    margin: 0;
    font-size:1rem;
    font-family: 'editorial_newregular';
}
.txt h3{
    margin: 0;
    font-size: 1.6rem;
    font-weight: normal;
    font-family: 'monument_groteskmedium';
    text-indent: 3rem;
}
.txt h4{
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
    font-family: 'monument_groteskmedium';
    text-indent: 3rem;
}
.txt h5{
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    font-family: 'monument_groteskmedium';
    text-indent: 3rem;
}
.txt h6{}
.txt p:nth-child(2){
    text-indent:0rem;
}
.txt p{
    margin: 0;
    text-indent: 3rem;
}
.txt blockquote{}
.txt hr{}
.txt img{
    max-width: 100%;
}
.single .column:nth-child(2) .txt{
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.page{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
}
.page .column{
    height: fit-content;
    width: 100%;
    padding-bottom: 10rem;
    position: sticky;
    top: 6.4rem;
}
.page .column:nth-child(2) .txt{
    margin-top: 3.5rem;
}
.page .txt.txt_strong{
    padding-left: 2rem;
    width: calc(100% - 2rem);
}
.page .txt.txt_strong p{
    font-size: 3rem;
}
.page .txt{
    width: calc(100% - 4rem);
    margin: 0 auto;
    
}
.page .txt *{
  text-indent: 0;
}
.page .txt h3{
    font-size: 1rem;
    font-weight: normal;
    margin: 2rem 0 0;
}
.page .column:nth-child(2) .txt p{
    margin: 0 0 2rem;
    font-family: 'monument_groteskmedium';
}

.press{
    margin-top: 4rem;
    padding-bottom: 10rem;
}
.press .fila{
    width: 100%;
    display: grid;
    grid-template-columns: 20rem 1fr;
    grid-gap: 2rem;
    margin: 2rem 0;
    font-family: 'monument_groteskmedium';
}
.press .fila > div:nth-child(2){
    max-width: 55rem;
}
.press .fila *{
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
}
.press .fila a{
    font-family: 'monument_groteskmedium_italic';
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.txt img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    max-height: calc(100vh - 4rem);
    width: auto;
  }

  .txt img.aligncenter, 
.txt .aligncenter,
.txt .wp-caption.aligncenter{
  margin: 1rem auto;
  max-width: 70%;
  width: auto!important;
}
.txt img.alignleft, 
.txt .alignleft,
.txt .wp-caption.alignleft{
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  float: left;
  max-width: calc(100% - 0.5rem);
  position: relative;
}
.txt img.alignright, 
.txt .alignright,
.txt .wp-caption.alignright{
  margin-left: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  float: right;
  max-width: calc(100% - 0.5rem);
  position: relative;
}
.txt .wp-caption,
.txt_single .txt .wp-caption,
.txt_revista .txt .wp-caption{
  margin: 1rem auto;
  max-width: 100%;
  position: relative;
  width: fit-content!important;
}
.txt .wp-caption img{
  margin: 0;
}
.txt .wp-caption p{
      white-space: nowrap;
    transform-origin: 0% 100%;
    transform: rotate(270deg);
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-indent: 0;
    font-family: 'monument_groteskmedium';
    font-size: 1rem;
}
.txt hr{
  width: 100%;
  clear: both;
  margin: 0;
  height: 0;
}
.txt_sb{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.links{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.links a{
    font-family: 'monument_groteskmedium';
    font-size: 1rem;
}
.single .column:nth-child(2) .txt .gallery:first-child{
    margin-top: -4.4rem;
}
.phrase_fix{
    position: sticky;
    position: -webkit-sticky;
    top:4.4rem;
    margin-bottom: 1rem;
}
.phrase{
    width: 100%;
}
.phrase *{
    margin: 0;
    font-family: 'monument_groteskmedium';
    font-size: 1rem;
    text-align: justify;
    
}
.phrase.static{
    width: calc(100%/3 - 1rem);
}
.phrase_scroll02{
    display: none;
}
.phrase.static .phrase_scroll02{
    display: block;
}
.phrase.static .phrase_scroll01{
    display: none;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
footer .content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .content.footer_menu_resposive{
    display: none;
}


    html>body*.home .logo_int img{
        transition: 1s ease;
    }