@font-face {
    font-family: "Public Sans";
    src: url("PublicSans.ttf");
    font-display: swap;
    font-optical-sizing: auto;
    font-style: normal;
}

@font-face {
    font-family: 'Anderson Grotesk';
    src: url('AndersonGroteskRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anderson Grotesk';
    src: url('AndersonGroteskLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anderson Grotesk';
    src: url('AndersonGroteskBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@keyframes fadeOnLoad {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeMoveOnLoad {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

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

@keyframes fadeLessMoveOnLoad {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

:root {
    font-size: 18px;
    --body-text-size: 1rem;
    /* 18px */
    --title-text-size: 3.222rem;
    /* 58px */
    --subtitle-text-size: 2rem;
    /* 36px */
    --tertiary-text-size: 1.778rem;
    /* 32px */
    --mobile-body-text-size: 0.889rem;
    /* 16px */
    --mobile-title-text-size: 2rem;
    /* 36px */
    --mobile-header-title-text-size: 2.333rem;
    /* 42px */
    --mobile-subtitle-text-size: 1.778rem;
    /* 32px */
    --mobile-secondary-subtitle-text-size: 1.556rem;
    /* 28px */
    --mobile-tertiary-text-size: 1.222rem;
    /* 22px */
    --bold-weight: bold;
    --normal-weight: normal;
    --thin-weight: 300;
    --white-full: #fff;
    --white-85: rgba(256, 256, 256, .85);
    --white-75: rgba(256, 256, 256, .75);
    --white-65: rgba(256, 256, 256, .65);
    --white-50: rgba(256, 256, 256, .5);
    --white-30: rgba(256, 256, 256, .3);
    font-family: "Public Sans", sans-serif;
    font-weight: var(--thin-weight);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    color: var(--white-65);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

main {
    animation: 1s ease 0s 1 fadeOnLoad;
    width: 90%;
    margin: 0 auto;
    flex: 1;
}

footer {
    animation: 1s ease 0s 1 fadeOnLoad;
}

h1,
h2,
h3 {
    font-family: "Anderson Grotesk", sans-serif;
    font-weight: var(--normal-weight);
    letter-spacing: .5px;
}

nav a {
    font-weight: var(--normal-weight);
}

p {
    font-size: var(--mobile-body-text-size);
    color: var(--white-75);
    line-height: 26px;
    margin: 0;
}

h1 {
    font-size: var(--mobile-header-title-text-size);
    color: var(--white-full);
    margin: 0;
}

h2 {
    font-size: var(--mobile-tertiary-text-size);
    color: var(--white-65);
    margin: 0;
}

h3 {
    font-size: var(--mobile-tertiary-text-size);
    color: var(--white-full);
    margin: 0 0 5px 0;
}

h3.bigger {
    font-size: var(--mobile-title-text-size);
}

a {
    font-weight: var(--thin-weight);
    font-size: var(--mobile-body-text-size);
    text-decoration: none;
    color: var(--white-75);
    transition: all .2s ease-out;
    display: inline-block;
}

img {
    max-width: 100%;
    border-radius: 5px;
}

/*

  Hamburger

*/

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: 30px;
    height: 40px;
    z-index: 8;
    cursor: pointer;
}

.hamburger div {
    width: 1.6rem;
    height: 2px;
    border-radius: 10px;
    background-color: var(--white-full);
    margin-top: 7px;
    transition: all 0.3s ease-in-out;
}

.hamburger div:first-of-type {
    margin-top: 0;
}

/*

Nav styles

*/

#nav-toggle {
    display: none;
}

.nav-row {
    background-color: #000;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 1rem 0;
    width: 90%;
    margin: 0 auto;
}

a .nav-logotype {
    position: relative;
    z-index: 8;
    font-weight: var(--normal-weight);
    color: var(--white-full);
}

.nav-logotype img {
    height: 25px;
    margin-bottom: -7px;
}

.layout-divider {
    height: 1px;
    width: 90%;
    background: var(--white-30);
    position: static;
    z-index: 8;
    margin: 10px auto 0 auto;
}

.link-wrapper .layout-divider {
    width: 100%;
}

.nav {
    display: none;
    position: fixed;
    z-index: 7;
    width: 100%;
    height: 95%;
    background-color: #000;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2.5rem;
    width: 90%;
    padding-top: 4rem;
    margin: 0 auto;
}

nav a {
    position: relative;
    text-decoration: none;
    color: var(--white-full);
    font-size: var(--mobile-title-text-size);
    display: inline-block;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
}

nav .link-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 2.5rem;
}

nav .link-wrapper-left-align {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.nav-row .layout-divider {
    margin: 0 0 0 0;
}

/* 

Footer styles

*/

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
    font-weight: var(--thin-weight);
}

footer .layout-divider {
    z-index: unset;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-span {
    margin: 0 10px 0 10px;
}

footer button {
    font-size: var(--mobile-body-text-size);
    color: var(--white-75);
    border-bottom: solid 1px var(--white-75);
}

footer .btn-icon {
    filter: brightness(0) saturate(100%) invert(86%) sepia(10%) saturate(31%) hue-rotate(32deg) brightness(87%) contrast(80%);
    width: 23px;
    height: 23px;
}

/*

Animations

*/

#nav-toggle:checked+.hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 10px;
}

#nav-toggle:checked+.hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
}

#nav-toggle:checked+.hamburger .meat {
    transform: rotate(45deg);
    margin-top: -2px;
}

#nav-toggle:hover+.hamburger+.nav {
    display: block;
}

#nav-toggle:checked+.hamburger+.nav {
    display: block;
    top: 5%;
    opacity: 1;
}

/*

Layout & Miscellaneous

*/

h2.main-title {
    color: var(--white-full);
}

.italic {
    font-style: italic;
    font-weight: var(--thin-weight);
    font-size: 1.3rem;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 75px 0;
}

section#home-header {
    min-height: 72svh;
}

section#product-header {
    min-height: 74svh;
}

#home-header.header {
    justify-content: space-between;
    align-items: start;
    padding: 25px 0 100px 0;
}

.header-imgs {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 50px;
}

.header-img-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    position: relative;
}

.header-img-wrapper-2 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    position: relative;
}

.header-img-wrapper-2 img {
    z-index: 1;
}

.header-img-wrapper img {
    z-index: 1;
}

.header-img-wrapper.header-bottom-row img {
    max-width: 35%;
}

.header-img-wrapper.header-top-row img {
    max-width: 50%;
    margin-top: 30px;
}

.header-img-wrapper.secondary-header img {
    max-width: 70%;
}

.header-img-wrapper-2.secondary-header img {
    max-width: 70%;
}

.header-bottom-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: end;
    align-items: start;
}

.header-top-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: start;
    align-items: start;
}

.top-img {
    animation: 3s ease-out 0s 1 fadeMoveOnLoad;
    padding-right: 25px;
}

.bottom-img {
    animation: 2s ease-out 0s 1 fadeMoveOnLoad;
    margin-top: -90px;
    padding-left: 25px;
}

.color-blob-red {
    animation: 3s ease-out 0s 1 fadeOnLoad;
    position: absolute;
    height: 200px;
    width: 150px;
    background: linear-gradient(65deg, rgba(239, 122, 131, 1) 0%, rgba(255, 133, 0, 0) 100%);
    border-radius: 100%;
    filter: blur(50px);
}

.color-blob-blue {
    animation: 2s ease-out 0s 1 fadeOnLoad;
    position: absolute;
    height: 200px;
    width: 150px;
    margin-top: 0;
    background: linear-gradient(165deg, rgba(54, 153, 225, 1) 15%, rgba(17, 24, 29, 1) 100%);
    border-radius: 100%;
    filter: blur(70px);
}

#title1 {
    animation: 1.5s ease-out 0s 1 fadeOnLoad;
    /* height: 60px; */
}


#title2 {
    animation: 3s ease 0s 1 fadeOnLoad;
    color: var(--white-65);
}

#title3 {
    animation: 4.5s ease 0s 1 fadeOnLoad;
}

#title4 {
    animation: 5.5s ease 0s 1 fadeOnLoad;
}

.color-blob-brown {
    position: absolute;
    right: 0;
    top: 0;
    height: 200px;
    width: 120px;
    background: linear-gradient(120deg, rgba(136, 96, 51, 1) 0%, rgba(17, 24, 29, 0) 100%);
    border-radius: 100%;
    filter: blur(40px);
}

.color-blob-grey {
    position: absolute;
    right: 0;
    top: 0;
    height: 200px;
    width: 150px;
    background: linear-gradient(120deg, rgba(234, 234, 234, .5) 0%, rgba(17, 24, 29, 0) 100%);
    border-radius: 100%;
    filter: blur(40px);
}

.bottom-gap {
    margin: 0 0 20px 0;
}

.bottom-gap-small {
    margin: 0 0 10px 0;
}

.bottom-gap-medium {
    margin: 0 0 50px 0;
}

.bottom-gap-medium-40 {
    margin: 0 0 40px 0;
}

.big-bottom-gap {
    margin: 0 0 100px 0;
}

.top-gap {
    margin: 20px 0 0 0;
}

.top-gap-small {
    margin: 10px 0 0 0;
}

.header-divider {
    height: 1px;
    width: 25%;
    background-color: var(--white-30);
    margin: 50px 0 0 0;
}

.link-wrapper .header-divider {
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.container-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.container-column.card {
    justify-content: stretch;
}

.container-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.container-row.portfolio-row {
    row-gap: 150px;
    flex-wrap: wrap;
    align-items: end;
}

.container-row.portfolio-row.product-page {
    row-gap: 40px;
}

.container-column.portfolio-row {
    gap: 100px;
}

.container-column.portfolio-row img.portrait {
    width: 85%;
}

.container-column.portfolio-row img.landscape {
    width: 100%;
}

.portfolio-row .container-column {
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
}

.portfolio-row a.container-column {
    border: solid 1px rgba(255,255,255,0);
    border-radius: 5px;
    padding: 0;
}

.width100 {
    width: 100%;
}

.container-row.align-top {
    align-items: stretch;
    justify-content: start;
    gap: 20px;
}

.container-row.align-bottom {
    align-items: end;
    justify-content: end;
    gap: 20px;
}

.container-column.no-gap {
    gap: 0;
}

.secondary-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.secondary-container img {
    margin: 0 0 10px 0;
}

.tertiary-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.content-divider {
    height: 1px;
    width: 100%;
    background-color: var(--white-50);
}

.big-h3 {
    font-size: var(--mobile-secondary-subtitle-text-size);
    font-weight: var(--normal-weight);
    margin: 0 0 30px 0;
}

.big-h3-2 {
    font-size: var(--mobile-secondary-subtitle-text-size);
    font-weight: var(--normal-weight);
    margin: 0 0 15px 0;
}

.limit-to-90 {
    max-width: 90%;
}

.white-space-top {
    margin-top: 100px;
}

#secondary-header-eagle-link {
    padding-top: 100px;
}

.white-space-top-bottom {
    margin: 80px 0;
}

.white-space-bottom {
    margin-bottom: 40px;
}

.white-space-bottom-extra {
    padding: 50px 0;
}

.white-space-top-extra {
    margin-top: 120px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
}

label,
input,
textarea {
    display: block;
    width: 100%;
}

form.contact input,
form.contact textarea {
    border: none;
    border-bottom: solid 1px var(--white-50);
    padding: 10px 10px 10px 0;
    background-color: transparent;
    border-radius: 0;
    color: var(--white-50);
    font-size: var(--mobile-body-text-size);
    transition: all .1s ease-out;
}

form.contact textarea {
    height: 200px;
    resize: none;
    margin-bottom: 20px;
}

form.contact input:focus,
form.contact textarea:focus {
    border-bottom: solid 1px var(--white-full);
    border-radius: 0;
    outline: none;
}

.flex-growing {
    flex-grow: 1;
    width: 100%;
}

button {
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-bottom: solid 1px var(--white-full);
    font-size: var(--mobile-tertiary-text-size);
    color: var(--white-full);
    padding: 0;
    cursor: pointer;
    transition: all .2s ease-out;
}

.btn-icon {
    display: inline-block;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    width: 27px;
    height: 27px;
    transform: rotate(-45deg);
    margin: 0 0 -6px 0;
}

.btn-icon-down {
    display: inline-block;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    width: 27px;
    height: 27px;
    transform: rotate(90deg);
    margin: 0 -5px -6px 0;
}

.btn-icon-cta {
    display: inline-block;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    width: 33px;
    height: 33px;
    transform: rotate(90deg);
    padding: 15px;
    border: dashed 1px rgba(0,0,0,.5);
    border-radius: 50%;
}

.btn-icon-back {
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(86%) sepia(10%) saturate(31%) hue-rotate(32deg) brightness(87%) contrast(80%);
    width: 27px;
    height: 27px;
    transform: rotate(180deg);
    margin: 0 10px 0 0;
}

button.silent {
    border-bottom: unset;
    display: flex;
    align-items: center;
}

.construction-icon {
    display: inline-block;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    width: 27px;
    height: 27px;
    margin-top: -7px;
}

.silent {
    color: var(--white-65);
    font-weight: var(--normal-weight);
    font-size: var(--mobile-body-text-size);
}

.no-margin {
    margin: 0;
}

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

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

.container-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-center-baseline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}

.timeline-svg {
    width: 70%;
}

.flip {
    transform: rotateX(180deg);
}

.circle {
    width: 36px;
    min-height: 36px;
    border: solid var(--white-30) 4px;
    border-radius: 100%;
}

.circle-2 {
    width: 36px;
    min-height: 36px;
    border: solid var(--white-65) 4px;
    border-radius: 100%;
}

.circle-3 {
    width: 36px;
    min-height: 36px;
    border: solid var(--white-full) 4px;
    border-radius: 100%;
}

.line {
    width: 2px;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .65) 100%);
}

.line-2 {
    width: 2px;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .8) 100%);
}

.line-3 {
    width: 2px;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, 1) 100%);
}

.push-left {
    padding-left: 16px;
}

.push-left-2 {
    padding-left: 10px;
}

.seventy {
    width: 70%;
}

.order-right-m {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}

.order-right-m2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.only-desktop {
    display: none;
}

.only-mobile {
    display: block;
}

.uppercase {
    text-transform: uppercase;
    word-break: break-word;
}

a.uppercase {
    word-break: unset;
}

.container-column .text-right.text-column-wide img.bottom-gap {
    width: 100%;
}

.fadeInSection {
    animation: 1.5s ease-out 0s 1 fadeLessMoveOnLoad;
}

.secondaryFadeInSection {
    animation: 2.5s ease-out 0s 1 fadeLessMoveOnLoad;
}

.container-row.portfolio-row.product-page .container-wrap-product {
    flex-grow: 1;
    flex-basis: 50%;
}

.mobile-padding-top {
    padding-top: 50px;
}

#secondary-header .container,
#secondary-header-eagle .container {
    gap: 80px;
    align-items: end;
}

.header-cta-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.header-cta-a {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.bottom-gap-5 {
    margin-bottom: 5px;
}

/*

Media queries

*/
/* phones in landscape */
@media screen and (any-pointer:none) and (orientation:landscape),
(any-pointer:coarse) and (orientation:landscape) {
    nav a {
        font-size: var(--mobile-secondary-subtitle-text-size);
    }

    nav {
        gap: 1.5rem;
    }

    .header {
        padding: 25px 0;
    }

    .header-divider {
        margin: 10px 0 0 0;
    }

    .container {
        gap: 30px;
    }
}

@media screen and (min-width:350px) {
    .portfolio-row .container-column {
        max-width: 43%;
        flex-basis: 43%;
    }
}

@media screen and (min-width:600px) {
    nav a:before {
        content: '';
        height: 0;
        position: absolute;
        width: 100%;
        background-color: var(--white-full);
        left: 0;
        bottom: -5px;
        transition: all 0.2s ease-in-out;
    }

    nav a:hover:before {
        height: 10%;
    }

    nav a:hover {
        background-color: unset;
    }

    a:hover {
        background-color: var(--white-50);
    }

    .header-divider {
        max-width: 75px;
    }

    h1 {
        font-size: var(--title-text-size);
    }

    h2 {
        font-size: var(--tertiary-text-size);
    }

    h3 {
        font-size: var(--mobile-tertiary-text-size);
    }

    p {
        font-size: var(--body-text-size);
        line-height: 28px;
    }

    a {
        font-size: var(--body-text-size);
    }

    .header {
        padding: 100px 0;
    }

    .white-space-top {
        margin-top: 90px;
    }

    #secondary-header-eagle-link {
        padding-top: 90px;
    }

    .white-space-bottom-extra {
        margin-bottom: 120px;
        padding: 100px 0 120px 0;
    }

    .white-space-bottom {
        margin-bottom: 80px;
    }

    form.contact input,
    form.contact textarea {
        padding: 10px 10px 10px 0;
        font-size: var(--body-text-size);
    }

    button:hover {
        background-color: var(--white-50);
    }

    .silent {
        font-size: var(--body-text-size);
    }

    .container-column.portfolio-row img.portrait {
        width: 55%;
    }

    .container-column.portfolio-row img.landscape {
        width: 78%;
    }

    .mobile-padding-top {
        padding-top: 0;
    }
}

@media screen and (min-width:1200px) {
    .container {
        flex-direction: row;
        gap: 10%;

    }

    .container-row {
        gap: 80px;
    }

    .container-column.no-gap {
        gap: 0;
    }

    .text-column {
        max-width: 45%;
    }

    .text-column-wide {
        max-width: 60%;
    }

    main {
        width: 70%;
    }

    .tertiary-container {
        flex-direction: row;
    }

    .order-left {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .order-right {
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .order-right-m {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
    }

    .container-center {
        justify-content: center;
        align-items: center;
    }

    section#home-header {
        min-height: 78svh;
    }

    #home-header.header {
        justify-content: space-between;
        align-items: start;
        padding: 25px 0 100px 0;
    }

    .header-imgs {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: start;
        gap: 40px;
    }

    .header-img-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        position: relative;
    }

    .header-img-wrapper-2 {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        position: relative;
    }

    .header-img-wrapper img {
        z-index: 1;
    }

    .header-img-wrapper.header-bottom-row img {
        max-width: 62%;
        margin-top: 50px;
    }

    .header-img-wrapper.header-top-row img {
        max-width: 60%;
        margin-top: 100px;
        margin-bottom: 0;
    }

    .header-img-wrapper.secondary-header img {
        max-width: 85%;
    }

    .header-bottom-row {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 74svh;
        justify-content: end;
        align-items: start;
    }

    .header-top-row {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 74svh;
        justify-content: end;
        align-items: center;
    }

    .header-middle-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 74svh;
        min-width: 500px;
    }

    .top-img {
        padding-right: 0;
    }

    .bottom-img {
        margin-top: 0;
        padding-left: 0;
    }

    .color-blob-red {
        position: absolute;
        height: 250px;
        width: 250px;
        background: linear-gradient(65deg, rgba(239, 122, 131, 1) 0%, rgba(255, 133, 0, 0) 100%);
        border-radius: 100%;
        filter: blur(70px);
        margin-right: -50px;
        margin-top: 50px;
    }

    .color-blob-blue {
        position: absolute;
        height: 350px;
        width: 350px;
        background: linear-gradient(165deg, rgba(54, 153, 225, 1) 15%, rgba(17, 24, 29, 1) 100%);
        border-radius: 100%;
        filter: blur(80px);
        margin-top: unset;
        margin-bottom: 300px;
    }

    .color-blob-brown {
        position: absolute;
        right: 0;
        top: 0;
        height: 350px;
        width: 350px;
        background: linear-gradient(120deg, rgba(136, 96, 51, 1) 0%, rgba(17, 24, 29, 0) 100%);
        border-radius: 100%;
        filter: blur(70px);
    }

    .color-blob-grey {
        position: absolute;
        right: 0;
        top: 0;
        height: 350px;
        width: 350px;
        background: linear-gradient(120deg, rgba(234, 234, 234, .5) 0%, rgba(17, 24, 29, 0) 100%);
        border-radius: 100%;
        filter: blur(70px);
    }

    .only-desktop {
        display: block;
    }

    .only-mobile {
        display: none;
    }

    .container-row.align-top {
        gap: 80px;
    }

    .container.text-center {
        justify-content: center;
    }

    .container-row.reverse-direction {
        flex-direction: row-reverse;
        justify-content: end;
        text-align: right;
    }

    .container.reverse-direction {
        flex-direction: row-reverse;
    }

    .container.reverse-direction img {
        max-width: 100%;
        max-height: 80%;
    }

    .bottom-gap-desktop {
        margin-bottom: 50px;
    }

    .bottom-gap-small-desktop {
        margin-bottom: 30px;
    }

    .push-left {
        padding-left: 0;
    }

    .push-left-2 {
        padding-left: 0;
    }

    .seventy-desktop {
        width: 70%;
    }

    .order-right-m2 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
    }

    .portfolio-row .container-column {
        flex-grow: 1;
        flex-basis: 20%;
        max-width: 20%;
        padding: 15px 15px 5px 15px
    }

    .container-row.portfolio-row.product-page {
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
    }

    .container-row.portfolio-row.product-page .container-wrap-product {
        flex-grow: 1;
        flex-basis: 24%;
    }

    .footer-container {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    footer button {
        font-size: var(--body-text-size);
    }

    footer .btn-icon {
        width: 25px;
        height: 25px;
    }

    .vertical-divider {
        height: 110px;
        width: 1px;
        background-color: var(--white-50);
    }

    #secondary-header .container,
    #secondary-header-eagle .container {
        align-items: center;
    }

    .header-cta-wrap {
        justify-content: center;
    }

    .header-cta-a:hover {
        border-radius: 50%;
    }

    .btn-icon-cta {
        width: 40px;
        height: 40px;
    }

    .header-cta-a {
        width: 72px;
        height: 72px;
    }

    .portfolio-row a.container-column {
        padding: 25px 25px 15px 25px;
    }

    .portfolio-row a.container-column:hover {
        background-color: unset;
        border: solid 1px rgba(255,255,255,1);
    }
}

@media screen and (min-width:1600px) {
    .portfolio-row .container-column {
        flex-grow: 1;
        flex-basis: 24%;
        max-width: 24%;
        padding: 15px 15px 5px 15px
    }
}

@media screen and (min-width:1921px) {
    main {
        width: 45%;
        margin: 0 auto;
    }

    .portfolio-row .container-column {
        flex-basis: 21%;
        max-width: 22%;
    }
}

