@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@100..900&display=auto");

@font-face {
    font-family: "Aptos";
    src: url("https://eltrom.com.ar/css/fonts/aptos.woff2") format("woff2"),
        url("https://eltrom.com.ar/css/fonts/aptos.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Aptos";
    src: url("https://eltrom.com.ar/css/fonts/aptos-semibold.woff2") format("woff2"),
        url("https://eltrom.com.ar/css/fonts/aptos-semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Aptos";
    src: url("https://eltrom.com.ar/css/fonts/aptos-bold.woff2") format("woff2"),
        url("https://eltrom.com.ar/css/fonts/aptos-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

:root {
    --filter-white: invert(96%) sepia(96%) saturate(0%) hue-rotate(100deg) brightness(104%) contrast(105%);
    --filter-red: invert(49%) sepia(43%) saturate(3441%) hue-rotate(337deg) brightness(100%) contrast(91%);
    --filter-blue: invert(27%) sepia(80%) saturate(1516%) hue-rotate(187deg) brightness(86%) contrast(84%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    font-family: "Aptos", sans-serif;
    color: #000000;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    transition: 0.35s;
    z-index: 10;
}

.bar-envelope {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    background-color: rgba(22, 97, 158, 0);
    transition: 0.35s;
}

.bar-compact .bar-envelope {
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: rgba(22, 97, 158, 1);
}

.bar-layout {
    display: flex;
    column-gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bar-brand {
    flex: none;
}

.bar-brand-layout {
    display: grid;
    grid-template-columns: 30.57809523809524fr 6.370380952380952fr 63.05152380952381fr;
    width: 210px;
    transition: 0.35s;
}

.bar-compact .bar-brand-layout {
    width: 148px;
}

.bar-brand-anima {
    animation: bar-brand-anima 1s forwards;
}

@keyframes bar-brand-anima {
    0% {

        transform: scale(1) rotateY(0);
    }

    50% {

        transform: scale(0.8) rotateY(180deg);
    }

    100% {

        transform: scale(1) rotateY(0);
    }
}

.bar-brand-anima-alt {
    animation: bar-brand-anima-alt 1s forwards;
}

@keyframes bar-brand-anima-alt {
    0% {

        transform: scale(1) rotateY(0);
    }

    50% {

        transform: scale(0.8) rotateY(180deg);
    }

    100% {

        transform: scale(1) rotateY(0);
    }
}

.bar-brand-logo {
    display: flex;
    flex-direction: column;
}

.bar-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.bar-brand-eltrom {
    transition: 0.35s;
}

.bar-compact .bar-brand-eltrom {
    transform: translateY(17%);
}

.bar-brand-tagline {
    transition: 0.35s;
}

.bar-compact .bar-brand-tagline {
    opacity: 0;
    transform: translateY(-15%);
}

.bar-nav {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 564px;
}

.bar-btn,
.bar-btn:link,
.bar-btn:visited {
    padding-top: 9px;
    padding-bottom: 9px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 17.5px;
    line-height: 17.5px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.bar-btn:hover {
    color: #F26241;
}

.touch .bar-btn:hover {
    color: #FFFFFF;
}

.bar-btn:active,
.touch .bar-btn:active {
    color: #F26241;
}

.bar-btn-on {
    border-bottom: solid 3px #F26241;
}

.bar-social {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-networks {
    display: flex;
    column-gap: 20px;
}

.bar-network,
.bar-network:link,
.bar-network:visited {
    transition: 0.25s;
}

.bar-network svg {
    display: block;
    width: 24px;
    height: 24px;
}

.bar-network:hover {
    transform: scale(1.25);
}

.touch .bar-network:hover {
    transform: scale(1);
}

.bar-network:active,
.touch .bar-network:active {
    transform: scale(1.25);
}

.bar-network svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.bar-network:hover svg path {
    fill: #F26241;
}

.touch .bar-network:hover svg path {
    fill: #FFFFFF;
}

.bar-network:active svg path,
.touch .bar-network:active svg path {
    fill: #F26241;
}

.bar-menu {
    flex: none;
    display: none;
    align-items: center;
}

.bar-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.bar-menu-lines {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.bar-menu-line {
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #F26241;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #FFFFFF;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #F26241;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #F26241;
    animation: panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 97, 158, 0.5);
    backdrop-filter: blur(8px);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.panel-action {
    position: relative;
    display: inline-block;
    padding-top: 9px;
    padding-bottom: 9px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.25s;
}

.panel-action:hover {
    opacity: 1;
}

.touch .panel-action:hover {
    opacity: 0.5;
}

.panel-action:active,
.touch .panel-action:active {
    opacity: 1;
}

.panel-action-on {
    opacity: 1;
}

.panel-action-on:hover {
    opacity: 1;
}

.touch .panel-action-on:hover {
    opacity: 1;
}

.panel-action-on:active,
.touch .panel-action-on:active {
    opacity: 1;
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
    padding-top: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 24px;
    padding-bottom: 32px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 0;
    text-align: center;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    opacity: 0.5;
}

.touch .panel-link:hover {
    opacity: 1;
}

.panel-link:active,
.touch .panel-link:active {
    opacity: 0.5;
}

.panel-link-on {
    opacity: 0.5;
}

.panel-link-on:hover {
    opacity: 0.5;
}

.touch .panel-link-on:hover {
    opacity: 0.5;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    opacity: 0.5;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.1s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 32px;
    height: 32px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.panel-social img {
    width: 100%;
    height: 100%;
    transition: 0.25s;
}

.panel-social:hover img {
    transform: scale(1.25);
}

.touch .panel-social:hover img {
    transform: scale(1);
}

.panel-social:active img,
.touch .panel-social:active img {
    transform: scale(1.25);
}

.panel-social:nth-child(1) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.75s;
}

.panel-social:nth-child(3) {
    animation-delay: 1s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBALS */

.envelope {
    height: 100%;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.envelope-alt {
    padding-left: 24px;
    padding-right: 24px;
}

.envelope-alt-2 {
    height: 80%;
}

.envelope-alt-3 {
    padding: 24px;
    padding-top: 0px;
    overflow: hidden;
}

.block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.frame {
    position: relative;
    width: 100%;
    max-width: 1248px;
    padding: 24px;
    margin: 0 auto;
}

.frame-alt {
    padding: 0;
    padding-left: 24px;
    padding-right: 24px;
}

.title {
    color: #F26241;
    font-family: "Chivo Mono", monospace;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    word-spacing: -0.2em;
}

.title-1,
.title-2,
.title-3 {
    opacity: 0;
    transform: scale(0.85);
}

.title-alt {
    color: #FFFFFF;
}

.caption {
    padding-top: 18px;
    padding-bottom: 40px;
    color: #16619E;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.caption-alt {
    color: #FFFFFF;
}

.button {
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    height: 48px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 100px;
    border: solid 2px transparent;
    background-color: #F26241;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
    transition: 0.25s;
}

.button-1,
.button-2,
.button-3 {
    opacity: 0;
    transform: translateY(-60%);
}

.button:hover {
    background-color: #FFFFFF;
    color: #F26241;
    box-shadow: 3px 3px 24px 0px rgba(255, 255, 255, 0.75);
}

.touch .button:hover {
    background-color: #F26241;
    color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
}

.button:active,
.touch .button:active {
    background-color: #FFFFFF;
    color: #F26241;
    box-shadow: 3px 3px 24px 0px rgba(255, 255, 255, 0.75);
}

.button-alt {
    background-color: #16619E;
    color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(22, 97, 158, 0.75);
}

.button-alt:hover {
    border-color: #16619E;
    color: #16619E;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(22, 97, 158, 0.75);
}

.touch .button-alt:hover {
    border-color: transparent;
    color: #FFFFFF;
    background-color: #16619E;
    box-shadow: 3px 3px 24px 0px rgba(22, 97, 158, 0.75);
}

.button-alt:active,
.touch .button-alt:active {
    border-color: #16619E;
    color: #16619E;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(22, 97, 158, 0.75);
}

.button-alt-2 {
    background-color: #F26241;
    color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
}

.button-alt-2:hover {
    border-color: #F26241;
    color: #F26241;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
}

.touch .button-alt-2:hover {
    border-color: transparent;
    color: #FFFFFF;
    background-color: #F26241;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
}

.button-alt-2:active,
.touch .button-alt-2:active {
    border-color: #F26241;
    color: #F26241;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(242, 98, 65, 0.75);
}

.button-alt-3 {
    background-color: #16619E;
    color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(136, 48, 28, 1);
    cursor: pointer;
}

.button-alt-3:hover {
    color: #16619E;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(136, 48, 28, 1);
}

.touch .button-alt-3:hover {
    color: #FFFFFF;
    background-color: #16619E;
    box-shadow: 3px 3px 24px 0px rgba(136, 48, 28, 1);
}

.button-alt-3:active,
.touch .button-alt-3:active {
    color: #16619E;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 24px 0px rgba(136, 48, 28, 1);
}

.button-label {
    font-weight: 600;
    font-size: 17.5px;
    line-height: 17.5px;
}

.button-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: var(--filter-white);
    transition: 0.25s;
}

.button-arrow img {
    display: block;
    width: auto;
    height: 14px;
}

.button:hover .button-arrow {
    filter: var(--filter-red);
}

.touch .button:hover .button-arrow {
    filter: var(--filter-white);
}

.button:active .button-arrow,
.touch .button:active .button-arrow {
    filter: var(--filter-red);
}

.button-alt:hover .button-arrow {
    filter: var(--filter-blue);
}

.touch .button-alt:hover .button-arrow {
    filter: var(--filter-white);
}

.button-alt:active .button-arrow,
.touch .button-alt:active .button-arrow {
    filter: var(--filter-blue);
}

.button-alt-2:hover .button-arrow {
    filter: var(--filter-red);
}

.touch .button-alt-2:hover .button-arrow {
    filter: var(--filter-white);
}

.button-alt-2:active .button-arrow,
.touch .button-alt-2:active .button-arrow {
    filter: var(--filter-red);
}

.button-alt-3:hover .button-arrow {
    filter: var(--filter-blue);
}

.touch .button-alt-3:hover .button-arrow {
    filter: var(--filter-blue);
}

.button-alt-3:active .button-arrow,
.touch .button-alt-3:active .button-arrow {
    filter: var(--filter-blue);
}

.text-intro {
    padding-bottom: 24px;
    color: #F26241;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-16px);
}

.text-intro-project {
    opacity: 1;
    transform: translateX(0);
}

.text-content {
    color: #16619E;
    font-size: 18px;
    line-height: 24px;
}

.text-content p {
    padding-bottom: 16px;
}

.text-content p:last-of-type {
    padding-bottom: 0px;
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    background-color: #16619E;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/intro.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation-name: intro-bg-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.intro-bg-services {
    background-image: url(../assets/services-2.jpg);
}

.intro-bg-company {
    background-image: url(../assets/company.jpg);
}

.intro-bg-contact {
    background-image: url(../assets/contact-2.jpg);
}

.intro-bg-projects {
    background-image: url(../assets/projects.jpg);
}

@keyframes intro-bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.intro-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 4%;
    background: linear-gradient(to bottom, rgba(22, 97, 158, 1) 0%, rgba(22, 97, 158, 0.25) 100%);
}

.intro-content-alt {
    align-items: flex-end;
    padding-top: 0%;
}

.intro-frame {
    padding-left: 8%;
    padding-right: 8%;
}

.intro-title {
    width: 100%;
    max-width: 800px;
    padding-bottom: 20px;
    color: #FFFFFF;
    font-family: "Chivo Mono", monospace;
    font-size: 64px;
    line-height: 74px;
    font-weight: 600;
    word-spacing: -0.2em;
    opacity: 0;
    transform: translateY(50%);
    animation-name: intro-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes intro-title-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.intro-title-alt {
    font-size: 50px;
    line-height: 60px;
    opacity: 0;
    transform: translateX(15%);
    animation-name: intro-title-anima-alt;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes intro-title-anima-alt {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

.intro-caption {
    width: 100%;
    max-width: 620px;
    padding-bottom: 56px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    opacity: 0;
    animation-name: intro-caption-anima;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.intro-caption-alt {
    padding-bottom: 72px;
}

@keyframes intro-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.85;
    }
}

.intro-button {
    opacity: 0;
    animation-name: intro-button-anima;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

@keyframes intro-button-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* COMPANY */

.home-company {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
}

.home-company-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.home-company-content {
    max-width: 800px;
    padding-top: 108px;
    padding-bottom: 260px;
    text-align: center;
    z-index: 2;
}

.home-company-content .caption {
    max-width: 580px;
    margin: 0 auto;
}

.home-company-plane {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
}

.home-company-plane-graph {
    width: 100%;
    padding-bottom: 69.07216494845361%;
    background-image: url(../assets/plane.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: home-company-plane-anima 120s linear infinite;
    opacity: 0.75;
}

@keyframes home-company-plane-anima {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.company-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    padding: 0px;
    padding-bottom: 64px;
}

.company-pictures {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.company-picture {
    position: relative;
    border-radius: 24px;
}

.company-picture-1 {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 75%;
    background-color: #B9DCF0;
    overflow: hidden;
}

.company-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/company-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.35);
}

.company-picture-overlay {
    position: absolute;
}

.company-picture-2 {
    padding-bottom: 100%;
    background: linear-gradient(45deg, #C95136 0%, #F26241 100%);
    transform: translateY(20%);
}

.company-picture-3 {
    padding-bottom: 100%;
    background: linear-gradient(45deg, #114C7F 0%, #16619E 100%);
    transform: translateY(40%);
}

.company-word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    color: #FFFFFF;
    font-family: "Chivo Mono", monospace;
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    word-spacing: -0.2em;
    text-transform: uppercase;
    text-align: center;
}

.company-content {
    padding: 32px;
    padding-bottom: 64px;
}

/* SERVICES */

.home-services {
    position: relative;
    margin-top: -24px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: linear-gradient(to bottom, rgba(131, 199, 255, 1) 0%, rgba(131, 199, 255, 0) 100%);
}

.home-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
}

.home-services-content {
    padding: 64px;
    padding-bottom: 100px;
    margin-top: -96px;
    border-radius: 24px;
    background-color: #16619E;
}

.home-services-graph {
    padding-bottom: 40px;
}

.home-services-picture {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
}

.home-services-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #77C1FD;
    background-image: url(../assets/services.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.35);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    max-width: 1000px;
    padding-top: 48px;
    padding-bottom: 64px;
}

.services-text {
    display: flex;
    justify-content: center;
    padding: 24px;
    padding-bottom: 48px;
}

.services-list {
    display: flex;
    justify-content: center;
}

.services-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.services-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    padding: 24px;
    padding-left: 34px;
    padding-right: 34px;
    background: linear-gradient(45deg, #C95136 0%, #F26241 100%);
    color: #FFFFFF;
    font-family: "Chivo Mono", monospace;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    word-spacing: -0.2em;
    transform: translateY(100%);
}

.services-item-alt {
    background: linear-gradient(45deg, #114C7F 0%, #16619E 100%);
}

.services-item-1 {
    border-radius: 24px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.services-item-2 {
    border-radius: 7px;
    border-bottom-right-radius: 24px;
}

.services-item-3 {
    border-radius: 7px;
    border-bottom-left-radius: 24px;
}

.services-item-4 {
    border-radius: 7px;
    border-bottom-right-radius: 24px;
}

.services-item-5 {
    border-radius: 7px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

.services-arrow {
    filter: var(--filter-white);
}

.services-arrow img {
    width: auto;
    height: 18px;
}

/* PROJECTS */

.home-projects {
    max-width: 800px;
    padding-top: 96px;
    text-align: center;
}

.home-projects-alt {
    padding-top: 44px;
    padding-bottom: 100px;
}

.home-projects .caption {
    max-width: 580px;
    padding-bottom: 16px;
    margin: 0 auto;
}

.projects-layout {
    padding: 0px;
    padding-bottom: 64px;
}

.projects-items {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.projects-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.projects-picture {
    order: 1;
    opacity: 0;
    transform: translateX(-10%);
}

.projects-item:nth-child(even) .projects-picture {
    order: 2;
    transform: translateX(10%);
}

.projects-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.66666666666667%;
    border-radius: 24px;
    background-color: #E2E2E2;
    overflow: hidden;
}

.projects-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(242, 98, 65, 0.5) 0%, rgba(242, 98, 65, 0) 100%);
}

.projects-item:nth-child(even) .projects-overlay {
    background: linear-gradient(45deg, rgba(22, 97, 158, 0.5) 0%, rgba(22, 97, 158, 0) 100%);
}

.projects-content {
    padding: 32px;
    padding-top: 48px;
    padding-bottom: 64px;
    order: 2;
}

.projects-item:nth-child(even) .projects-content {
    order: 1;
}

.projects-brand {
    width: 132px;
    margin-top: 24px;
    border-radius: 18px;
    box-shadow: 0px 0px 18px -2px rgba(20, 20, 20, 0.1);
    opacity: 0;
    transform: scale(0.5);
}

/* MARQUEE */

.marquee {
    display: flex;
    flex-direction: column;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    max-width: 100vw;
    margin: auto;
}

.marquee-frame {
    display: flex;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    overflow: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    -webkit-mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.marquee-logos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    min-width: 100%;
    animation: marquee-anima 120s linear infinite;
}

.marquee-frame-reverse .marquee-logos {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes marquee-anima {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14)));
    }
}

.marquee-logos div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(10rem, 1rem + 40vmin, 30rem);
    padding: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 10);
    border-radius: 16px;
    aspect-ratio: 16/9;
    border: solid 2px #E2E2E2;
    background: #FFFFFF;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.marquee-logos-alt div {
    width: clamp(10rem, 1rem + 24vmin, 30rem);
    aspect-ratio: 1/1;
}

.marquee-logos div img {
    display: block;
    width: 100%;
}

/* CONTACT */

.home-contact-envelope {
    padding-bottom: 72px;
    transform: scale(0.85);
}

.home-contact {
    position: relative;
    padding-top: 124px;
    padding-bottom: 124px;
    border-radius: 24px;
    background-color: #F26241;
    box-shadow: 3px 3px 24px 0px rgba(100, 41, 28, 0.5);
    overflow: hidden;
}

.home-contact-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/contact.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: home-contact-picture-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes home-contact-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.home-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0) 100%);
    mix-blend-mode: multiply;
}

.home-contact-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-left: 10%;
    padding-right: 10%;
    z-index: 2;
}

.contact-layout {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0px;
    padding-bottom: 64px;
}

#contact{
    height: 100%;
}

.contact-content {
    padding: 32px;
    padding-bottom: 64px;
    border-radius: 24px;
    border: solid 2px #F26241;
}

.contact-text strong {
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    opacity: 1;
    transition: 0.25s;
}

.contact-link:hover {
    opacity: 0.5;
}

.touch .contact-link:hover {
    opacity: 1;
}

.contact-link:active,
.touch .contact-link:active {
    opacity: 0.5;
}

.contact-networks {
    display: flex;
    column-gap: 20px;
    padding-top: 32px;
}

.contact-network {
    transition: 0.25s;
}

.contact-networks div {
    opacity: 0;
    transform: translateX(20px);
}

.contact-networks-on div {
    animation-name: contact-networks-anima;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
}

.contact-networks div:nth-child(1) {
    animation-delay: 0.25s;
}

.contact-networks div:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-networks div:nth-child(3) {
    animation-delay: 0.75s;
}

@keyframes contact-networks-anima {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-network svg {
    display: block;
    width: 36px;
    height: 36px;
}

.contact-network:hover {
    transform: scale(1.25);
}

.touch .contact-network:hover {
    transform: scale(1);
}

.contact-network:active,
.touch .contact-network:active {
    transform: scale(1.25);
}

.contact-network svg path {
    fill: #16619E;
    transition: 0.25s;
}

.contact-network:hover svg path {
    fill: #F26241;
}

.touch .contact-network:hover svg path {
    fill: #16619E;
}

.contact-network:active svg path,
.touch .contact-network:active svg path {
    fill: #F26241;
}

.contact-form {
    padding: 32px;
    padding-bottom: 32px;
    border-radius: 24px;
    background: linear-gradient(-45deg, #C95136 0%, #F26241 100%);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 16px;
    height: 100%;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-textbox {
    width: 100%;
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #16619E;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    transition: 0.25s;
}

.contact-textbox::placeholder {
    color: #F26241;
    font-weight: 400;
}

.contact-textbox:focus {
    background-color: rgba(255, 255, 255, 1);
}

.contact-textarea {
    width: 100%;
    height: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #16619E;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.contact-textarea::placeholder {
    color: #F26241;
    font-weight: 400;
}

.contact-textarea:focus {
    background-color: rgba(255, 255, 255, 1);
}

.contact-map {
    grid-column: 1 / -1;
    height: 432px;
    border-radius: 24px;
    background-color: #F1F3F4;
    overflow: hidden;
}

.contact-map-iframe {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    margin-top: -2px;
    margin-left: -2px;
}

/* FOOTER */

.envelope-footer {
    padding-top: 72px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
}

.footer {
    border-top-right-radius: 24px;
    background-color: #16619E;
}

.footer-layout {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    column-gap: 64px;
    row-gap: 32px;
    padding-top: 64px;
}

.footer-layout-alt {
    display: none;
    column-gap: 32px;
    order: 3;
}

.footer-brand {
    display: inline-block;
    opacity: 0;
    transform: translateX(-10%);
    transition: 0.75s;
}

.footer-brand-on {
    opacity: 1;
    transform: translateX(0);
}

.footer-brand img {
    width: 200px;
    height: auto;
}

.footer-contact {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 23px;
}

.footer-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    opacity: 1;
    transition: 0.25s;
}

.footer-link:hover {
    opacity: 0.5;
}

.touch .footer-link:hover {
    opacity: 1;
}

.footer-link:active,
.touch .footer-link:active {
    opacity: 0.5;
}

.footer-link-on {
    color: #F26241;
    font-weight: 600;
    opacity: 1;
}

.footer-link-on:hover {
    opacity: 1;
}

.touch .footer-link-on:hover {
    opacity: 1;
}

.footer-link-on:active,
.touch .footer-link:active {
    opacity: 1;
}

.footer-qr {
    height: 100%;
}

.footer-qr a {
    display: inline-block;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    padding: 14px;
    border-radius: 4px;
    background-color: #FFFFFF;
}

.footer-plane {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 278px;
    padding-bottom: 106px;
    background-image: url(../assets/plane.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(22, 97, 158, 1), rgba(22, 97, 158, 0), rgba(22, 97, 158, 1));
    background-size: 200% 200%;
    animation: footer-overlay-anima 3s infinite;
}

@keyframes footer-overlay-anima {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 10% 0%
    }
}

.footer-copy {
    color: #F26241;
    font-size: 14px;
    line-height: 14px;
}

.footer-copy div {
    display: inline-block;
    padding: 10px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 24px;
    background-color: rgba(22, 97, 158, 1);
}

/* WHATSAPP */

.whatsapp {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: whatsapp-anima 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes whatsapp-anima {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 1000px;
    background-color: #F26241;
    box-shadow: 0px 0px 16px -3px rgba(242, 98, 65, 0.75);
    transition: 0.25s;
    z-index: 2;
}

.whatsapp:hover .whatsapp-icon {
    transform: scale(1.16);
}

.touch .whatsapp:hover .whatsapp-icon {
    transform: scale(1);
}

.whatsapp:active .whatsapp-icon,
.touch .whatsapp:active .whatsapp-icon {
    transform: scale(1.16);
}

.whatsapp svg {
    display: block;
    width: 40px;
    height: 40px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* TOAST */

#toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 100px;
    background-color: #F26241;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.toast-inverse .toast-caption {
    color: #3B3939;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #3B3939;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #F26241;
    animation: advice-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(22, 97, 158, 0.5);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: center;
}

.advice-close {
    display: inline-flex;
    padding: 16px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

.advice-main strong {
    font-weight: 700;
}

.advice-detail {
    padding-top: 16px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.25s;
    animation-fill-mode: forwards;
}

.advice-detail strong {
    font-weight: 600;
}

.advice-main div,
.advice-detail div {
    padding-bottom: 10px;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */

@media (max-width: 1080px) {

    .company-pictures {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
    }

    .company-picture-1 {
        grid-column: unset;
    }

    .company-picture-2 {
        padding-bottom: 40%;
    }

    .company-picture-3 {
        padding-bottom: 40%;
    }

    .projects-item {
        grid-template-columns: 1.75fr 1fr;
    }

    .projects-item:nth-child(even) {
        grid-template-columns: 1fr 1.75fr;
    }

}

@media (max-width: 1020px) {

    .projects-item {
        grid-template-columns: 1fr;
    }

    .projects-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .projects-item:nth-child(even) .projects-picture {
        order: 1;
    }

    .projects-content {
        padding: 24px;
        padding-top: 40px;
        padding-bottom: 48px;
    }

}

@media (max-width: 980px) {

    .home-company-plane {
        width: 60%;
    }

    .home-company-plane-graph {
        background-size: cover;
        padding-bottom: 145%;
    }

    .home-services-layout {
        grid-template-columns: 1fr;
    }

    .home-services-graph {
        height: 400px;
    }

    .home-services-picture {
        border-radius: 24px;
    }

    .services-layout {
        grid-template-columns: 1fr;
        max-width: unset;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: 2;
    }

    .contact-form {
        order: 3;
        padding-bottom: 48px;
    }

}

@media (max-width: 890px) {

    .bar-buttons {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .company-layout {
        grid-template-columns: 1fr;
    }

    .company-pictures {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
        height: auto;
    }

    .company-pictures-frame {
        order: 2;
    }

    .company-content {
        order: 1;
    }

    .footer-layout {
        grid-template-columns: 1.5fr 1fr;
    }

    .footer-contact {
        order: 3;
    }

    .footer-buttons {
        order: 2;
    }

    .footer-qr {
        order: 4;
    }

}

@media (max-width: 700px) {

    .home-contact-content {
        padding-left: 0%;
        padding-right: 0%;
    }

}

@media (max-width: 670px) {

    .intro-title {
        font-size: 44px;
        line-height: 54px;
    }

    .intro-caption {
        max-width: unset;
        font-size: 20px;
        line-height: 30px;
    }

    .title {
        font-size: 40px;
        line-height: 50px;
    }

    .caption {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .footer-contact {
        order: 2;
    }

    .footer-buttons {
        display: none;
    }

    .footer-qr {
        display: none;
    }

    .footer-layout-alt {
        display: flex;
    }

    .footer-layout-alt .footer-buttons {
        display: block;
        order: 5;
    }

    .footer-layout-alt .footer-qr {
        display: block;
        order: 4;
    }

}

@media (max-width: 580px) {

    .home-services-content {
        padding: 32px;
        padding-bottom: 100px;
    }

}

@media (max-width: 530px) {

    .contact-form-layout {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        height: auto;
    }

}

@media (max-width: 520px) {

    .bar-social {
        display: none;
    }

}

@media (max-width: 490px) {

    .bar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bar-brand-layout {
        width: 184px;
    }

    .bar-compact .bar-brand-layout {
        width: 140px;
    }

    .panel-bg {
        opacity: 0 !important;
    }

    .envelope {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .envelope-alt {
        padding-left: 16px;
        padding-right: 16px;
    }

    .envelope-alt-2 {
        height: 85%;
    }

    .envelope-alt-3 {
        padding: 16px;
    }

    .envelope-footer {
        padding-bottom: 0px;
        padding-left: 0;
        padding-right: 0;
    }

    .intro-frame {
        padding-left: 24px;
        padding-right: 24px;
    }

    .intro-content {
        padding-top: 16%;
    }

    .intro-title {
        font-size: 36px;
        line-height: 46px;
    }

    .intro-caption {
        padding-bottom: 32px;
    }

    .title {
        font-size: 32px;
        line-height: 42px;
    }

    .caption {
        font-size: 20px;
        line-height: 30px;
    }

    .frame-alt {
        padding-left: 0px;
        padding-right: 12px;
    }

    .home-company-content {
        padding-top: 64px;
        padding-bottom: 260px;
    }

    .home-company-plane {
        width: 100%;
    }

    .home-company-plane-graph {
        padding-bottom: 164%;
    }

    .home-services-layout {
        row-gap: 12px;
    }

    .home-services-content {
        padding-bottom: 72px;
    }

    .home-services-graph {
        padding-left: 12px;
        padding-bottom: 40px;
    }

    .home-contact {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .home-projects {
        padding-top: 16px;
    }

    .home-projects-alt {
        padding-top: 44px;
        padding-bottom: 64px;
    }

    .home-contact-envelope {
        padding-bottom: 4px;
    }

    .company-layout {
        padding-bottom: 58px;
    }

    .company-content {
        padding: 16px;
        padding-bottom: 40px;
    }

    .company-word {
        font-size: 24px;
        line-height: 24px;
    }

    .services-layout {
        padding-top: 16px;
        padding-bottom: 48px;
        padding-left: 0;
        padding-right: 0;
    }

    .services-text {
        padding: 16px;
        padding-bottom: 32px;
    }

    .services-item {
        justify-content: flex-start;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 18px;
        line-height: 22px;
    }

    .text-intro {
        font-size: 24px;
        line-height: 30px;
    }

    .projects-layout {
        padding: 0px;
        padding-bottom: 38px;
    }

    .projects-content {
        padding: 16px;
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .projects-content .text-intro {
        padding-bottom: 12px;
    }

    .contact-layout {
        padding-bottom: 52px;
    }

    .contact-content {
        padding: 24px;
        padding-bottom: 52px;
    }

    .contact-form {
        padding: 24px;
        padding-bottom: 48px;
    }

    .whatsapp {
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }

    .whatsapp svg {
        width: 36px;
        height: 36px;
    }

}