@font-face {
    font-family: 'TBWAGroteskVFRegular';
    src: url('fonts/TBWAGroteskVFRegular.eot');
    src: url('fonts/TBWAGroteskVFRegular.eot') format('embedded-opentype'),
         url('fonts/TBWAGroteskVFRegular.woff2') format('woff2'),
         url('fonts/TBWAGroteskVFRegular.woff') format('woff'),
         url('fonts/TBWAGroteskVFRegular.ttf') format('truetype'),
         url('fonts/TBWAGroteskVFRegular.svg#TBWAGroteskVFRegular') format('svg');
}


/* VARIABLES */

:root {
    /* Colors */
    --yellow: #FFCC00;
    --dark-gray: #221F20;
    /* Padding */
    --global-padding: 5em 6em;
    /* Fonts */
    --main-font: 'TBWAGroteskVFRegular', sans-serif;
    /* Transition speed curve */
    --transition-speed: cubic-bezier(0,.51,.29,.98);

    --swiper-theme-color: #FFCC00;
}

/* HTML TAGS */

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    position: relative;

    font-family: var(--main-font);
    font-size: 16px;
    background-color: #000;
}

main {
    position: relative;
}

section, article, footer {
    display: flex;
    padding: var(--global-padding);
    box-sizing: border-box;
    position: relative;
}

p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 300;
}

ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 100;
    transition: none;
}

button {
    outline: none;
    background-color: transparent;
    border: none;
    font-family: var(--main-font);
    font-weight: 400;
}

a:hover, button:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity .15s ease-out;
}

hr {
    border: none;
    border-top: 1px solid lightgray;
    width: 90%;
    margin: 0 auto;
    opacity: 0.6;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* COMMON CLASSES */

.mobile-only, .hidden { display: none; }

.color-white {  color: white; }

.no-padding { padding: 0; }

.flex-2 { flex: 2; }
.flex-3 { flex: 3; }

.text-right {
    text-align: right;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flex-column {
    flex-direction: column;
}

.font-weight-100 {
    font-weight: 100;
}

/* TOP BAR & NAV */
nav {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: table;
}

nav ul {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

nav img {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    bottom: 20px;
    transform: translate3d(-50%, 0, 0);
    transform: scale(0);
    z-index: 1;
    max-width: 80px !important;
    transition: 0.5s all cubic-bezier(0, 0, 0.58, 1);
}

.menu.open nav img {
    transform: scale(1);
}

nav.open {
    background-color: white;
    box-shadow: 13px 13px 13px -16px rgba(0,0,0,0.3);
    -webkit-box-shadow: 13px 13px 13px -16px rgba(0,0,0,0.3);
    -moz-box-shadow: 13px 13px 13px -16px rgba(0,0,0,0.3);
}

nav li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #101010;
  transition: background-color 0.3s ease;
}

nav li a {
    font-size: 1.25rem;
    display: inline-block;
    margin: 40px 0;
    text-decoration: none;
    position: relative;
    transform: skew(19deg, 0deg);
}

nav li a:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: 0.25s all;
    background: #101010;
    transform: scaleX(0);
    transform-origin: left;
}

nav li a:hover {
    color: #000;
    opacity: 1;
}

nav li a:hover:after {
    transform: scaleX(1);
}

#nav-icon {
    width: 60px;
    height: 40px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon > span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--yellow);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

nav.open > #nav-icon > span {
    background: darkgray;
}

#nav-icon > span:nth-child(1) {
    top: 0px;
}

#nav-icon > span:nth-child(2), #nav-icon > span:nth-child(3) {
    top: 16px;
}

#nav-icon > span:nth-child(4) {
    top: 32px;
}

#nav-icon.open > span:nth-child(1) {
    top: 16px;
    width: 0%;
    left: 50%;
}

#nav-icon.open > span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open > span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open > span:nth-child(4) {
    top: 16px;
    width: 0%;
    left: 50%;
}

/* HEADER */

.header-img {
    height: 660px;
    padding: 0;
    background-position: center;
}

#culture-header-img {
    background-image: url(../img/culture/header.jpg);
    background-position: left;
}

#header-page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--global-padding);
    height: 3.8rem;
}

/* FOOTER */

footer {
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    color: black;
    height: 70vh;
    display: block;
    padding: 0 5%;
}

footer h4,
.nosotros h2 {
    font-size: 5em;
    font-weight: normal;
    letter-spacing: -1px;
    transform: skew(16deg, 0deg);
}

footer h4 {
    display: block;
    --width-ch: 13ch;
    --steps: 14;
    position: absolute;
    left: 0;
    top: 20%;
}


footer > div,
footer .address-box {
    display: flex;
    height: 100%;
    align-items: center;
}

footer .address-box {
    float: right;
    padding-right: 15%;
}

footer > div div {
  flex: 1;
}

footer small {
    display: block;
    text-align: center;
    bottom: 3%;
    position: absolute;
    left: 3%;
    right: 3%;
}

footer p {
    font-size: .95rem;
    line-height: 125%;
}

footer .logo {
    max-width: 185px;
    margin-bottom: 15px;
}

/* BACK TO TOP BUTTON */
#back-to-top-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
}

#back-to-top {
    position: sticky;
    top: calc(100vh - 5rem);
    left: calc(100vw - 6rem);
    padding: .5rem .8rem;
    padding-bottom: 0;
    border-radius: .3rem;
    border: none;
    outline: none;
    background-color: white;
    box-shadow: 2px 2px 18px -10px rgba(0,0,0,1);
    opacity: 0.3;
    pointer-events: all;

    color: black;
    font-size: 1.6rem;
    font-weight: 300;
}

#back-to-top:hover {
    cursor: pointer;
    opacity: 1;
    background-color: var(--yellow);
}

#back-to-top:active {
    background-color: white;
}

/* ARTICLES */

/* Full-page articles */

.article-big {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: #FFCC00;
}

.article-big h1,
.article-big h2 {
    position: relative;
    z-index: 1;
}

.article-big img {
    width: 100%;
}

.article-big-video {
    min-width: 102%;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.white-curtain {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    pointer-events: none;
}

/* Medium articles */

.article-medium {
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

/* Small articles */

.article-list {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5em 0 0 0;
}

.article-list.light {
    color: black;
    background-color: white;
}

.article-list.dark {
    color: white;
    background-color: var(--dark-gray);
}

.article-list.padding-top > .article-small:nth-child(odd) .article-small-text-container {
    margin-left: 40px;
}

.article-small {
    flex-basis: 50%;
    padding: 0 2.5em 2.5em 5em;
    box-sizing: border-box;
}

.article-small:nth-child(even) {
    padding: 0 5em 2.5em 2.5em;
}

.article-small.no-padding {
    padding-left: 0;
}

.article-small.no-padding:nth-child(even) {
    padding-left: 2.5em;
    padding-right: 0;
}

.article-small.no-padding:nth-child(odd) .article-small-text-container {
    padding-left: 5em;
}

.article-small-a {
    display: inline-block;
    max-width: 100%; /* Fix for "full-img" size */
    position: relative;
}

.article-small-a:hover {
    opacity: 1;
}

.article-small-img-container {
    overflow: hidden;
}

.article-small-img {
    display: block; /* To remove small gap under img */
    width: 100%;
}

.article-small-text-container {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    overflow: hidden; /* For animations */
}

.article-small.full-img {
    max-width: 50%;
    max-height: 46vw;
    margin-bottom: 2.5em;
}

.article-small.full-img .article-small-img-container {
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-small.full-img .article-small-img {
    height: 100%;
    width: auto;
    /* Centering */
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.article-small.full-img .article-small-text-container {
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 35px;
    box-sizing: border-box;
    color: white;
}

.article-small.full-img .article-small-text-container::before {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 22%, rgba(0,0,0,0.1) 100%);
    opacity: 0.3;
    transition: opacity .15s var(--transition-speed);
}

.article-small.full-img .article-small-text-container:hover::before {
    opacity: 0.8;
}

.article-small-video {
    display: block;
    width: 133%;
    margin: 0 auto;
}

.article-small-h4 {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-read-more {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 100;
}

.article-read-more::after {
    content: url(../svg/arrow-black.svg);
    display: inline-block;
    width: 1.2rem;
    margin-left: 0.6rem;
    position: relative;
    top: 2px;
    transition: margin .15s ease-out;
}

.article-list.dark .article-read-more::after {
    content: url(../svg/arrow-yellow.svg);
}

.article-small.full-img .article-read-more::after {
    content: url(../svg/arrow-white.svg);
}

.article-small:hover .article-read-more::after {
    margin-left: 1.1rem;
}

/* Article two columns */

.article-two-col-p {
    margin-bottom: 1rem;
}

.article-two-col-img {
    width: 100%;
}

/* Article alternate directions */

.article-alternate {
    align-items: center;
    gap: 8rem;
}

.article-alternate:nth-child(even) {
    flex-direction: row-reverse;
}

.alternate-padding:nth-child(even) {
    padding-left: 0;
}

.alternate-padding:nth-child(odd) {
    padding-right: 0;
}

.h2-margin-bottom {
    margin-bottom: 2rem;
}


/* Work */

.work-intro, .work-main-info {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-bottom: 2rem;
}

.work-intro-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}

.work-intro-office {
    text-transform: uppercase;
    color: darkgray;
}

.work-img {
    width: 100%;
    min-width: 0;
}

.work-text {
    display: flex;
}

.work-text-main {
    margin: 0 auto;
}

.work-text-p {
    margin-bottom: 1rem;
}

.work-imgs-container {
    display: flex;
    gap: 1rem;
}

.img-wrapper {
    position: relative;
}

/* Work video preview & full video */

.work-video-preview {
    position: relative;
    height: 60vh;
    min-height: 600px;
    overflow: hidden;
}

.work-video-preview.showing-full {
    height: auto;
    min-height: auto;
    width: 100%;
}

.vw-full-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 99;
    box-sizing: border-box;
    overflow: hidden;
    transition: top .45s var(--transition-speed);
}

.fullscreen-video-container.hidden, .work-video-preview.hidden, .overlay-link.hidden {
    display: none;
}

.wv-full-video {
    display: block;
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}

/* Quick look */

.quick-look-button {
    position: absolute;
    top: -1.8rem;
    left: -0.25rem;
}

#quick-look-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#quick-look {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    min-height: 800px;
    padding: 0;
    padding: 3rem 4rem 0 4rem;
    box-sizing: border-box;
    z-index: 90;
    background-color: white;
    transition: top .45s var(--transition-speed);
}

#quick-look.hidden {
    visibility: hidden;
    top: -100%;
    transition: top .45s var(--transition-speed), visibility .45s 0s;
}

#quick-look-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#quick-look-close, .quick-look-gallery-button {
    opacity: 0.6;
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 10;
}

.quick-look-gallery-button {
    padding: 0 1rem;
    font-size: 2.5rem;
}

#quick-look-gallery {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 100%;
    flex: 1;
}

#quick-look-carousel-container {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0 6rem 0;
    position: relative;
}

.carousel {
    display: flex;
    width: 80vw;
    height: 80vh;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    margin: 0 auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.carousel::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    scroll-snap-align: center;
    width: 100%;
    height: 100%;
}

.carousel-img {
    max-width:100%;
    max-height:100%;
    width: auto;
    height: auto;
}

/* "AN OPEN AGENCY FOR AN OPEN WORLD" */

#open-world {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 600px;
    background-color: var(--yellow);
    color: black;
    text-align: center;
}

#open-world-logo {
    width: 80px;
    height: 80px;
}

#open-world-bar {
    height: 15px;
    width: 100%;
    background-color: var(--dark-gray);
}

#open-world-title {
    display: flex;
}

#open-world-span1 {
    --width-ch: 13ch;
    --steps: 14;
}

#open-world-span2 {
    --width-ch: 14.5ch;
    --steps: 14;
}

/* LOAD MORE BUTTON */

#load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#load-more {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 2rem 0 4rem 0;
}

#load-more::after {
    content: url(../svg/arrow-black.svg);
    display: inline-block;
    width: 1.2rem;
    margin-left: 10px;
    transform: rotate(90deg);
    transition: margin .15s ease-out;
}

/* WORK SEARCH */

#work-search {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
    padding: var(--global-padding);
    box-sizing: border-box;
    color: black;
}

.work-search-selected > button {
    border-bottom: 2px solid black;
}

#work-search-list {
    display: flex;
    justify-content: space-evenly;
    gap: 4rem;
}

.work-search-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.work-search-button, .work-search-subbutton {
    display: flex;
    align-self: center;
    padding: 2px 1px;
    margin: 0;
    font-size: 1.2rem;
}

.work-search-subbutton {
    justify-content: center;
    width: 100px;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    font-weight: 300;
    text-align: center;
}

.work-search-subbutton:hover {
    opacity: 1;
}

.work-search-sublist {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    opacity: 1;
    transition: opacity .15s ease-out;
}

.hidden-sublist {
    height: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
}

/* CONTACT */

#now-talking {
    display: flex;
    flex-direction: column;
}

#contact-list, #now-talking-list {
    display: flex;
    gap: 2rem;
    padding: var(--global-padding);
}

#now-talking-list {
    padding: 0;
}

.contact-list-item {
    flex-basis: 45%;
    margin-bottom: 5rem;
}

.contact-p {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-sec-info {
    opacity: 0.5;
    margin: 0;
    color: black;
    font-weight: 300;
}

a.contact-sec-info:hover {
    opacity: 1;
}

.contact-mail {
    margin-top: 1.2rem;
}

.now-talking-item {
    flex-basis: 33%;
    margin-top: 2rem;
}

#contact-img {
    width: 100%;
    padding: var(--global-padding);
    box-sizing: border-box;
}

/* ANIMATIONS */
/* 0: Fade out */
/* 1: Fade in, slide up */
/* 2: Slide to the right */
/* 3: Typing effect */
/* 4: Rotate */

.animation-trigger {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 10;
    pointer-events: none;
}

.trigger-an-top {
    height: 80%;
}

.animation0, .animation1, .animation2, .animation3, .animation4, .animation5 {
    transition: opacity .6s, transform .8s;
    transition-delay: calc(100ms + 150ms * var(--order));
    transition-timing-function: var(--transition-speed);
}

.animation1 {
    opacity: 0;
}

.animation2 {
    opacity: 0;
    padding-top: 12%;
}

.animation3 {
    width: 0;
    white-space: nowrap;
    overflow: hidden;
}

.animation4 {
    transition: transform .6s;
    transform: rotate(180deg);
}

.animation5 {
    opacity: 0;
    background-size: 10%;
}

@keyframes typing {
    from { width: 0 }
    to { width: var(--width-ch); }
}

.animate.animation0 {
    opacity: 0;
}

.animate.animation1, .animate.animation2, .animate.animation4, .animate.animation5 {
    opacity: 1;
    padding-top: 0;
    background-size: 100px 100px;
}

.animate.animation3 {
    animation: typing .5s steps(var(--steps), end) forwards;
    animation-delay: calc(100ms + 150ms * var(--order));
}

.animate.animation5 {
    animation: background-size 2s ease-in;
}

























.container {
    width: 100%;
    max-width: 1440px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.component.app {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.component.menu {
    transform: translate3d(100%, 0, 0);
}

.component.menu.open {
    transform: translate3d(0, 0, 0);
}

.component.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    z-index: 100;
    background: #FFCC00;
    transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 15;
}

.tab {
    cursor: pointer;
    position: absolute;
    z-index: -1;
    right: calc(100% + 50px);
    top: 0%;
    transform: translate3d(100%, 0%, 0);
    width: 50px;
    height: 50px;
    transition: transform 0.3s cubic-bezier(0, 0, 0.58, 1);
    background: #FFCC00;
}

.tab .slash {
    content: "";
    width: 4px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) skew(20deg);
    transition: 0.3s all cubic-bezier(0, 0, 0.58, 1);
    background: #191919;
}

.component.menu.open .tab .slash {
    transform: translate3d(-50%, -50%, 0) skew(-20deg);
}

.component.app .pages {
    width: 100%;
    min-height: 100%;
    /* position: absolute; */
    top: 0;
    left: 0;
}

.component.app .page {
    width: 100%;
    height: 100%;
    z-index: 4;
}

.component.app .page.nosotros {
    height: 100vh;
    max-height: 600px;
    z-index: 4;
}





/*---------------------------------------------
VIDEO OVERLAY
-----------------------------------------------*/
  .playpause {
    background-repeat: no-repeat;
    width: 90%;
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: 100px 100px;
    background-position: center;
    color: #e2b501;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-around;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    cursor: pointer;
    z-index: 2;
  }

  .playpause:hover {
    background-repeat: no-repeat;
    background-size: 100px 100px;
    width: 90%;
    height: 100%;
  }
  .page:not(#work-11) .playpause {
    background-image: url(../img/play.png);
  }

  .page:not(#work-11) .playpause:hover {
    background-image: url(../img/play-hv.png);
  }

  /* FUERZO PARA Q SE VEA AL 100% LA GALERIA */
  #work-11 .article-big {
    width: 100%;
    gap: 0;
    /* display: block; */
    padding: 0;
  }

  .playpause:hover h1,
  .playpause:hover h2,
  .playpause:hover h3 {
    color: #FFCC00;
  }

  .playpause h1,
  .playpause h2,
  .playpause h3 {
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    margin: 0;
    line-height: 100%;
    letter-spacing: -2px;
  }

  .playpause h1 {
    font-weight: normal;
    font-size: 6rem;
    transform: skew(16deg, 0deg);
  }

  .playpause h2 {
    font-weight: normal;
    font-size: 6rem;
    transform: skew(16deg, 0deg);
  }

  .playpause h3 {
    font-weight: normal;
    font-size: 3.5rem;
  }

  .playpause .client-top {
    position: absolute;
    top: 7%;
  }

  .playpause .client-bottom {
    position: absolute;
    bottom: 7%;
  }

  .profile-content {
    display: flex;
    width: 55%;
    height: 100%;
    position: absolute;
    right: 4%;
  }

  .nosotros-content {
    display: flex;
    width: 92%;
    height: 100%;
    /* overflow: hidden; */
    margin: 0 auto;
    position: relative;
    align-items: center;
  }

  .nosotros-content > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .nosotros-text {
    width: 290px;
    padding: 0 100px 0 50px;
    overflow: hidden;

    transition: all 0.3s ease;
  }

  .nosotros-content.info-extra .nosotros-text {
    display: none;
    width: 0;
    padding: 0;
  }

  .nosotros-text p {
    line-height: 150%;
  }

  .nosotros-profiles {
    flex: 0 auto
  }

  .profile {
    margin: 0 2px;
    position: relative;
    left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: flex 0.3s ease , left 0.5s ease;
  }

  .profile:hover,
  .profile.active {
    flex: 1.15;
  }

  .profile.active,
  .profile.previous-active {
    left: -450px;
  }

  .profile .profile-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: skew(14deg, 0deg);
  }

  .profile .profile-img img {
    width: auto;
    height: 100%;
    transform: skew(-14deg, 0deg);
    position: absolute;
    left: -165px;
    top: 0;
  }

  .profile .profile-description {
    position: absolute;
    top: 0;
    left: 170px;
    width: 430px;
    height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    transition: opacity 0.35s ease;
    box-sizing: border-box;
    padding: 20px;
    opacity: 0;
    transform: skew(14deg, 0deg);
    cursor: auto;
  }

  .profile.active .profile-description {
    opacity: 1;
  }

  .profile h4, .profile h3 {
    color: var(--yellow);
    margin: 0;
    font-size: 1.35rem;
  }

  .profile h4 {
    font-size: 1rem;
    margin: 2px 0 15px
  }

  .nosotros {
    position: relative;
  }

  .nosotros h2 {
    color: var(--yellow);
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 1;
    margin: 0;
    display: block;
    --width-ch: 13ch;
    --steps: 14;
  }

  .nosotros p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2%;
  }

  .nosotros p.parra-oblicuo {
    transform: skew(16deg, 0deg);
  }

  .profile p {
    line-height: 1.3;
    font-size: .76rem;
  }

  body.loader { overflow: hidden;}

  #loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    transition: all .35s ease-out;
    left: 0%;
    top: 0%;
  }
  #loader.fadeOut {
    width: 0;
    left: 0%;
  }
  #loader_animation {
    background: #FFCC00 url(../img/tbwa-loader.gif) no-repeat center;
  }
    #loader_animation {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }



















/* RESPONSIVENESS */
/* Tablet */

@media screen and (max-width: 1400px) {
    /* HTML TAGS */

    html, body {
        font-size: 14px;
    }

    html.no-scroll-small-screen, body.no-scroll-small-screen {
        margin: 0; height: 100vh; overflow: hidden
    }

    /* TOP BAR & NAV */

    nav {
        padding-left: 0;
        padding-right: 0;
    }

    nav.open {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: var(--global-padding);
        box-sizing: border-box;
        background-color: white;
    }

    #nav-icon {
        align-self: flex-end;
        position: relative;
    }

    nav.open > #nav-icon {
        top: 15px;
    }

    /* ARTICLES */
    .article-read-more::after {
        top: 1px;
    }

    .article-small.full-img {
        max-height: 52vw;
    }

    .article-alternate {
        gap: 5rem;
    }

    /* CONTACT */

    #contact-list, #now-talking-list {
        flex-wrap: wrap;
    }

    .contact-list-item {
        text-align: center;
    }

    /* Work */

    .work-text-shortinfo {
        flex: 1;
    }

    /* Quick Look */

    .quick-look-gallery {
        align-items: flex-end;
    }

    .profile .profile-img img {
        left: -130%;
    }
}

@media screen and (max-width: 1250px) {
    .profile .profile-img img {
        left: -160%;
    }
}

@media screen and (max-width: 1150px) {
    .profile .profile-img img {
        left: -180%;
    }
}

@media screen and (max-width: 999px) {
    .profile .profile-img img {
        left: -210%;
    }
}
/* Mobile */

@media screen and (max-width: 900px) {
    /* VARIABLES */

    :root {
        --global-padding: 4em 2em;
    }

    /* HTML TAGS */

    html, body {
        font-size: 12px;
    }

    h1 {
        font-size: 4rem;
    }

    /* COMMON CLASSES */

    .mobile-only {
        display: inline-block;
    }

    /* HEADER */

    #header-page-title > h3 {
        display: none;
    }

    .header-img {
        height: 420px;
        background-size: cover;
    }

    /* ARTICLES */

    .article-big {
        min-height: auto;
    }



                .article-big img {
                    width: 100%;
                }


    .article-list {
        flex-direction: column;
    }

    .article-small {
        max-width: 100%;
        max-height: none;
    }

    .article-small, .article-small:nth-child(even) {
        padding: 0 0 3em 0;
    }

    .article-small.no-padding:nth-child(even) {
        padding-left: 0;
    }

    .article-small-text-container, .article-small.no-padding:nth-child(odd) .article-small-text-container {
        padding-left: 2em;
        padding-right: 2em;
    }

    .article-small.full-img {
        max-height: none;
        max-width: none;
    }

    .article-small.full-img .article-small-img {
        height: auto;
        width: 100%;
    }

    .article-small.full-img .article-small-img-container {
        margin: 0;
    }

    .article-two-col {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3em;
        text-align: center;
    }

    .article-read-more::after {
        top: 0px;
    }

    .article-alternate:nth-child(even), .article-alternate:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .alternate-padding:nth-child(even), .alternate-padding:nth-child(odd) {
        padding: var(--global-padding);
    }

    /* "AN OPEN AGENCY FOR AN OPEN WORLD" */

    #open-world {
        height: 100vh;
    }

    #open-world-title {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    /* CONTACT */
    .contact-list-item {
        flex-basis: 100%;
    }

    .now-talking-item {
        flex-basis: 50%;
    }

    #contact-img {
        padding: 0;
    }

    /* WORK */
    #client-sublist {
        /* Center list */
        position: relative;
        left: -188%;
    }

    .work-text-shortinfo {
        text-align: center;
    }

    .work-text {
        flex-direction: column;
        gap: 3rem;
    }

    .work-imgs-container {
        flex-direction: column;
    }

    /* Quick look */

    #quick-look {
        padding: 0;
    }

    #quick-look-top-bar {
        width: auto;
        margin: 2rem 2rem 0 2rem;
    }

    #quick-look-carousel-container {
        flex: 1;
        margin: 0;
    }

    .carousel {
        width: auto;
    }

    .quick-look-gallery-button {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        padding: 2rem 0;
    }

    .quick-look-gallery-button:nth-of-type(2) {
        left: auto;
        right: 0;
    }

    /* Back to top button */

    #back-to-top {
        position: sticky;
        top: calc(100vh - 6rem);
        left: calc(100vw - 4rem);
    }

    footer {
        height: 80vh;
        max-height: 600px;
    }

    footer > div, footer .address-box {
        display: block;
    }

    footer h4 {
        font-size: 3.5rem;;
        position: relative;
    }

    footer .address-box {
        float: none;
        padding-left: 2%;
    }

    footer p {
        font-size: 1rem;
    }

    .playpause h1 {
        font-size: 4.5rem;
    }

    .playpause h2 {
        font-size: 4rem;
    }

    .playpause h3 {
        font-size: 3.5rem;
    }

    nav li a {
        font-size: 2rem;
    }

    /* NOSOTROS */
    .nosotros h2,
    .nosotros-content,
    .profile-content,
    .profile.active .profile-description {
        position: relative;
    }

    .page.nosotros {
        height: auto !important;
        max-height: none !important;
        padding-bottom: 15%;
    }

    .nosotros h2 {
        bottom: inherit;
        font-size: 4rem;
        left: 3%;
        margin: 5% 0;
    }

    .nosotros-content {
        display: block;
        height: inherit;
    }
    .nosotros p.parra-oblicuo,
    .profile .profile-img {
        transform: none;
    }

    .nosotros-text {
        padding: 0;
    }

    .profile-content {
        width: 100%;
        height: inherit;
        right: inherit;
        display: block;
    }

    .profile {
        display: block;
        width: 100%;
        margin: 5px 0;
    }

    .profile .profile-img {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .profile .profile-img img {
        left: inherit;
        transform: none;
        width: 100%;
        height: auto;
        top: -90%;
    }


    .profile-4 .profile-img img {
          width: 112%;
          top: -130%;
          left: -40px;
    }

    .profile .profile-description {
        left: inherit;
        top: inherit;
        width: 100%;
        height: inherit;
        transform: none;
    }

    .profile.active, .profile.previous-active { left: inherit}

    .profile p {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}




@media screen and (max-width: 600px) {
.profile .profile-img {
    height: 150px;
}
}