@layer framework, injected, resets, utils, photoswipe, craig, connor, zoe;
@import 'bootstrap.styles.css'; /* wrapped in an @layer framework */
@import 'photoswipe.css.css';
@font-face {
    font-family: 'Roboto';
    font-display: swap;
    font-weight: 200;
    font-style: normal;
    src: url(roboto-200.woff2) format("woff2");
}
@font-face {
    font-family: 'Roboto';
    font-display: swap;
    font-weight: 400;
    font-style: normal;
    src: url(roboto-400.woff2) format("woff2");
}
@font-face {
    font-family: 'Roboto';
    font-display: swap;
    font-weight: 700;
    font-style: normal;
    src: url(roboto-700.woff2) format("woff2");
}
@font-face {
    font-family: 'Roboto';
    font-display: swap;
    font-weight: 700;
    font-style: italic;
    src: url(roboto-700-italic.woff2) format("woff2");
}
@font-face {
    font-family: 'Roboto';
    font-display: swap;
    font-weight: 400;
    font-style: italic;
    src: url(roboto-400-italic.woff2) format("woff2");
}
 
 
  
 
 

:root {
    --bs-primary-rgb: 210, 43, 36;
    --bs-primary-hsl: 2 70.7% 48.2%;
    --bs-primary-hex: #D22B24;
    --bs-primary: rgb(210, 43, 36);
    --bs-dark-rgb: 39, 37, 37;
    --bs-dark-hsl: 0 2.6% 14.9%;
    --bs-dark-hex: #272525;
    --bs-dark: rgb(39, 37, 37);
    --bs-light-rgb: 255, 255, 255;
    --bs-light-hsl: 0 0% 100%;
    --bs-light-hex: #ffffff;
    --bs-light: rgb(255, 255, 255);
    --bs-secondary-rgb: 128, 128, 128;
    --bs-secondary-hsl: 0 0% 50.2%;
    --bs-secondary-hex: #808080;
    --bs-secondary: rgb(128, 128, 128);
    --bs-body-color-rgb: 128, 128, 128;
    --bs-body-color-hsl: 0 0% 50.2%;
    --bs-body-color-hex: #808080;
    --bs-body-color: rgb(128, 128, 128);
    --header-font: aktiv-grotesk;
    --bs-body-font-family: 'Roboto', sans-serif;
    --bs-link-color-rgb: var(--bs-body-color-rgb);
    --bs-link-hover-color-rgb: var(--bs-primary-rgb);
    --bs-heading-color:var(--bs-dark);
    --space-xs: 25px;
    --space-sm: 50px;
    --space-md: 100px;
    --space-lg: 150px;
    --fz-title-1: 80px;
    --fz-title-2: 48px;
    --fz-title-3: 30px;
    --fz-title-4: 21px;
    --fz-title-5: 18px;
    --fz-content-base: var(--fz-title-5);
    --bs-border-radius: 10px;
    font-size: var(--fz-content-base);
}

@layer resets {
    [data-sal] {
        --sal-easing: cubic-bezier(.25, .46, .45, .94);
    }
    body {
        font-weight: 200;
        letter-spacing:0.025em;
        font-size:21px;
        line-height:32px;
        overflow-x:hidden;
    }
    h1, .h1,
    h2, .h2,
    h3, .h3,
    h4, .h4,
    h5, .h5,
    h6, .h6,
    .header-font{
        font-family:var(--header-font), var(--bs-font-sans-serif);
        font-weight:400;
    }
    h1, .h1{
        font-weight:700;
        font-size:var(--fz-title-1);
        line-height:1;
    }
    h2, .h2{
        font-size:var(--fz-title-2);
        line-height:calc(46 / 36);
    }
    h3, .h3{
        font-size:var(--fz-title-3);
        line-height:calc(36 / 26);
    }
    h4, .h4{
        font-size:var(--fz-title-4);
    }
    h5, .h5{
        font-size:var(--fz-title-5);
    }
    ul[class] {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    .contractor-form fieldset {
        --bs-gutter-y: var(--space-md);
        display: flex;
        flex-flow: column;
        gap: 1ch;
        padding: var(--bs-gutter-y) var(--bs-gutter-x);
    }
    .btn{
        --bs-btn-padding-x: 1.15rem;
        --bs-btn-border-width: 2px;
        --bs-btn-line-height: 1;
        /** 
         * There may be some discrepancy on the font-weight between PSDs, 
         * I found several places where it was 500 but found this as 700, 
         * if that is the case, let's discuss
         */
        --bs-btn-font-weight: 500;
        --bs-btn-font-size: 16px;
        --bs-btn-padding-y: 20px;
        text-transform:uppercase;
        letter-spacing:0.16em;
    }

    .btn-primary {
        --bs-btn-color: #fff;
        --bs-btn-bg: var(--bs-primary);
        --bs-btn-border-color: var(--bs-primary);
        --bs-btn-hover-color: var(--bs-primary);
        --bs-btn-hover-bg: #fff;
        --bs-btn-hover-border-color:var(--bs-primary);
        --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: var(--bs-primary);
        --bs-btn-active-border-color: var(--bs-primary);
        --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--bs-primary-rgb), 0.125);
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: var(--bs-primary);
        --bs-btn-disabled-border-color: var(--bs-primary);
    }
    .btn-outline-primary {
        --bs-btn-color: var(--bs-primary);
        --bs-btn-border-color: var(--bs-primary);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: var(--bs-primary);
        --bs-btn-hover-border-color: var(--bs-primary);
        --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: var(--bs-primary);
        --bs-btn-active-border-color: var(--bs-primary);
        --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--bs-primary-rgb), 0.125);
        --bs-btn-disabled-color: var(--bs-primary);
        --bs-btn-disabled-border-color: var(--bs-primary);
    }
    .btn-outline-danger {
        --bs-btn-color: #fff;
        --bs-btn-border-color: var(--bs-primary);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: var(--bs-primary);
        --bs-btn-hover-border-color: var(--bs-primary);
        --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: var(--bs-primary);
        --bs-btn-active-border-color: var(--bs-primary);
        --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--bs-primary-rgb), 0.125);
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-border-color: var(--bs-primary);
    }

    .footer {
        color: var(--bs-dark);
        background-color: var(--bs-light);
        padding-block: var(--space-md) var(--space-xs);
        --bs-link-color-rgb: var(--bs-tertiary-rgb);
    }
    
    .footer-menu {
        font-size: 21px;
        color: var(--bs-secondary);
        --bs-link-color-rgb: var(--bs-secondary);
        & a {
            transition: color 0.3s ease-in-out;
            --bs-link-hover-color-rgb: var(--bs-primary-rgb);
            text-decoration-color: transparent;
        }
    }

}

@layer utils {
    img[width][height] {
        content-visibility: auto;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    section{
        padding-block: var(--space-sm);
    }
    .text-balance {
        text-wrap: balance;
    }
    .text-pretty {
        text-wrap: pretty;
    }
.archivo {
     font-family: 'Archivo';   
}
    .py-sm {
        padding-block: var(--space-xs);
    }
    .pt-sm {
        padding-top: var(--space-xs);
    }
    .pb-sm {
        padding-bottom: var(--space-xs);
    }
    .py-md {
        padding-block: var(--space-sm);
    }
    .pt-md {
        padding-top: var(--space-sm);
    }
    .pb-md {
        padding-bottom: var(--space-sm);
    }
    .py-lg {
        padding-block: var(--space-md);
    }
    .pt-lg {
        padding-top: var(--space-md);
    }
    .pb-lg {
        padding-bottom: var(--space-md);
    }
    .py-xl {
        padding-block: var(--space-lg);
    }
    .pt-xl {
        padding-top: var(--space-lg);
    }
    .pb-xl {
        padding-bottom: var(--space-lg);
    }
    
    @media (min-width: 576px) {
        .py-sm-mob {
            padding-block: var(--space-xs);
        }
        .pt-sm-mob {
            padding-top: var(--space-xs);
        }
        .pb-sm-mob {
            padding-bottom: var(--space-xs);
        }
        .py-md-mob {
            padding-block: var(--space-sm);
        }
        .pt-md-mob {
            padding-top: var(--space-sm);
        }
        .pb-md-mob {
            padding-bottom: var(--space-sm);
        }
        .py-lg-mob {
            padding-block: var(--space-md);
        }
        .pt-lg-mob {
            padding-top: var(--space-md);
        }
        .pb-lg-mob {
            padding-bottom: var(--space-md);
        }
        .py-xl-mob {
            padding-block: var(--space-lg);
        }
        .pt-xl-mob {
            padding-top: var(--space-lg);
        }
        .pb-xl-mob {
            padding-bottom: var(--space-lg);
        }
    }
    @media (min-width: 768px) {
        .py-sm-tab {
            padding-block: var(--space-xs);
        }
        .pt-sm-tab {
            padding-top: var(--space-xs);
        }
        .pb-sm-tab {
            padding-bottom: var(--space-xs);
        }
        .py-md-tab {
            padding-block: var(--space-sm);
        }
        .pt-md-tab {
            padding-top: var(--space-sm);
        }
        .pb-md-tab {
            padding-bottom: var(--space-sm);
        }
        .py-lg-tab {
            padding-block: var(--space-md);
        }
        .pt-lg-tab {
            padding-top: var(--space-md);
        }
        .pb-lg-tab {
            padding-bottom: var(--space-md);
        }
        .py-xl-tab {
            padding-block: var(--space-lg);
        }
        .pt-xl-tab {
            padding-top: var(--space-lg);
        }
        .pb-xl-tab {
            padding-bottom: var(--space-lg);
        }
    }
    @media (min-width: 992px) {
        .py-sm-lap {
            padding-block: var(--space-xs);
        }
        .pt-sm-lap {
            padding-top: var(--space-xs);
        }
        .pb-sm-lap {
            padding-bottom: var(--space-xs);
        }
        .py-md-lap {
            padding-block: var(--space-sm);
        }
        .pt-md-lap {
            padding-top: var(--space-sm);
        }
        .pb-md-lap {
            padding-bottom: var(--space-sm);
        }
        .py-lg-lap {
            padding-block: var(--space-md);
        }
        .pt-lg-lap {
            padding-top: var(--space-md);
        }
        .pb-lg-lap {
            padding-bottom: var(--space-md);
        }
        .py-xl-lap {
            padding-block: var(--space-lg);
        }
        .pt-xl-lap {
            padding-top: var(--space-lg);
        }
        .pb-xl-lap {
            padding-bottom: var(--space-lg);
        }
    }
    @media (min-width: 1200px) {
        .py-sm-desk {
            padding-block: var(--space-xs);
        }
        .pt-sm-desk {
            padding-top: var(--space-xs);
        }
        .pb-sm-desk {
            padding-bottom: var(--space-xs);
        }
        .py-md-desk {
            padding-block: var(--space-sm);
        }
        .pt-md-desk {
            padding-top: var(--space-sm);
        }
        .pb-md-desk {
            padding-bottom: var(--space-sm);
        }
        .py-lg-desk {
            padding-block: var(--space-md);
        }
        .pt-lg-desk {
            padding-top: var(--space-md);
        }
        .pb-lg-desk {
            padding-bottom: var(--space-md);
        }
        .py-xl-desk {
            padding-block: var(--space-lg);
        }
        .pt-xl-desk {
            padding-top: var(--space-lg);
        }
        .pb-xl-desk {
            padding-bottom: var(--space-lg);
        }
    }
}
.menu-white{color:#fff;}

@layer craig {
    a {
    text-decoration: none;
}

.design-description {
    & img {
        max-height: 256px;
    }
}

#navbar a {
    color: black;
}

.publication {
    text-align: center;
    object-fit: cover;
    
    & p {
        font-family: 'Archivo', sans-serif;
    }
    
    & p:last-child {
        font-family: 'Roboto', sans-serif;
    }
}
a.publication{
    &:hover {
        opacity: 0.5;
    }
    &:focus {
        opacity: 0.5;
    }
}

nav {
    z-index: 10;
    & .offcanvas{
        @media (min-width:1200px){
            height: 156px;
        }
    }
    
    & a {
        font-size: 18px;
        font-weight: 200;
        text-transform: uppercase;
    }
    
    & a:hover {
        font-weight: 600;  
    }
    & .active{
        & a{
           font-weight: 600; 
        }
    }
}
.dropdown .list-style-none {
    list-style: none; /* Ensure no default list bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the menu items horizontally */
    align-items: center; /* Center items vertically */
    height: 50px; /* Adjust based on desired navbar height */
}

.dropdown .list-style-none li {
    display: flex; /* Align items inside li inline */
    align-items: center; /* Center items vertically */
    position: relative; /* Position relative for absolute positioning of dividers */
}

.dropdown .divider {
    display: inline-block; /* Ensure divider is inline */
    width: 1px; /* Horizontal line width */
    height: 80%; /* Match the divider height to most of the menu item height */
    background-color: #ffffff; /* Color of the divider */
    margin: 0 15px; /* Horizontal spacing around the divider */
}

.dropdown a {
    color: inherit; /* Ensure consistent text color */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s ease; /* Add smooth transition for color changes */
}

.dropdown .h3 {
    margin: 0; /* Remove margin for h3 */
}

.dropdown .px-2 {
    padding-left: 0.5rem; /* Custom padding size */
    padding-right: 0.5rem; /* Custom padding size */
}

/* Smooth Hover Effect */
.dropdown .list-style-none li:hover a {
    color: #ccc; /* Color change on hover */
}
.menu-logo {
    display: inline-block;
    height: 96px;
    z-index: 12000;
    position: absolute;
}

.menu-icon {
    display: inline-block;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: transparent;
    & .burger {
        width: 32px;
        height: 32px;
        position: relative;
        display: block;
        margin: -4px auto 0;
        top: 50%;
        & .bar {
            height: 1px;
            float: right;
            position: relative;
            margin-bottom: 4px;
            display: block;
            width: 100%;
            background: var(--bs-dark);
        }
        & .btm-bar {
            width: 70%;
        }
        & .top-bar {
            width: 90%;
        }
        &.lines-white{
            & .bar{
                background: var(--bs-light);
            }
        }
    }
}

.hero-grid {
    padding: 0;
    grid-template-columns: 1fr;
    column-gap: 30px;
    row-gap: 30px;
    position: relative;
    overflow: hidden;
    grid-template-rows: auto;
    display:grid;
    @media (min-width: 576px)
    {
        grid-template-columns: 1fr repeat(12, calc((540px / 12) - 30px)) 1fr;
    }
    @media (min-width: 768px)
    {
        grid-template-columns: 1fr repeat(12, calc((720px / 12) - 30px)) 1fr;
    }
    @media (min-width: 992px)
    {
        grid-template-columns: 1fr repeat(12, calc((960px / 12) - 30px)) 1fr;
    }
    @media (min-width: 1200px)
    {
        grid-template-columns: 1fr repeat(12, calc((1140px / 12) - 30px)) 1fr;
    }
    @media (min-width: 1400px)
    {
        grid-template-columns: 1fr repeat(12, calc((1320px / 12) - 30px)) 1fr;
    }
    
    & .hero-picture, .gradient {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
    }
    
    & .hero-picture {
        height:100%;
        & img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        &.vh-80{
            height:80vh;
        }
    }
    
    & .gradient {
        background-image: linear-gradient(rgba(var(--bs-dark-rgb), 0.4), rgba(0,0,0,0));
        z-index: 1;
    }
}

.featured-media-logo {
    display: block;
    margin: 0 auto;
    max-height: 75px;
    width: 100%;
}

.featured-media-tpl {
    max-height:75px;
    fit-content: contain;
}

.gallery-display {
    --pswp-bg: #fff !important;
    
}
.pswp__scroll-wrap{
    padding-block:0;
}
.pswp__bg{
    opacity:1 !important;
}
.hero-spacer { height: 140px; }

.vh-80 { height: 80vh; }
.vh-20 { height: 20vh; }
.vh-10 { height: 10vh; }

.ken-burns {
    will-change: transform;
}
.ken-burns img {
    transform: scale(1);
    transition: transform 4.75s linear;
    transition-delay: 0.5s;
    object-fit:cover;
    height:100%;
    width:100%;
}
.ken-burns img {
    transform: scale(1.075)
}

.ken-burns-top-right {
    transform-origin: top right;
}

.ken-burns-bottom-left {
    transform-origin: bottom left;
}

@media (prefers-reduced-motion: reduce) {
    .ken-burns {
        will-change: opacity;
    }
    /* fallback to an opacity transition */
    .ken-burns  img {
        transition: opacity 4.75s linear;
        opacity: 0;
    }
    .ken-burns img {
        opacity: 1;
    }
    .ken-burns-origin-util {
        transform-origin: unset;
    }
}

.featured-image {
    position: relative;
    height: 300px;
    display:block;
    & .image-container {
        overflow: hidden;
        height: 100%;
        width: 100%;
    }

    & .image-container img {
        will-change: transform;
        transform: scale(1);
        transition: transform 1s ease;
        object-fit:cover;
        height:100%;
        width:100%;
    }
    
    
    
    & .overlay {
        width: calc(100% - calc(var(--bs-gutter-x) * .5) * 2);
        height: 100%;
        position: absolute;
        top: 0;
        left: calc(var(--bs-gutter-x) * .5);
        z-index: 1;
        transition: opacity 1s ease;
        opacity: 0;
        background-color: rgba(0,0,0,0.25);
    }
    @media (min-width: 992px){
        height: 500px;
    }
}

.featured-image:hover {
    & a {
        z-index: 2;
    }
    

    & .overlay {
        opacity: 1.0;
    }

    .image-container img {
        transform: scale(1.075)
    }
}

.featured-image:hover::after {
    content: url("./assets/images/site-resources/expand.svg");
    height: 25px;
    width: 25px;
    font-weight: 400;
    background-repeat: none;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
    position: absolute;
    right: calc(13px + calc(var(--bs-gutter-x) * .5));
    bottom: 15px;
    z-index: 2;
}

.pswp__button--arrow {
    opacity: 60%;
    fill: white;
    width: 25px;
}

.pswp__button--close {
    margin-right: 10px;
    opacity: 60%;
    width: 25px;
    fill: white;
}

.pswp__custom-caption {
  color: var(--bs-light);
  background-image: linear-gradient(to top, rgba(0,0,0,.7) 75%, rgba(0,0,0,0) 100%);
  
  padding: 10px 10px 25px 10px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
.pswp__custom-caption p{
   font-weight: 200; 
   font-size:12px;
   line-height:22px;
}
.pswop--zoomed-in .pswp__custom-caption{
    bottom:0;
}

.hidden-caption-content {
  display: none;
}





.project-link {
    text-decoration: none; /* Remove default link styling */
    color: inherit; /* Ensure text follows parent element styles */
    display: block; /* Allow it to act like a block element to fill entire card */
    height: 100%; /* Fill the card height */
}

.project-card {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* Maintain aspect ratio */
    overflow: hidden;
    transition: transform 1s ease;
    display: block; /* Ensure card dimensions contain image */
}

.project-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--bs-dark-rgb), 0.35);
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .overlay {
    opacity: 1;
}

.exceleron-watermark {
    font-size: 14px;
}


}

@layer connor {
    footer a {
    text-decoration: 2px solid underline transparent;
    text-underline-offset: 2px;
    transition: text-decoration-color 0.25s ease;
    &:hover {
        text-decoration-color: var(--bs-primary) !important;
    }
}

#kenburnsHeroSlider {
    .carousel-item {
        img {
            transition: transform 5s linear;
            transform: scale(1);
        }
        &.active img {
            transform: scale(1.1);
        }
        .carousel-caption {
            text-align: start;
            left: 1rem;
            bottom: 1rem;
            padding: 0;
            & p {
              margin: 0;  
            }
        }
    }
}

#transition-bar {
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  background-color: var(--bs-primary);
  z-index: 1;
  height: 100vh;
  opacity: 1;
}

#scroll-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 10;
  color: white;
  & svg {
    animation: bounce 2s infinite;
    opacity: 60%;
    font-size: 2rem;
    transition: opacity 0.5s;
  }
  &:hover svg {
    opacity: 100%;
    animation-duration: 1s;
  }
}



@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.hero-image {
    position: relative;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    animation: zoom-in 1.5s forwards;
}
.red-bar {
    position: absolute;
    width: 5px;
    height: 0;
    background-color: var(--bs-primary);
    right: 0;
    top: 0;
    animation: slide-down 1.5s forwards;
}
.container:not(.content) h1 {
    font-size: 40px;
    color: var(--bs-dark);
    text-transform: uppercase;
}
.details-row {
    color: var(--bs-primary);
    text-transform: uppercase;
}

.detail-label {
    font-size: 18px;
    font-weight: 700;
    text-align:center;
    margin-bottom:5px;
    font-family:var(--header-font);
}
.detail-value {
    text-align:center;
    margin-bottom:0;
    font-family:var(--header-font);
}
.detail-image {max-height: 240px;}
.testimonial-name, .testimonial-subtext {
    margin-top: 10px;
}
.testimonial-name {
    font-size: 21px;
    font-weight: 200;
    color: var(--bs-secondary);
}
.testimonial-subtext {
    font-size: 18px;
    font-weight: 200;
    color: var(--bs-secondary);
    line-height: 28px;
}
@keyframes slide-down {
    to { height: 100vh; }
}
@keyframes zoom-in {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.container:has(.breaker) {
    container-type: inline;
}
.breaker {
    font-size: clamp(32px, 7.5cqi, var(--fz-title-1));
}
footer {
    container-type: inline;
}
.footer-logo {
    max-width: clamp(100px, 75cqi, 250px);
}
.bold-on-hover {
    position: relative;
    transition: font-weight 0.25s ease;
    &::after {
        content: attr(data-text);
        position: absolute;
        font-weight: 600;
        inset: 0;
        opacity: 0;
    }
}


.offcanvas-body .vr {
    display: inline-block; /* Ensure divider is inline */
    width: 1px; /* Horizontal line width */
    height: 1lh;
    
    background-color: #ffffff; /* Color of the divider */
    margin: 0.2lh 15px; /* Horizontal spacing around the divider */
    opacity: 1;
}

}

@layer zoe {
    .project-content p{
    color:#A6A8AA;
}
.contact .image-container {
            position: relative;
            height: 100vh;
        }
        .contact .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

@media (max-width: 767px) and (orientation: portrait) {
    .contact .image-container {
        height: 50vh;
    }
    .contact-modify svg path{
        fill:#fff !important;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .contact .image-container {
        display: none; 
    }
    
}
@media (min-width:768px){
    .contact-modify svg path{
        fill:#fff !important;
    }
}
.contact-details{
    --bs-link-color-rgb: var(--bs-secondary-rgb);
    & td{
        font-size:21px;
        &:first-child{
            width:30px;
            padding-left:0;
            padding-right:0;
        }
    }
}
.lead{
    font-weight:400;
    color:var(--bs-dark);
    font-family: var(--header-font), var(--bs-font-sans-serif);
}
.ind-project-hero{
    height:100vh;
    & .hero-picture{
        height:100%;
        width:100%;
        & img{
            height:100%;
            width:100%;
            object-fit:cover;
        }
    }
}
.navbar-brand .menu-logo path{
    transition: fill .25s ease;
}

.btn-circle-btn{
    color:var(--bs-primary);
    border:2px solid var(--bs-primary);
    font-size:40px;
    height:120px;
    width:120px;
    border-radius:50%;
    display:block;
    text-align:center;
    padding-top:37px;
    transition: transform .25s ease;
    margin-top:30px;
    &:hover{
        transform:scale(1.2);
    }
    &:focus{
        transform:scale(1.2);
    }
}

.architect-hero{
    position:relative;
    overflow:hidden;
    & picture{
        width:100%;
        display:block;
    }
    & img{
        width:100%;
        height:100%;
        object-fit:cover;
    }
}
.loaded{
    & .architect-hero{
        animation: clip-hero-anim 1.25s cubic-bezier(0.29, 0.8, 0.8, 0.98);
          will-change: clip-path;
          & picture{
                animation: scaling-hero-anim 4s 0.25s cubic-bezier(0, 0.71, 0.4, 0.97)
                forwards;
              will-change: transform;
            }
    }
}
@keyframes scaling-hero-anim {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes clip-hero-anim {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.pswp__img{
    cursor:default;
}
.pswp__button{
    background-color:rgba(var(--bs-dark-rgb),.5);
    padding:20px 20px;
    height:auto;
    width:auto;
    line-height:1;
    & svg {
        width:25px;
    }
    &.pswp__button--close{
        padding:10px 20px;
    }
}
.pswp__button:hover, .pswp__button:active, .pswp__button:focus{
    opacity:1;
    background-color:rgba(var(--bs-dark-rgb),.5);
}
.pswp__caption_container{
    max-width:880px;
    width:100%
}
.pswp__caption_container p{
    margin-bottom:0;
}
.nav-toggle.btn{
    --bs-btn-padding-x: .25rem;
}
@media (min-width:992px) and (max-width:1199px) and (orientation: portrait){
    .offcanvas{
        --bs-offcanvas-height: 25vh;
    }
}
@media (max-width:1199px) and (orientation: landscape){
    .offcanvas{
        --bs-offcanvas-height: 40vh;
    }
}
@media (max-width:992px) and (orientation: landscape){
    .offcanvas{
        --bs-offcanvas-height: 100vh;
    }
}
@media (max-width:767px) and (orientation:portrait){
    .offcanvas{
        --bs-offcanvas-height: 100vh;
    }
}
}