/* ---- FOR USE WITH SPECIFIC ELEMENTS -------*/


/* for parent elements with child elements that are floated */
.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* for increasing legibility of priority text */
/* {text-rendering: optimizeLegibility;} */

/* -------------------------------- OVERALL SETUP -----------------------*/

:root {
    --background-main: #0f0f0f;
    --background-secondary: #171717;
    --case-study-bg: #171717;
    --text: #dddcdc;
    --text-dark: #0f0f0f;
    --text-light: #ffffff;
    --neutral-gray: #5C5C5C;
    --primary-one: #ffbd00;
    --primary-two: #FFD96B;
    --secondary-one: #FF6500;
    --secondary-two: #FFA367;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus-visible {
    outline: 2px solid var(--primary-one);
    outline-offset: 5px;
}

*:focus:not(:focus-visible) {
    outline: 0;
}

html,
body {
    background-color: var(--background-main);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    scroll-padding-top: calc(85px + 20px);
    scroll-behavior: smooth;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

body.light,
html.light {
    --background-main: #ffffff;
    --background-secondary: #dddcdc;
    --text: #0F0F0F;
    --case-study-bg: #f5f5f5;
}


.modal-open {
    overflow: hidden;
}

.break-url {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.sr-only {
    position: absolute;
    width: .0625em;
    height: .0625em;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*--------------------------HTML ELEMENTS-----------------------------*/

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.h1-lg {
    font-size: 3.4375em;
}

.h1-sm {
    font-size: 2.75em;
}

h2 {
    font-size: 2.25em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.4em;
    text-decoration: underline;
}

h5 {
    font-size: 1.3em;
}

i {
    font-size: 1.625em;
    text-decoration: none;
}

input {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    font-size: 1em;
    padding: 10px;
    border-color: var(--neutral-gray);
    border-width: 1px;
}

:-ms-input-placeholder {
    color: var(--neutral-gray);
}

::-ms-input-placeholder {
    color: var(--neutral-gray);
}

::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
    color: var(--neutral-gray);
}

input:checked {
    accent-color: var(--primary-one);
    border-color: var(--neutral-gray);
    border-width: 1px;
}

img,
picture {
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

p,
ul li {
    height: auto;
    display: flex;
    align-items: center;
}

p,
ul li {
    width: 100%;
}

p {
    margin: 0;
    padding: 0;
}

.paragraph-1 {
    font-size: 1.25em;
}

.paragraph-2 {
    font-size: 1.0625em;
}

.paragraph-3 {
    font-size: .9em;
}

section {
    width: 100%;
    height: auto;
    position: relative;
    margin: 95px 0 75px 0;
}

.section-leaving {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.section-active {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

textarea {
    border-color: var(--neutral-gray);
}

ul {
    padding-left: 25px;
    padding-bottom: 10px;
}

ul li {
    font-size: 1em;
    display: list-item;
    padding-bottom: 5px;
}

video {
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/*---------------------REUSABLE CLASSES-------------------------*/

/*---------BUTTONS----------*/
.btn {
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0px;
    background-color: var(--primary-one);
    color: var(--text-dark);
    border: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    font-size: 1.25em;
    padding: 5px;
    cursor: pointer;
    transform: skewX(-20deg);
}

.btn:hover {
    background-color: var(--primary-two);
}

.btn:active {
    background-color: var(--primary-two);
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.btn-tab {
    width: 129px;
    min-width: 129px;
    min-height: 40px;
    transform: skewX(20deg);
    box-shadow: 4px -4px 4px 0px rgba(0, 0, 0, 0.5);
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn-tab:hover,
.btn-tab:active {
    box-shadow: 4px -4px 4px 0px rgba(0, 0, 0, 0.5);
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn-tab-active,
.btn-tab-active:hover,
.btn-tab-active:active {
    background-color: var(--case-study-bg);
    color: var(--text);
    cursor: auto;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn-text {
    display: inline-block;
    transform: skewX(20deg);
}

.btn-text-tabs {
    display: inline-block;
    transform: skewX(-20deg);
}

.btn-cta {
    background-color: var(--secondary-one);
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--secondary-two);
    text-decoration: none
}

.btn-icon-square,
.btn-icon-round {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    transform: skewX(0);
    text-decoration: none;
}

.btn-icon-round {
    border-radius: 50%;
}

.btn-img {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.btn-img:hover,
.btn-img:active {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.btn-link {
    width: auto;
    height: auto;
    text-decoration: none;
    background-color: transparent;
    box-shadow: none;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: var(--secondary-one);
    text-decoration: underline;
    transform: skewX(0);
    padding: 0;
    white-space: nowrap;
}

.btn-link:hover,
.btn-link:active {
    color: var(--secondary-two);
    text-decoration: underline;
    background-color: transparent;
}

.to-top-of-window {
    display: flex;
    flex: 1;
    width: 100%;
    padding: 14px 0 14px 0;
    align-items: flex-end;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.mobile-link {
    display: none;
}

.btn-replay {
    position: absolute;
    background-color: transparent;
    color: var(--text);
    box-shadow: none;
    opacity: 0;
    z-index: 3;
    font-size: 250%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.btn-replay:hover,
.btn-replay:active {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

/*---------COLORS & BORDERS----------*/

.bg-lt-red {
    background-color: var(--secondary-two);
}

.red {
    color: var(--secondary-one);
}

.yellow {
    color: var(--primary-one);
    font-weight: normal;
}

body.light .yellow,
html.light .yellow {
    font-weight: bold;
}

.border {
    border: 1px solid var(--primary-one);
    padding: 14px;
}

.border-bottom {
    border-bottom: 1px solid var(--primary-one);
}

.cell-outline {
    outline: 1px solid var(--primary-two);
    outline-offset: 5px;
}

/*------------CONTAINERS-------------*/

.container {
    width: 100%;
    height: auto;
    padding: 25px;
}

.flex {
    width: 100%;
    height: auto;
    display: flex;
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.flex-sm {
    width: 100%;
    height: auto;
    display: flex;
    row-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.col {
    flex-direction: column;
}

.split {
    width: 50%;
    padding-right: 25px;
    margin-bottom: 10px;
}

.video-controls {
    align-items: center;
    justify-content: center;
}

.phone,
.tablet,
.laptop {
    width: 100%;
    height: auto;
}

.phone {
    min-width: 180px;
    max-width: 250px;
}

.tablet {
    min-width: 250px;
    max-width: 550px;
}

.laptop {
    min-width: 275px;
    max-width: 750px;
}

/*----------------- Images----------------- */
.img-reverse {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.img-lt,
.img-dk {
    transition: opacity .3s ease-in-out;
}

.img-dk {
    opacity: 1;
    display: flex;
}

.img-lt {
    opacity: 0;
    display: none;
}

/*---------IMAGE CAROUSELS-----------*/
.carousel-bg {
    background-color: var(--case-study-bg);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 528px;
}

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: 500px;
    overflow: hidden;
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
}

.mobile-carousel-btns {
    display: none;
}

.btn-previous,
.btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.btn-previous {
    left: 1px;
}

.btn-next {
    right: 1px;
}

.carousel-img-container {
    position: relative;
    width: calc(100% - 100px);
    height: 100%;
    display: flex;
    justify-content: center;
}

#hero .carousel-img-container {
    width: 100%;
}

.carousel-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}


/*---------SCROLL BARS-----------*/

.scroll-x,
.scroll-y {
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.scroll-x {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
}

.carousel .scroll-x {
    justify-content: flex-start;
}

.scroll-y {
    overflow-x: hidden;
    overflow-y: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-height: 100%;
}

.carousel .scroll-y {
    width: calc(100% - 100px);
}

.scroll-x::-webkit-scrollbar,
.scroll-y::-webkit-scrollbar {
    height: 8px;
}

.scroll-x::-webkit-scrollbar-track,
.scroll-y::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-x::-webkit-scrollbar-thumb,
.scroll-y::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.scroll-x:hover::-webkit-scrollbar-thumb,
.scroll-y:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
}

/* audit tables, affinity diagrams, letter-size images in landscape orientation */
.scroll-content-x-sm {
    min-width: 800px;
    max-width: 1000px;
}

/* Journey maps and design systems */
.scroll-content-x-med {
    min-width: 1000px;
    max-width: 1200px;
}

/* low-fidelity wireframes and mock-ups */
.scroll-content-x-lg {
    min-width: 1500px;
    max-width: 1700px;
}

/* narrow images */
.scroll-y-content {
    min-height: 600px;
    max-height: 700px;
}

.carousel-img-container .scroll-y-content {
    min-height: unset;
    max-height: unset;
    height: auto;
    width: 100%;
}

/*-------POPUPS-------*/

.video-overlay,
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}

.popup,
.container-video {
    padding: 25px;
    width: 70%;
    max-height: 90%;
    background-color: var(--background-secondary);
    box-shadow: 0 20px 40px 0px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
}

.show-popup {
    -webkit-animation: popUp 0.75s ease-out forwards;
    animation: popUp 0.75s ease-out forwards;
}

.hide-popup {
    -webkit-animation: popOut 0.75s ease-out forwards;
    animation: popOut 0.75s ease-out forwards;
}

.popup-row-one {
    justify-content: space-between;
}

.popup-content {
    overflow-y: auto;
    overflow-x: hidden;
    row-gap: 10px;
    position: relative;
}

.popup-content ul li {
    margin-left: 25px;
}



/* -----------------ANIMATIONS-------------------------*/

@-webkit-keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes popOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes popOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}


/* --------------------HEADER---------------------------*/

header {
    position: fixed;
    z-index: 4;
    min-width: 100vw;
    height: 85px;
    background-color: var(--background-main);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    padding: 0 25px 0 25px;
}

header .flex {
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

/* Logo */

#img-container-logo {
    width: auto;
    height: 60px;
    padding-bottom: 10px;
}

.logo-mobile {
    display: none;
}

/*  Dark & Light Mode Switch */

#slider-desktop,
#slider-mobile {
    width: auto;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 10px;
}

#slider-mobile {
    display: none;
}

.container-slider {
    display: none;
    width: auto;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

#slider-mobile .container-slider,
#slider-desktop .container-slider {
    display: flex;
}

.container-toggle {
    width: auto;
    height: auto;
}

#toggle-switch {
    position: relative;
    width: 63px;
    height: 24px;
    margin-right: 7px;
    background-color: var(--background-secondary);
    border: 3px solid var(--primary-one);
    border-radius: 50px;
    box-shadow: none;
    cursor: pointer;
    transition: background-color .5s ease-out;
}

.slider {
    position: absolute;
    width: 25px;
    height: 25px;
    top: -4px;
    transform: translateX(-30px);
    background-color: var(--primary-two);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    transition: transform .75s ease-out;
}

.light-mode-slider {
    transform: translateX(10px);
}

#slider-note {
    width: auto;
}

/* Navigation menu */

#nav-desktop {
    width: 60%;
    -moz-column-gap: 45px;
    column-gap: 45px;
    justify-content: flex-end;
}

#nav-desktop a {
    text-decoration: none;
}

.nav-mobile {
    width: 100vw;
    display: none;
    position: fixed;
    row-gap: 25px;
    top: 0;
    left: 0;
    padding: 25px 25px 80px 25px;
    z-index: 999;
    background-color: var(--background-secondary);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    transition: transform ease-out 1s, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-mobile-buttons {
    justify-content: flex-start;
    -moz-column-gap: 35px;
    column-gap: 35px;
}

.nav-mobile-buttons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.nav-mobile-buttons .flex-sm {
    width: unset;
    flex: 1;
}

.nav-mobile-appear {
    transform: translateY(0%);
}

.nav-mobile-row-top {
    justify-content: space-between;
}

.triangle,
.triangle-red {
    width: 100px;
    height: 80px;
    background-color: transparent;
    position: relative;
}

.triangle::before,
.triangle-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-two);
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}

.triangle-red::before {
    background-color: var(--secondary-two);
}

.container-nav-btn {
    position: absolute;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 5px;
    top: 5%;
    right: 5%;
    z-index: 4;
    row-gap: 0;
}

.nav-label {
    color: var(--text-dark);
    justify-content: center;
}

#btn-nav-mobile {
    display: none;
}

.btn-nav-active {
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    cursor: default;
    pointer-events: none;
}


/* ------------------------HERO-----------------------------*/

.trademark {
    display: none;
    position: absolute;
    right: -85%;
    bottom: 9.5%;
    opacity: 0;
    transition: opacity .75s ease-in-out;
    font-size: .65em;
}

#hero,
#hero .carousel {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
}

#hero h1,
#hero span {
    width: 100%;
    text-align: center;
    position: absolute;
    justify-content: center;
    z-index: 2;
}

#hero h1 {
    top: 25%;
}

#hero span {
    top: 50%;
}

#hero .carousel-img {
    background-color: var(--background-secondary);
}

#hero picture,
#hero img {
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-btns-container {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px;
    padding: 10px;
    background-color: var(--background-main);
    opacity: .7;
    border-radius: 45px;
    position: absolute;
    bottom: 10%;
    z-index: 2;
}

.btn-carousel {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    padding: 0;
    transform: skewX(0);
    border-radius: 50%;
    position: relative;
    background-color: var(--primary-one);
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.active-img {
    background-color: var(--text-dark);
    border: 3px solid var(--primary-one);
    cursor: default;
}

/* ------------------------ABOUT-----------------------------*/

#about-header-mobile {
    display: none;
}

#about .border-bottom {
    padding-bottom: 10px;
}

.about-leftside {
    width: auto;
}

.about-leftside a {
    align-self: center;
}

.about-rightside {
    flex: 1;
}

.profile-img {
    width: 200px;
}

#desktop-facts,
#mobile-facts,
.about-item {
    flex: 1;
}

#mobile-skills,
#mobile-facts {
    display: none;
}

#facts-title {
    margin-top: .25em;
}

.caret-dropdown-content {
    display: flex;
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        transform 0.5s ease;
}

.dropdown-active {
    background-color: var(--primary-two);
}

.dropdown-content-active {
    max-height: 1000px;
    opacity: 1;
    transform: scaleY(1);
}

/* -----------------------CONTACT----------------------------*/

#contact {
    width: 100%;
    height: auto;
    display: flex;
    row-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    align-items: flex-start;
    justify-content: center;
}

#contact .container {
    width: 715px;
    height: 700px;
    padding: 14px;
    margin: 14px;
    border: 1px solid var(--primary-one);
    border-radius: 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right bottom, var(--background-main), rgba(255, 189, 0, .1));
}

.contact-leftside {
    width: auto;
    height: 100%;
    padding-right: 14px;
    justify-content: flex-end;
    border-right: 1px solid var(--primary-one);
}

.contact-leftside a {
    align-self: flex-start;
}

.contact-rightside {
    min-width: 0;
    height: 100%;
    flex: 1;
}

#contact-form {
    height: 100%;
    justify-content: space-between;
}

.contact-name,
.contact-email,
.contact-message,
.contact-submit {
    row-gap: 1px;
}

#contact input {
    width: 100%;
    height: 46px;
}

.contact-item {
    flex: 1;
    justify-content: flex-end;
}

.contact-item label {
    text-align: right;
    align-self: center;
}

#contact-need-mobile {
    display: none;
}

#contact input[type="checkbox"] {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
}

#contact textarea {
    height: 150px;
    padding: 10px;
    font-family: inherit;
}

.contact-message span {
    width: 100%;
}

#contact-submitNote {
    align-self: center;
}

.contact-hidden {
    display: none;
}

/* -----------------------WORK----------------------------*/

/*------MAIN CONTENT------*/
#work-all {
    justify-content: center;
}

#container-work {
    max-width: 1093px;
    row-gap: 0;
}

#container-work h1,
#container-work ul {
    padding-left: 14px;
    padding-right: 14px;
}

#container-case-studies {
    row-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
}

/*------TABS SETUP------*/

.tab-overflow,
.tabs {
    height: 40px;
}

.tab-overflow {
    width: 100%;
    position: relative;
}

.tabs {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 15px;
    white-space: nowrap;
    transition: transform .3s ease-in-out;
    will-change: transform;
}

.btn-plus,
.btn-minus {
    display: none;
    position: absolute;
    z-index: 2;
    top: 0%;
}

.btn-plus {
    right: 1%;
}

.btn-minus {
    left: 1%;
}

.tab-content {
    width: 100%;
    flex-direction: column;
    row-gap: 25px;
    padding: 14px;
    background-color: var(--case-study-bg);
}

#container-case-studies .tab-content {
    height: 100%;
}

.content-triggers {
    margin-left: 7px;
}

.case-study-container .carousel {
    max-width: 1000px;
    height: 900px;
}

.case-study-container .btn-previous,
.case-study-container .btn-next {
    top: 25px;
}

.tbd {
    width: 250px;
    height: 250px;
    background-color: var(--primary-one);
    color: var(--text-dark);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    padding-left: 25px;
}

/*------CASE STUDIES DIALOG------*/
.case-study-container {
    display: none;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    row-gap: 0;
    z-index: 999;
    background-color: var(--background-main);
    transform: translateX(100%);
    transition: transform 1s ease-out;
    scrollbar-gutter: stable;
}

.case-study-container-active {
    transform: translateX(0%);
}

.case-study-container .tab-content {
    padding-left: 25px;
}

#container-back-btn {
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: auto;
    margin-bottom: 25px;
}

#case-study-top-left {
    width: unset;
    height: 100%;
    display: flex;
    flex: 1;
    row-gap: 45px;
}

#case-study-top-right {
    width: 100%;
    min-width: 300px;
    max-width: 360px;
    height: 375px;
    display: flex;
    row-gap: 5px;
    justify-content: center;
    margin-bottom: 25px;
}

#title-container,
#role-container {
    row-gap: 0;
}

#case-study-img-container {
    position: relative;
    justify-content: center;
}

#spotlight {
    opacity: .7;
}

#case-study-img {
    position: absolute;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
}

#case-study-img img {
    max-height: 256.39px;
}

#links-final {
    row-gap: 1px;
}

#links-final p {
    justify-content: center;
}

.links {
    -moz-column-gap: 15px;
    column-gap: 15px;
    justify-content: center;
}

#case-study-bottom-row {
    display: flex;
    flex: 1;
    min-height: 500px;
    background-color: var(--case-study-bg);
}

#art-content,
#gtm-content,
#nw-content,
#ors2-content {
    display: none;
}

/* --------- UX Case Studies -------------*/

.survey-icons {
    display: flex;
    width: 415px;
    height: 40px;
    align-items: flex-end;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.split .survey-icons {
    width: 315px;
}

.survey-icon {
    display: flex;
    height: 100%;
    width: 100px;
    justify-content: flex-end;
    align-items: flex-end;
    -moz-column-gap: 2px;
    column-gap: 2px;
}

.split .survey-icon {
    width: 70px;
}

.survey-icon i {
    color: var(--primary-one);
}

.fa-child {
    font-size: 1em;
}

.fa-heart {
    font-size: 1.3em;
}

.survey-icons p {
    width: unset;
    flex: 1;
}

.personas {
    min-height: 640px;
}

.personas .border {
    max-width: 1200px;
}

.persona-left {
    width: 200px;
}

.persona-img {
    width: 200px;
    position: relative;
    align-items: flex-end;
}

.persona-quote {
    color: var(--text-light);
    background-color: var(--neutral-gray);
    position: absolute;
    padding: 2px;
    text-align: center;
    opacity: .8;
}

.persona-right {
    flex: 1;
}

.maps {
    min-height: 1054px;
}

.table .flex-sm {
    padding-bottom: 10px;
}

.table-header {
    flex: 1;
    height: 70px;
    color: var(--text-dark);
    background-color: var(--primary-one);
    justify-content: center;
    text-align: center;
}

.table-cell {
    flex: 1;
    height: 70px;
    justify-content: center;
}

.map .table-cell {
    height: auto;
}

.table-icons {
    width: auto;
    height: 138.88px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 0;
    color: var(--primary-one);
}

.btn-active {
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--primary-two);
    cursor: default;
    pointer-events: none;
}

.btn-play,
.btn-pause {
    display: none;
}

.control-active {
    display: flex;
}


/* -----------------------FOOTER----------------------------*/

footer {
    min-width: 100vw;
    padding: 7px 25px 7px 25px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 4;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-bottom {
    background-color: var(--background-main);
    box-shadow: 4px -4px 2px 0px rgba(0, 0, 0, 0.5);
}

.container-footer,
.container-notices,
.social-media {
    width: auto;
}

.container-footer {
    justify-content: flex-end;
}

.container-notices {
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.container-notices p {
    justify-content: center;
}

.container-notices button {
    font-size: 1em;
}

.disclaimer-content,
.privacy-content {
    display: none;
}

/*-------------HIDE / UNHIDE CLASS --------------*/

.hide {
    display: none;
    opacity: 0;
}

.unhide {
    display: flex;
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    z-index: 1;
}