@import url("https://use.typekit.net/vbl3ljo.css");

:root{
    --font-global: articulat-cf, sans-serif;
    --font-alt: articulat-cf, sans-serif;
    --bs-body-font-weight-100: "wght" 100;
    --bs-body-font-weight-200: "wght" 200;
    --bs-body-font-weight-300: "wght" 300;
    --bs-body-font-weight-400: "wght" 400;
    --bs-body-font-weight-500: "wght" 500;
    --bs-body-font-weight-600: "wght" 600;
    --bs-body-font-weight-700: "wght" 700;
    --vh: 10.06px;
    --vh100: calc(var(--vh) * 100);
}

body {
    font-variation-settings: var(--bs-body-font-weight-400);
    font-size: 1rem;
    line-height: 1.625;
}

@media (min-width: 1280px) {
    body {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
}

@media (min-width: 1690px) {
    body {
        font-size: 1.1rem;
    }
}

a, a:hover {
    text-decoration: none;
}

p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-alt);
    font-variation-settings: var(--bs-body-font-weight-400);
}

hr {
    margin: 1rem 0;
    background-color: var(--color-dark-1);
}

svg {
    display: block;
    vertical-align: middle;
}

ul.mn-sub {
    border-radius: 0.75rem;
    padding: 1rem;
    position: absolute;
    width: 100%;
    background-color: #fff;
}
ul.mn-sub li {
    display: block;
    width: 100%;
    gap: 0;
    padding: 0;    
}
ul.mn-sub li:last-of-type > a {
    border-bottom-color: transparent!important;
}

.stroke-white {
    stroke: #111;
}

.dark .stroke-white, .is-open .stroke-white {
    stroke: #fff;
}
.small-height .stroke-white {
    stroke: var(--color-dark-1);
}
.w-3 {
    width: .75rem;
}
.h-3 {
    height: .75rem;
}
.duration-200 {
    transition-duration: .2s;
}
.duration-300 {
    transition-duration: .3s;
}
.inner-nav > ul > li:hover svg {
    --tw-rotate: 45deg;
    transform: rotate(var(--tw-rotate));
}
ul.mn-sub a svg {
    --tw-rotate: -135deg!important;
    transform: rotate(var(--tw-rotate));
    stroke: rgb(25, 25, 25);
}
ul.mn-sub a:hover svg {
    --tw-translate-x: 0.25rem;
    --tw-translate-y: -0.25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate));
    transition-delay: .1s;
    stroke: rgba(25, 25, 25, 0.3);
}

.logo-svg {
    width: auto;
    height: 100%;
    max-height: 100%;
    fill: #111;
    transition: all 200ms var(--ease-default);
}

.dark .logo-svg {
    fill: #fff;
}

.small-height .logo-svg {
 fill: var(--color-dark-1);
}

.is-open .logo-svg {
    fill: var(--color-gray-light-1);
}
.small-height .logo-svg { max-height: 70%; }

.main-nav, .main-nav.small-height {
    background-color: rgba(255,255,255, .98);
}

.main-nav.is-open {
    background-color: rgba(255, 255, 255, .98);
}

.main-nav:not(.mobile-on).small-height .inner-nav > ul > li > a {
    color: var(--color-dark-1);
    opacity: 1;
}

.main-nav:not(.mobile-on).small-height .inner-nav > ul > li > svg {
    stroke: var(--color-dark-1);
}

.mobile-on .desktop-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 15px;
    z-index: 100;
}
.mobile-on .full-wrapper .desktop-nav {
    -webkit-backdrop-filter: blur(.5rem);
    backdrop-filter: blur(0.5rem);
    background: rgba(17, 17, 17, 0.905);
    color: var(--color-gray-light-1);
    height: 100vh;
    left: 0;
    mix-blend-mode: normal;
    opacity: 0;
    overflow: hidden;
    overflow: auto;
    padding: var(--menu-bar-height) 2rem 3rem;
    position: fixed;
    top: 0;
    transition: opacity .75s cubic-bezier(.15,.85,.45,1),visibility .75s cubic-bezier(.15,.85,.45,1);
    visibility: hidden;
    width: 100%;
    z-index: 6;
}

.mobile-on .js-opened.desktop-nav {
    opacity: 1;
    visibility: visible;
}
.mobile-on .desktop-nav ul {
    background-color: transparent;
}
.mobile-on .desktop-nav > ul {
    display: block;
}

.mobile-on .desktop-nav > ul > li {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.mobile-on .desktop-nav > ul > li:before {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 0.1rem;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.15,.85,.45,1);
}
.mobile-on .desktop-nav > ul > li.js-opened:before, .mobile-on .desktop-nav > ul > li:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}
.mobile-on .desktop-nav > ul > li:after {
    border-bottom: 0.1rem solid hsla(16,22%,90%,.2);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(.15,.85,.45,1);
    width: 100%;
}
.mobile-on .desktop-nav.js-opened > ul > li:after {
    transform: scaleX(1);
}

.mobile-on .desktop-nav > ul > li > a {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0 0.375rem;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(.15,.85,.45,1);
    width: 100%;
    border: 0;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.mobile-on .desktop-nav.js-opened > ul > li > a {
    transform: translateY(0);
}
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--1 > a,
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--1:after {
    transition-delay: .1s;
}

.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--2 > a,
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--2:after {
    transition-delay: .3s;
}

.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--3 > a,
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--3:after {
    transition-delay: .5s;
}

.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--4 > a,
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--4:after {
    transition-delay: .7s;
}

.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--5 > a,
.mobile-on .desktop-nav.js-opened > ul > li.navigation__list__item--5:after {
    transition-delay: .9s;
}

.mobile-on .inner-nav > ul > li:hover svg {
    --tw-rotate: 0deg;
    transform: rotate(var(--tw-rotate));
}

.mobile-on .inner-nav > ul > li.js-opened svg {
    --tw-rotate: 45deg;
    transform: rotate(var(--tw-rotate));
}

.mobile-on .mn-sub {
    padding-bottom: 1rem;
    padding-left: 7rem;
    padding-top: 1rem;
    padding-right: 0;
    position: relative;
    transition: color .1s;
}

.mobile-on .mn-sub li {
    overflow: hidden;
    position: relative;
    transition: color .3s cubic-bezier(.15,.85,.45,1);
    padding: 0;
    margin: 0;
}

.mobile-on .mn-sub li:before, .mobile-on .mn-sub li:after {
    border-bottom: 0.1rem solid;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(.15,.85,.45,1);
}
.mobile-on .mn-sub li:last-child:before, .mobile-on .mn-sub li:last-child:after {
    opacity: 0;
}
.mobile-on .mn-sub li:after {
    opacity: .2;
}
.mobile-on .js-opened .mn-sub li:after {
    transform: scaleX(1);
}
.mobile-on .mn-sub li:hover:before {
    transform: scaleX(1);
}

.mobile-on .inner-nav ul li .mn-sub li a {
    text-transform: uppercase;
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding: 0.5rem 0 0.375rem;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(.15,.85,.45,1);
    color: #fff !important;
    border: 0;
}

.mobile-on .inner-nav ul li .mn-sub li a svg {
    stroke: #fff;
}

.mobile-on .inner-nav.js-opened ul li .mn-sub li a  {
    transform: translateY(0);
}

.mobile-on .js-opened .mn-sub li:first-child a {
    transition-delay: .1s;
}
.mobile-on .js-opened .mn-sub li:nth-child(2) a {
    transition-delay: .2s;
}
.mobile-on .js-opened .mn-sub li:nth-child(3) a, .mobile-on .js-opened .mn-sub li:first-child:after {
    transition-delay: .3s;
}
.mobile-on .js-opened .mn-sub li:nth-child(4) a, .mobile-on .js-opened .mn-sub li:nth-child(2):after {
    transition-delay: .4s;
}
.mobile-on .js-opened .mn-sub li:nth-child(3):after {
    transition-delay: .5s;
}
.mobile-on .js-opened .mn-sub li:nth-child(4):after {
    transition-delay: .6s;
}
.nav-logo-wrap, .mobile-nav {
    z-index: 70;
}

.mobile-on.small-height .mobile-nav-icon, .mobile-on.small-height .mobile-nav-icon:before, .mobile-on.small-height .mobile-nav-icon:after,
.mobile-on .mobile-nav.active .mobile-nav-icon:before, .mobile-on .mobile-nav.active .mobile-nav-icon:after {
    background-color: var(--color-gray-light-1);
}

.mobile-on.small-height .mobile-nav.active .mobile-nav-icon {
    background: transparent;
}

.work-img-bg {
    background-color: var(--color-gray-light-1);
}

.work-item:nth-child(2n + 1) .work-img-bg {
    background-color: var(--color-gray-light-2);
}

.page-section#portfolio {
    padding-top: max(calc(var(--vh100)/ 3), 200px);
}
.container-grid {
    padding: 0 80px;
}

.works-filter a {
        font-size: 2rem;
        font-variation-settings: var(--bs-body-font-weight-200);
        font-family: var(--font-alt);
        letter-spacing: 0.0125rem;
}

.light-content .fw-top-link:hover .icon {
    color: var(--color-dark-1);
}

.hs-title-2.m-0 {
    line-height: 0.82;
    font-variation-settings: var(--bs-body-font-weight-200);

}

.scroll-down-2 img {
    width: 100%;
    max-width: 4rem;
}

.container-projecto-fullImage {
    padding-left: 2rem;
    padding-right: 2rem;

}

@media only screen and (max-width: 575px) {
    .scroll-down-2 img {
        max-width: 2rem;
    }
}

b, strong {
    font-weight: 700;
    font-variation-settings: var(--bs-body-font-weight-500);
}

.text-size-regular {
    font-size: 1rem;
    text-decoration: none;
}

.tech--sheet .text-size-regular { font-size: 0.75rem; display: inline-block; line-height: 1.5; }

.tech--sheet hr { margin: 0.5rem 0; }

.text-size-medium {
    font-size: 1.125rem;
}

@media screen and (min-width: 1440px) {
    .text-size-medium {
        font-size: 1.25rem;
    }

}

h3, .h3 {
    color: var(--color-dark-1);
    letter-spacing: 0;
}

.text-justify {
    text-align: justify;
}

.project-imaginary img {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.work-navigation {
    position: fixed;
    bottom: 0;
    transform: translateY(100%);
    transition: all 0.2s var(--ease-default);
    transition-delay: 0ms;
    border-top: 1px solid var(--color-dark-1);
    border-bottom: 1px solid var(--color-dark-1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.67);
}

.work-navigation.is-active {
    transform: none;
    transition-delay: 330ms;
    transition-duration: 200ms;
}

.work-navigation a {
    width: 50%;
    color: var(--color-dark-1);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.work-navigation a + a {
    border-left: 1px solid var(--color-dark-1);
}

.work-navigation a, .work-navigation a:visited, .work-navigation a span:hover {
    color: var(--color-dark-1);
}

.work-navigation a span{
    display: block;
    height: 56px;
    line-height: 55px;
    width: 100%;
    background: transparent;
}

.work-navigation span:hover {
    background: rgba(255, 255, 255, 0.5);
}

.work-navigation a svg {
    --tw-rotate: 90deg!important;
    transform: rotate(var(--tw-rotate));
    stroke: var(--color-dark-1);
    margin-top: -2px;
    margin-right: 5px;
    display: inline-block;
}

.work-navigation a.work-next svg {
    --tw-rotate: -90deg!important;
    margin-right: 0;
    margin-left: 5px;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.tracking-wider {
    letter-spacing: .05em;
}

main {
    animation: fade-in 1s cubic-bezier(.39,.575,.565,1) .5s both;
    z-index: 1;
    position: relative;
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bg-brandGrey {
    --tw-bg-opacity: 0.30;
    background-color: rgb(229 229 229/var(--tw-bg-opacity));
}

/* ------------
Basics - Position Relative
------------- */

.relative {
    position: relative;
}

/* ------------
Basics - Position Absolute
------------- */

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

/* ------------
Basics - Display Flex
------------- */

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .md\:items-center {
        align-items: center;
    }
    .block-content {
        gap: 1.5rem;
    }
    .md\:flex {
        display: flex;
    }
    .md\:justify-end {
        justify-content: flex-end;
    }
    .md\:items-end {
        align-items: flex-end;
    }
}

@media not all and (min-width: 768px) {
    .md\:d-flex {
        display: flex;
    }
    .md\:justify-end {
        justify-content: flex-end;
    }
    .max-md\:flex-col {
        flex-direction: column;
    }
}

/* ------------
Basics - Display Grid
------------- */
.grid {
    display: grid;
}
.col-span-2 {
    grid-column: span 2/span 2;
}
.col-span-3 {
    grid-column: span 3/span 3;
}
.grid-cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(5,minmax(0,1fr));
}
.gap-x-6 {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}
.gap-y-6 {
    row-gap: 1.5rem;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-16 {
    gap: 4rem;
}
.gap-32 {
    gap: 8rem;
}
.\!gap-2 {
    gap: 0.5rem!important;
}
.\!gap-3 {
    gap: 0.75rem!important;
}

@media (min-width: 768px) {
    .md\:grid {
        display: grid;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5,minmax(0,1fr));
    }
    .md\:columns-2 {
        -moz-columns: 2;
        column-count: 2;
    }
    .md\:col-span-1 {
        grid-column: span 1/span 1;
    }
    .md\:col-span-2 {
        grid-column: span 2/span 2;
    }
    .md\:col-span-3 {
        grid-column: span 3/span 3;
    }
    .md\:gap-3 {
        gap: 0.75rem;
    }
    .md\:gap-12 {
        gap: 3rem;
    }
    .md\:gap-16 {
        gap: 4rem;
    }
    .md\:gap-20 {
        gap: 5rem;
    }
    .md\:gap-y-12 {
        row-gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid {
        display: grid;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .lg\:col-span-1 {
        grid-column: span 1/span 1;
    }
    .lg\:col-span-2 {
        grid-column: span 2/span 2;
    }
    .lg\:col-span-3 {
        grid-column: span 3/span 3;
    }
    .lg\:gap-10 {
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .xl\:gap-20 {
        gap: 5rem;
    }
    .xl\:gap-40 {
        gap: 10rem;
    }
}

@media not all and (min-width: 768px) {
    .max-md\:gap-20 {
        gap: 5rem;
    }
    .md\:col-span-1 {
        grid-column: span 1/span 1;
    }
    .max-md\:gap-6 {
        gap: 1.5rem;
    }
}
/* ------------
Basics - Durations and Eases
------------- */

.duration-1000 {
    transition-duration: 1s;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* ------------
Basics - Images
------------- */

.aspect-4\/3 {
    aspect-ratio: 4/3;
}
.aspect-16\/9, .aspect-video {
    aspect-ratio: 16/9;
}
.aspect-1\/1 {
    aspect-ratio: 1/1;
}
.object-center {
    -o-object-position: center;
    object-position: center;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.overflow-hidden {
    overflow: hidden;
}
.reveal-left, .reveal-right, .reveal-top {
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}
.reveal-top img {
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transform-origin: top;
    width: 100%;
}
.pointer-events-none {
    pointer-events: none;
}

@media (min-width: 1024px) {
    .lg\:aspect-1\/1 {
        aspect-ratio: 1/1;
    }

    .lg\:max-h-\[550px\] {
        max-height: 550px;
    }
}
/* ------------
Basics - Borders and Border-radious
------------- */

.border-b {
    border-bottom-width: 1px;
}

.border-s {
    border-bottom-style: solid;
}

.border-b-brandDark {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(25 25 25/var(--tw-border-opacity));
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

/* ------------
Basics - Widths and Heights
------------- */

.\!w-\[50px\] {
    width: 50px!important;
}

.w-full {
    width: 100%;
}

.\!w-full {
    width: 100%!important;
}

.h-full {
    height: 100%;
}

.\!h-full {
    height: 100%!important;
}

.w-full-vw {
    width: 100vw;
}

.h-full-vh {
    height: 100vh;
}

@media (min-width: 1024px) {
    .lg\:w-1\/2 {
        width: 50%;
    }
}


/* ------------
Basics - Paddings and Margins
------------- */

.container-rma {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.\!pt-0 {
    padding-top: 0!important;
}
.pt-8 {
        padding-top: 1.5rem;
}
.pt-12 {
    padding-top: 3rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-16 {
    margin-top: 4rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-10 {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.py-32 {
    padding-bottom: 8rem;
    padding-top: 8rem;
}

.section-rma {
    padding-bottom: 3rem;
    padding-top: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .container-rma {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .md\:pt-8 {
        padding-top: 1.5rem;
    }
    .md\:pt-12 {
        padding-top: 3rem;
    }
    .md\:pt-24 {
        padding-top: 6rem;
    }
    .md\:pr-20 {
        padding-right: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:mt-24 {
        margin-top: 6rem;
    }
    .lg\:pl-6 {
        padding-left: 1.5rem;
    }
    .lg\:my-12 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .lg\:my-16 {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .lg\:py-20 {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }
    .lg\:my-24 {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }
    .section-rma {
        padding-bottom: 6rem;
        padding-top: 6rem;
    }
}

@media (min-width: 1690px) {
    .section-rma {
        padding-bottom: 9rem;
        padding-top: 9rem;
    }
}

@media not all and (min-width: 1024px) {
    .max-lg\:py-16 {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
}

@media not all and (min-width: 768px) {
    .max-md\:pb-6 {
        padding-bottom: 1.5rem;
    }
}

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

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.\!text-base {
    font-size: 1rem!important;
    line-height: 1.5rem!important;
}

.is-h1 {
    font-size: 3rem;
    line-height: 1.15!important;
    font-variation-settings: var(--bs-body-font-weight-200);
    margin-bottom: 0;
}
.is-h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    line-height: 1.15!important;
    margin-bottom: 0;
}

.is-h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0;
}
.is-h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0;
}
.is-h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0;
}
.is-h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0;
}

.\!text-base {
    font-size: 1rem!important;
    line-height: 1.5rem!important;
}

@media (min-width: 640px) {
    .is-h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .is-h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .is-h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .is-h5 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }    
}

@media (min-width: 1024px) {
    .is-h1 {
        font-size: 6.25rem;
    }
    .is-h2 {
        font-size: 2.5rem;
    }
    .is-h6 {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

@media (min-width: 1280px) {
    .is-h3 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .is-h5 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 1690px) {
    .is-h1 {
        font-size: 7rem;
    }
    .is-h2 {
        font-size: 3rem;
    }
    .is-h5 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .is-h6 {
        font-size: 1.4rem;
    }
    .\32xl\:\!text-lg {
        font-size: 1.125rem!important;
        line-height: 1.75rem!important;
    }
}

/* ------------
Basics - Links, Buttons and Hovers
------------- */

.hover-line {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}

.hover-line:after {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    right: 0;
    transform-origin: right;
    transition-duration: .3s;
    width: 0;
}

.hover-line:hover {
    color: inherit;
}

.hover-line:hover:after {
    left: 0;
    margin-right: auto;
    transition-duration: .5s;
    width: 100%;
    --tw-bg-opacity: 1!important;
    background-color: rgb(25 25 25/var(--tw-bg-opacity))!important;
}

.contact-details .hover-line:after {
    --tw-bg-opacity: 1!important;
    background-color: rgb(25 25 25/var(--tw-bg-opacity))!important;
}

.is-button {
    --tw-border-opacity: 1;
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    align-items: center;
    background-color: rgb(25 25 25/var(--tw-bg-opacity));
    border-color: rgb(25 25 25/var(--tw-border-opacity));
    border-width: 1px;
    border-style: solid;
    color: rgb(255 255 255/var(--tw-text-opacity));
    display: flex;
    font-size: .9rem;
    gap: 0.5rem;
    line-height: 1.5rem;
    padding: 0.375rem 1rem;
    text-align: center;
    text-transform: uppercase;
    transition-duration: .3s;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 640px) {
    .is-button {
        width: -moz-fit-content;
        width: fit-content;
    }
}

/* @media (min-width: 768px) {
    .is-button {
        font-size: 1.rem;
        line-height: 1.75rem;
    }
} */

.button-outline {
    --tw-text-opacity: 1!important;
    background-color: transparent!important;
    color: rgb(25 25 25/var(--tw-text-opacity))!important;
}

.button-outline:hover {
    --tw-bg-opacity: 1!important;
    --tw-text-opacity: 1!important;
    background-color: rgb(25 25 25/var(--tw-bg-opacity))!important;
    color: rgb(255 255 255/var(--tw-text-opacity))!important;
}

.bg-\[\#DDDDDD\] {
    --tw-bg-opacity: 1;
    background-color: rgb(221 221 221/var(--tw-bg-opacity));
}

.tease-thumbnail {
    overflow: hidden;
    position: relative;
}

.tease-thumbnail:before {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    align-items: center;
    background-color: rgb(25 25 25/var(--tw-bg-opacity));
    color: rgb(255 255 255/var(--tw-text-opacity));
    content: "";
    display: flex;
    font-size: 1.125rem;
    height: 100%;
    justify-content: center;
    left: 0;
    line-height: 1.75rem;
    line-height: 1.25;
    opacity: 0;
    position: absolute;
    top: 0;
    transition-duration: .5s;
    width: 100%;
    z-index: 10;
}

.tease-thumbnail:hover:before {
    --tw-bg-opacity: 0.75;
    opacity: 1;
}

.tease-thumbnail:after {
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    --tw-text-opacity: 1;
    align-items: center;
    color: rgb(255 255 255/var(--tw-text-opacity));
    content: "Ver mais";
    display: flex;
    height: 100%;
    justify-content: center;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 52.5%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y));
    transition-duration: .5s;
    width: 100%;
    z-index: 20;
}

.tease-thumbnail:hover:after {
    opacity: 1;
    top: 50%;
}

.group:hover .group-hover\:scale-\[1\.1\] {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {
    .tease-thumbnail:before {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.line-gap-wrapper {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.line-gap-wrapper>:not(.line-gap) {
    flex-shrink: 0;
}

.line-gap-wrapper .line-gap {
    position: relative;
    width: 100%;
}

.line-gap-wrapper.short .line-gap {
    max-width: 150px;
}

.line-gap-wrapper .line-gap .line {
    --tw-bg-opacity: 1;
    background-color: rgb(25 25 25/var(--tw-bg-opacity));
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}

/* ------------
Basics - Transparency (Opacity)
------------- */

.opacity-30 {
    opacity: .3;
}

.work-img img, .tease img {
    filter: grayscale(1);
}

.stiky-img {
    max-height: calc(100dvh - 200px);
}

@media (min-width: 1040px) {
    .stiky-img {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
    }
}