.elementor-kit-4{--e-global-color-primary:#337839;--e-global-color-secondary:#E7F6E3;--e-global-color-text:#333333;--e-global-color-accent:#C7940C;--e-global-color-bb20894:#231F20;--e-global-color-f318406:#282901;--e-global-color-d5db99a:#B4D44D;--e-global-color-5b41889:#A5E3A4;--e-global-color-570fca4:#FAFAFA;--e-global-typography-primary-font-family:"Mezzotint CF";--e-global-typography-primary-font-size:4rem;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Mezzotint CF";--e-global-typography-secondary-font-size:3rem;--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:18px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:25px;--e-page-transition-entrance-animation:e-page-transition-slide-out-down;--e-page-transition-exit-animation:e-page-transition-slide-in-down;--e-page-transition-animation-duration:1500ms;}.elementor-kit-4 e-page-transition{background-color:#E7F6E3;}body{overflow-x:inherit !important;}.elementor a, .elementor a:link, .elementor a:focus, .elementor a:active, .elementor a:hover{text-decoration:inherit !important;}.elementor a:link, .elementor .smooth-hover a:link, {transition:inherit;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-lightbox{background-color:#3378397D;--lightbox-header-icons-size:40px;--lightbox-navigation-icons-size:40px;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-4{--e-global-typography-primary-font-size:4rem;--e-global-typography-secondary-font-size:3rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-4{--e-global-typography-primary-font-size:3rem;--e-global-typography-secondary-font-size:2.25rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {

    /* ==========================
       COLORS
    ========================== */

    --white: #FAFAFA;
    --mint-light: #E7F6E3;
    --mint: #A5E3A4;
    --lime: #B4D44D;
    --green: #337839;
    --olive-dark: #282901;
    --charcoal: #231F20;
    --gold: #C7940C;

    /* Semantic Colors */
    --background: var(--color-white);
    --surface: var(--color-mint-light);
    --primary: var(--color-green);
    --secondary: var(--color-lime);
    --accent: var(--color-gold);

    --text: var(--color-charcoal);
    --text-light: var(--color-white);

    /* ==========================
       TYPOGRAPHY
    ========================== */

    --font-heading: "Mezzotint CF", serif;
    --font-body: "Poppins", sans-serif;

    /* Font Sizes */
    --fs-xs: 0.875rem;   /* 14px */
    --fs-sm: 1rem;       /* 16px */
    --fs-md: 1.125rem;   /* 18px */
    --fs-lg: 1.5rem;     /* 24px */
    --fs-xl: 2rem;       /* 32px */
    --fs-2xl: 3rem;      /* 48px */
    --fs-3xl: 4rem;      /* 64px */

    /* Line Heights */
    --lh-tight: 1.1;
    --lh-normal: 1.5;
    --lh-loose: 1.8;

    /* ==========================
       LAYOUT
    ========================== */

    --site-width: 1400px;
    --container-padding: 20px;

    /* ==========================
       EFFECTS
    ========================== */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(35, 31, 32, 0.08);
    --shadow-md: 0 8px 24px rgba(35, 31, 32, 0.12);
    --shadow-lg: 0 16px 40px rgba(35, 31, 32, 0.16);

    --transition: 0.3s ease;
}


/** STYLING **/

.featured-project:hover {
    cursor: pointer !important;
}


.featured-project:hover .featured-image {
    transform: scale(1.1) !important;
    overflow: hidden !important;
}

.featured-project .featured-image {
    overflow: hidden !important;
}

@media (min-width: 1024px) {
    .right-margin {
        width: 855px;
    }
    .testimonial {
        width: calc(((100vw - 1140px) / 2) + 285px);
    }
}

.testimonials span {
    font-family: poppins;
    font-weight: 600;
    color: var(--gold);
}


@media (min-width: 768px) {
    .menu-item {
        position: relative;
        display: inline-block;
        transition: margin-left 0.3s ease;
    }

    .menu-item::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        background-image: url("https://www.ashleyausere.com/wp-content/uploads/2026/07/Star-Icon.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;

        left: -45px;
        top: 50%;

        opacity: 0;

        transform: translateY(-50%) scale(0) rotate(-45deg);
        transition:
            opacity 0.2s ease,
            transform 0.35s cubic-bezier(.34, 1.56, .64, 1);

        pointer-events: none;
    }

    .menu-item:hover::before {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(0deg);
    }

    .menu-item:hover {
        margin-left: 50px;
    }



    .footer-menu a {
        position: relative;
        display: inline-block;
        transition: margin-left 0.3s ease;
        margin-bottom: 5px;
    }

    .footer-menu a::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background-image: url("https://www.ashleyausere.com/wp-content/uploads/2026/07/Star-Icon.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;

        left: -25px;
        top: 50%;

        opacity: 0;

        transform: translateY(-50%) scale(0.3) rotate(-45deg);

        transition:
            opacity 0.2s ease,
            transform 0.35s cubic-bezier(.34, 1.56, .64, 1);

        pointer-events: none;
    }

    .footer-menu a:hover::before {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(0deg);
    }

    .footer-menu a:hover {
        margin-left: 25px;
    }


   .popup-menu {
        overflow: hidden !important;
    }

    .dialog-widget-content {
        overflow: hidden !important;
    }
}

/* Container alignment */
@media (min-width: 1025px) {
    .left-margin {
        padding-left: calc((100vw - 1140px) / 2);
    }
}

/** Case Studies Page **/

/* Unused Transition Code:
.case-studies-section.left-margin {
    transition: all 1s ease;
}

.case-studies-section {
    transition: all 1s ease;
}
*/

.category-column.background-color-fade {
    background-color: #A5E3A4;
    border-radius: 0px 25px 25px 0px;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Mezzotint CF';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.ashleyausere.com/wp-content/uploads/2026/07/MezzotintCF-Regular.eot');
	src: url('https://www.ashleyausere.com/wp-content/uploads/2026/07/MezzotintCF-Regular.eot?#iefix') format('embedded-opentype'),
		url('https://www.ashleyausere.com/wp-content/uploads/2026/07/Mezzotint-Regular.woff2') format('woff2'),
		url('https://www.ashleyausere.com/wp-content/uploads/2026/07/Mezzotint-Regular.woff') format('woff'),
		url('https://www.ashleyausere.com/wp-content/uploads/2026/07/MezzotintCF-Regular.ttf') format('truetype'),
		url('https://www.ashleyausere.com/wp-content/uploads/2026/07/MezzotintCF-Regular.svg#MezzotintCF') format('svg');
}
/* End Custom Fonts CSS */