:root {
    --font--color: var(--gray);
    --navbar--background: #ffffff4d;
    --dark-blue: #003b62;
    --white: white;
    --button--color: var(--dark-blue);
    --gray: #212121;
    --transparent: transparent;
    --color-base--blue: #03b3ee;
    --light-gray: #adadad;
    --black: #000002;
    --color-base--yellow: #ffd900;
    --color-base--green: #118701;
}

.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(--font--color);
    background-color: #f5f5f5;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    margin-bottom: 0;
}

a {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.hero {
    z-index: 999999;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/hero-nbs.avif");
    background-position: 50%;
    background-size: cover;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    min-height: 100vh;
    display: grid;
    position: relative;
}

.hero.contact {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url("../images/contact-nbs.avif");
    background-position: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    grid-template-rows: auto;
    grid-template-columns: minmax(100%, 1344px);
    min-height: 0;
    padding: 80px 48px 40px;
    position: static;
}

.navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.navbar-brand {
    height: 64px;
}

.navbar-brand.brand-dark {
    filter: invert();
}

.container {
    width: 100%;
    max-width: 1344px;
}

.container.horizontal--between-center {
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    position: relative;
}

.container.horizontal--between-stretch {
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

.container.horizontal--between-stretch:where(.w-variant-bf580c75-614a-af81-43ed-37d829ad3472),
.container.horizontal--between-stretch.invert-2 {
    flex-flow: row-reverse;
}

.container.horizontal--between-down {
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
}

.container.horizontal--between-down:where(.w-variant-bf580c75-614a-af81-43ed-37d829ad3472) {
    flex-flow: row-reverse;
}

.container.footer-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.container.form-container {
    position: relative;
}

.nav-menu {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    display: flex;
}

.list-item {
    list-style-type: none;
}

.list-item.is-mobile {
    display: none;
}

.text-xs {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
}

.text-xs.color-currentcolor {
    border-radius: 4px;
    padding: 4px 8px;
}

.text-xs.color-currentcolor:hover,
.text-xs.color-currentcolor.w--current {
    background-color: var(--navbar--background);
}

.button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 70px;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding: 8px 15px 8px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.button:hover {
    box-shadow: 0 2px 5px #0003;
}

.button.medium {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    height: auto;
    padding-right: 8px;
}

.button.medium.button-dark {
    background-color: var(--button--color);
}

.button.white {
    background-color: var(--white);
    color: var(--gray);
}

.button.white:hover {
    box-shadow: 0 2px 5px #fff3;
}

.button.bigger {
    grid-column-gap: 40.67px;
    grid-row-gap: 40.67px;
    border-radius: 88.96px;
    height: auto;
    padding: 10.17px 10.17px 10.17px 25.42px;
    font-size: 20.33px;
}

.button.bigger.white {
    color: var(--dark-blue);
}

.circle {
    background-color: #c8ff00;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.gap-32 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.gap-32.x-left {
    align-items: flex-start;
}

.gap-32.text-center {
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 424px;
    margin-right: auto;
    display: flex;
}

.hero-content.contact {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    width: 680px;
    max-width: 100%;
}

.button_wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.button_wrap.button-hero-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
}

.medium {
    font-weight: 500;
}

.bold {
    color: #003b62;
    font-weight: 700;
}

.section {
    grid-column-gap: 78px;
    grid-row-gap: 78px;
    flex-flow: column;
    padding: 75px 48px;
    display: flex;
    overflow: hidden;
}

.section.no-marging-top {
    padding-top: 0;
    overflow: visible;
}

.budget {
    color: #bababa;
    margin-right: auto;
    font-size: 16px;
    line-height: 150%;
    display: none;
}

.container_content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 909px;
    margin-left: 128px;
    display: flex;
}

.container_content.small {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    width: 658px;
    min-width: 50%;
}

.container_content.small:where(.w-variant-bf580c75-614a-af81-43ed-37d829ad3472),
.container_content.small.invert-3 {
    margin-left: 0;
    margin-right: 128px;
}

.container_content.margin-right {
    flex: 0 auto;
    margin-left: 0;
    margin-right: 128px;
}

.images-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.image-hve {
    aspect-ratio: auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
}

.image-hve:hover {
    transform: scale(1.1);
}

.image-hve.no-hve:hover {
    transform: scale(1);
}

.image-area {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-area:where(.w-variant-3c2fc223-1bf3-dfb8-d69d-ab6bf7e8b54c) {
    aspect-ratio: auto;
    object-fit: contain;
}

.image-area.is--relative {
    z-index: 0;
    position: absolute;
}

.text-base {
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

.text-base.contact-title {
    margin-bottom: 12px;
}

.text-sm {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.text-sm.small {
    width: 472px;
    max-width: 100%;
}

.gap-56 {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.text-lg {
    font-size: 48px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

.text-md {
    font-size: 40px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

.text-md.bold {
    font-weight: 700;
}

.text-xxl {
    font-size: 64px;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
}

.gap-14 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    display: flex;
}

.grid-services {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.grid-line {
    color: var(--font--color);
    border-bottom: 1px solid #adadad;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
}

.grid-line:where(.w-variant-b919cace-b427-a13a-e122-a4e2950b0ba2) {
    color: var(--dark-blue);
}

.grid-line:where(.w-variant-39cbd5da-9e9d-a35c-c21a-b0c6d2ba77ba) {
    color: var(--dark-blue);
    font-weight: 700;
}

.service-icons-area {
    display: none;
}

.service-icons-area:where(.w-variant-706c2569-e786-bb98-b820-1b7adf529eb3) {
    display: block;
}

.footer {
    background-color: var(--dark-blue);
    margin-top: auto;
    padding: 80px 48px;
}

.footer-column {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: relative;
}

.text-xxs {
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

.footer-menu {
    grid-column-gap: 156px;
    grid-row-gap: 156px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 432px;
    display: flex;
}

.footer-menu.no-max {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    max-width: none;
    margin-top: auto;
}

.no-wrap {
    white-space: nowrap;
}

.footer-divider {
    color: #ffffff80;
}

.footer-sub-menu {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.footer-sub-menu.pages-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}

.footer-sub-menu.gap-32 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
}

.div-block {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    display: flex;
}

.button-circle-footer {
    width: 32px;
}

.nav-icons {
    width: 24px;
    height: 24px;
    display: none;
}

.nav-bg {
    display: none;
}

.span-blue {
    color: var(--color-base--blue);
}

.top-140 {
    width: 456px;
    max-width: 100%;
    margin-top: 140px;
    margin-right: auto;
}

.divider {
    background-color: var(--light-gray);
    opacity: 0.5;
    width: 100%;
    height: 1px;
    margin-top: 36px;
    margin-bottom: 36px;
}

.contact-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    display: flex;
}

.form-block {
    background-image: linear-gradient(#fafafa 25%, #fff);
    border-radius: 16px;
    width: 660px;
    max-width: 40%;
    margin-bottom: 0;
    padding: 32px;
    position: absolute;
    top: -92px;
    right: 0;
    height: fit-content;
}

.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    display: flex;
}

.input-wrapper {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    display: flex;
}

.label {
    color: var(--font--color);
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.input {
    border: 1px solid var(--light-gray);
    color: var(--font--color);
    border-radius: 40px;
    height: 52px;
    margin-bottom: 0;
    padding: 16px;
    line-height: 140%;
}

.input:focus {
    border-color: var(--button--color);
}

.input.text-area {
    border-radius: 16px;
    min-width: 100%;
    max-width: 100%;
    height: 238px;
    min-height: 52px;
    max-height: 238px;
}

.submit {
    background-color: var(--button--color);
    color: var(--white);
    border-radius: 70px;
    padding: 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}

.table-title:where(.w-variant-706c2569-e786-bb98-b820-1b7adf529eb3) {
    display: none;
}

.style-guide {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    padding-top: 96px;
    padding-bottom: 96px;
    display: flex;
}

.style-guide-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-color: var(--light-gray);
    border-radius: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 909px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem;
    display: grid;
}

.text-xl {
    font-size: 60px;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
}

.color-blue {
    color: #8ea6c5;
}

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

.color-gray {
    color: #8a8a8a;
}

.color-currentcolor {
    color: currentColor;
}

.color-light-gray {
    color: #bababa;
}

.style-guide-bg {
    background-color: var(--gray);
}

.color-white-6 {
    color: #fff9;
}

.hidden {
    display: none;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.grid-area-actuations {
    grid-column-gap: 24px;
    grid-row-gap: 53px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.card-actuation-area {
    cursor: default;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    position: relative;
}

.card-actuaction-tag {
    z-index: 2;
    border: 3px solid var(--white);
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    border-radius: 101px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 140%;
    position: absolute;
    transform: translate(0, 50%);
}

.card-actuaction-content {
    z-index: 1;
    color: var(--white);
    background-color: color-mix(in hsl, var(--button--color) 60%, var(--transparent));
    border-radius: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 16px 16px 48px;
    display: flex;
    position: relative;
}

.marquee_area {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.marquee_area.bigger {
    margin-bottom: 75px;
}

.marquee {
    width: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
    mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
}

.marquee_group {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    transform-style: preserve-3d;
    animation: spin var(--duration) infinite linear;
    flex-flow: row;
    place-content: center flex-start;
    align-items: center;
    padding-right: 1em;
    display: flex;
}

.marquee_item {
    justify-content: center;
    width: 10rem;
    padding: 1rem;
    display: flex;
}

.marquee_item.bigger {
    width: 18rem;
    padding: 0;
}

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

.wrapper-pillars {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    display: grid;
}

.card-pillar {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    background-color: #fafafa;
    border-radius: 8px;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    box-shadow:
        0 1px 2px #00000014,
        0 4px 6px #0000000f,
        0 10px 15px #0000000a;
}

.header-pillars {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.navbar {
    background-color: #0000;
    padding: 16px 48px;
}

.navbar.nav-color {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: var(--navbar--background);
    background-color: var(--navbar--background);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        0 1px 2px #00000014,
        0 4px 6px #0000000f,
        0 10px 15px #0000000a;
}

.nav-area {
    z-index: 9999;
    color: var(--white);
    position: relative;
}

.nav-area.nav-sticky {
    opacity: 0;
    color: var(--dark-blue);
    transition: all 0.3s ease-in-out;
    position: sticky;
    top: 0;
    transform: translate(0, -100%);
}

.nav-area.nav-sticky.is-visible {
    opacity: 1;
    transform: translate(0);
}

.navbar-mobile {
    background-color: #0000;
    padding: 16px 48px;
    display: none;
    position: relative;
    inset: 0% 0% auto;
}

.naav-burguer {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: none;
}

.burguer-item {
    background-color: currentColor;
    border-radius: 2px;
    width: 24px;
    height: 2px;
}

.utility-page-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
    position: relative;
}

._404-img {
    z-index: 0;
    opacity: 0.05;
    width: 90vw;
    max-width: 3908px;
    position: absolute;
}

.image-2 {
    height: 100%;
}

.body {
    flex-flow: column;
    display: flex;
}

@media screen and (min-width: 1280px) {
    .footer {
        background-color: var(--dark-blue);
        padding: 80px 48px;
    }

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

@media screen and (max-width: 991px) {
    .hero {
        background-position: 80%;
    }

    .navbar-brand.brand-dark {
        filter: invert();
    }

    .nav-menu-wrapper {
        border-right-style: solid;
        border-right-width: 1px;
        border-right-color: var(--navbar--background);
        background-color: var(--navbar--background);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        justify-content: flex-start;
        align-items: flex-start;
        height: 100vh;
        padding: 16px 48px;
        display: none;
        inset: 0%;
        box-shadow:
            1px 0 2px #00000014,
            4px 0 6px #0000000f,
            10px 0 15px #0000000a;
    }

    .container.horizontal--between-center {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 24px;
    }

    .container.horizontal--between-stretch {
        justify-content: center;
        align-items: flex-start;
    }

    .nav-menu {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100vh;
        display: flex;
    }

    .list-item.is-mobile {
        display: block;
    }

    .text-xs {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        display: flex;
    }

    .text-xs.color-currentcolor {
        border-radius: 4px;
        padding: 4px 8px;
    }

    .text-xs.color-currentcolor.w--current {
        background-color: var(--navbar--background);
    }

    .button.bigger.white {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .hero-content {
        grid-column-gap: 42px;
        grid-row-gap: 42px;
    }

    .button_wrap.button-hero-wrap {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }

    .section {
        padding: 75px 24px 37.5px;
    }

    .container_content.small {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        margin-left: 32px;
    }

    .container_content.small:where(.w-variant-bf580c75-614a-af81-43ed-37d829ad3472),
    .container_content.small.invert-3 {
        margin-right: 32px;
    }

    .container_content.margin-right {
        margin-right: 64px;
    }

    .image-area {
        object-fit: fill;
    }

    .gap-56 {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
    }

    .footer-menu {
        grid-column-gap: 52px;
        grid-row-gap: 52px;
    }

    .no-wrap.footer-divider {
        display: none;
    }

    .footer-sub-menu {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }

    .nav-button-wrapper {
        display: none;
    }

    .div-block {
        flex-flow: column;
    }

    .nav-icons {
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        display: flex;
    }

    .nav-bg {
        z-index: 10;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        opacity: 1;
        background-color: color-mix(in hsl, var(--font--color) 40%, var(--transparent));
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        width: 100vw;
        height: 100vh;
        display: none;
        position: fixed;
        inset: 0%;
    }

    .top-140 {
        margin-top: 92px;
    }

    .form-block {
        max-width: 100%;
        margin-top: 32px;
        position: relative;
        top: 0;
        left: 0;
    }

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

    .wrapper-pillars {
        grid-auto-columns: 1fr;
    }

    .navbar-mobile {
        z-index: 999;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-bottom-color: var(--navbar--background);
        background-color: var(--navbar--background);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-flow: column;
        width: max-content;
        display: none;
        position: absolute;
    }

    .naav-burguer {
        display: flex;
    }

    .burguer-item {
        width: 20px;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        background-position: 70%;
    }

    .navbar-brand {
        padding-left: 0;
    }

    .container.horizontal--between-stretch,
    .container.horizontal--between-stretch.invert-2 {
        flex-flow: column;
    }

    .container.horizontal--between-down {
        flex-flow: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .container.footer-container {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        grid-template-columns: 2fr;
    }

    .nav-menu {
        flex-direction: column;
        max-width: calc(100vw - 100px);
    }

    .gap-32 {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

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

    .container_content.small {
        order: -1;
        width: 100%;
        margin-bottom: 32px;
        margin-left: 0;
    }

    .container_content.margin-right {
        margin-bottom: 16px;
        margin-right: 0;
    }

    .text-base.color-white-6 {
        font-size: 15px;
    }

    .text-lg {
        font-size: 36px;
    }

    .text-md {
        font-size: 30px;
    }

    .text-xxl {
        font-size: 48px;
    }

    .top-140 {
        margin-top: 64px;
    }

    .style-guide-content {
        width: 100%;
        margin-left: 0;
    }

    .text-xl {
        font-size: 45px;
    }

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

    .marquee_item.bigger {
        width: 14rem;
    }

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

@media screen and (max-width: 479px) {
    .hero {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .container {
        max-width: none;
    }

    .container.horizontal--between-center {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-menu {
        flex-direction: column;
    }

    .button.bigger {
        padding: 6px 6px 6px 12px;
        font-size: 17px;
    }

    .hero-content {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
    }

    .text-xxl.color-white {
        font-size: 32px;
    }

    .footer {
        padding: 40px 24px;
    }

    .text-xl.color-blue {
        font-size: 30px;
    }

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

    .marquee_item.bigger {
        width: 8rem;
    }

    .image {
        width: 32px;
    }

    .navbar,
    .navbar-mobile {
        padding-left: 24px;
        padding-right: 24px;
    }

    .naav-burguer {
        right: 24px;
    }
}

#w-node-cc0aa96b-751b-cb65-059d-9fbb6f4bd61a-930889d8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_531c85e2-993f-21df-12e4-37dda01de170-a01de16e {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-_531c85e2-993f-21df-12e4-37dda01de17e-a01de16e {
    grid-area: 1 / 2 / 2 / 3;
}

#w-node-_55c30c84-afcb-da34-6bac-2c1eda064830-930889da,
#w-node-_7e1eedf5-707f-bad3-58fb-33b7f29da631-930889dd {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
    #w-node-_531c85e2-993f-21df-12e4-37dda01de170-a01de16e {
        grid-row: 2 / 3;
    }

    #w-node-_531c85e2-993f-21df-12e4-37dda01de17e-a01de16e {
        grid-area: 1 / 1 / 2 / 2;
    }
}

/* ===============================
   FORM VALIDATION STYLES
   =============================== */

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
    display: none;
}

.error-message.visible {
    display: block;
}

.input.is-invalid {
    border-color: #dc3545 !important;
}

.input.is-valid {
    border-color: #28a745 !important;
}

.message-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 6px;
}

.char-counter {
    color: #6c757d;
    font-size: 13px;
    margin-left: auto;
}

.char-counter.warning {
    color: #ffc107;
}

.char-counter.danger {
    color: #dc3545;
}
