/* #region UTILITIES */

.Shown {
    display: initial !important;
}
.VideoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin-top: 2rem;
  }
  
  .VideoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    border-radius: 1.5rem;
  }

.Hidden {
    /* kept intentionally empty so mobile CSS can animate show/hide
       do not force display:none here (it would prevent transitions) */
}



/* #endregion UTILITIES */

/* #region INDIVIDUAL PROJECT CARDS */

/* UX design projects */

.GovDataFinderProject {

}

.NewshouseProject {

}

.CodingByDesignProject {

}

.AIFinancialAdvisorProject {
    
}


/* Graphic design projects */

.CuseHacksProject {

}

.CommunityGeographyProject {
    
}

.FlavefullProject {
    display: none !important;
}

.DailyOrangeGraphicsProject {

}

.MotionReelProject {

}

.MapDesignProject {

}

.PetropolisProject {

}

.TypeSpecimenProject {
    display: none !important;
}


/* #endregion INDIVIDUAL PROJECT CARDS */

/* #region GLOBAL */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Verdana, sans-serif;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #E9E9E9;
    overflow-x: clip; /* Prevent horizontal scrolling on the page */
}

main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

#Projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* width: clamp(30rem, 60vw, 60rem);
    align-self: center; */
}
.ProjectsGroup {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.Layout {
  /* display: grid; */
  /* grid-template-columns:
    1fr
    min(calc(100% - 32rem), 100%)
    1fr; */
    /* padding-left: 16rem; */
    /* padding-right: 16rem; */
    padding: 0 !important;
}
.Wide {
    /* width: 80vw !important; */
    padding: 0 10vw !important;
    /* padding: 0; */
    /* align-self: center; */
}
.NoPaddingRight {
    padding-right: 0;
}
/* .Layout > * {
  grid-column: 2;
  width: 100%;
} */

.FullBleed {
  width: 100%;
  grid-column: 1 / 4;
  /* display: grid; */
}

.SectionPadding {
    /* padding-left: 16rem; */
    /* padding-right: 16rem; */
    padding: 0 calc((100vw - clamp(30rem, 50vw, 60rem))/2) !important;
}
.SectionPaddingLeftOnly {
    padding-left: 8rem;
    padding-right: 8rem;
}
.SmallPadding {
    padding-left: 4rem;
    padding-right: 4rem;
}
.SmallPaddingRight {
    padding-right: 2rem;
}
.ClearPadding {
    padding: 0;
}

img {
    display: block;
    image-orientation: none; /* fix for rotated images on Safari */
}
.ProjectMainSection img {
    border: 1px solid rgb(201, 201, 201);
}
b {
    font-weight: 600;
}
button {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    gap: .75rem;
    align-items: center;
}
button img {
    width: 1.5rem;
}
.PrimaryButton {
    border: none;
    background-color: #2156a6;
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: .5rem;
    text-decoration: none;
    text-align: center;
    text-wrap: balance;
    width: fit-content;
}

.PrimaryButton:focus-visible {
    outline: 6px #2156a6 double;
}
.SecondaryButton {
    border: 2px solid #2156a6;
    background-color: #fff;
    color: #2156a6;
    padding: 0.875rem 1.625rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: .5rem;
    text-decoration: none;
    text-align: center;
    text-wrap: balance;
    width: fit-content;
}
.GhostButton {
    border: none;
    background-color: transparent;
    color: #2156a6;
    padding: 1rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: .5rem;
    text-decoration: none;
    text-align: center;
    text-wrap: balance;
    width: fit-content;
}
.PrimaryButton:hover {
    background-color: #00005e;
    transition: .1s ease-in-out;
}
.PrimaryButton:not(:hover) {
    background-color: #2156a6;
    transition: .1s ease-in-out;
}

.PrimaryButton:hover, .SecondaryButton:hover, .GhostButton:hover {
    cursor: pointer;
}

#skip {
    background-color: #fff;
    border: 1px solid black;
    padding: 2px;
    position: absolute;
    left: -999px;
    color: #000;
    z-index: 999;
}
#skip:focus {
    left: 10px;
    top: 30px;
}

.AlignedCards {
    display: flex;
    gap: 1rem;
}
.ParentColumn {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.LargeGapColumn {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.BigHeadingAndParagraph {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.NoBorder img {
    border: none;
}
.SmallGap {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.ProjectBody h2 {
    margin-bottom: -1.5rem;
}
.Row {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
}
.Column {
    display: flex;
    flex-direction: column;
    gap: 2rem !important;
}
.GapUnset {
    gap: unset !important;
}

/* .Column h1, .Column h2, .Column h3, .Column h4 {
    margin-bottom: -.5rem;
} */
.ParentColumnGap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.JustImagesContainer {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.OneColumnImagesContainer {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
    gap: 1.5rem;
}
a:focus-visible {
    outline: 2px solid #2156a6;
}

@media only screen and (max-width: 1300px) {
    .SectionPadding, .SectionPaddingLeftOnly {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media only screen and (max-width: 800px) {
.JustImagesContainer {
    display: flex;
    flex-direction: column;
}
.SectionPadding, .SectionPaddingLeftOnly, .CaseStudyMainContent{
        padding-left: 1.7rem !important;
        padding-right: 1.7rem !important;
    }
}
@media only screen and (max-width: 600px) { 

    .GraphicDesignProjects.Wide {
        padding: 0 !important;
    }
    #Projects {
        gap: .75rem;
    }

}
@media only screen and (max-width: 600px) {
    /* .SectionPadding, .SectionPaddingLeftOnly, .Layout {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    } */
    .CaseStudyPart {
        width: 100% !important;
    }
    .NavBar, .Wide {
        padding: 0 5vw !important;
    }
}
@media only screen and (max-width: 400px) {
    .SectionPadding, .SectionPaddingLeftOnly, .CaseStudyMainContent{
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }
}



/* #endregion GLOBAL */

/* #region NAVBAR */

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

    .ProjectHeroDescription {
        max-width: unset !important;
    }
    /* .Wide {
        width: 90vw !important;
    } */

    .CaseStudyHero {
        padding: 2rem 10vw !important;
    }
}

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

    .NavBarLogoMobile {
        display: flex !important;
        background-color: unset !important;
        padding: 0 !important;
    }
    .NavBarLogoDesktop {
        display: none !important;
    }
    .NavBarLinks {
        /* collapsed by default to prevent flash before JS runs */
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
        align-items: center;
        max-height: 0; /* collapsed */
        opacity: 0;
        overflow: hidden;
        will-change: max-height, opacity;
        /* use identical timing for both properties so open/close feel symmetric */
        transition: max-height 300ms ease, opacity 400ms ease;
        padding-top: .5rem;
    }
    /* add `.open` to expand */
    .NavBarLinks.open {
        max-height: 1000px; /* large enough to fit menu items */
        opacity: 1;
    }
    .MenuButton {
        display: block !important;
        padding: 0;
    }
    .NavBarLinks  {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
        align-items: center;
        padding-bottom: .5rem;
    }
    .NavBarLinksChild {
        display: flex;
        align-items: center;
        white-space: nowrap;
        gap: .5rem;
        width: 100%;
        justify-content: center;
    }
    .CurrentPage {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: .8rem !important;
        width: 100% !important;
    }
    .CurrentPage div {
        /* display: inline-block; */
        /* width: .8rem; */
        width: 100% !important;
        height: 3px !important;
        background-color: #2156a6 !important;
        border-radius: 999px !important;
        /* flex-shrink: 0; */
    }
    .DesktopNav {
        display: none;
    }
    .MobileNav {
        display: flex !important;
    }
    .MobileNavTop {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 1rem;
    }
    .NavBar.NavBar {
        display: flex;
        flex-direction: column;
        padding-bottom: .5rem !important;
        /* gap: .5rem; */
    }





    /* .NavBar.NavBar {
        flex-direction: column;
        gap: .75rem;
        padding-bottom: 1rem;
        padding:unset;
    }
    nav {
        display: unset;
    }
    .NavBarLinks {
        margin-bottom: 1rem;
        gap: 2rem !important;
    } */
    
}

@media only screen and (max-width: 400px) {
    .NavBarLinksChild {
        font-size: 1rem;
    }
    .NavBarLinks {
        gap: .8rem !important;
    }
    .ProjectCard {
        padding: 1.5rem !important;
    }
    .ProjectCardText h3 {
        font-size: 1.2rem !important;

    }
}
@media only screen and (max-width: 430px) {
    .NavBarLinks a {
        /* font-size: .9rem !important; */
    }
}
@media only screen and (max-width: 350px) {
    .NavBarLinks {
        gap: 1.3rem !important;
    }
}
@media only screen and (max-width: 330px) {
    .NavBarLinks a {
        /* font-size: .85rem !important; */
    }
}
@media only screen and (max-width: 324px) {
    .NavBarLinks {
        gap: 1.4rem !important;
    }
}

.MobileNav {
    display: none;
}
.NavBarLogo {
        /* margin-left: 10vw; */
        /* color: red; */
        /* padding-right: 2vw; */
        /* padding-top: 1em; */
        /* padding-bottom: 0; */
        /* height: ; */
        padding: 0rem;
        /* border-radius: 20; */
        /* background-color: #2156a6; */
        
}
.NavBarLogo img {
        background-color: #2156a6;
        /* padding-left: 2em; */
        /* color: red; */
        /* padding-right: 2em; */
        /* padding-top: 2em; */
        padding: 1rem;
        height: 5rem;
        width: 5rem;
        color: #00005e;
}
.NavBarLogo a {
font-size: 0;
width: max-content;
display: block;
}
.NavBarLogoDesktop {
    display: block;
}
.NavBarLogoDesktop:focus-visible {
    outline: 6px #2156a6 double;
}
.NavBarLogoMobile {
    display: none;
}
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    /* margin-bottom: 2rem; */
}
.MenuButton {
    display: none;
}

/* Hide navbar on mobile when scrolling down */
@media only screen and (max-width: 850px) {
    nav.nav-hidden {
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }
}
.NavLinkHome {
    display: none !important;
}
.NavBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background: rgba( 233, 233, 233, 0.75);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur( 26.5px );
    -webkit-backdrop-filter: blur( 26.5px);
    padding: 0 10vw !important;
    /* align-self: center; */
    /* width: 80vw !important; */
}
.NavBarLinks {
    /* position: absolute;
    right: 20%; */
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    gap: 3rem;
    margin-top: .25rem;
}
.NavBarLinks a:link, .NavBarLinks a:visited, .NavBarLinks a:hover, .NavBarLinks a:active {
    text-decoration: none;
}
/* .NavBarLinks a:link, .NavBarLinks a:visited {
    color: #2156a6;
}
.NavBarLinks a:hover, .NavBarLinks a:active, .CurrentPage div:hover {
    color: #00005e;
} */

.NavBarLinksChild a  {
    color: #2156a6;
}
.NavBarLinksChild div {
    background-color: #2156a6;
}
.NavBarLinksChild:hover a  {
    color: #00005e;
    transition: .1s ease-in-out;
}
.NavBarLinksChild:hover div {
    background-color: #00005e;
    transition: .1s ease-in-out;
}







.NavBarLinksChild {
    /* display: inline;
    padding-left: 100px; */

}
.CurrentPage {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: .25rem;
}
.CurrentPage a {
    /* color: #00005e !important; */
    /* text-decoration: underline !important; */
    display: flex;
    
}
.CurrentPage div {
    /* content: ''; */
    position:relative;
    height: .25rem;
    /* top: 1.5rem; */
    width: 100%;
    background-color: #2156a6;


}

/* .CurrentPage::after{
    content:'';
    height: 2px;
    background-color: #2156a6;
    display: inline-block;
    top: 10%;
    left: 4%;
    border-radius: 20px;
    background-color: yellow;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
} */
/* #endregion NAVBAR */

/* #region FOOTER */

@media only screen and (max-width: 850px) {
    .FooterDiv {
        flex-direction: column;
        align-items: center !important;
        gap: 1rem;
    }
    .FooterMessage {
        margin-right: 0 !important;
    }
    .FooterLinks {
        flex-direction: column;
        gap: 1rem !important;
    }
    .NavBarLogo img {
        /* background-color: unset; */
        /* padding-bottom: .25rem; */
    }
    .NavBarLogoDesktop {
        display: block;
    }
    .NavBarLogoMobile {
        /* display: block; */
}
}

footer {
    background: #ffffff;
    margin-top: 3.5rem;
    /* padding: 2rem 0; */
    background: #e9e9e9;
    box-shadow: 0px 2px 8px #00000057;
    background-color: 25%;
    background: rgba( 233, 233, 233, 0.75);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur( 26.5px );
    -webkit-backdrop-filter: blur( 26.5px);
    padding: 2rem 10vw !important;

}
footer a:hover, footer a:active {
    color: #00005e;
}
.FooterDiv {
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: .9rem;
}
.FooterDivParent {
    display: flex;
    justify-content: space-between;
}
.FooterMessage {
    margin-right: auto;
    font-weight: 500;
    
}
.FooterMessage span {
    width: 300px !important;
}
.FooterLinks {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.LogoFooter {
    max-width: 16px;
}
.LinkedinLogo {
    width: 40px;
}
.Email {
    color: #2156a6;
}
/* #endregion FOOTER */

/* #region TYPOGRAPHY */
h1 {
    font-family: 'Lora', 'Montserrat', Verdana, sans-serif;
    /* letter-spacing: .006em; */
    font-size: 2.8rem;
    font-size: 3rem;
    font-weight: 700;
    /* width:fit-content; */
    /* border-bottom: 4px solid #2156a6;
    padding-bottom: 4px; */
    /* margin-right: 10%; */
    margin-top: 0;
    line-height: 130%;
    widows: 1;
    /* padding-right: 0 !important; */
    color: #2156a6;
    text-align: left !important;
    text-wrap: balance;
}
.HeroHomeIntro h1 {
    line-height: 120%;
}
.LightH1 {
    letter-spacing: 2%;
}
.H1Eyebrow {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media only screen and (max-width: 600px) {
    .H1Eyebrow {
        font-size: 1rem;
    }
    
    
}
h2 {
    font-family: 'Lora', 'Montserrat', Verdana, sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2156a6;
    line-height: 130%;
    /* letter-spacing: .03em; */

}
.CaseStudyPart h2 {
    border-bottom: #2156a6 2px solid;
    padding-bottom: .25rem;
    margin-bottom: .5rem;
}
h3 {
    font-size: 2.35rem;
    font-weight: 400;
    line-height: 130%;
}
h4, .Heading4, .LargeSubheading {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 130%;
}
/* .H4Large {
    font-size: 1.25rem;
    font-weight: 600;
} */
h5, .SmallSubheading {
    font-size: 1.1rem;
    line-height: 130%;
    font-weight: 600;
    color: #4E4E4E
}
p, .ParagraphGap ul, li {
    line-height: 140%;
    font-size: 1.1rem;
}
.LightH1 {
    font-weight: 300;
    text-transform: uppercase;
}
.HeavyH1 {
    font-weight: 600;
    text-transform: uppercase;
}

:is(.ParentColumn) > h3 + p, :is(.ParentColumn) > h4 + p, :is(.ParentColumn) > h3 + img, :is(.ParentColumn) > h4 + img {
    margin-top: -1rem; /* this takes the value of the gap property of the class .ParentColumn and subtracts the value applied in this margin-top property. This property needs to be negative, and the result the equation [.ParentColumn {gap: x}] + [:is(.ParentColumn) > h3 + p, :is(.ParentColumn) > h4 + p] should ALWAYS equal the value of margin-top within the selector h3 + p, h4 + p. */
}
h3 + p, h4 + p {
    /* margin-top: 1rem; */
}
h4 + p, .Heading4 + p, .Heading4 + .ParagraphGap {
    margin-top: .25rem;
}
.ProjectBodySectionHeadings .StickyElement:has(h2 + p){
    /* margin-bottom: 0 !important; */
    gap: .75rem;
    /* If a container for the text sections on the left column of a case study has only an h2 and a p tag (as opposed to an h2 and then a div with an h3 and p tag), then the spacing between the h2 and p tag will be .75rem. If there is a div with an h3 and p tag, then the spacing between the h2 and the div will be 1.25 rem (.75 gap + .5 margin-bottom) because the spacing between an h2 and p tag should be less than the spacing between an h2 and h3 tag. */
}
.ProjectBodySectionContent h3 {
    /* margin-top: .5rem; */
}
.ProjectTag {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1rem;
}
.NormalEyebrow {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    color: #2156a6;
}
a.Link, a.Link:visited {
    color: #2156a6;
    font-weight: 400;
}
a.Link:hover {
    color: #00005e;
    transition: .1s ease-in-out;
    font-weight: 400;
}
a.Link:active {
    color: #00005e;
    font-weight: 400;
}
.SmallH2 {
    font-size: 1.5rem;

}
/* .Heading4 {
    font-size: 1.25rem;
    font-weight: 500;
} */
.ProjectCardInfo h3 {
    font-size: 1.9rem;
}
.ProjectCardText h3 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 130%;
}   
.ProjectCardBoldBlue {
    font-weight: 600;
    color: #2156a6;
    /* font-style: italic; */
}
.BodyLarge {
    font-size: 1.5rem;
    line-height: 130%;
    font-weight: 300;
}
.BodySmall {
    font-size: 1rem;
    font-weight: 300;
}
.RelatedList {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}
.RelatedList div::after {
    content:"";
    display: block;
    height: 2px;
    width: 100%;
    background-color: #e9e9e9;
    margin-top: .75rem;
    margin-bottom: .75rem;
}
.RelatedList div:last-child::after {
    display: none;
}
.Quote {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    /* border-left: 2px solid #2156a6;
    border-top: 2px solid #2156a6; */
    /* padding: .75rem; */
}
.QuoteAttribution {
    font-size: 1.1rem;
    line-height: 130%;
    font-weight: 500;
    color: #2156a6;
}
.KeyInsightCard {
    display: flex;
    flex-direction: column !important;
    gap: .75rem !important;
}
/* .KeyInsightCard div {
    content: "//" 2rem;
    height: 100px;
    width: 100px;
    display: inline-block;
    font-size: 3rem;
    line-height: 100%;
    font-weight: 700;
    color: #2156a6;
} */

.AlignedIcon {
    /* height: 100%; */
    /* height: max-content; */
}
 .AlignedIcon img {
    width: 2rem;
    /* width: 100%; */
 }
.Blue {
    color: #2156a6 !important;
}


@media only screen and (max-width: 1000px) {
    .LightH1 {
        font-weight: 300;
        text-transform: uppercase;
    }
    .HeavyH1 {
        font-weight: 600;
        text-transform: uppercase;
    }
    .HeroHomeIntro {
        display: flex;
        justify-content: center;
    }
    .HeroHomeIntro h1 {
        text-align: center !important;
    }
    h1 {
        font-size: 3rem;
        line-height: 125%;
    }
    .HeroHomeIntro h1 {
        padding-right: 0 !important;
        margin-right: 0 !important
    }
    .HeroHomeIntro .SectionPadding {
        padding: .5rem !important;
    }
    .ProjectTag {
        font-size: 1rem !important;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.3rem;
    }
    .BodyLarge {
        font-size: 1.3rem;
    }
}

/* #endregion TYPOGRAPHY */


/* #region HOME PAGE */
.HeroAnimation {
    width: 100%;
}
.HeroMainSubHeading {
    /* text-transform: uppercase; */
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    line-height: 140% !important;
}
p:has(.HeroMainSubHeading) {
    text-wrap: pretty;
}
@media only screen and (max-width: 630px) {
    .HeroMainSubHeading {
        font-size: 1.5rem;
        line-height: 130% !important;
    }
}


.UXDesign {
    font-weight: 700;
    color: #2156a6;
}
.VisualDesign {
    font-weight: 500;
    color: #4921A6;
}
.UserResearch {
    font-weight: 500;
    color: #9621A6;
}
.FrontEndDev {
    font-weight: 00;
    color: #A62137;
    text-wrap: pretty;
}
.HeroHome {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.HeroHomeHeading {
    display: flex;
    flex-direction: column;
    gap: .75rem
}
.HeroHalfWidth {
    max-width: 45rem;
}
/* #endregion HOME PAGE */

/* #region PROJECT CARDS */

/* .GraphicDesignProjects .ProjectCardImage :first-child {
    max-height: 80%;
    padding-bottom: 2rem;
} */
.GraphicDesignProjects .ProjectCard {
    /* align-items: center; */
}

@media only screen and (max-width: 900px) {
    .ProjectsSectionHeader {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
        text-align: center;
        text-wrap: balance;
    }
    .ProjectTag {
        font-size: 1rem;
    }
    .ProjectCard {
        flex-direction: column-reverse !important;
        align-items: flex-start !important;
        text-align: left !important;
        height: auto !important;
        padding: 2rem;
        gap: 1.5rem !important;
    }
    .ProjectCardText {
        align-items: flex-start !important;
        text-align: left !important;
        max-width: 100% !important;
        padding: 0 !important;
        height: auto !important;
        gap: 2rem;
    }
    .ProjectCardInfo {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .ProjectCardImage {
        position: static !important;
        align-self: stretch !important;
        order: 2;
    }
    .ProjectCardImage img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media only screen and (max-width: 900px) {
    /* .ProjectCard {
        flex-direction: column-reverse !important;
        padding: 1.2rem !important;
        gap: 2rem;
        overflow: unset !important;
        max-height: unset !important;
    } */
    .ProjectCardImage{
        overflow: unset !important;
    }
    .ProjectCardText, .ProjectCardInfo {
        align-items: center;
        text-align: center;
    }
    .ProjectCardText {
        max-width: 80%;
        padding-right: unset;
    }
    .ProjectTag {
        font-size: 1.125rem;
    }
    
}
@media only screen and (max-width: 500px) {
    .ProjectCardText {
        max-width: 100%;
    }
    .TagsContainer {
        flex-direction: column;
        gap: .25rem !important;
    }
}

.ProjectsSection {
    /* padding-top: 1.5rem; */
    gap: 1rem;
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr 1fr; */
}
.ProjectCard {
    display: flex;
    /* position: relative; */
    flex-direction: row;
    background-color: #fff;
    border-radius: 1.5rem;
    text-decoration: none;
    color: initial;
    /* max-height: 500px; */
    /* height: 500px; */
    overflow: hidden;
    /* border: #2156a6 0px solid inset; */
    outline: #2156a6 0px solid;
    padding: 1.5rem;
    gap: 1rem;

-webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
transition: .3s ease-in-out;

}

/* .ProjectCard .PrimaryButton {
    position: relative;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
} */
.ProjectCard:hover {
    /* background-color: #00005e; */
    /* transition: .3s ease-in-out;
    color: #fff; */
    background-attachment: fixed;
    background-image:radial-gradient(circle at var(--x, 0) var(--y, 0), rgba(0,14,84,0.18109250536151966) 0%, rgba(0,14,84,0) 100%);
    -webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.9);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.9);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.9);
transition: .01s ease-in-out;
/* border: #2156a6 1px solid inset; */
outline: #2156a6 2px solid;
 
}

.ProjectCardText .PrimaryButton {
    display: none;
}

/* .ProjectCard::after {
    content: "";
    position: absolute;
    inset: -1px;
    background-attachment: fixed;
    background-image: radial-gradient(
      circle at var(--x, 0) var(--y, 0),
      rgba(0,14,84,0.18109250536151966) 0%
      transparent 5rem
    );
    pointer-events: none;
    z-index: -1;
  } */
.ProjectCard:not(:hover) {
    transition: .3s ease-in-out;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
}
/* .ProjectCard:hover .FeaturedTag {
    color: white;
    transition: .3s ease-in-out;
} */
.ProjectCard:not(:hover) .FeaturedTag {
    transition: .3s ease-in-out;
    color: #2156a6;
}
.ProjectCardText {
    /* flex: 40%; */
    /* padding-right: 1rem; */
    /* width: 30rem; */
    /* position:absolute; */
    /* right: 4rem; */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-wrap: balance;
    /* padding-left: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0rem; */
    
    justify-content: space-between;
    max-height: 100%;
    width: 100%;

}
.TagsContainer {
    display: flex;
    gap: 1rem;
    margin-bottom: .25rem;
}
.FeaturedTag {
    color: #2156a6;
}
.ProjectCardInfo {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.ProjectCardImage {
    /* overflow: hidden; */
    /* padding: 2rem; */
    /* position: absolute;
    right: -4.5rem;
    bottom: -14rem; */
    /* padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem; */
    align-content: top;
    
}

.ProjectCardImage img {
    max-width: 100%;
    height: auto;
    /* max-width: 32rem; */
}
/* #endregion PROJECT CARDS */

/* #region CONTACT SECTION */
label {
    color: #4E4E4E;
    font-size: .875rem;
    text-transform: uppercase;
}
.ContactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}
.ContactForm input[type="text"] {
    min-height: 2rem;
    border-radius: .5rem;
    border: 1px #4E4E4E solid;
    padding-left: .5rem;
    font-size: 1rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
}
.ContactForm .FormChild {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.FormMessageDiv textarea {
    min-height: 8rem;
    border: 1px #4E4E4E solid;
    border-radius: .5rem;
    padding-left: .5rem;
    font-size: 1rem;
    padding-top: .5rem;
    resize: vertical;

}

input:focus-visible, textarea:focus-visible {
    outline: #2156a6 solid 2px;
}
form .Row {
    gap: .75rem;
}
#Contact {
    scroll-margin-top: 16vh;
    gap: 1.5rem;
    max-width: 50%;
    
}
@media only screen and (max-width: 800px) {
    #Contact {
        max-width: 100%;
    }
}


/* #endregion CONTACT SECTION */

/* #region CASE STUDY */

.CaseStudyHero {
    margin-bottom: 2rem;
    /* padding-top: 2rem;
    padding-bottom: 2rem; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 4rem; */
    gap: 4rem;
    overflow: hidden;
    background: rgba( 233, 233, 233, 0.75);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur( 26.5px );
    -webkit-backdrop-filter: blur( 26.5px);
    /* padding: 2rem 10vw !important; */
    /* padding: 0rem 10vw !important; */
    align-self: center;
    align-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
}
.CaseStudyHeroText h1 {
    width: 100%;
    margin-right: 0;
    text-align: left; /* keeps your alignment */
    /* text-wrap: unset !important; */
}
.CaseStudyHeroText {
    flex: 1 1 0;
    min-width: 0; /* prevents flex item from overflowing */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* text-wrap: balance; */
    /* padding-top: 2rem;
    padding-bottom: 2rem; */
    
    
}


.CaseStudyHeroImage {
    flex: 0 0 50%;
    min-width: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* margin-right: -10rem; */
    position: relative; /* enables the overflow effect */
    height: 100%;
    /* padding-top: 2rem; */
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    max-width: 50%;
}
.CaseStudyHeroImage img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* width: 100%; */
}

.CaseStudyMainContent {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.CaseStudyPart {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: clamp(30rem, 50vw, 60rem);
    align-self: center;
}

.CaseStudyPart img, .CaseStudyPart video {
    border-radius: 1.5rem;
}
/* .CaseStudySection {
    display: flex;
    flex-direction: column;
    gap: unset;
} */

/* .CaseStudySection div {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
} */
.ContentBlock {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.SectionMiniContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.SectionMiniContent img, .SectionMiniContent video {
    border-radius: 1.5rem;
}
.SectionText {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.NoPadding {
    padding: 0 !important;
}

.RestorePadding {
    padding: 1rem;
}

.BottomBleed {
    /* padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0; */
    overflow: hidden;
}
.BottomBleed img {
    position: relative;
    top: 4rem;
}

.ContentCard img, .ContentCard video {
    /* width: 25rem; */
    max-width: 100%;
    border-radius: .5rem;
    /* height: fit-content; */
    }
    .CardRow {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .CardColumn {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .ContentCard {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        background-color: #ffffff;
        border-radius: 1.5rem;
        overflow: hidden;
        /* width: 100%; */
    }
    .ContentCardText {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
    /* padding: 1rem; */
}
.ContentCardTextHeader {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.ContentCardTextBody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ContentCardImage {
    /* padding: 1rem; */
}
.FullBleedImage {
    margin-left: -1rem;
}
.FullBleedImage img, .FullBleedImage video {
    border-radius: 0;
}
.ContentCardImage img, .ContentCard video {
    max-width: 100%;
}
.TwoMediaCard {
    display: flex;
    flex-direction: row;
    gap: .25rem;
    width: 100%;
    justify-content: space-between;
}
/* .TwoMediaCard.ColumnMedia {
    flex-direction: column;
} */
.TwoMediaCard img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}
/* .TwoMediaCard *, .ContentCard * {
    width: 100%;
    height: auto;
} */

/* .ContentCard.Row img {
    width: 100% !important;
    height: auto !important;

} */

/* .ContentCard img {
    width: 100%;
    height: auto;
} */

#final-designs {
    scroll-margin-top: 16vh;
}
.ContentCard h4 {
    height: unset;
}

@media only screen and (max-width: 1200px) {
    .CaseStudyHero {
        flex-direction: column-reverse;
        /* align-items: center !important; */
        gap: 0;
    }
    .CaseStudyHeroText {
        /* align-items: center !important; */
        padding-bottom: 0;
    }
    .CaseStudyHeroText > h1, .CaseStudyHeroText > p {
        /* text-align: center !important; */
    }
    /* .CaseStudyHeroText .PrimaryButton {
        align-self: self-start;
    } */
    .CaseStudyHeroText, .CaseStudyHeroText h1 {
        text-wrap: initial;
        max-width: 42rem;
    }
    .CaseStudyHeroImage {
        max-width: 100%;
        width: 100%;
        padding-top: 2rem;
    }
    .CaseStudyHeroImage img {
        /* padding-right: 4rem;
        padding-left: 4rem; */
        max-width: 100%;
    }
    .CaseStudyMainContent {
        display: flex;
        flex-direction: column;
        /* padding-left: 3rem;
        padding-right: 3rem; */
    }
    .Layout {
        padding-left: 16rem;
        padding-right: 16rem;
    }
    .CardRow {
        flex-direction: column;
    }
    .Row {
        flex-direction: column !important;
    }
    .ContentCard {
        width: unset;
    }
    .ProjectCard h3 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 1030px) {
    .ProjectCard {
        flex-direction: column !important;
        align-items: center !important;
        /* text-align: center !important; */
        height: auto !important;
        padding: 2rem;
        gap: 1.5rem !important;
    }
    .ProjectCardText {
        align-items: start !important;
        text-align: center !important;
        max-width: 100% !important;
        padding: 0 !important;
        height: auto !important;
        gap: 2rem;
        width: 100% !important;
        justify-content: unset !important;
        gap: 1rem;
        /* flex-direction: row; */
    }
    .ProjectCardText h3 {
        font-size: 1.5rem;
        /* font-weight: 600; */
        /* text-align: center; */
    }
    

    .ProjectCardInfo {
        align-items: start !important;
        text-align: left !important;
    }
    .ProjectCardImage {
        position: static !important;
        align-self: stretch !important;
        order: 2;
        padding: 0;
        align-items: center !important;
    }
    .ProjectCardImage img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-width: unset;
    }
    .ProjectCard .PrimaryButton {
        display: none;
    }
    .Layout {
        padding-left: 12rem;
        padding-right: 12rem;
    }
    
}



/* #endregion CASE STUDY */

/* #region ABOUT PAGE */

/* Hero Section */

.AboutHero {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    /* overflow: hidden; */
    /* width: 80vw !important; */
    /* align-self: center; */
    /* background: rgba( 233, 233, 233, 0.75);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur( 26.5px );
    -webkit-backdrop-filter: blur( 26.5px); */
}
.AboutHero img {
    border-radius: 1.5rem;
}

.ImageCaption {
    font-size: 0.9rem;
    /* color: #666; */
    /* text-align: center; */
    /* margin-top: 0.5rem; */
    /* font-style: italic; */
}
.CaseStudyHeroImage .ImageCaption {

}

/* Maps Grid Section */
.AboutMapsSection {
    /* margin-top: 3rem;
    width: 100%; */
    display: flex;
    flex-direction: column;
}

.AboutMapsSection > * {
    /* width: 80vw; */
    /* align-self: center; */
}

.MapsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    margin-top: 2rem;
    align-self: center;
}

/* .MapsGrid__item {
    position: relative;
    min-height: 200px;
} */

/* .MapsGrid__item--large {
    grid-row: span 2;
} */

.about-map-left-column, .about-map-right-column {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.MapsGrid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.MapsGrid__quote {
    grid-column: span 2;
    background-color: #2156a6;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    height: 100%;
    border-radius: 1.5rem;
    /* align-items: center; */
    /* justify-content: center; */
    
}

.MapsGrid__quote p {
    /* font-size: rem; */
    /* line-height: 1.4;
    text-align: center;
    margin: 0; */
}

/* Responsive breakpoints */

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

    .MapsGrid {
        display: flex;
        flex-direction: column;
    }
    .MapsGrid__item {
        min-height: unset !important;
    }
    .AboutHero {
        display: flex;
        flex-direction: column;
        align-items: start !important;
        gap: 0;
    }
    
}

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

    .MapsGrid {
        display: flex;
        flex-direction: column;
    }
    .MapsGrid__item {
        min-height: unset !important;
    }
}

@media only screen and (max-width: 900px) {
    .MapsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .MapsGrid__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .MapsGrid__quote {
        grid-column: span 2;
    }
}


@media only screen and (max-width: 600px) {
    .MapsGrid {
        grid-template-columns: 1fr;
    }
    
    .MapsGrid__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .MapsGrid__quote {
        grid-column: span 1;
        padding: 1.5rem;
    }
    
    .MapsGrid__quote p {
        font-size: 1rem;
    }
    
    .MapsGrid__item {
        min-height: 250px;
    }
}

/* #endregion ABOUT PAGE */


/* #region SLIDER */


/* .SliderImage::-webkit-scrollbar {
    width: 8px;
} */


.Slider {
    position: relative;
    overflow: visible; /* Allow slides to be visible outside bounds */
    width: 100%;
    /* padding-top: 2rem; */
    /* padding-bottom: 2rem; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.SliderImageContainer {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.00,1.00,0.32,1.00);
    gap: 2rem;
    padding-left: calc((100vw - clamp(30rem, 50vw, 60rem)) / 2); /* Center align with CaseStudyPart */
    width: 100vw;
    margin-left: calc(-1 * (100vw - clamp(30rem, 50vw, 60rem)) / 2); /* Pull container left to screen edge */
    max-width: 100vw;
}

/* Make sure the transition duration is the same as the "isTransitioning" value in index.js */

.SliderImage { 
    border-radius: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-shrink: 0;
    /* transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out; */
    transition: opacity 0.7s cubic-bezier(0.00,0.99,0.12,0.97), width 0.7s cubic-bezier(0.00,0.99,0.12,0.97);
    /* transition: cubic-bezier(0.25,0.10,0.25,1.00); */
    opacity: 0.4;
    width: clamp(30rem, 50vw, 60rem);
    /* 75% of content width for inactive images */
    /* width: calc((100vw - 32rem) * 0.75); */
    /* height: 600px; */
    height: 470px;
    overflow-y: hidden;
    /* scrollbar-gutter: stable; */
    /* outline: #000000 1px solid; */
    -webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
/* transition: .3s ease-in-out; */
    
}
.SliderImage::-webkit-scrollbar {
    display: none;
}

.SliderImage.SlideActive {
    opacity: 1;
    /* width: clamp(30rem, 60vw, 60rem); */
    width: clamp(30rem, 50vw, 60rem);
    /* Full content width for active image */
    /* width: calc(100vw - 32rem); */
    /* transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out box-shadow 0.5s ease-in-out; */
   transition: opacity 0.7s cubic-bezier(0.00,0.99,0.12,0.97), width 0.7s cubic-bezier(0.00,0.99,0.12,0.97);
    overflow-y: scroll;
    -webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.40);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.40);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.40);
}

.SliderImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ShowFullImage > * {
    height: fit-content;
    overflow: unset !important;
}

.ShowFullImage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.GridImage {
    line-height: 0;
}

.GridImageContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
}

.ColumnImageContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.GridImage img, .GridImage video {
    max-width: 100%;
}


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

.GridImageContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

}


.SliderButtonGroup {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* padding-left: 16rem;
    padding-right: 16rem; */
}

.SliderButtonGroup button {
    background-color: rgba(33, 86, 166, 0.9);
    padding: 0.75rem 1.25rem;
}

.SliderButtonGroup button:hover {
    background-color: rgba(0, 0, 94, 0.9);
}

@media only screen and (max-width: 1300px) {
    /* .SliderImageContainer {
        padding-left: 3rem;
        padding-right: 3rem;
        margin-left: calc(-3rem);
    }
    .SliderImage {
        width: calc((100vw - 6rem) * 0.75);
    }
    .SliderImage.SlideActive {
        width: calc((100vw - 6rem) * 0.75); */

        .SliderImageContainer {
            display: flex;
            flex-direction: column;
            padding-left: unset;
            width: unset;
            margin-left: unset;
            max-width: unset;
        }
        .SliderImage.SlideActive {
            width: 100%;
            overflow-y: visible;
            height: min-content;
            -webkit-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
box-shadow: 0px 4px 25px -9px rgba(0,0,0,0.25);
        }
        .SliderImage {
            width: 100%;
            opacity: 1;
            height: min-content;
        }
        .Slider {
            position: static;
        }
        .SliderButtonGroup {
            display: none;
        }

    }


@media only screen and (max-width: 800px) {
    /* .SliderImageContainer {
        padding-left: 1.7rem;
        margin-left: calc(-1.7rem);
    }
    .SliderImage {
        width: calc((100vw - 3.4rem) * 0.75);
    }
    .SliderImage.SlideActive {
        width: calc(100vw - 3.4rem);
        overflow-y: visible;
        height: min-content;
    } */
    /* .SliderButtonGroup {
        padding-left: 1.7rem;
        padding-right: 1.7rem;
    } */
}

@media only screen and (max-width: 600px) {
    /* .SliderImageContainer {
        padding-left: 1rem;
        margin-left: calc(-1rem);
    }
    .SliderImage {
        width: calc((100vw - 2rem) * 0.75);
        height: auto;
        scrollbar-gutter:unset !important;
        overflow-y: unset;
    }
    .SliderImage.SlideActive {
        overflow-y: unset;
    } */
    /* .SliderButtonGroup {
        padding-left: 1rem;
        padding-right: 1rem;
    } */
}

@media only screen and (max-width: 400px) {
    /* .SliderImageContainer {
        padding-left: 1.2rem;
        margin-left: calc(-1.2rem);
    }
    .SliderImage {
        width: calc((100vw - 2.4rem) * 0.75);
        overflow-y: unset;
    }
    .SliderImage.SlideActive {
        width: calc(100vw - 2.4rem);
        overflow-y: unset;
    } */
    /* .SliderButtonGroup {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    } */
}


/* #endregion SLIDER */