@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap");

:root {
    font-size: 12px;
}

@media only screen and (min-width: 750px) {
    :root {
        font-size: 16px;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: white;
}

body {
    padding-top: 100px;
}

.main-nav {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100px;
    background: #ededed;
}

.main-nav .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

.main-nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.main-container {
    margin: 0 auto;
    min-width: 300px;
    max-width: 95%;
    width: 100%;
}

@media only screen and (min-width: 750px) {
    .main-container {
        min-width: 750px;
        max-width: 90vw;
    }
}

@media only screen and (min-width: 1200px) {
    .main-container {
        min-width: 1200px;
        max-width: 1600px;
        width: 95vw;
    }
}

.main-cover {
    display: flex;
    align-items: center;
    margin-left: calc(50% - 50vw);
    width: 100vw;
    height: 70vh;
    background-size: cover;
}

.oxxid-work-detail--image {
    margin-left: calc(50% - 50vw);
    width: 100vw;
    height: calc(90vh - 100px);
    background-position: center;
    background-size: cover;
}

.oxxid-work-detail-content {
    display: grid;
    grid-auto-flow: dense;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
}

@media only screen and (max-width: 749px) {
    .oxxid-work-detail-content {
        /* grid-gap: 5px; */
        grid-template-columns: 100%;
    }

    .oxxid-work-detail-content--left,
    .oxxid-work-detail-content--right {
        grid-column: 1 !important;
    }
}

/* @media only screen and (min-width: 750px) {
    .oxxid-work-detail-content {
        display: grid;
    }
} */

.oxxid-work-detail-content img {
    width: 100%;
    height: 100%;
}

.oxxid-work-detail-content--left {
    grid-column: 1;
}

.oxxid-work-detail-content--right {
    grid-column: 2;
}

.oxxid-work-detail-content .oxxid-product {
    margin-top: -150px;
    padding: 15px;
    padding-bottom: 30px;
    background: #ededed;
}

@media only screen and (max-width: 749px) {
    .oxxid-work-detail-content .oxxid-product {
        margin-bottom: 5px;
    }
}

.oxxid-work-detail-content .oxxid-product--description {
    margin-top: 50px;
}

.oxxid-clients,
.oxxid-2x2-content-grid,
.oxxid-1x3-content-grid,
.oxxid-priorities {
    /* margin-bottom: 80px; */
}

.oxxid-2x2-content-grid--spaced,
.oxxid-1x3-content-grid--spaced {
    margin-bottom: 5rem;
}

.main-container .oxxid-2x2-content-grid:first-of-type,
.main-container .oxxid-1x3-content-grid:first-of-type {
    margin-top: 50px;
}

.oxxid-2x2-content-grid .oxxid-dual-grid .description--left,
.oxxid-2x2-content-grid .oxxid-dual-grid .description--right,
.oxxid-1x3-content-grid .oxxid-dual-grid .description--left,
.oxxid-1x3-content-grid .oxxid-dual-grid .description--right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.oxxid-clients .oxxid-dual-grid,
.oxxid-2x2-content-grid .oxxid-dual-grid,
.oxxid-priorities .oxxid-dual-grid {
    display: initial;
    grid-template-columns: 1fr 1fr;
}

.oxxid-1x3-content-grid .oxxid-dual-grid {
    display: initial;
    grid-template-columns: 1fr 3fr;
}

@media only screen and (min-width: 750px) {

    .oxxid-clients .oxxid-dual-grid,
    .oxxid-2x2-content-grid .oxxid-dual-grid,
    .oxxid-1x3-content-grid .oxxid-dual-grid,
    .oxxid-priorities .oxxid-dual-grid {
        display: grid;
    }
}

.oxxid-clients .oxxid-dual-grid h1,
.oxxid-2x2-content-grid .oxxid-dual-grid h1,
.oxxid-1x3-content-grid .oxxid-dual-grid h1,
.oxxid-priorities .oxxid-dual-grid h1 {
    word-spacing: 100vw;
}

.oxxid-clients .oxxid-dual-grid .description--right,
.oxxid-2x2-content-grid .oxxid-dual-grid .description--right,
.oxxid-1x3-content-grid .oxxid-dual-grid .description--right,
.oxxid-priorities .oxxid-dual-grid .description--right {
    margin-left: 60px;
}


@media only screen and (max-width: 749px) {

    .oxxid-clients .oxxid-dual-grid .description--right,
    .oxxid-2x2-content-grid .oxxid-dual-grid .description--right,
    .oxxid-1x3-content-grid .oxxid-dual-grid .description--right,
    .oxxid-priorities .oxxid-dual-grid .description--right {
        margin-left: 0px;
    }

    .oxxid-dual-grid .content {
        margin-top: 10px;
    }

    .oxxid-2x2-content-grid .oxxid-dual-grid .description--right,
    .oxxid-2x2-content-grid .oxxid-dual-grid .description--left {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.oxxid-clients .oxxid-dual-grid .description--left,
.oxxid-2x2-content-grid .oxxid-dual-grid .description--left,
.oxxid-1x3-content-grid .oxxid-dual-grid .description--left,
.oxxid-priorities .oxxid-dual-grid .description--left {
    margin-right: 60px;
}

.oxxid-clients .oxxid-dual-grid .description img,
.oxxid-2x2-content-grid .oxxid-dual-grid .description img,
.oxxid-1x3-content-grid .oxxid-dual-grid .description img,
.oxxid-priorities .oxxid-dual-grid .description img {
    margin-bottom: 50px;
}

.oxxid-clients .oxxid-dual-grid .image img,
.oxxid-2x2-content-grid .oxxid-dual-grid .image img,
.oxxid-1x3-content-grid .oxxid-dual-grid .image img,
.oxxid-priorities .oxxid-dual-grid .image img {
    width: 100%;
    height: auto;
}

.oxxid-clients .priority-grid,
.oxxid-2x2-content-grid .priority-grid,
.oxxid-priorities .priority-grid {
    display: flex;
    overflow: scroll;
    align-items: baseline;
    justify-content: space-between;
}

.oxxid-clients .priority-grid figcaption,
.oxxid-2x2-content-grid .priority-grid figcaption,
.oxxid-priorities .priority-grid figcaption {
    text-align: center;
}

/* Desktop styling - only apply on screens 750px and larger */
@media only screen and (min-width: 750px) {

    .oxxid-scroll-animation .oxxid-dual-grid .content,
    .oxxid-scroll-animation .oxxid-dual-grid .scrollmagic-pin-spacer {
        grid-row: 1 / 5;
    }

    .oxxid-scroll-animation .oxxid-dual-grid .content {
        height: 80vh;
    }

    .oxxid-scroll-animation .description {
        height: 30vh;
        grid-column: 2;
        margin-left: 60px;
    }

    .oxxid-scroll-animation .description--first {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 749px) {

    /* Simple flexbox layout for mobile - no complex grid */
    .oxxid-scroll-animation .oxxid-dual-grid {
        display: flex !important;
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }

    /* Left column: Animation */
    .oxxid-scroll-animation .oxxid-dual-grid .content {
        flex: 0 0 20%;
        height: auto !important;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .oxxid-scroll-animation .oxxid-dual-grid .content h1 {
        margin-bottom: 15px !important;
        font-size: 1.6rem;
    }

    .oxxid-scroll-animation #lottie {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .oxxid-scroll-animation #lottie svg {
        max-height: 80px;
        max-width: 80px;
    }

    /* Right column: Text blocks */
    .oxxid-scroll-animation .descriptions-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
        /* margin-top: 110px; */
        margin-bottom: 10px;
        min-height: 0;
        /* Prevent flex growth issues */
    }

    .oxxid-scroll-animation .description {
        height: auto !important;
        min-height: 120px;
        margin: 0 !important;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    .oxxid-scroll-animation .description--first {
        margin-top: 0 !important;
    }

    /* Reduce text sizes for mobile */
    /* .oxxid-scroll-animation .description h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .oxxid-scroll-animation .description p {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .oxxid-scroll-animation .description .oxxid-keywords {
        font-size: 0.95rem;
        font-weight: 600;
    } */

    /* Limit ScrollMagic spacer height on mobile */
    .oxxid-scroll-animation .oxxid-dual-grid .scrollmagic-pin-spacer {
        flex: 0 0 40% !important;
        max-height: 200px !important;
        overflow: visible !important;
    }
}



.oxxid-scroll-animation .images {
    position: relative;
}

.oxxid-scroll-animation .images img {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.oxxid-scroll-animation .images img.active {
    opacity: 1;
}

.oxxid-expertise-switch img {
    width: 100%;
    height: auto;
}

.oxxid-expertise-switch .oxxid-dual-grid {
    margin-top: 10px;
}

/* Alternating layout for expertise sections */
.oxxid-expertise-switch:nth-child(odd) .oxxid-dual-grid {
    grid-template-columns: 2fr 1fr;
}

.oxxid-expertise-switch:nth-child(even) .oxxid-dual-grid {
    grid-template-columns: 1fr 2fr;
}

footer {
    margin-top: 100px;
    min-height: 100px;
    width: 100%;
    background: #ededed;
}

footer .main-container {
    display: flex;
    align-items: center;
    flex-flow: initial;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
}

@media only screen and (max-width: 749px) {
    footer .main-container {
        flex-flow: column;
    }

    footer .main-container div {
        padding-top: 10px;
        padding-bottom: 10px;
        min-width: 100%;
    }
}

.full-width {
    position: relative;
    right: 50%;
    left: 50%;
    margin-right: -50vw;
    margin-left: -50vw;
    width: 100vw;
}

.background-colour--grey {
    background-color: #ededed;
}

#oxxid-accordion {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#oxxid-accordion input {
    display: none;
}

#oxxid-accordion label {
    z-index: 20;
    display: inline-block;
    padding: 10px 40px;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
}

#oxxid-accordion label img {
    margin-top: 20px;
}

#oxxid-accordion label:hover {
    background: #ccc;
}

#oxxid-accordion input:checked+label {
    margin-bottom: 0;
    background: #ededed;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#oxxid-accordion section {
    flex-basis: 100%;
}

#oxxid-accordion section article {
    z-index: 10;
    overflow: hidden;
    height: 0;
    background: #ededed;
}

#oxxid-accordion section article p {
    padding: 1em;
}

#oxxid-accordion input[id='option-0']:checked~section article[id='oxxid-accordion--option-0'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-1']:checked~section article[id='oxxid-accordion--option-1'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-2']:checked~section article[id='oxxid-accordion--option-2'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-3']:checked~section article[id='oxxid-accordion--option-3'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-4']:checked~section article[id='oxxid-accordion--option-4'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-5']:checked~section article[id='oxxid-accordion--option-5'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-6']:checked~section article[id='oxxid-accordion--option-6'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-7']:checked~section article[id='oxxid-accordion--option-7'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-8']:checked~section article[id='oxxid-accordion--option-8'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-9']:checked~section article[id='oxxid-accordion--option-9'] {
    margin-bottom: .125em;
    height: auto;
}

#oxxid-accordion input[id='option-10']:checked~section article[id='oxxid-accordion--option-10'] {
    margin-bottom: .125em;
    height: auto;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-touch-callout: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
    height: 100%;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'slick';
    src: url("./fonts/slick.eot");
    src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    background: transparent;
    outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    font-family: 'slick';
    line-height: 1;
    color: white;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: 'â†';
}

[dir='rtl'] .slick-prev:before {
    content: 'â†’';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: 'â†’';
}

[dir='rtl'] .slick-next:before {
    content: 'â†';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    list-style: none;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.slick-dots li button {
    display: block;
    padding: 5px;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 6px;
    font-family: 'slick';
    line-height: 20px;
    color: black;
    text-align: center;
    content: 'â€¢';
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: .75;
}

* {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-weight: 400;
    font-size: 4.625rem;
    color: #5f6062;
}

h2 {
    font-weight: 400;
    font-size: 3.75rem;
    color: #5f6062;
}

h3 {
    font-weight: 400;
    font-size: 2.75rem;
    color: #5f6062;
}

.main-cover h1,
.main-cover h2,
.main-cover h3 {
    font-weight: 700;
    color: #db001b;
}

.main-cover h1 {
    font-size: 12vh;
}

.main-cover h2 {
    font-size: 9vh;
}

.main-cover h3 {
    font-size: 7vh;
}

@media only screen and (max-width: 749px) {
    .main-cover h1 {
        font-size: 8vh;
    }

    .main-cover h2 {
        font-size: 6vh;
    }

    .main-cover h3 {
        font-size: 5vh;
    }
}

p {
    font-weight: 300;
    font-size: 1.5625rem;
    color: #5f6062;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    font-weight: 300;
    font-size: 1.5625rem;
    color: #5f6062;
    text-decoration: underline;
}

.oxxid-chapter-title {
    position: relative;
    font-weight: 500;
    font-size: 1.5625rem;
    color: #db001b;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.oxxid-chapter-title:after {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    border-width: 0 0 3px;
    border-style: solid;
    border-color: #db001b;
    content: '';
}

.oxxid-keywords {
    font-weight: 700;
    font-size: 1.5625rem;
    color: #5f6062;
}

.oxxid-info {
    font-weight: 300;
    font-size: 1.25rem;
    color: #db001b;
    line-height: initial;
}

.social-icons {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: end;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
}

.social-icons a svg {
    width: 30px;
    height: 30px;
}

footer .main-container .oxxid-info {
    font-size: 1rem;
}

footer .main-container .oxxid-info a,
footer .main-container .oxxid-info a:hover,
footer .main-container .oxxid-info a:link,
footer .main-container .oxxid-info a:visited,
footer .main-container .oxxid-info a:active {
    font-weight: 300;
    color: #db001b;
    font-size: 1rem;
    line-height: initial;
}

.oxxid-submenu-item {
    padding-left: 2rem;
    font-weight: 300;
    font-size: 1.5625rem;
    color: #db001b;
}

.oxxid-submenu-item.active {
    font-weight: 700;
}

.oxxid-submenu-item.active a,
.oxxid-submenu-item.active a:link,
.oxxid-submenu-item.active a:visited,
.oxxid-submenu-item.active a:hover,
.oxxid-submenu-item.active a:active {
    font-weight: 700;
}

.oxxid-submenu-item a,
.oxxid-submenu-item a:link,
.oxxid-submenu-item a:visited,
.oxxid-submenu-item a:hover,
.oxxid-submenu-item a:active {
    font-weight: 300;
    font-size: 1.5625rem;
    color: #db001b;
    text-decoration: none;
}

.oxxid-product--title {
    font-weight: 700;
    font-size: 1.7rem;
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
}

.oxxid-product--subtitle,
.oxxid-product--year {
    font-weight: 400;
    font-size: 1.2rem;
    color: black;
}

.oxxid-product--client,
.oxxid-product--client a,
.oxxid-product--client a:hover,
.oxxid-product--client a:link,
.oxxid-product--client a:visited,
.oxxid-product--client a:active {
    font-weight: 400;
    font-size: 1.2rem;
    color: black;
    text-decoration: underline;
}

.oxxid-product p,
.oxxid-product .oxxid-keywords {
    color: black;
    margin-top: 1rem;
    display: block;
}

.oxxid-product-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.oxxid-product-wrapper-text,
.oxxid-product-wrapper-awards {
    flex: 0 1 auto;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.oxxid-product-wrapper-awards img {
    max-height: 80px;
}

.filter-button-group button {
    position: relative;
    margin-right: 15px;
    font-weight: 300;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    background: transparent;
    cursor: pointer;
}

.filter-button-group button:after {
    content: none;
}

.filter-button-group button.active {
    font-weight: 500;
}

.filter-button-group button.active:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    border-width: 0 0 3px;
    border-style: solid;
    border-color: #db001b;
    content: '';
}

* {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0 none;
}

.oxxid-grid-gallery {
    display: grid;
    padding-top: 0px;
    grid-auto-flow: dense;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.oxxid-grid-gallery--alternative-projects {
    grid-row-gap: 100px !important;
}

@media only screen and (max-width: 749px) {
    .oxxid-grid-gallery {
        grid-gap: 5px;
    }
}

@media only screen and (min-width: 750px) {
    .oxxid-grid-gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 1200px) {
    .oxxid-grid-gallery {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.oxxid-grid-gallery figure {
    overflow: hidden;
}

.oxxid-grid-gallery figure a {
    width: 100%;
    height: 100%;
}

.oxxid-grid-gallery figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oxxid-grid-gallery figure figcaption .description {}

.oxxid-grid-gallery figure figcaption .awards {}

.oxxid-grid-gallery figure figcaption img {
    height: 100%;
    width: auto;
    display: inline-block;
    object-fit: unset;
}

.oxxid-grid-gallery figure figcaption {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    padding: 15px 30px;
    max-height: 100%;
    width: 100%;
    text-align: left;
    background: white;
    color: black;
    opacity: 0;
    transition: all .5s;
    transform: translate3d(-100%, -50%, 0);
}

.oxxid-grid-gallery figure figcaption .title {
    color: black;
    font-weight: 700;
}

.oxxid-grid-gallery figure figcaption .subtitle {
    color: black;
    font-weight: 500;
}

.oxxid-grid-gallery figure figcaption .awards img {
    max-height: 50px;
}

.oxxid-grid-gallery figure figcaption .description a {
    text-decoration: none;
}

.oxxid-grid-gallery figure.oxxid-grid--item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-size: cover;
}

.oxxid-grid-gallery figure.oxxid-grid--item img {
    transition: all .5s;
    transform: translate3d(0, 0, 0);
}

.oxxid-grid-gallery figure.oxxid-grid--item figcaption {
    top: 100%;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.oxxid-grid-gallery figure.oxxid-grid--item:hover img {
    opacity: .8;
}

.oxxid-grid-gallery figure.oxxid-grid--item:hover figcaption img {
    opacity: 1;
}

.oxxid-grid-gallery figure.oxxid-grid--item:hover figcaption {
    /* box-shadow: 0 -2px 28px rgba(0, 0, 0, 0.3); */
    transition: all .5s;
    transform: translate3d(0, -100%, 0);
}

.oxxid-grid-gallery figure.oxxid-grid--1x2 {
    grid-row-start: span 2;
}

.oxxid-grid-gallery figure.oxxid-grid--2x1 {
    grid-column-start: span 2;
}

.oxxid-grid-gallery figure.oxxid-grid--2x2 {
    grid-column-start: span 2;
    grid-row-start: span 2;
}

.oxxid-grid-gallery figure.oxxid-grid--3x2 {
    grid-column-start: span 2;
    grid-row-start: span 2;
}

@media only screen and (min-width: 750px) {
    .oxxid-grid-gallery figure.oxxid-grid--3x2 {
        grid-column-start: span 3;
        grid-row-start: span 2;
    }
}

.filter-button-group {
    display: flex;
    align-items: center;
    margin-left: calc(50% - 50vw);
    width: 100vw;
    height: 60px;
    background: white;
}

@media only screen and (max-width: 749px) {
    .filter-button-group {
        display: none;
    }
}

.filter-button-group.sticky {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 100;
}

.similar-projects .oxxid-grid-gallery figure {
    overflow: initial;
}

.similar-projects .oxxid-grid-gallery figure.oxxid-grid--item figcaption {
    position: relative;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    overflow: initial;
    padding: 0;
    padding-top: 15px;
    opacity: 1;
    transform: none;
}

.similar-projects .oxxid-grid-gallery figure.oxxid-grid--item:hover img {
    opacity: 1;
}

.similar-projects .oxxid-grid-gallery figure.oxxid-grid--item:hover figcaption {
    box-shadow: none;
    transform: none;
}

.similar-projects figcaption p {
    width: 100%;
}

.similar-projects .heading {
    background: #ededed;
    margin-left: calc(50% - 50vw);
    width: 100vw;
    height: 4.5rem;
    margin-top: 140px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.similar-projects h1 {
    color: #db001b;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.similar-projects figure figcaption .subtitle {
    text-decoration: none !important;
}

.oxxid-clients .client-list {
    /* display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: 0;  
    min-width: 0;    */

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* padding: 20px; */
}

.oxxid-clients .client-list a {
    /* width: 100%;
    max-height: 150px;
    min-height: calc(55vw / 6);
    background-image: var(--client-bg-image);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat; */

    flex: 0 0 calc((100% - 50px) / 6);
    aspect-ratio: 1209 / 605;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: var(--client-bg-image);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media only screen and (max-width: 749px) {


    .oxxid-clients .client-list a {

        flex: 0 0 calc((100% - 30px) / 4);
    }
}

.oxxid-clients .client-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.oxxid-clients .client-list a.disabled {
    pointer-events: none;
    pointer: none;
}

#subnav {
    display: none;
}

.oxxid-work-detail--nav {
    /* width:inherit; */
    /* position: fixed; */
    /* z-index: 2; */
    background-color: white;
    height: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oxxid-work-detail--nav a,
.oxxid-work-detail--nav a:link,
.oxxid-work-detail--nav a:visited,
.oxxid-work-detail--nav a:hover,
.oxxid-work-detail--nav a:active {
    text-decoration: none;
    display: inline-block;
    margin-top: 7px;
}

.oxxid-work-detail--nav svg {
    height: 20px;
    width: auto;
}

.oxxid-work-detail--nav .next {
    margin-left: 73px;
}

#lottie svg {
    max-height: 200px;
}