:root {
    --stormgray: #9d9d9c;
    --watermarkgray: #f9f9f9;
    --noble-blue: #1D629E;
    --fresh-blue: #1797d4;
    --mintgreen: #A1D4C8;
    --error-red: #e06666;
    --header-height: 115px;
    --content-page-header-height: 175px;
    font-size: 16px;
    --home-content-text-height: 0px;
    --footer-stylistics-scale: 1;
}


body, html {
    height: 100%;
    font-family: Outfit, sans-serif;
}

body {
    margin: 0;
    overscroll-behavior: none;
    overflow: hidden;
}

.content-page-body {
    display: flex;
    overflow: visible;
    flex-direction: column;
}

.content-page-body > * {
    flex-grow: 1;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
ul:first-child,
p:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
ul:last-child,
p:last-child {
    margin-bottom: 0;
}


h1 {
    position: relative;
    display: inline-block;
    font-size: 2.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

a {
    color: var(--noble-blue);
    transition: color .5s;
}

a:hover {
    color: var(--fresh-blue);
}

a.breadcrumbs:hover {
    color: black;
}

.highlighted {
    position: relative;
}

h1::after, .highlighted::after {
    z-index: -1;
    position: absolute;
    bottom: 2px;
    left: -20px;
    content: "";
    width: 100%;
    height: 18px;
    background-color: var(--mintgreen);
}

.start-headline-second {
    position: relative;
}

.start-headline-second::after {
        z-index: -1;
        position: absolute;
        content: "";
        width: 100%;
        background-color: var(--mintgreen);
    height: 27px;
    left: -20px;
    bottom: -10px;
    opacity: 0;
    animation: home-animation-highlight-bar ease-in .5s forwards;
}

h2:not(.section-heading) {
    color: var(--noble-blue);
    text-transform: uppercase;
}

h2.section-heading {
    position: relative;
    display: inline-block;
    font-size: 2.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

h2.section-heading::after {
    z-index: -1;
    position: absolute;
    bottom: 2px;
    left: -20px;
    content: "";
    width: 100%;
    height: 18px;
    background-color: var(--mintgreen);
}


p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5rem;
    font-size: 1.15rem;
}

b, h1 {
    font-weight: 600;
}


header {
    height: var(--header-height);
    position: relative;
}

.home-animation {
    display: inline-block;
}

.home-animation > span {
    transform: translateY(calc(50%));
    -webkit-transform: translateY(calc(50%));
    -moz-transform: translateY(calc(50%));
    display: inline-block;
    animation: home-animation .5s forwards;
    animation-delay: inherit;
    transition: transform .5s;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    opacity: 0;
}

.highlighted::after {
    transform: translateY(calc(100% - 10px));
    -webkit-transform: translateY(calc(100% - 10px));
    -moz-transform: translateY(calc(100% - 10px));
    opacity: 0;
    animation: home-animation-highlight-bar ease-in .5s forwards;
}

@keyframes home-animation {
    0% {
        transform: translateY(calc(50% + 20px));
        -webkit-transform: translateY(calc(50% + 20px));
        -moz-transform: translateY(calc(50% + 20px));
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
    }
}


@keyframes home-animation-highlight-bar {
    0% {
        transform: translateY(calc(100%));
        -webkit-transform: translateY(calc(100%));
        -moz-transform: translateY(calc(100%));
    }

    100% {
        opacity: 1;
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
    }
}

@media (max-width: 1550px) and (min-width: 1260px) {
    header {
        transition: transform .5s;
        -webkit-transition: -webkit-transform .5s;
        -moz-transition: -moz-transform .5s;

    }

    body:has(footer.open) header {
        transform: translateX(-350px);
        -webkit-transform: translateX(-350px);
        -moz-transform: translateX(-350px);
    }
}


.header-logo {
    position: absolute;
    left: 50px;
    bottom: -5px;
    width: 300px;
    z-index: 5;
}

.content-page-header .header-logo {
    bottom: 60px;
}

.header-logo img {
    width: 300px;
}

nav {
    position: absolute;
    bottom: -6px;
    left: 420px;
}


nav a {
    font-size: 1.3rem;
    text-transform: uppercase;
    padding-left: 15px;
    margin-right: 40px;
    position: relative;
    color: black;
    text-decoration: none;
    transition: color .25s;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
}

nav a:hover {
    color: var(--noble-blue);

}

nav a.current-menu-item {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
}

nav a.current-menu-item {
    color: var(--noble-blue);
}

nav .icon {
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
    display: none;
}

nav a.current-menu-item .icon {
    display: inline;
}

.breadcrumbs {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    gap: 10px;
    display: flex;
    align-items: center;
}

.content-page {
    padding: 4rem 6rem;
}

.content-page-content {
    max-width: 100ch;
}


main {
    width: 100%;
    height: calc(100% - var(--header-height));
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;

}

.content-page-main .content-page {
    padding-top: 8rem;
}

.content-page-main {
    padding-top: 125px;
    overflow: visible;
    display: block;
    height: unset;
}

.content-page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: var(--content-page-header-height);
}

.header-scroll-blur-content-page {
    z-index: 1;
    position: fixed;
    background-color: rgba(255, 255, 255, .85);
    height: var(--content-page-header-height);
    width: 100%;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}


.content-page-header nav {
    bottom: 55px;
}

.custom-scroll-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--noble-blue);
    height: 8px;
    /*
    transition: width .5s;
    -webkit-transition: width .5s;
    -moz-transition: width .5s;
     */

    z-index: 1;
}

.custom-scroll-bar.no-transition {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
}

*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

section {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.figurative-background {
    position: fixed;
    bottom: 0;
    right: -100px;
    z-index: -1;
    width: 1150px;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


/* Services Section START*/

#services {
    padding: 4rem 6rem;
}

.services-body-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.services-body-content {
    display: flex;
    flex-direction: row;
    gap: 240px;
}

.services-text-left {
    max-width: 450px;
}

button:focus-within, .services-button:focus-within {
    color: black;
}

button, .services-button {
    cursor: pointer;
    color: black;
    background-color: var(--mintgreen);
    padding: 0.625rem 1.875rem;
    border: none;
    margin-top: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    text-decoration: none;
}

.services-button {
    display: inline-block;
}

button:hover, .services-button:hover {
    background-color: #66C1AC;
    color: black;

}

button:disabled {
    background-color: var(--stormgray);
    cursor: default;
}

.services-background-number {

}

.services-text-wrapper {
    counter-reset: span;

}

.services-text {
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    color: var(--noble-blue);
    position: relative;
    padding-bottom: 1.875rem;
    font-weight: 600;
}

.services-text::before {
    counter-increment: span;
    font-weight: 700;
    bottom: 1.2rem;
    left: 5px;
    color: #E6E6E6;
    font-size: 4rem;
    position: absolute;
    z-index: -1;
    content: "0" counter(span);
    transform: translateX(-4.5rem);
    -webkit-transform: translateX(-4.5rem);
    -moz-transform: translateX(-4.5rem);

}

.services-image-people {
    float: right;
    width: 26.125rem;
    margin-bottom: 3rem;
    -webkit-transform: scaleX(-1) translateX(-100px) translateY(-50px);
    -moz-transform: scaleX(-1) translateX(-100px) translateY(-50px);
    transform: scaleX(-1) translateX(-100px) translateY(-50px);
}


/* Services Section END */
/* Employee Section START */

#about {
    padding: 4rem 6rem;
}

.about-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.about-employee-section-wrapper {
    padding-top: 2.5rem;
    display: flex;
    gap: 5rem;
}

.width-limit {
    max-width: 42.5rem;
}

.about-employee-section {
    display: flex;
    flex-direction: column;
}

.about-employee-image {
    width: 9.75rem;
    background-size: cover;
    object-fit: fill;
}

.about-employee-tasks {
    display: flex;
    flex-direction: column;
}

.about-employee-tasks > span {
    font-size: 1.15rem;
}


.about-employee-title {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Employee Section END */

/* REFERENCES Section START */
#references {
    padding: 4rem 0 4rem 6rem;
    width: unset;
    min-width: calc(100% + 600px);
    position: relative;
    hyphens: auto;
}

#references > h1, #references > .section-heading {
    margin-bottom: 4rem;
}

.references-wrapper {
    position: relative;
    --offset: 0;
    height: calc(100% + 500px);
    width: calc(100vw - 6rem);
    transform: translateY(-250px);
    overflow: hidden;
}

.references-static-content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.references-moving-content-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
}

.references-moving-content {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(calc(var(--offset) * -100%));
    -webkit-transform: translateY(calc(var(--offset) * -100%));
    -moz-transform: translateY(calc(var(--offset) * -100%));
    transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1);
    -webkit-transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1);
    -moz-transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1);
    z-index: 1;
    flex-shrink: 0;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.05, 0.67, 0.37, 1) !important;
}

.references-image-container {
    background-color: var(--mintgreen);
    height: calc(100% - 500px);
    width: 330px;
    position: absolute;
    left: 0;
    bottom: 250px;
}

.references-container-content {
    position: relative;
    top: 60px;
    left: calc(50% + 50px);
    align-self: center;
    width: 600px;
    transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
    -webkit-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
    -moz-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
}

.references-image {
    position: absolute;
    height: 600px;
    bottom: calc(50% + 25px);
    left: -30px;
    transform: translateY(50%) translateX(-30px);
    -webkit-transform: translateY(50%) translateX(-30px);
    -moz-transform: translateY(50%) translateX(-30px);
}

.references-title {
    color: var(--noble-blue);
    font-size: 2.5rem;
    font-weight: 600;
}

.references-subtitle {
    font-size: 1.55rem;
}

.references-customer {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.references-text {
    margin-top: 30px;
    font-size: 1.25rem;
}

.references-container-content button {
    margin-top: 30px;
    width: 100%;
}


.reference-mockup-mac {
    position: relative;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
}

.reference-mockup-container {
    position: absolute;
    right: -800px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    width: 1200px;
    opacity: .75;
    top: 50%;
}

.reference-mockup {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
    width: 100%;

}

.references-caret {
    cursor: pointer;
    left: 165px;
    position: absolute;
    z-index: 3;
}

.references-caret img {
}

.references-caret-up {
    transform: translateX(-50%) translateY(50%);
    -webkit-transform: translateX(-50%) translateY(50%);
    -moz-transform: translateX(-50%) translateY(50%);
    top: 250px;
}

.references-caret-down {
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    bottom: 300px;
    animation: caret-animation-down 2s infinite ease-in;
    -webkit-animation: caret-animation-down 2s infinite ease-in .1s;
}

@keyframes caret-animation-down {

    0%, 100% {
        transform: translateX(-50%) translateY(calc(-50%));
        -webkit-transform: translateX(-50%) translateY(calc(-50%));
        -moz-transform: translateX(-50%) translateY(calc(-50%));

    }

    50% {
        transform: translateX(-50%) translateY(calc(-50% - 20px));
        -webkit-transform: translateX(-50%) translateY(calc(-50% - 20px));
        -moz-transform: translateX(-50%) translateY(calc(-50% - 20px));
    }

}


/* REFERENCES Section END */


#home {
    padding-left: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.home-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.home-page-title {
    font-size: 4.5em;
    line-height: 4.9rem;
}

.home-page-title.first::after {
    content: unset;
}

.home-page-title.first {

}

.home-page-title.second::after {
    height: 27px;
    left: -20px;
    bottom: -10px;
    opacity: 0;
    animation: home-animation-highlight-bar ease-in .5s forwards;
}

.home-page-title.second {
    margin-top: 0;
}

.home-page-text {
    max-width: 70%;
    font-size: 2.25em;
    color: var(--noble-blue);
    line-height: 2.6rem;
    margin-top: 0;
}

.home-scroll-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    left: calc(100vw - 120px);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
}

.home-scroll-arrow svg, .home-scroll-pointer svg {
    overflow: visible;
}

.home-scroll-arrow span .arrow {
    animation: caret-animation-fade-in .3s forwards ease-in .75s;
    display: inline-block;
    opacity: 0;
    transform: translateX(-160px);
    -webkit-transform: translateX(-160px);
    -moz-transform: translateX(-160px);
}

.home-scroll-arrow span .mouse {
    transform: translateX(-80px);
    -webkit-transform: translateX(-80px);
    -moz-transform: translateX(-80px);
    opacity: 0;
    animation: mouse-animation-fade-in ease-in-out forwards .3s 1.75s, mouse-animation-fade-out forwards .3s 6.75s;
}

.home-scroll-arrow span .mouse-wheel {
    animation: mouse-wheel-animation 2.5s 1.75s 2, mouse-animation-fade-in ease-in-out .3s 1.75s, mouse-animation-fade-out forwards .3s 6.75s;
}

@keyframes mouse-wheel-animation {
    0%, 100% {
        opacity: inherit;
        transform: translateY(0) translateX(-80px);
        -webkit-transform: translateY(0) translateX(-80px);
        -moz-transform: translateY(0) translateX(-80px);

    }

    50% {
        opacity: inherit;
        transform: translateY(15px) translateX(-80px);
        -webkit-transform: translateY(15px) translateX(-80px);
        -moz-transform: translateY(15px) translateX(-80px);
    }
}

@keyframes mouse-animation-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-animation-fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.home-scroll-arrow span .pointer {
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    opacity: 0;
    animation: mouse-animation-fade-in ease-in-out forwards .3s 1.75s, mouse-animation-fade-out forwards .3s 6.75s;
}

.home-scroll-arrow span .arrows {
    animation: pointer-animation 2.5s 1.75s infinite, mouse-animation-fade-in ease-in-out .3s 1.75s, mouse-animation-fade-out forwards .3s 6.75s;
}

.home-scroll-pointer {
    display: none;
}

@media (hover: none) {
    .home-scroll-mouse {
        display: none;
    }

    .home-scroll-pointer {
        display: block;
    }

}

@keyframes pointer-animation {
    0%, 100% {
        opacity: inherit;
        transform: translateX(-120px);
        -webkit-transform: translateX(-120px);
        -moz-transform: translateX(-120px);

    }

    50% {
        opacity: inherit;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
    }
}

@keyframes caret-animation-fade-in {
    0% {
        transform: translateX(-160px);
        -webkit-transform: translateX(-160px);
        -moz-transform: translateX(-160px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        opacity: 1;
    }
}

@keyframes caret-animation-right {

    0%, 100% {
        transform: translateY(-50%) translateX(calc(-50% - 20px));
        -webkit-transform: translateY(-50%) translateX(calc(-50% - 20px));
        -moz-transform: translateY(-50%) translateX(calc(-50% - 20px));

    }

    50% {
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        -moz-transform: translateY(-50%) translateX(-50%);
    }

}

#contact {
    padding: 4rem 6rem;
}

.contact-tabs {
    display: none;
}

.contact-content {
    height: 100%;
}

.contact-top-title {
    display: none;
    margin-bottom: 0 !important;
}

.contact-wrapper {
    display: flex;
    gap: 110px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    align-items: center;
}

.contact-content-right > h1 {
    display: none;
}

.contact-left {
    width: 520px;
    flex-grow: 0;
    flex-shrink: 0;
}

.contact-right {
    width: 730px;
    flex-grow: 0;
    flex-shrink: 0;
}

.contact-right p {
    margin-top: 3rem;
}

.contact-right img {
    width: 100%;
}

.contact-left h1 {
    margin-bottom: 2rem;
}

.contact-left h3 {
    margin-bottom: 2rem;
    margin-top: 0;
}

input[type=text], input[type=email], textarea {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    border-radius: 0;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    border: 2px solid #E6E6E6;
    box-sizing: border-box;
    outline: none;
    background: transparent;
}

input[type=text], input[type=email] {
    width: 100%;
    padding: 7px;
}

input[type=text]:focus-within, input[type=email]:focus-within, textarea:focus-within {
    border-color: var(--mintgreen);
}


input[type=text].wrong, input[type=email].wrong, textarea.wrong {
    border-color: var(--error-red);
}


textarea {
    padding: 7px;
    resize: none;
}

.input-wrapper:not(:first-child) {
    margin-top: 1rem;
}

.input-wrapper > input, .input-wrapper > textarea {
    display: block;
    margin-top: .5rem;
}

.input-wrapper > textarea {
    min-width: 100%;
    max-width: 100%;
    height: 200px;
}

.error-output {
    color: var(--error-red);
    font-size: .8rem;
}

.error-output.hide {
    display: none;
}

.contact-message-output {
    margin-top: 1rem;
    color: var(--noble-blue);
    display: none;
}

.contact-message-output.error {
    color: var(--error-red);
}

.contact-agree {
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    gap: 9px;
}

.checkbox-wrapper {
    position: relative;
    padding-right: 13px;
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
}


.checkbox-wrapper input {
    position: absolute;
    left: 0;
    top: 0;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
}

.checkbox-wrapper input::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    padding-top: 1px;
    box-sizing: border-box;
    border: 2px solid #E6E6E6;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.form-area.disabled .checkbox-wrapper input::before {
    background-color: #eeeeee;
    border: 1px solid #d2d2d2;
}

.checkbox-wrapper input:checked::before {
    background-color: var(--noble-blue);
    border: none;
}

.checkbox-check {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    pointer-events: none;
    justify-content: center;
}

.checkbox-wrapper input:checked + .checkbox-check {
    visibility: visible;
    opacity: 1;
}


.contact-agree a {
    color: var(--noble-blue)
}

.contact-agree label {
    font-size: 0.9rem;
}

.contact-agree > * {
    cursor: pointer;
    display: inline;
}

.contact-left button {
    margin-top: 2rem;
    width: 100%;
}

.content-page-body .footer-stylistics {
    position: fixed;
}

.footer-stylistics.mobile.footer {
    position: absolute;
    width: 100%;
    right: 0;
    left: unset;
    display: block;
    transform: rotateX(180deg) translateY(calc(100% - 5px));
    -webkit-transform: rotateX(180deg) translateY(calc(100% - 5px));
    -moz-transform: rotateX(180deg) translateY(calc(100% - 5px));
    z-index: -1;
}

.footer-stylistics.mobile.footer > div {
}

.footer-stylistics.mobile.bottom {
    bottom: 0;
    top: unset;
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
}


.footer-stylistics.bottom {
    bottom: 0;
    top: unset;
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
}

.bottom .footer-stylistic-3 {
    background-color: var(--fresh-blue);
}

.footer-stylistics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

footer * {
    font-size: 17px;
    line-height: unset;
}

.content-page-footer * {
    font-size: 1rem;
}

.footer-stylistics > div {
    transition: transform .5s, top .5s, right .5s, left .5s, bottom .5s, width .5s, height .5s;
    -webkit-transition: -webkit-transform .5s, top .5s, right .5s, left .5s, bottom .5s, width .5s, height .5s;
    -moz-transition: -moz-transform .5s, top .5s, right .5s, left .5s, bottom .5s, width .5s, height .5s;
    transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    position: absolute;
    width: 100px;
    height: 5000px;
    pointer-events: auto;
}

.open .footer-stylistics > div {
    width: 500px;
    height: calc(100% + 100px);
}

.footer-stylistic-1 {
    background-color: #E6E6E6;
}

.footer-stylistic-2 {
    background-color: var(--mintgreen);
}

.footer-stylistic-3 {
    background-color: var(--noble-blue);
}

:not(.open) .footer-stylistic-1 {
    bottom: calc(100% - 78px);
    right: -800px;
    transform: rotate(-87.44deg);
    -webkit-transform: rotate(-87.44deg);
    -moz-transform: rotate(-87.44deg);
}

:not(.open) .footer-stylistic-2 {
    bottom: calc(100% - 1278px);
    right: -800px;
    transform: rotate(-32.18deg);
    -webkit-transform: rotate(-32.18deg);
    -moz-transform: rotate(-32.18deg);
}

:not(.open) .footer-stylistic-3 {
    bottom: calc(100% - 205px);
    right: -1500px;
    transform: rotate(-84.19deg);
    -webkit-transform: rotate(-84.19deg);
    -moz-transform: rotate(-84.19deg);
}

.open .footer-stylistics > div {
    width: 500px;
    height: 5000px;
}

.open .footer-stylistic-1 {
    bottom: -500px;
    right: -50px;
    transform: rotate(2.56deg);
    -webkit-transform: rotate(2.56deg);
    -moz-transform: rotate(2.56deg);
}

.open .footer-stylistic-2 {
    bottom: -370px;
    right: 700px;
    transform: rotate(57.82deg);
    -webkit-transform: rotate(57.82deg);
    -moz-transform: rotate(57.82deg);
}

.open .footer-stylistic-3 {
    bottom: -500px;
    right: 0;
    transform: rotate(5.81deg);
    -webkit-transform: rotate(5.81deg);
    -moz-transform: rotate(5.81deg);
}

.footer-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 500;
    width: 30px;
    cursor: pointer;
    transition: visibility .3s, opacity .3s;
    -webkit-transition: visibility .3s, opacity .3s;
    -moz-transition: visibility .3s, opacity .3s;
}

.only-desktop.open .footer-open-icon {
    opacity: 0;
    visibility: hidden;
}

.only-desktop.open .footer-close-icon {
    opacity: 1;
    visibility: visible;
}

.footer-close-icon.hide {
    display: none;
}

.only-desktop:not(.open) .footer-open-icon {
    opacity: 1;
    visibility: visible;
}

.only-desktop:not(.open) .footer-close-icon {
    opacity: 0;
    visibility: hidden;
}

.footer-content {
    text-align: right;
    position: absolute;
    bottom: 40px;
    right: 45px;
    color: white;
    opacity: 0;
    z-index: 11;
    visibility: hidden;
    transition: visibility .3s, opacity .3s;
    -webkit-transition: visibility .3s, opacity .3s;
    -moz-transition: visibility .3s, opacity .3s;
}

.content-page-footer {
    position: relative;
    padding: 50px 64px 50px;
    background-color: var(--noble-blue);
}

.content-page-footer .footer-icon-mail {
    padding-left: 0;
}

.content-page-footer .footer-icon-phone {
    padding-left: 0;
}

.content-page-footer .footer-contact-info a {
    padding-left: 5px;
}

.footer-contact-line {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 5px;
}

.footer-second-section .footer-contact-line {
    flex-direction: row;
}

.footer-contact-line img {
    transform: translateY(2px);
}

.content-page-footer .footer-content {
    visibility: visible;
    opacity: 1;
    position: static;
    bottom: unset;
    right: unset;
    z-index: unset;
    text-align: unset;
    display: flex;
    align-items: center;
    gap: 250px;
}


.content-page-footer .footer-social {
    margin-top: 15px;
}

.content-page-footer .footer-social a:last-child {
    margin-left: 5px;
}

.content-page-footer .footer-logo {
    width: unset;
    height: 125px;
}

.content-page-footer .footer-social a {
    margin-left: 0;
}

.open .footer-content {
    opacity: 1;
    visibility: visible;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.footer-links a {
    text-transform: uppercase;
    margin-left: 30px;
    line-height: 40px;
}

.content-page-footer .footer-links a {
    line-height: unset;
}

.content-page-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.footer-second-section {
    margin-top: 170px;
}

.content-page-footer .footer-links a {
    margin-left: 0;
}

.footer-links, .footer-contact-info, .footer-address {
    margin-top: 45px;
}

.footer-logo {
    width: 170px;
    margin-right: -12px;
}

.footer-social a {
    margin-left: 15px;
}

.footer-icon-phone {
    width: 18px;
    padding-left: 5px;
}

.footer-icon-mail {
    width: 18px;
    padding-left: 5px;
}

/* Employee Section START */

.about-employee-name {
    padding-top: 0.75rem;
    color: var(--noble-blue);
    font-size: 1.125rem;
    font-weight: 600;
}

.about-employee-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-stylistics-svg {
    width: 100%;
    z-index: -1;
    display: block !important;
    flex-grow: 0;
    transform: translateY(2px);
}

/* Employee Section END */

@media (min-width: 1500px) and (min-height: 1300px) {
    :root {
        font-size: 20px;
    }

    .services-text-left {
        max-width: 600px;
    }


    .services-image-people {
        -moz-transform: scaleX(-1) translateX(-100px) translateY(50px);
        -webkit-transform: scaleX(-1) translateX(-100px) translateY(50px);
        transform: scaleX(-1) translateX(-100px) translateY(50px);
    }


}

@media (min-width: 2000px) and (min-height: 1500px) {
    :root {
        font-size: 22px;
    }

    .services-text-left {
        max-width: 1000px;
    }

    .services-image-people {
        -moz-transform: scaleX(-1) translateX(-100px) translateY(50px);
        -webkit-transform: scaleX(-1) translateX(-100px) translateY(50px);
        transform: scaleX(-1) translateX(-100px) translateY(50px);
    }
}

@media (min-width: 2000px) {
    .services-body-content {
        gap: 500px;
    }

}

@media (min-width: 2500px) {
    .references-text {
        width: 800px;
    }

    .services-body-content {
        gap: 500px;
    }

}

@media (min-width: 1500px) {
    :root {
        font-size: 18px;
    }

    .home-page-title.second::after {
    }

    .services-text {
        font-size: 1.6rem;
    }


    .services-text-left {
        max-width: 600px;
    }

    .services-image-people {
        -moz-transform: scaleX(-1) translateX(-100px) translateY(50px);
        -webkit-transform: scaleX(-1) translateX(-100px) translateY(50px);
        transform: scaleX(-1) translateX(-100px) translateY(50px);
    }

}


@media (min-width: 2500px) {
    :root {
        font-size: 20px;
    }

    .services-text-left {
        max-width: 1000px;
    }

    .services-image-people {
        -moz-transform: scaleX(-1) translateX(-100px) translateY(50px);
        -webkit-transform: scaleX(-1) translateX(-100px) translateY(50px);
        transform: scaleX(-1) translateX(-100px) translateY(50px);
    }

}

@media (max-height: 1000px) {
    :root {
        font-size: 14px;
    }


    .contact-left, .contact-right {
        height: 530px !important;
    }
}

@media (min-width: 2000px) {
    .references-container-content {
        left: 45%;
    }

    .reference-mockup-container {
        right: -600px;
    }

    .services-text-right, .services-text {
        font-size: 2rem;
    }

    .services-text::before {
        font-size: 5rem;
        left: 0;
        bottom: 2rem;
    }

    .services-text {
        padding-bottom: 3rem;
    }

}

@media (min-width: 1550px) {
    .services-text-right, .services-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 1900px), (max-height: 801px) {


    .contact-wrapper > :not(.current) {
        opacity: 0;
        visibility: hidden;
        position: absolute;
    }

    .contact-wrapper > .current {
        opacity: 1;
        visibility: visible;
    }

    .contact-wrapper > * {
        transition: opacity .5s;
    }


    .contact-left, .contact-right {
        height: 650px;
    }

    .contact-right {
        margin-top: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-content-right > h1 {
        display: unset;
    }

    .contact-top-title {
        display: unset;
    }

    .contact-bottom-title {
        display: none;
    }

    .contact-content {
        height: unset;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-wrapper {
        position: relative;
        transform: none;
        top: unset;
        -webkit-transform: none;
        -moz-transform: none;
        align-items: center;
    }

    .contact-tabs {
        display: flex;
        margin-top: 30px;
        margin-bottom: 15px;
        position: relative;
        width: 360px;
        background-color: #e6e6e6;
    }


    .contact-tab {
        padding: 10px;
        width: 180px;
        cursor: pointer;
        text-align: center;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
    }

    .contact-tab.current {
        font-weight: bold;
    }

    .contact-tab-current-overlay {
        top: 2px;
        left: 2px;
        position: absolute;
        width: 176px;
        background-color: var(--mintgreen);
        height: calc(100% - 4px);
        transition: left .5s;
    }

    .contact-tab-current-overlay.right {
        left: 182px;
    }


    @media (min-width: 1400px) {
        .contact-wrapper {
            display: flex !important;
        }
    }
}

@media (max-width: 1900px) {
    .references-container-content {
        max-width: 600px;
    }
}


@media (max-width: 1580px) {

    #references {
        min-width: calc(100% + 400px);
    }

    .references-container-content {
        -webkit-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
        -moz-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
        transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
    }

    .references-container-content {
    }

    .reference-mockup-container {
        right: -650px;
        width: 1000px;
    }

    .references-container-content button {
        width: 100%;
    }

    .contact-right {
        width: 600px;
    }


    .contact-left {
        width: 430px;
    }
}

@media (max-width: 1550px) {
    .services-text {
        font-size: 1.8rem;
    }

    .references-container-content {
        width: 500px;
    }
}

@media (max-width: 1480px) {

    .references-container-content {
    }
}

@media (max-width: 1390px) {
    .services-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 1350px), (max-height: 850px) {
    .figurative-background {
        width: 1000px;
    }
}

@media (max-width: 1380px) {

    .references-text, .references-container-content button {
    }

    #references {
        min-width: calc(100% + 250px);
    }

    .references-container-content {
        width: 500px;
        transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
        -webkit-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
        -moz-transform: translateY(calc(var(--header-height) * -1)) translateX(calc(-50%));
        left: calc(50% + 125px);
    }


    .reference-mockup-container {
        right: -450px;
        width: 700px;
    }

    .contact-right {
        width: 600px;
    }

    .contact-left {
        width: 430px;
    }
}


@media (min-height: 1000px) {
    .references-container-half > .references-container-content {
        top: 250px;
    }

    .references-image-half {
        left: 160px;
    }
}

@media (max-height: 970px) {
    .references-image {
        height: 400px;
        left: 30px;
    }

    .references-container-content {
        left: calc(50%);
    }

    .references-caret img {
        width: 80px;

    }

    .references-caret {
        left: 125px;
    }

    .references-image-container {
        width: 250px;
    }
}

@media (max-height: 900px) {
    .services-image-people {
        width: 22rem;
        transform: scaleX(-1) translateX(-50px);
        -webkit-transform: scaleX(-1) translateX(-50px);
        -moz-transform: scaleX(-1) translateX(-50px);
    }
}

@media (max-height: 860px) {
    .references-image {
        height: 300px;
        left: 30px;
    }

    .references-caret {
        left: 100px;
    }

    .references-caret img {
        width: 70px;

    }

    .references-image-container {
        width: 200px;
    }

}


@media (max-width: 1250px) {

    .reference-mockup-mac, .reference-mockup {
        display: none;
    }

}

@media (max-width: 1200px) {
    .content-page-footer .footer-content {
        justify-content: space-between;
        gap: unset;
    }

}

@media (max-height: 750px) {
    .figurative-background {
        width: 700px;
    }
}

@media (min-width: 1261px) and (min-height: 801px) {
    .only-mobile {
        display: none !important;
    }

    .references-moving-content:not(.current) {
        opacity: 0;
        transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1), .3s opacity linear;
        -webkit-transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1), .3s opacity linear;
        -moz-transition: 1s cubic-bezier(0.05, 0.67, 0.37, 1), .3s opacity linear;
    }
}

@media (max-width: 1260px), (max-height: 800px) {
    :root {
        --mobile-content-margin: 100px;
        --header-height: 80px;
        --content-page-header-height: 80px;
    }

    body, main {
        overflow: visible;
        overflow-x: hidden;
    }

    h1::after {
        left: -10px;
        bottom: -2px;
    }

    .section-heading::after {
        left: -10px !important;
        bottom: -2px !important;
    }

    .checkbox-wrapper input::before, .checkbox-check {
    }

    .contact-agree {
        gap: 8px;
    }

    .contact-agree label {
        font-size: unset;
    }

    .only-mobile {
        display: unset;
    }

    .content-page-footer.only-mobile {
        display: block;
    }

    .only-desktop {
        display: none !important;
    }


    .footer-stylistic-1 {
        background-color: #E6E6E6;
    }


    #contact {
        min-width: unset;
    }


    .contact-wrapper > :not(.current) {
        display: block;
        opacity: 1;
        visibility: visible;
        position: static;
    }

    .contact-content-right > h1 {
        display: unset;
    }

    .contact-top-title {
        display: unset;
    }

    .contact-bottom-title {
        display: none;
    }

    .contact-content {
        height: unset;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-wrapper {
        display: block;
    }

    .contact-tabs {
        display: none;
    }

    .contact-left, .contact-right {
        height: unset !important;
    }

    .content-page-main .content-page {
        padding-top: 0;
    }


    .mobile-menu-bars, .mobile-menu {
        z-index: 100;
        display: block;
    }

    .header-scroll-blur.hide {
        display: none;
    }

    .header-scroll-blur {
        z-index: 4;
        position: fixed;
        background-color: rgba(255, 255, 255, .85);
        height: var(--header-height);
        width: 100%;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }


    .start-logo-placeholder {
        visibility: hidden;
        opacity: 0;
        height: 60px;
        top: 234px;
        left: 30px;
    }


    .start-logo-mobile.header.init {
        transition-duration: 0s;
    }

    .start-logo-mobile.header {
        position: absolute;
        top: calc(var(--header-height) / 2);
        left: 3rem;
        height: 31px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
    }

    .start-logo-mobile.only-menu {
        pointer-events: none;
    }

    .start-logo-mobile.only-menu.visible {
        pointer-events: visible;
    }

    .start-logo-mobile.only-menu img {
        opacity: 0;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
    }

    .start-logo-mobile.only-menu.visible img {
        opacity: 1;
        visibility: visible;
    }

    .start-logo-mobile.animated {
        transition: .5s !important;
        -webkit-transition: .5s !important;
        -moz-transition: .5s !important;
    }

    .start-logo-mobile.home img {
        transition: opacity .5s;
        -moz-transition: opacity .5s;
        -webkit-transition: opacity .5s;
        opacity: 1;
    }

    .start-logo-mobile.home.hidden img {
        opacity: 0;
        transition: opacity .5s;
        -moz-transition: opacity .5s;
        -webkit-transition: opacity .5s;

    }

    .home-page-title, .home-page-text {
    }

    main {
        display: block;
        height: fit-content;
    }

    #home {
        padding: 3rem;
    }

    .figurative-background {
        width: 550px;
    }


    .home-page-title {
        margin-top: 0;
    }

    .home-page-text {
        max-width: unset;
    }

    .home-content {
        top: unset;
        position: relative;
        height: calc(100vh - var(--header-height));
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        display: flex;
        flex-direction: column;
        gap: var(--mobile-content-margin);
        justify-content: center;
    }

    .home-content-text {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-content-margin);
        justify-content: center;
    }

    .start-logo-mobile {
        height: 60px;
        display: inline-block;
        position: static;
        left: 3rem;
        z-index: 10;
        width: 0;
        flex-grow: 0;
    }

    .start-logo-mobile img {
        height: 100%;
    }

    .home-content-text {
        width: calc(100% - 6rem);
    }

    .home-page-text {


    }

    /* Services */
    #services {
        padding: 3rem;
    }

    .services-body-content {
        gap: 150px;
    }

    .services-body-wrapper {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
    }

    .services-image-people {
        width: 18rem;
        margin-top: 3rem;
        padding-left: 4rem;
    }

    .services-text-right {
        padding-left: 30px;
    }

    /* Services */
    .about-content {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
    }


    #contact {
        display: block;
    }

    .contact-content {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
    }

    .contact-right {
        margin-top: 4rem;
    }

    .contact-right p {
        margin-top: 45px;
    }

    /* References */
    /* References */
    /* ABOUT */
    #about {
        padding: 3rem;
    }

    .references-image-container {
        height: 200px;
        width: 250px;
        left: 0;
        bottom: unset;
    }

    #references {
        padding: 3rem 0;
        min-width: unset;
    }

    .references-wrapper {
        height: 100%;
        transform: unset;
        width: 100%;
    }

    .references-moving-content-list {
        flex-direction: row;
        width: 100%;
        display: block;
    }

    .references-container-content {
        padding-left: 3rem;
    }

    .references-image {
        height: 250px;
        top: 100px;
        left: 100px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
    }

    .references-moving-content {
        display: block;
    }

    .references-container-content {
        position: static;
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        margin-top: 230px;
        max-width: calc(100% - 3rem);
        hyphens: auto;
    }

    .references-title {
        font-size: 1.75rem;
    }

    .references-subtitle {
        font-size: 1.15rem;
    }

    #references > h1, #references > .section-heading {
        margin-left: 3rem;
    }

    .references-caret {
        right: 30px;
        left: unset;
        top: 100px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
    }

    .references-caret-left {
        transform: rotate(180deg) translateY(50%);
        -webkit-transform: rotate(180deg) translateY(50%);
        -moz-transform: rotate(180deg) translateY(50%);
    }

    .references-caret img {
        width: 30px;
    }

    /* ABOUT */
    #about {
        padding-right: 0;
    }

    .about-employee-section-background {
        background-color: var(--mintgreen);
        left: -3rem;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        width: 170px;
        height: 150px;
        z-index: 1;
        position: absolute;
    }

    .about-employee-name, .about-employee-title {
        font-size: 1.3rem;
    }

    .about-employee-tasks {
    }

    .about-employee-name {
        padding-top: 2rem;
    }

    .about-employee-section-wrapper {
        position: relative;
        margin-top: 30px;

        width: 100%;
    }

    .about-employee-section {
        height: 250px;
    }

    .about-employee-image {
        width: 150px;
    }

    .about-text {
        padding-right: 3rem;
    }

    .employee-caret-right {
        bottom: 125px;
        top: unset;
        transform: translateY(50%);
        -webkit-transform: translateY(50%);
        -moz-transform: translateY(50%);
    }

    .home-page-title .highlighted::after {
        height: 20px;
        bottom: 0;
        left: -10px;
    }

    .home-page-title {
        line-height: 1;
    }


    .home-page-title.smaller {
        display: none;
    }

    .home-page-title.second {
    }


    /* CONTACT */
    #contact {
        padding: 3rem;
        padding-bottom: 0;
    }


    .contact-content {
        display: block;
    }

    .contact-left {
        width: auto;
    }

    .contact-right {
        width: auto;
    }

    /* CONTACT */
    .footer-stylistics {
        display: none;
    }

    .footer-stylistics {
        position: fixed;
    }

    .footer-stylistics.mobile {
        left: unset;
        right: -35px;
        display: block;
        transform: translateY(-64px);
        -webkit-transform: translateY(-64px);
        -moz-transform: translateY(-64px);
        width: calc(100% + 35px);
    }

    .mobile .footer-stylistic-2 {
        bottom: calc(100% - 1303px);
    }

    .mobile .footer-stylistic-3 {
        bottom: calc(100% - 230px);
    }

    .mobile .footer-stylistic-1 {
        bottom: calc(100% - 114px);
    }

    .footer-toggle-button {
        display: none;
    }

    .header-phone-icon {
        z-index: 5;
        width: 27px;
        transform: translateY(2px);
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
    }

    .mobile-menu-bars {
        display: block;
        color: white;
        cursor: pointer;
    }

    .menu-bar {
        margin-top: 5px;
        height: 4px;
        background-color: black;
        width: 30px;
        transition: transform .3s;
        -webkit-transition: -webkit-transform .3s;
        -moz-transition: -moz-transform .3s;
    }

    .menu-bar-1 {
        margin-top: 0;
    }

    .menu-bar-2 {
        width: 25px;
        margin-left: 5px;
    }

    .mobile-menu-bars.open .menu-bar {
        background-color: black;
    }

    .mobile-menu-bars.open .menu-bar-2 {
        display: none;
    }

    .mobile-menu-bars.open .menu-bar-1 {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
    }

    .mobile-menu-bars.open .menu-bar-3 {
        margin-top: -4px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);

    }

    .header-logo {
        width: 100px;
        top: 50px;
        position: static;
        justify-self: flex-start;
    }

    .content-page-header .header-logo {
        width: 150px;
    }

    .mobile-header-buttons {
        margin-left: auto;
        display: flex;
        gap: 30px;
        align-items: center;
    }

    header {
        width: calc(100% - 5rem);
        position: fixed;
        z-index: 6;
        display: flex;
        gap: 20px;
        align-items: center;
        padding-left: 3rem;
    }

    .content-page-header {
        width: calc(100% - 5rem);
    }

    .services-text::before {
        font-size: 3rem;
        left: 30px;
        top: -20px;
    }

    nav {
        position: fixed;
        display: flex !important;
        flex-direction: column;
        left: 0;
        height: 0;
        overflow: hidden;
        top: var(--header-height);
        padding-left: 3rem;
        gap: 34px;
        background-color: rgba(255, 255, 255, .85);
        width: 100%;
        border-bottom: unset;
        transition: .5s;
        -moz-transition: .5s;
        -webkit-transition: .5s;
        justify-content: flex-start;
        z-index: 100;

    }

    nav.open {
        padding-top: 30px;
        padding-bottom: 80px;
        height: 250px;
        border-bottom: 7px solid var(--mintgreen);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    nav a {
        font-size: 1.5rem;
    }


    #home {
        position: relative;
        min-height: 100vh;
    }

    .home-scroll-arrow-mobile {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        animation: caret-animation-down 2s ease-in infinite;
        cursor: pointer;
    }


    .home-scroll-arrow-mobile span {
        animation: caret-animation-fade-in-down .3s forwards ease-in .75s;
        display: inline-block;
        opacity: 0;
    }

    @keyframes caret-animation-fade-in-down {
        0% {
            transform: translateY(-100%);
            -webkit-transform: translateY(-100%);
            -moz-transform: translateY(-100%);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes caret-animation-down {
        0%, 100% {
            transform: translateY(calc(-50%));
            -webkit-transform: translateY(calc(-50%));
            -moz-transform: translateY(calc(-50%));

        }

        50% {
            transform: translateY(calc(-50% - 20px));
            -webkit-transform: translateY(calc(-50% - 20px));
            -moz-transform: translateY(calc(-50% - 20px));
        }

    }

    .figurative-background {
        min-width: 300px;
        width: 100%;
        max-width: 1000px;
    }

    .content-page {
        padding: 3rem;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .content-page h1 {
        hyphens: none;
        -webkit-hyphens: none;
    }

    .content-page-footer .footer-logo {
        height: 57px;
    }

    .content-page-footer .footer-content {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }

    .footer-second-section {
        margin-top: 0;
    }

    .footer-address {
        margin-top: 0;
    }

    .content-page-footer .footer-links {
        gap: 5px;
        margin-top: 0;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .content-page-footer {
        padding: 50px 3rem 50px;
    }

    .content-page-footer.home {
        padding: 50px 3rem 50px;
    }

    .home-scroll-arrow-mobile img {
        width: 70px;
    }

    .content-page-footer .footer-content {
        gap: 15px;
    }

    .content-page-footer * {
        font-size: 1.2rem;
    }

}

@media (max-width: 1050px) {
    .services-body-content {
        gap: 75px;
    }
}

@media (max-width: 950px) {
    #home, #services, #about, #contact {
        padding: 2rem;
    }

    #home {
        padding-right: 0;
    }

    .content-page {
        padding: 2rem;
    }

    #references {
        padding: 2rem 0;
    }

    header {
        padding-left: 2rem;
    }

    nav {
        padding-left: 2rem;
    }


    .references-container-content {
        padding-left: 2rem;
    }


    .start-logo-mobile.header {
        left: 2rem;
    }

    .services-body-content {
        flex-direction: column;
        gap: 0;
    }

    .services-text-left {
        max-width: 42.5rem;
    }
}


@media (max-width: 680px) {

    :root {
        --mobile-content-margin: 120px;
    }

    .width-limit {
        max-width: unset;
    }


}

@media (max-width: 625px) {

    :root {
        --mobile-content-margin: 130px;
    }
}

@media (max-width: 600px) and (max-height: 1200px ) {

    :root {
        --mobile-content-margin: 40px;
    }
}

@media (max-width: 600px), (max-height: 1200px ) {
    .home-scroll-arrow-mobile {
        bottom: 0;
    }
}

@media (max-width: 600px), (max-height: 1000px) {
    .home-page-title .highlighted::after {
        bottom: -5px;
    }


    .home-page-text {
        line-height: 2.25rem;
        font-size: 2.25em;
    }
}

@media (max-width: 600px), (max-height: 900px) {
    :root {
        --mobile-content-margin: 60px;
    }

}

@media (max-width: 600px), (max-height: 800px) {
    .home-page-title {
        font-size: 2.85em;
    }

    .home-page-text {
        line-height: 1.5rem;
        font-size: 1.5em;
    }

    .home-page-title .highlighted::after {
        height: 15px;
        bottom: -8px;
        left: -10px;
    }
}

@media (max-width: 600px), (max-height: 670px) {
    .home-content {
        font-size: 0.8rem;
    }
}

@media (max-height: 650px) {
    :root {
        --mobile-content-margin: 30px;
    }
}

@media (max-height: 600px) {
    .home-content {
        font-size: .7rem;
    }
}

@media (max-height: 450px) {
    nav {
        top: calc(var(--header-height) - 7px)
    }

    nav.open {
        height: calc(calc(100vh - var(--header-height) + 7px));
        box-sizing: border-box;
        justify-content: space-between;
        padding-bottom: 30px;
        padding-top: 30px;
        gap: unset;
    }
}


@media (max-width: 450px) {


    .references-image-container {
        width: 200px;
    }

    .references-image {
        left: 75px;
    }

    .home-page-title.bigger {
        display: none;
    }

    .home-page-title.smaller {
        display: unset;
    }
}

@media (max-width: 350px) {
    .references-image-container {
        width: 150px;
    }

    .references-image {
        left: 25px;
    }

    .references-caret {
        right: 30px;
    }

}
