:root {
    --color-palette-1: #F8FAFC;
    --color-palette-2: #2B2D27;
    --color-palette-3: #31332e;
    --color-palette-4: #22221f;
    --color-palette-5: #00d0ff;
    --color-palette-6: #0281a1;
    --color-palette-7: #62aebf;
    --color-palette-8: #7a7d76;
    --color-palette-9: #f0f2eb;
    --color-palette-10: #e4e6de;

    --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --generic-padding-vertical: 80px;
    --generic-padding-side: 5%;
    --header-height: 75px;
}
html, body {
    touch-action: manipulation;
    transition: background 0.5s ease, color 0.5s ease;
}

html.darkTheme {
    --current-color-1: var(--color-palette-1);
    --current-color-2: var(--color-palette-2);
    --current-color-3: var(--color-palette-3);
    --current-color-4: var(--color-palette-4);
    --current-color-5: var(--color-palette-5);
    --current-color-6: var(--color-palette-8);

    --header-background-color: rgba(43,45,39,0.92);
    --border-color: rgba(248, 250, 252, 0.1);
}
html.lightTheme {
    --current-color-1: var(--color-palette-4);
    --current-color-2: var(--color-palette-9);
    --current-color-3: var(--color-palette-3);
    --current-color-4: var(--color-palette-10);
    --current-color-5: var(--color-palette-6);
    --current-color-6: var(--color-palette-8);

    --header-background-color: rgba(240,242,235,0.94);
    --border-color: rgba(26, 28, 24, 0.12);
}

body {
    font-family: var(--font-body);
    background-color: var(--current-color-2);
    color: var(--current-color-1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* WebKit */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-palette-4);
}
::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-palette-1) 60%, transparent);
  border-radius: 10px;
}

/* Reutilizables */
.no-scroll {
    overflow: hidden;
}
.logoColor1 {
    fill: var(--current-color-1);
}
.logoColor2 {
    fill: var(--current-color-5);
}

/* Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(110%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}




/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    height: var(--header-height);
    padding: 0 var(--generic-padding-side);
    
    z-index: 10;
    transition: 0.4s ease;
}
header.scrolled {
    background-color: var(--header-background-color);
    backdrop-filter: blur(10px);
    border-bottom: solid 1px var(--current-color-6);
}
header .logoCont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding: 15px 0;
}
header .logoCont svg {
    width: 100%;
    height: 100%;
}
header .logoCont svg#logoLarge {
    display: block;
}
header .logoCont svg#logoCompact {
    display: none;
}
header .navBar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
header .navBar .option {
    font-family: var(--font-head);
    font-size: 12px;
    color: var(--current-color-6);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}
header .navBar .option.close {
    display: none;
}
header .navBar .option.contact {
    background-color: var(--current-color-5);
    padding: 8px 15px;
    border-radius: 2px;
    color: var(--current-color-2);
}
header .navBar .option:hover {
    color: var(--current-color-1);
}
header .buttonsCont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
header .buttonsCont .themeBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}
header .buttonsCont .themeBtn svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: var(--current-color-6);
    transition: 0.3s ease;
}
header .buttonsCont .themeBtn.darkTheme svg:last-child {
    display: none;
}
header .buttonsCont .themeBtn.lightTheme svg:first-child {
    display: none;
}
header .buttonsCont .themeBtn:hover {
    border-color: var(--current-color-5);
}
header .buttonsCont .themeBtn:hover svg {
    stroke: var(--current-color-5);
}
header .buttonsCont .languageBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s ease;
}
header .buttonsCont .languageBtn span {
    display: block;
    padding: 6px 10px;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--current-color-6);
    cursor: pointer;
    transition: 0.3s ease;
}
header .buttonsCont .languageBtn span:hover {
    color: var(--current-color-1);
}
header .buttonsCont .languageBtn span.selected {
    background-color: var(--current-color-5);
    color: var(--current-color-2);
}
header #iconMenu {
    display: none;
    height: 17px;
    box-sizing: content-box;
    fill: var(--current-color-1);
    padding: 5px;
    cursor: pointer;
}
@media  (max-width: 1000px) {
    header .logoCont svg#logoLarge {
        display: none;
    }
    header .logoCont svg#logoCompact {
        display: block;
    }
}
@media  (max-width: 925px) {
    header .navBar {
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        background-color: var(--current-color-2);
        transition: 0.4s ease;
    }
    header .navBar.active {
        right: 0;
    }
    header .navBar .option {
        width: 90%;
        text-align: center;
        padding: 20px 0;
    }
    header .navBar .option:hover {
        border-bottom: solid 1px var(--current-color-6);
    }
    header .navBar .option.close {
        display: block;
    }
    header .navBar .option.contact {
        max-width: fit-content;
    }
    header #iconMenu {
        display: block;
    }
}


/* SECTION HERO */
.sectionHero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100dvh;
    padding: 0 var(--generic-padding-side);
    background-color: transparent;
}
.sectionHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, var(--current-color-6) 1px, transparent 1px),
        linear-gradient(to bottom, var(--current-color-6) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.1;
    animation: moveGrid 10s linear infinite;
    z-index: 0;
}
@keyframes moveGrid {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}
.sectionHero .orb {
    position: absolute;
    background-color: var(--current-color-5);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    filter: blur(200px);
    z-index: 1;
}
.sectionHero .orb.orb1 {
    top: 20%;
    right: 10%;
    opacity: 0.8;
}
.sectionHero .orb.orb2 {
    bottom: 20%;
    left: 10%;
    opacity: 0.3;
}
.sectionHero .topCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    width: 100%;
    margin-top: calc(var(--header-height));
    flex: 1;
    z-index: 1;
}
.sectionHero .topCont p {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-5);
    font-size: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}
.sectionHero .topCont .titleCont {
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: 100%;
    overflow: hidden;
}
.sectionHero .topCont .titleCont span {
    font-family: var(--font-display);
    font-size: 170px;
    color: var(--current-color-1);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(110%);
}
.sectionHero .topCont .titleCont span:last-child {
    color: var(--current-color-5);
}
.sectionHero .topCont .titleCont span:nth-child(1) {
    animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.sectionHero .topCont .titleCont span:nth-child(2) {
    animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.sectionHero .topCont .titleCont span:nth-child(3) {
    animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.sectionHero .bottomCont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    z-index: 1;
}
.sectionHero .bottomCont p {
    font-size: 16px;
    color: color-mix(in srgb, var(--current-color-1) 55%, transparent);
    max-width: 380px;
    line-height: 28px;
    font-weight: 390;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}
.sectionHero .bottomCont .buttonsCont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.8s 1.5s forwards;
}
.sectionHero .bottomCont .buttonsCont a {
    font-family: var(--font-head);
    font-size: 12px;
    padding: 15px 25px;
    color: var(--current-color-6);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    transition: 0.3s ease;
}
.sectionHero .bottomCont .buttonsCont a.request {
    background-color: var(--current-color-5);
    padding: 15px 20px;
    color: var(--current-color-2);
}
.sectionHero .bottomCont .buttonsCont a:hover {
    color: var(--current-color-1);
}
@media (max-width: 1220px) {
    .sectionHero .topCont .titleCont span {
        font-size: 150px;
    }
}
@media (max-width: 920px) {
    .sectionHero .topCont .titleCont {
        max-width: 90%;
    }
    .sectionHero .topCont .titleCont span {
        font-size: 120px;
    }

    .sectionHero .bottomCont {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}
@media (max-width: 565px) {
    .sectionHero .topCont {
        margin-top: 40px;
    }
    .sectionHero .topCont .titleCont span {
        font-size: 100px;
    }
    .sectionHero .bottomCont {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}
@media (max-width: 500px) {
    .sectionHero .topCont .titleCont span {
        font-size: 90px;
    }
}
@media (max-width: 430px) {
    .sectionHero .topCont .titleCont span {
        font-size: 70px;
    }
    .sectionHero .bottomCont .buttonsCont {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
}
@media (max-width: 380px) {
    .sectionHero .topCont p {
        font-size: 10px;
    }
    .sectionHero .topCont .titleCont {
        gap: 10px 10px;
    }
    .sectionHero .topCont .titleCont span {
        font-size: 62.5px;
    }
    .sectionHero .bottomCont p {
        font-size: 14px;
        line-height: 23px;
    }
}

/* SECTION STATS */
.sectionStats {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}
.sectionStats .marqueeCont {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0 20px;
    background-color: var(--current-color-5);
}
.sectionStats .marqueeCont .marquee {
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: marqueeMove 45s linear infinite;
}
.sectionStats .marqueeCont .marquee span {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    color: var(--current-color-2);
    padding: 10px 40px;
}
.sectionStats .marqueeCont .marquee span label {
    color: var(--current-color-1);
}
@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.sectionStats .statsCont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    height: auto;
    padding: var(--generic-padding-vertical) var(--generic-padding-side);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.sectionStats .statsCont .stat {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
    border-right: solid 1px var(--border-color);
    opacity: 0;
}
.sectionStats .statsCont .stat#stat1.visible {
    animation: fadeUp 0.4s 0.1s forwards;
}
.sectionStats .statsCont .stat#stat2.visible {
    animation: fadeUp 0.4s 0.2s forwards;
}
.sectionStats .statsCont .stat#stat3.visible {
    animation: fadeUp 0.4s 0.3s forwards;
}
.sectionStats .statsCont .stat#stat4.visible {
    animation: fadeUp 0.4s 0.4s forwards;
}
.sectionStats .statsCont .stat:last-child {
    border-right: none;
}
.sectionStats .statsCont .stat .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: var(--font-display);
    font-size: 75px;
    color: var(--current-color-1);
}
.sectionStats .statsCont .stat .value span {
    color: var(--current-color-5);
}
.sectionStats .statsCont .stat .text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--current-color-6);
}
@media (max-width: 920px) {
    .sectionStats .statsCont {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectionStats .statsCont .stat:nth-child(even) {
        border-right: none;
    }
}
@media (max-width: 400px) {
    .sectionStats .statsCont {
        grid-template-columns: 1fr;
    }
    .sectionStats .statsCont .stat {
        border-right: none;
        border-bottom: solid 1px var(--border-color);
    }
    .sectionStats .statsCont .stat:last-child {
        border-bottom: none;
    }
}

/* SECTION SERVICES */
.sectionServices {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: var(--generic-padding-vertical) var(--generic-padding-side);
    gap: 30px;
    border-bottom: solid 1px var(--border-color);
}
.sectionServices .titleCont {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    width: 100%;
    height: auto;
}
.sectionServices .titleCont .title {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    opacity: 0;
}
.sectionServices .titleCont .title#titleServices.visible {
    animation: fadeUp 0.4s 0.1s forwards;
}
.sectionServices .titleCont .title p {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-5);
    font-size: 12px;
    opacity: 1;
}
.sectionServices .titleCont .title div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sectionServices .titleCont .title div span {
    font-family: var(--font-head);
    font-size: 60px;
    color: var(--current-color-1);
    font-weight: 800;
    line-height: 1;
}
.sectionServices .titleCont .title div span:nth-child(even) {
    color: var(--current-color-5);
}
.sectionServices .titleCont p {
    max-width: 320px;
    color: var(--current-color-6);
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0;
}
.sectionServices .titleCont p#descriptionServices.visible {
    animation: fadeUp 0.4s 0.3s forwards;
}
.sectionServices .servicesCont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    height: auto;
}
.sectionServices .servicesCont .service {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
    gap: 20px;
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--current-color-1) 3%, transparent);
    transform: translateY(20px);
    transition: 0.3s ease;
}
.sectionServices .servicesCont .service#serviceCard.visible {
    animation: slideUp 0.4s 0.1s forwards;
}
.sectionServices .servicesCont .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--current-color-5) 8%, transparent), transparent 60%);
    opacity: 0;
    transition: 0.4s ease;
}
.sectionServices .servicesCont .service:hover {
    border-color: color-mix(in srgb, var(--current-color-5) 25%, transparent);
    transform: translateY(-3px);
}
.sectionServices .servicesCont .service:hover::before {
    opacity: 1;
}
.sectionServices .servicesCont .service .num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 60px;
    color: color-mix(in srgb, var(--current-color-1) 6%, transparent);
    line-height: 1;
    transition: 0.3s ease;
}
.sectionServices .servicesCont .service:hover .num {
    color: color-mix(in srgb, var(--current-color-5) 15%, transparent);
}
.sectionServices .servicesCont .service svg {
    stroke: var(--current-color-5);
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
}
.sectionServices .servicesCont .service h3 {
    font-family: var(--font-head);
    color: var(--current-color-1);
    font-size: 20px;
    font-weight: 700;
}
.sectionServices .servicesCont .service p {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 14px;
    line-height: 1.6;
}
.sectionServices .servicesCont .service .tagsCont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.sectionServices .servicesCont .service .tagsCont .tag {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--current-color-1) 45%, transparent);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 2px;
    text-wrap: nowrap;
}
@media (max-width: 920px) {
    .sectionServices .titleCont {
        flex-direction: column;
        align-items: start;
    }
    .sectionServices .servicesCont {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 690px) {
    .sectionServices .titleCont .title div span {
        font-size: 50px;
    }
}
@media (max-width: 540px) {
    .sectionServices .titleCont .title div span {
        font-size: 38px;
    }
}
@media (max-width: 400px) {
    .sectionServices .titleCont .title div span {
        font-size: 30px;
    }
}


/* SECTION PROCESS */
.sectionProcess {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: var(--generic-padding-vertical) var(--generic-padding-side);
    border-bottom: solid 1px var(--border-color);
    gap: 30px;
}
.sectionProcess .titleCont {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
    height: auto;
    opacity: 0;
}
.sectionProcess .titleCont#titleProcess.visible {
    animation: fadeUp 0.4s 0.1s forwards;
}
.sectionProcess .titleCont p {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-5);
    font-size: 12px;
    opacity: 1;
}
.sectionProcess .titleCont div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 10px;
    max-width: 800px;
}
.sectionProcess .titleCont div span {
    font-family: var(--font-head);
    font-size: 60px;
    color: var(--current-color-1);
    font-weight: 800;
    line-height: 1;
}
.sectionProcess .titleCont div span:nth-child(3) {
    color: var(--current-color-5);
}
.sectionProcess .processCont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 100%;
    height: auto;
}
.sectionProcess .processCont .process {
    display: flex;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
    gap: 20px;
    padding: 40px;
    border-radius: 2px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(20px);
}
.sectionProcess .processCont .process:nth-child(3), .sectionProcess .processCont .process:nth-child(4) {
    border-bottom: none
}
.sectionProcess .processCont .process#processCard.visible {
    animation: slideUp 0.4s 0.1s forwards;
}
.sectionProcess .processCont .process .num {
    font-family: var(--font-display);
    font-size: 80px;
    color: color-mix(in srgb, var(--current-color-1) 6%, transparent);
    line-height: 1;
}
.sectionProcess .processCont .process h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--current-color-1);
}
.sectionProcess .processCont .process p {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .sectionProcess .titleCont div {
        max-width: 700px;
    }
    .sectionProcess .titleCont div span {
        font-size: 40px;
    }
}
@media (max-width: 700px) {
    .sectionProcess .titleCont div {
        max-width: 90%;
    }
    .sectionProcess .processCont {
        grid-template-columns: repeat(1, 1fr);
    }
    .sectionProcess .processCont .process:nth-child(3) {
        border-bottom: solid 1px var(--border-color);
    }
}
@media (max-width: 540px) {
    .sectionProcess .titleCont div span {
        font-size: 35px;
    }
}


/* SECTION US */
.sectionUs {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: var(--generic-padding-vertical) var(--generic-padding-side);
    border-bottom: solid 1px var(--border-color);
    gap: 30px;
}
.sectionUs .titleCont {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
    height: auto;
    opacity: 0;
}
.sectionUs .titleCont#titleUs.visible {
    animation: fadeUp 0.4s 0.1s forwards;
}
.sectionUs .titleCont p {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-5);
    font-size: 12px;
    opacity: 1;
}
.sectionUs .titleCont div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
}
.sectionUs .titleCont div span {
    font-family: var(--font-head);
    font-size: 60px;
    color: var(--current-color-1);
    font-weight: 800;
    line-height: 1;
}
.sectionUs .titleCont div span:nth-child(5) {
    color: var(--current-color-5);
}
.sectionUs .bottomCont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.sectionUs .bottomCont .infoCont {
    display: flex;
    flex-direction: row;
}
.sectionUs .bottomCont .infoCont .info {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 25px;
    padding: 30px;
    border-right: 1px solid var(--border-color);
    opacity: 0;
}
.sectionUs .bottomCont .infoCont .info#infoCard.visible {
    animation: fadeUp 0.4s 0.2s forwards;
}
.sectionUs .bottomCont .infoCont .info:last-child {
    border-right: none;
}
.sectionUs .bottomCont .infoCont .info svg {
    stroke: var(--current-color-5);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.sectionUs .bottomCont .infoCont .info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sectionUs .bottomCont .infoCont .info div h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
}
.sectionUs .bottomCont .infoCont .info div p {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .sectionUs .titleCont div {
        max-width: 500px;
    }
    .sectionUs .titleCont div span {
        font-size: 40px;
    }
    .sectionUs .bottomCont .infoCont {
        flex-direction: column;
    }
    .sectionUs .bottomCont .infoCont .info {
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .sectionUs .bottomCont .infoCont .info:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
@media (max-width: 540px) {
    .sectionUs .titleCont div span {
        font-size: 35px;
    }
}
@media (max-width: 450px) {
    .sectionUs .titleCont div span {
        font-size: 27px;
    }
}

/* SECTION CONTACT */
.sectionContact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: calc(var(--generic-padding-vertical) + 30px) var(--generic-padding-side);
    gap: 20px;
}
.sectionContact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, var(--current-color-6) 1px, transparent 1px),
        linear-gradient(to bottom, var(--current-color-6) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.1;
    animation: moveGrid 10s linear infinite;
    z-index: 0;
}
.sectionContact .orb {
    position: absolute;
    background-color: var(--current-color-5);
    width: 150px;
    height: 150px;
    border-radius: 100%;
    filter: blur(200px);
    z-index: 1;
}
.sectionContact h4 {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-5);
    font-size: 12px;
    opacity: 0;
}
.sectionContact h4#preTitleContact.visible {
    animation: fadeUp 0.4s 0.1s forwards;
}
.sectionContact h1 {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--current-color-1);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    max-width: 800px;
    text-wrap: wrap;
    opacity: 0;
}
.sectionContact h1#titleContact.visible {
    animation: fadeUp 0.4s 0.2s forwards;
}
.sectionContact p {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 500px;
    opacity: 0;
}
.sectionContact p#descriptionContact.visible {
    animation: fadeUp 0.4s 0.3s forwards;
}
.sectionContact .buttonsCont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
}
.sectionContact .buttonsCont#buttonsContact.visible {
    animation: fadeUp 0.4s 0.4s forwards;
}
.sectionContact .buttonsCont a {
    font-family: var(--font-head);
    font-size: 12px;
    padding: 20px 35px;
    color: var(--current-color-1);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    transition: 0.3s ease;
}
.sectionContact .buttonsCont a:first-child {
    background-color: var(--current-color-5);
    color: var(--current-color-2);
}
@media (max-width: 570px) {
    .sectionContact h1 {
        font-size: 80px;
    }
    .sectionContact .buttonsCont {
        flex-direction: column;
        width: 100%;
    }
}


/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 0px var(--generic-padding-side);
    background-color: var(--current-color-4);
}
footer .footerSectionsCont {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    width: 100%;
    height: auto;
    padding: var(--generic-padding-vertical) 0;
}
footer .footerSectionsCont .footerSection {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
footer .footerSectionsCont .footerSection .logo {
    width: 120px;
    height: auto;
    padding-bottom: 10px;
}
footer .footerSectionsCont .footerSection .socialCont {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
    margin-top: 20px;
}
footer .footerSectionsCont .footerSection .socialCont a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--current-color-6);
    padding: 10px;
    transition: 0.3s ease;
}
footer .footerSectionsCont .footerSection .socialCont a:hover {
    border-color: var(--current-color-5);
    color: var(--current-color-5);
}
footer .footerSectionsCont .footerSection p {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 14px;
    line-height: 1.6;
    max-width: 240px;
}
footer .footerSectionsCont .footerSection h5 {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--current-color-1);
    font-size: 12px;
    padding-bottom: 15px;
}
footer .footerSectionsCont .footerSection a {
    font-family: var(--font-body);
    color: var(--current-color-6);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    max-width: 300px;
}
footer .footerSectionsCont .footerSection a:hover {
    color: var(--current-color-1);
}
footer .footerSectionsCont .footerSection:last-child a {
    color: var(--current-color-5);
}
footer .footerSectionsCont .footerSection:last-child a:last-child {
    color: var(--current-color-6);
}
footer .footerSectionsCont .footerSection:last-child a:hover {
    color: var(--current-color-1);
}
footer .footerCopyrightCont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 35px 0;
    border-top: 1px solid var(--border-color);
}
footer .footerCopyrightCont p {
    font-family: var(--font-body);
    color: color-mix(in srgb, var(--current-color-6) 70%, var(--current-color-1) 0%);
    font-size: 12px;
}
footer .footerCopyrightCont label {
    font-family: var(--font-head);
    background-color: var(--current-color-5);
    color: var(--current-color-2);
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 1000px) {
    footer .footerSectionsCont {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 30px;
    }
    footer .footerCopyrightCont {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 550px) {
    footer .footerSectionsCont {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}