@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*------------------------------------------------*/
/* Variable STYLES */
/*------------------------------------------------*/

:root {
    /* Color Palette */
    --color-h1: #111;  
    --color-h2: #333;  
    --color-h3: #00a9e1;
    --color-text: #111;
    
    --color-link: #666; 
    --color-hover: #00a9e1;  
    
    --color-hr-border: #00a9e1;  
    
    --button-bg-link:#00a9e1;  
    --button-bg-hover: #FFF;
    
    /* Typography */
    --font-family-base: "montserrat", sans-serif;
    --font-family-heading: "Roboto Slab", serif;
    --font-size-normal: 1rem;

    /* Top Level Menu */
    --color-topmenu-link: #EEE;
    --color-topmenu-hover:#FFF;
    --color-topmenu-border-link: 2px solid transparent;
    --color-topmenu-border-hover: 2px solid #EEE;

    --font-size-topmenu: 20px;
    --background-color-up: transparent;
    --background-color-down: transparent;
    --font-weight-topmenu: 400;
    }


/*------------------------------------------------*/
/* Global STYLES */
/*------------------------------------------------*/

a, a:link, a:visited, a:active {
    color:var(--color-link);
    text-decoration: none; 
	-webkit-transition:all ease .3s; 
	transition:all ease .3s;

}

a:hover {
        color:var(--color-hover); 
        text-decoration: none;
		-webkit-transition:all ease .3s; 
		transition:all ease .3s;
}

body {

}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 34px;
	color:var(--color-h1);
	font-family: var(--font-family-heading);	
	font-weight:800;
}

h2 {
    font-size: 24px;
	color:var(--color-h2);
	font-weight:600;
	font-family: var(--font-family-base);
}

h3 {
    font-size: 20px;
    color:var(--color-h3);
	font-weight:400;
}

h4 {
    font-size: 18px;
    color: #111;
}

h5  {
    font-size: 14px;
    color: #111;
}

h6  {
    font-size: 13px;
    color: #666;
}

p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: var(--color-hr-border);
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

div, p {line-height:24px; font-size:16px;}

td {color:var(--color-text);padding:5px;line-height:18px; font-size:var(--font-size-normal);font-family: var(--font-family-base);}

ul li {
    font-size:var(--font-size-normal); 
	color:#222;
	margin-bottom: 8px;
	}

ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
	font-size:var(--font-size-normal); 
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}


/*------------------------------------------------*/
/* Responsive Video and Image STYLE */
/*------------------------------------------------*/

img {
	max-width: 100%;
	height:auto;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




.imglg{ transition: all .2s ease-in-out; }
.imglg:hover { transform: scale(1.02); }


.page-break-section {box-shadow:none !important;}


/* ==============================================
   CHEVRON (Custom Arrow for Dropdowns)
   ============================================== */

/* Prepare dropdown link for arrow positioning */
#dnnMenu .dropdown-toggle {
    position: relative;
    padding-right: 30px; /* Space for arrow */
}z

/* Replace Bootstrap triangle */
#dnnMenu .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .25s ease;
    border-top: none;
    border-left: none;
}

/* Rotate arrow when open */
#dnnMenu li.show > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(225deg);
}



/* ==============================================
   TOP LEVEL NAVIGATION (DESKTOP BASE)
   ============================================== */

#dnnMenu .topLevel {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dnnMenu .topLevel > li {
    position: relative;
}

#dnnMenu .topLevel > li > a {
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 8px;
    background: var(--background-color-up);
    color: var(--color-topmenu-link);
    border-bottom: var(--color-topmenu-border-link);
    transition: all .3s ease;
    font-size: var(--font-size-topmenu);
    font-weight: var(--font-weight-topmenu);
    font-family:var(--font-family-heading);
    display: inline-block;
}

/* Hover / Active / Open */
#dnnMenu .topLevel > li > a:hover,
#dnnMenu .topLevel > li > a:focus,
#dnnMenu .topLevel > li.active > a,
#dnnMenu .topLevel > li.show > a {
    color: var(--color-topmenu-hover);
    background: var(--background-color-down);
    border-bottom: var(--color-topmenu-border-hover);
}



/* ==============================================
   DESKTOP DROPDOWN STYLING
   ============================================== */

@media (min-width: 993px) {

    #dnnMenu .dropdown-menu {
        border-radius: 0;
        background: #f5f5f5;
        padding: 0;
        margin-top: 0;
        border: none;
        min-width: 220px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    #dnnMenu .dropdown-menu li {
        border-bottom: 1px solid #e1e1e1;
    }

    #dnnMenu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    #dnnMenu .dropdown-menu li > a {
        display: block;
        padding: 10px 16px;
        color: #333;
        font-size: 15px;
        text-align: left;
        transition: background .2s ease, color .2s ease;
    }

    #dnnMenu .dropdown-menu li > a:hover {
        background: #e9e9e9;
        color: #111;
    }

}



/* ==============================================
   NAVBAR TOGGLER (Mobile Button)
   ============================================== */

.navbar-toggler {
    margin-bottom: 3px;
    margin-top: 0; /* Adjust if needed */
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}



/* ==============================================
   MOBILE NAVIGATION (≤ 992px)
   ============================================== */

@media (max-width: 992px) {

    /* Stack menu vertically */
    #dnnMenu .topLevel {
        width: 100%;
        text-align: center;
    }

    #dnnMenu .topLevel > li {
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Remove desktop underline styling */
    #dnnMenu .topLevel > li > a,
    #dnnMenu .topLevel > li.show > a,
    #dnnMenu .topLevel > li.active > a {
        border-bottom: none !important;
        background: transparent;
        margin: 0;
        padding: 14px 0;
        width: 100%;
        display: block;
    }

    /* Larger arrow for touch */
    #dnnMenu .dropdown-toggle::after {
        right: 18px;
        width: 10px;
        height: 10px;
    }

    /* Mobile dropdown container */
    #dnnMenu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #eeeeee;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Center dropdown links */
    #dnnMenu .dropdown-menu li > a {
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

    #dnnMenu .dropdown-menu li:last-child > a {
        border-bottom: none;
    }

}




/*------------------------------------------------*/
/* Global Button Styles */
/*------------------------------------------------*/


.MoreButton a:link, .MoreButton a:visited {
  padding: 16px 25px;
  text-align: center;
  color: #FFF;
  font-size:20px;
  display: inline-block;  border-radius:40px;
  border:1px solid var(--button-bg-link);
  background:var(--button-bg-link);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; transition:all ease .5s;
}

.MoreButton a:hover, .MoreButton a:active {
  padding: 16px 25px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: inline-block;
  border:1px solid var(--button-bg-link);
  border-radius:40px;
  background:var(--button-bg-hover);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; transition:all ease .5s;
}



/*------------------------------------------------*/
/* Header STYLES */
/*------------------------------------------------*/

.menuwrap {padding:5px 0;background:#111129;}


.hh-header-module{
    background: linear-gradient(
        90deg,
        #05052b 0%,
        #11185a 50%,
        #05052b 100%
    );
    color:#fff;
    padding:16px 0;
}

.hh-header-module p{
    margin:0;
    color:#fff;
    font-size:18px;
    line-height:1.35;
}

.hh-header-left{
    text-align:center;
    padding-top:5px;
}

.hh-header-left i{
    color:#d83737;
    font-size:24px;
    margin-bottom:4px;
}

.hh-header-logo{
    text-align:center;
}

.hh-header-logo img{
    max-width:280px;
    height:auto;
}

.hh-header-right{
    text-align:center;
    padding-top:2px;
}

.hh-header-right h5{
    margin:0 0 2px;
    color:#f1d278;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
}

.hh-header-right p{
    margin-bottom:5px;
}

.hh-header-right a{
    color:#fff;
    text-decoration:none;
}

.hh-header-right a:hover{
    color:#f1d278;
}

.hh-header-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    margin-left:8px;

    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;

    color:#fff;
    font-size:15px;
    line-height:1;

    background:rgba(255,255,255,.03);

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.hh-header-social a:hover,
.hh-header-social a:focus{
    color:#060635;
    background:#d8bd76;
    border-color:#d8bd76;

    transform:translateY(-2px);

    box-shadow:0 5px 14px rgba(0,0,0,.18);

    text-decoration:none;
}

.hh-header-social a:first-child{
    margin-left:0;
}

@media(max-width:767px){

    .hh-header-left,
    .hh-header-right{
        text-align:center;
    }

    .hh-header-left{
        margin-bottom:15px;
    }

    .hh-header-logo{
        margin-bottom:15px;
    }

}


/*------------------------------------------------*/
/* Main Content STYLES */
/*------------------------------------------------*/


.showcasewrap {
	background:url('images/showcase-responsive_bg.webp');
    width:100%;
    background-size:cover;
    background-position:top center;
    padding-bottom:50%;
}

/* ==========================================
   HINCHEY TRUST STRAP
========================================== */

.hh-trust-strap{
    background:
        linear-gradient(
            90deg,
            #987536 0%,
            #c0a35f 50%,
            #987536 100%
        );

    padding:12px 0;
    border-top:1px solid rgba(255,255,255,.15);
    border-bottom:1px solid rgba(0,0,0,.12);
}

.hh-trust-strap-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#fff;
    font-size:38px;
    font-weight:400;
    letter-spacing:.3px;
}

.hh-trust-strap-inner i{
    color:#fff3be;
    font-size:36px;
}


/* ==========================================
   TRUST / EXPERIENCE SECTION
========================================== */

.hh-trust-section{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background-color:#e6ddcb;
    background-image:url('images/welcome-bg.webp');
    background-repeat:no-repeat;
    background-position:left bottom;
    background-size:auto 48%;
}

.hh-trust-section .container{
    position:relative;
    z-index:2;
}


/* Optional background image layer */

.hh-trust-bg{
    position:absolute;
    left:0;
    bottom:0;

    width:38%;
    height:42%;

    background:
        url('/portals/216/content/graphics/hinchey-mountains-bg.png')
        left bottom / contain no-repeat;

    opacity:.18;
    pointer-events:none;
}


/* INTRO */

.hh-trust-copy{
    max-width:520px;
}

.hh-eyebrow{
    display:block;

    margin-bottom:14px;

    color:#9a7435;

    font-size:12px;
    font-weight:700;
    letter-spacing:2.4px;
    text-transform:uppercase;
}

.hh-eyebrow:before{
    content:"";
    display:inline-block;

    width:34px;
    height:1px;

    margin-right:12px;
    margin-bottom:4px;

    background:#b89954;
}

.hh-trust-copy h2{
    margin:0 0 24px;

    color:#090a2e;

    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(36px,4vw,52px);
    font-weight:600;
    line-height:1.02;
}

.hh-trust-copy p{
    margin-bottom:18px;

    color:#3f3b33;

    font-size:16px;
    line-height:1.65;
}


/* CTA */

.hh-trust-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;

    margin-top:8px;
    padding:13px 22px;

    background:#a98239;

    color:#fff !important;

    font-size:12px;
    font-weight:700;
    letter-spacing:.7px;
    text-transform:uppercase;
    text-decoration:none;

    transition:
        background-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.hh-trust-btn i{
    transition:transform .25s ease;
}

.hh-trust-btn:hover,
.hh-trust-btn:focus{
    background:#070733;

    color:#fff !important;
    text-decoration:none;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.hh-trust-btn:hover i{
    transform:translateX(5px);
}


/* ==========================================
   TRUST CARDS
========================================== */

.hh-trust-grid{
    max-width:700px;
    margin-left:auto;
}

.hh-trust-card{
    position:relative;

    height:100%;

    padding:30px 22px 25px;

    background:rgba(255,255,255,.78);

    border-top:3px solid #b28a3d;
    border-left:1px solid rgba(0,0,0,.08);
    border-right:1px solid rgba(0,0,0,.08);
    border-bottom:1px solid rgba(0,0,0,.08);

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.hh-trust-card:hover{
    background:#fff;

    transform:translateY(-5px);

    box-shadow:0 16px 34px rgba(0,0,0,.09);
}


.hh-trust-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:78px;
    height:78px;

    margin:0 auto 14px;

    background:transparent;
    border:0;
    border-radius:0;
}

.hh-trust-icon img{
    display:block;

    width:75px;
    height:75px;

    max-width:none;
    max-height:none;

    object-fit:contain;
}

/* NUMBER */

.hh-trust-number{
    margin-bottom:4px;

    color:#080931;

    font-family:Georgia, "Times New Roman", serif;
    font-size:34px;
    font-weight:700;
    line-height:1;
}


/* TITLE */

.hh-trust-title{
    min-height:38px;

    margin-bottom:12px;

    color:#0a0a30;

    font-size:12px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:.3px;
    text-transform:uppercase;
}


/* DESCRIPTION */

.hh-trust-card p{
    max-width:230px;

    margin:0 auto;

    color:#575047;

    font-size:12px;
    line-height:1.45;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991.98px){

    .hh-trust-section{
        padding:60px 0;
    }

    .hh-trust-copy{
        max-width:100%;
        margin-bottom:20px;
        text-align:center;
    }

    .hh-trust-grid{
        max-width:none;
        margin:0;
    }

    .hh-trust-bg{
        width:100%;
        height:35%;
        opacity:.1;
    }

}


@media(max-width:575.98px){

    .hh-trust-strap-inner{
        font-size:15px;
    }

    .hh-trust-section{
        padding:50px 0;
    }

    .hh-trust-card{
        padding:26px 18px;
    }

}



/* ==========================================
   HINCHEY LEGAL SERVICES
========================================== */

.hh-services{

    background:
        linear-gradient(
            180deg,
            #0d1148 0%,
            #070732 40%,
            #06062d 100%
        );

    background-repeat:repeat;
    background-size:auto;
    position:relative;
    padding:55px 0;
}

.hh-services:before{

    content:"";

    position:absolute;
    inset:0;

    pointer-events:none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255,255,255,.035) 0%,
            rgba(255,255,255,0) 65%
        );

}

/* ==========================================
   HEADER
========================================== */

.hh-services-header{
    max-width:850px;
    margin:0 auto 70px;
}

.hh-services-mark{
    display:flex;
    align-items:center;
    justify-content:center;

    width:62px;
    height:62px;

    margin:0 auto 18px;

    border:1px solid rgba(192,170,123,.45);
    border-radius:50%;

    color:#c0aa7b;
    font-size:24px;
}

.hh-services-eyebrow{
    display:block;

    margin-bottom:10px;

    color:#c0aa7b;

    font-size:12px;
    font-weight:600;
    letter-spacing:2.3px;
    text-transform:uppercase;
}

.hh-services-header h2{
    margin:0 0 20px;

    color:#fff;

    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(42px,5vw,62px);
    font-weight:400;
    line-height:1;
    text-transform:uppercase;
}

.hh-services-header p{
    max-width:760px;
    margin:0 auto;

    color:rgba(255,255,255,.72);

    font-size:15px;
    line-height:1.7;
}


/* ==========================================
   FEATURE ROW
========================================== */

.hh-service-feature{
    margin-bottom:45px;
}


/* ==========================================
   IMAGE TREATMENT
========================================== */

.hh-service-image-wrap{
    position:relative;

    max-width:650px;

    padding:0 24px 24px 0;
}

.hh-service-image-right{
    margin-left:auto;
}

.hh-service-image-accent{
    position:absolute;

    right:0;
    bottom:0;

    width:88%;
    height:88%;

    background:#a9833f;
}

.hh-service-image{
    position:relative;
    z-index:2;

    display:block;

    width:100%;
    height:350px;

    object-fit:cover;

    box-shadow:0 20px 40px rgba(0,0,0,.22);
}


/* ==========================================
   COPY
========================================== */

.hh-service-copy{
    max-width:570px;
}

.hh-service-eyebrow{
    display:block;

    margin-bottom:10px;

    color:#c0aa7b;

    font-size:14px;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.hh-service-copy h3{
    margin:0 0 20px;

    color:#fff;

    font-family:var(--font-family-base);
    font-size:28px;
    font-weight:700;
    line-height:1.15;
}

.hh-service-copy p{
    margin-bottom:18px;

    color:rgba(255,255,255,.82);

    font-size:15px;
    line-height:1.75;
}


/* ==========================================
   SERVICE POINTS
========================================== */

.hh-service-points{
    margin-top:15px;
    margin-bottom:15px;
}

.hh-service-point{
    min-height:120px;

    padding:15px 12px;

    text-align:center;
}

.hh-service-point-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    margin:0 auto 12px;

    border:3px solid #b7cf68;
    border-radius:50%;

    background:#d9e8a1;

    color:#536418;

    font-size:16px;

    box-shadow:
        0 0 0 3px rgba(217,232,161,.15);
}

.hh-service-point p{
    margin:0;

    color:#fff;

    font-size:13px;
    line-height:1.35;
}


/* ==========================================
   DIVIDER
========================================== */

.hh-service-divider{
    width:80%;
    height:1px;

    margin:65px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(192,170,123,.35),
            transparent
        );
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991.98px){

    .hh-services{
        padding:65px 0 70px;
    }

    .hh-services-header{
        margin-bottom:55px;
    }

    .hh-service-image-wrap,
    .hh-service-image-right{
        max-width:100%;
        margin:0 auto 20px;
    }

    .hh-service-copy{
        max-width:100%;
    }

}


@media(max-width:767.98px){

    .hh-services{
        padding:55px 0;
    }

    .hh-services-header{
        margin-bottom:45px;
    }

    .hh-service-copy{
        text-align:center;
    }

    .hh-service-image{
        height:auto;
        min-height:280px;
    }

    .hh-service-point{
        min-height:auto;
        padding:15px 5px 25px;
    }

    .hh-service-divider{
        margin:45px auto;
    }

}

.ctawrap {background:transparent;padding:250px 0;}






/* ==========================================
   FINAL CONSULTATION CTA
========================================== */

.hh-final-cta{
    position:relative;
    overflow:hidden;
    pointer-events:none;
}


.hh-final-cta .container{
    position:relative;
    z-index:2;
}

.hh-final-cta-content{
    max-width:760px;
    margin:0 auto;
}

.hh-final-cta h2{
    margin:0 0 28px;

    color:#fff;

    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(38px,5vw,58px);
    font-weight:400;
    line-height:1.05;

    text-shadow:0 2px 6px rgba(0,0,0,.45);
}


/* BIG CALL BUTTON */
.hh-final-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    min-width:320px;
    padding:16px 26px;

    background:linear-gradient(
        90deg,
        #080936 0%,
        #111552 50%,
        #080936 100%
    );

    border:1px solid rgba(255,255,255,.15);

    color:#fff !important;
    text-decoration:none !important;

    box-shadow:0 12px 28px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.hh-final-cta-btn:hover,
.hh-final-cta-btn:focus{
    color:#fff !important;
    text-decoration:none !important;
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(0,0,0,.32);
}

.hh-final-cta-icon{
    font-size:27px;
    color:#fff;

    padding-right:18px;
    border-right:1px solid rgba(255,255,255,.2);
}

.hh-final-cta-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.05;
}

.hh-final-cta-text strong{
    color:#fff;
    font-family:Georgia, "Times New Roman", serif;
    font-size:25px;
    font-weight:700;
    text-transform:uppercase;
}

.hh-final-cta-text span{
    margin-top:4px;
    color:#d3b465;
    font-size:16px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:767px){

    .hh-final-cta{
        padding:55px 0 60px;
    }

    .hh-final-cta-btn{
        min-width:0;
        width:100%;
        max-width:390px;
    }

}

@media(max-width:480px){

    .hh-final-cta-btn{
        gap:12px;
        padding:14px 18px;
    }

    .hh-final-cta-text strong{
        font-size:20px;
    }

    .hh-final-cta-text span{
        font-size:14px;
    }

}

/* ==========================================
   SERVICE CTA BUTTONS
========================================== */

.hh-service-cta-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    margin-top:24px;
}

.hh-service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    min-height:38px;
    padding:8px 16px;

    border:1px solid #c0aa7b;

    font-size:12px;
    font-weight:700;
    letter-spacing:.6px;
    line-height:1;
    text-transform:uppercase;
    text-decoration:none !important;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.hh-service-btn i{
    font-size:12px;
}


/* GOLD BUTTON */

.hh-service-btn-primary{
    background:#c0aa7b;
    color:#070732 !important;
}

.hh-service-btn-primary:hover,
.hh-service-btn-primary:focus{
    background:#fff;
    border-color:#fff;
    color:#070732 !important;

    transform:translateY(-2px);
}


/* OUTLINE BUTTON */

.hh-service-btn-outline{
    background:transparent;
    color:#fff !important;
}

.hh-service-btn-outline:hover,
.hh-service-btn-outline:focus{
    background:#fff;
    border-color:#fff;
    color:#070732 !important;

    transform:translateY(-2px);
}


/* MOBILE */

@media(max-width:575.98px){

    .hh-service-cta-row{
        justify-content:center;
    }

    .hh-service-btn{
        flex:1 1 auto;
        min-width:150px;
    }

}

/* ==========================================
   HINCHEY PRACTICE AREA SYSTEM
========================================== */


/* ==========================================
   INTRO
========================================== */

.hh-practice-intro{
    padding:85px 0;

    background:#fff;
}


/* IMAGE */

.hh-practice-image-wrap{
    position:relative;

    max-width:650px;

    padding:0 26px 26px 0;
}

.hh-practice-image-accent{
    position:absolute;

    right:0;
    bottom:0;

    width:88%;
    height:88%;

    background:#a9843f;
}

.hh-practice-image{
    position:relative;
    z-index:2;

    display:block;

    width:100%;
    min-height:470px;

    object-fit:cover;

    box-shadow:0 20px 45px rgba(0,0,0,.14);
}


/* COPY */

.hh-practice-copy{
    max-width:620px;
}

.hh-practice-eyebrow{
    display:block;

    margin-bottom:12px;

    color:#a27e39;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.hh-practice-copy h1{
    margin:0 0 24px;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;

    font-size:clamp(38px,4vw,54px);
    font-weight:600;

    line-height:1.04;
}

.hh-practice-lead{
    color:#303044 !important;

    font-family:Georgia, "Times New Roman", serif;

    font-size:20px !important;
    line-height:1.5 !important;
}

.hh-practice-copy p{
    color:#515151;

    font-size:16px;
    line-height:1.75;
}


/* INTRO BUTTONS */

.hh-practice-actions{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:28px;
}

.hh-practice-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    padding:10px 17px;

    border:1px solid #a9843f;

    font-size:12px;
    font-weight:700;

    letter-spacing:.6px;

    text-transform:uppercase;
    text-decoration:none !important;

    transition:.25s ease;
}

.hh-practice-btn-primary{
    background:#a9843f;
    color:#fff !important;
}

.hh-practice-btn-primary:hover{
    background:#080933;

    border-color:#080933;

    color:#fff !important;

    transform:translateY(-2px);
}

.hh-practice-btn-outline{
    background:transparent;

    color:#080933 !important;
}

.hh-practice-btn-outline:hover{
    background:#080933;

    border-color:#080933;

    color:#fff !important;

    transform:translateY(-2px);
}


/* ==========================================
   TRUST BLOCK
========================================== */

.hh-practice-trust{
    padding:55px 0 65px;

    background:#e9e3d2;
}

.hh-practice-trust-header{
    margin-bottom:32px;
}

.hh-practice-trust-header h2{
    margin:0;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;

    font-size:clamp(30px,4vw,42px);
}


.hh-practice-trust-item{
    height:100%;

    padding:26px 18px;

    background:rgba(255,255,255,.7);

    border-top:3px solid #a9843f;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

    transition:.25s ease;
}

.hh-practice-trust-item:hover{
    background:#fff;

    transform:translateY(-4px);

    box-shadow:0 14px 28px rgba(0,0,0,.08);
}


.hh-practice-trust-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    margin:0 auto 12px;

    color:#a9843f;

    font-size:22px;
}


.hh-practice-trust-item strong{
    display:block;

    margin-bottom:6px;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;

    font-size:28px;

    line-height:1;
}


.hh-practice-trust-item span{
    display:block;

    color:#4e493e;

    font-size:12px;
    font-weight:700;

    line-height:1.35;

    letter-spacing:.3px;

    text-transform:uppercase;
}


/* ==========================================
   CASE TYPES
========================================== */

.hh-practice-cases{
    padding:85px 0 90px;

    background:#f7f7f5;
}


.hh-practice-section-heading{
    max-width:800px;

    margin:0 auto 50px;
}


.hh-practice-section-heading h2{
    margin:0 0 18px;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;

    font-size:clamp(36px,4vw,50px);
}


.hh-practice-section-heading p{
    color:#555;

    font-size:16px;
    line-height:1.7;
}


/* CASE BOX */

.hh-case-box{
    display:flex;

    align-items:flex-start;

    gap:18px;

    height:100%;

    padding:28px 25px;

    background:#fff;

    border-bottom:3px solid transparent;

    box-shadow:0 9px 25px rgba(0,0,0,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.hh-case-box:hover{
    border-color:#a9843f;

    transform:translateY(-5px);

    box-shadow:0 16px 35px rgba(0,0,0,.09);
}


.hh-case-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 50px;

    width:50px;
    height:50px;

    border:1px solid rgba(169,132,63,.35);
    border-radius:50%;

    background:#f4f0e7;

    color:#a9843f;

    font-size:18px;
}


.hh-case-box h3{
    margin:0 0 9px;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;

    font-size:19px;
    font-weight:600;

    line-height:1.2;
}


.hh-case-box p{
    margin:0;

    color:#666;

    font-size:14px;
    line-height:1.6;
}


/* ==========================================
   CTA
========================================== */

.hh-practice-cta{
    position:relative;

    overflow:hidden;

    padding:80px 0;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(192,170,123,.13),
            transparent 35%
        ),
        #070732;

    color:#fff;
}


.hh-practice-cta .hh-practice-eyebrow{
    color:#d2b86f;
}


.hh-practice-cta h2{
    margin:0 0 20px;

    color:#fff;

    font-family:Georgia, "Times New Roman", serif;

    font-size:clamp(36px,4vw,52px);
    font-weight:500;
}


.hh-practice-cta p{
    max-width:760px;

    margin:0 auto 30px;

    color:rgba(255,255,255,.78);

    font-size:16px;
    line-height:1.75;
}


/* CTA ACTIONS */

.hh-practice-cta-actions{
    display:flex;

    align-items:center;
    justify-content:center;

    flex-wrap:wrap;

    gap:12px;
}


.hh-practice-cta-call{
    display:inline-flex;

    align-items:center;

    gap:13px;

    min-height:52px;

    padding:8px 21px;

    background:#a9843f;

    color:#fff !important;

    text-decoration:none !important;

    transition:.25s ease;
}


.hh-practice-cta-call i{
    font-size:19px;
}


.hh-practice-cta-call span{
    display:flex;
    flex-direction:column;

    align-items:flex-start;

    line-height:1.05;
}


.hh-practice-cta-call small{
    color:rgba(255,255,255,.8);

    font-size:9px;
    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}


.hh-practice-cta-call strong{
    color:#fff;

    font-size:16px;
}


.hh-practice-cta-call:hover{
    background:#fff;

    color:#080933 !important;

    transform:translateY(-2px);
}

.hh-practice-cta-call:hover small,
.hh-practice-cta-call:hover strong{
    color:#080933;
}


.hh-practice-cta-contact{
    display:inline-flex;

    align-items:center;

    gap:14px;

    min-height:52px;

    padding:0 23px;

    border:1px solid rgba(255,255,255,.45);

    color:#fff !important;

    font-size:12px;
    font-weight:700;

    letter-spacing:.7px;

    text-transform:uppercase;
    text-decoration:none !important;

    transition:.25s ease;
}


.hh-practice-cta-contact i{
    transition:transform .25s ease;
}


.hh-practice-cta-contact:hover{
    background:#fff;

    border-color:#fff;

    color:#080933 !important;

    transform:translateY(-2px);
}


.hh-practice-cta-contact:hover i{
    transform:translateX(5px);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991.98px){

    .hh-practice-intro{
        padding:65px 0;
    }

    .hh-practice-image-wrap{
        max-width:700px;

        margin:0 auto 25px;
    }

    .hh-practice-copy{
        max-width:100%;
    }

    .hh-practice-cases{
        padding:65px 0;
    }

}


@media(max-width:767.98px){

    .hh-practice-intro{
        padding:55px 0;
    }

    .hh-practice-image{
        min-height:320px;
    }

    .hh-practice-copy{
        text-align:center;
    }

    .hh-practice-actions{
        justify-content:center;
    }

    .hh-practice-trust{
        padding:45px 0 50px;
    }

    .hh-practice-cases{
        padding:55px 0;
    }

    .hh-case-box{
        padding:24px 21px;
    }

    .hh-practice-cta{
        padding:60px 0;
    }

}


@media(max-width:575.98px){

    .hh-case-box{
        flex-direction:column;

        align-items:center;

        text-align:center;
    }

    .hh-practice-btn{
        flex:1 1 auto;
    }

    .hh-practice-cta-call,
    .hh-practice-cta-contact{
        width:100%;
        max-width:340px;

        justify-content:center;
    }

}

.mainwrap {background:#f7f7f5;padding:70px 0;}


/* ==========================================
   HINCHEY ABOUT PAGE
========================================== */


/* INTRO */

.hh-about-intro{
    padding:85px 0;
    background:#fff;
}

.hh-about-image-wrap{
    position:relative;
    max-width:650px;
    padding:0 26px 26px 0;
}

.hh-about-image-accent{
    position:absolute;
    right:0;
    bottom:0;
    width:88%;
    height:88%;
    background:#a9843f;
}

.hh-about-image{
    position:relative;
    z-index:2;
    display:block;
    width:100%;
    min-height:470px;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.hh-about-copy{
    max-width:620px;
}

.hh-about-eyebrow{
    display:block;
    margin-bottom:12px;
    color:#a27e39;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hh-about-copy h1{
    margin:0 0 24px;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(38px,4vw,54px);
    font-weight:600;
    line-height:1.04;
}

.hh-about-lead{
    color:#303044 !important;
    font-family:Georgia, "Times New Roman", serif;
    font-size:20px !important;
    line-height:1.5 !important;
}

.hh-about-copy p{
    color:#515151;
    font-size:16px;
    line-height:1.75;
}


/* INTRO BUTTONS */

.hh-about-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:28px;
}

.hh-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 18px;
    border:1px solid #a9843f;
    font-size:12px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
    text-decoration:none !important;
    transition:.25s ease;
}

.hh-about-btn-primary{
    background:#a9843f;
    color:#fff !important;
}

.hh-about-btn-primary:hover{
    background:#080933;
    border-color:#080933;
    color:#fff !important;
    transform:translateY(-2px);
}

.hh-about-btn-outline{
    background:transparent;
    color:#080933 !important;
}

.hh-about-btn-outline:hover{
    background:#080933;
    border-color:#080933;
    color:#fff !important;
    transform:translateY(-2px);
}


/* TRUST */

.hh-about-trust{
    padding:65px 0;
    background:#e9e3d2;
}

.hh-about-trust-heading{
    max-width:820px;
    margin:0 auto 38px;
}

.hh-about-trust-heading h2{
    margin:0 0 18px;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(34px,4vw,46px);
}

.hh-about-trust-heading p{
    color:#555;
    font-size:16px;
    line-height:1.7;
}

.hh-about-stat{
    height:100%;
    padding:28px 18px;
    background:rgba(255,255,255,.72);
    border-top:3px solid #a9843f;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
    transition:.25s ease;
}

.hh-about-stat:hover{
    background:#fff;
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(0,0,0,.08);
}

.hh-about-stat-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    margin:0 auto 12px;
    color:#a9843f;
    font-size:22px;
}

.hh-about-stat strong{
    display:block;
    margin-bottom:7px;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:28px;
    line-height:1;
}

.hh-about-stat span{
    display:block;
    color:#4e493e;
    font-size:12px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:.3px;
    text-transform:uppercase;
}


/* VALUES */

.hh-about-values{
    padding:85px 0;
    background:#f7f7f5;
}

.hh-about-section-heading{
    margin-bottom:45px;
}

.hh-about-section-heading h2{
    margin:0;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(36px,4vw,50px);
}

.hh-about-value{
    height:100%;
    padding:34px 28px;
    background:#fff;
    border-bottom:3px solid transparent;
    text-align:center;
    box-shadow:0 9px 25px rgba(0,0,0,.055);
    transition:.25s ease;
}

.hh-about-value:hover{
    border-color:#a9843f;
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.09);
}

.hh-about-value-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin:0 auto 18px;
    border:1px solid rgba(169,132,63,.35);
    border-radius:50%;
    background:#f4f0e7;
    color:#a9843f;
    font-size:20px;
}

.hh-about-value h3{
    margin:0 0 12px;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:21px;
    font-weight:600;
}

.hh-about-value p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}


/* LOCAL ROOTS */

.hh-about-local{
    padding:75px 0;
    background:#fff;
}

.hh-about-local h2{
    margin:0;
    color:#080933;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(34px,4vw,48px);
    line-height:1.08;
}

.hh-about-local p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}


/* CTA */

.hh-about-cta{
    padding:80px 0;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(192,170,123,.13),
            transparent 35%
        ),
        #070732;
    color:#fff;
}

.hh-about-cta .hh-about-eyebrow{
    color:#d2b86f;
}

.hh-about-cta h2{
    margin:0 0 20px;
    color:#fff;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(36px,4vw,52px);
}

.hh-about-cta p{
    max-width:760px;
    margin:0 auto 30px;
    color:rgba(255,255,255,.78);
    font-size:16px;
    line-height:1.75;
}

.hh-about-cta-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.hh-about-cta-call{
    display:inline-flex;
    align-items:center;
    gap:13px;
    min-height:52px;
    padding:8px 21px;
    background:#a9843f;
    color:#fff !important;
    text-decoration:none !important;
    transition:.25s ease;
}

.hh-about-cta-call i{
    font-size:19px;
}

.hh-about-cta-call span{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.05;
}

.hh-about-cta-call small{
    color:rgba(255,255,255,.8);
    font-size:9px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.hh-about-cta-call strong{
    color:#fff;
    font-size:16px;
}

.hh-about-cta-call:hover{
    background:#fff;
    color:#080933 !important;
    transform:translateY(-2px);
}

.hh-about-cta-call:hover small,
.hh-about-cta-call:hover strong{
    color:#080933;
}

.hh-about-cta-contact{
    display:inline-flex;
    align-items:center;
    gap:14px;
    min-height:52px;
    padding:0 23px;
    border:1px solid rgba(255,255,255,.45);
    color:#fff !important;
    font-size:12px;
    font-weight:700;
    letter-spacing:.7px;
    text-transform:uppercase;
    text-decoration:none !important;
    transition:.25s ease;
}

.hh-about-cta-contact i{
    transition:transform .25s ease;
}

.hh-about-cta-contact:hover{
    background:#fff;
    border-color:#fff;
    color:#080933 !important;
    transform:translateY(-2px);
}

.hh-about-cta-contact:hover i{
    transform:translateX(5px);
}


/* RESPONSIVE */

@media(max-width:991.98px){

    .hh-about-intro{
        padding:65px 0;
    }

    .hh-about-image-wrap{
        max-width:700px;
        margin:0 auto 25px;
    }

    .hh-about-copy{
        max-width:100%;
    }

    .hh-about-values{
        padding:65px 0;
    }

}

@media(max-width:767.98px){

    .hh-about-intro{
        padding:55px 0;
    }

    .hh-about-image{
        min-height:320px;
    }

    .hh-about-copy,
    .hh-about-local{
        text-align:center;
    }

    .hh-about-actions{
        justify-content:center;
    }

    .hh-about-trust{
        padding:48px 0;
    }

    .hh-about-values{
        padding:55px 0;
    }

    .hh-about-local{
        padding:55px 0;
    }

    .hh-about-cta{
        padding:60px 0;
    }

}

@media(max-width:575.98px){

    .hh-about-btn{
        flex:1 1 auto;
    }

    .hh-about-cta-call,
    .hh-about-cta-contact{
        width:100%;
        max-width:340px;
        justify-content:center;
    }

}

.hh-award-callout{
    padding:28px 0;
    background:#f3efe4;
    border-top:1px solid rgba(169,132,63,.2);
    border-bottom:1px solid rgba(169,132,63,.2);
}

.hh-award-logo{
    max-width:120px;
    height:auto;
}

.hh-award-eyebrow{
    display:block;
    margin-bottom:5px;

    color:#a9843f;

    font-size:11px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.hh-award-callout h3{
    margin:0 0 8px;

    color:#080933;

    font-family:Georgia, "Times New Roman", serif;
    font-size:28px;
    font-weight:600;
}

.hh-award-callout p{
    margin:0;

    color:#555;

    font-size:14px;
    line-height:1.6;
}

.hh-award-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;

    background:#080933;
    border:1px solid #080933;

    color:#fff !important;

    font-size:11px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
    text-decoration:none !important;

    transition:.25s ease;
}

.hh-award-btn:hover{
    background:#a9843f;
    border-color:#a9843f;

    color:#fff !important;

    transform:translateY(-2px);
}

@media(max-width:767px){

    .hh-award-callout{
        text-align:center;
    }

    .hh-award-logo{
        margin-bottom:10px;
    }

}


/* ==========================================
   CONTACT HERO
========================================== */

.hh-contact-hero{
    padding:80px 25px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(192,170,123,.13),
            transparent 35%
        ),
        linear-gradient(
            90deg,
            #05052b 0%,
            #11185a 50%,
            #05052b 100%
        );

    color:#fff;
}

.hh-contact-hero-copy{
    max-width:680px;
}

.hh-contact-eyebrow{
    display:block;

    margin-bottom:12px;

    color:#d2b86f;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hh-contact-hero h1{
    margin:0 0 22px;

    color:#fff;

    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(40px,5vw,58px);
    font-weight:600;
    line-height:1.05;
}

.hh-contact-lead{
    color:#fff !important;

    font-family:Georgia, "Times New Roman", serif;
    font-size:20px !important;
    line-height:1.5 !important;
}

.hh-contact-hero p{
    color:rgba(255,255,255,.78);

    font-size:16px;
    line-height:1.75;
}


/* ACTIONS */

.hh-contact-hero-actions{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:28px;
}

.hh-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    padding:11px 18px;

    border:1px solid #c0aa7b;

    font-size:12px;
    font-weight:700;

    letter-spacing:.6px;
    text-transform:uppercase;

    text-decoration:none !important;

    transition:.25s ease;
}

.hh-contact-btn-primary{
    background:#c0aa7b;
    color:#080933 !important;
}

.hh-contact-btn-primary:hover{
    background:#fff;
    border-color:#fff;

    color:#080933 !important;

    transform:translateY(-2px);
}

.hh-contact-btn-outline{
    background:transparent;
    color:#fff !important;
}

.hh-contact-btn-outline:hover{
    background:#fff;
    border-color:#fff;

    color:#080933 !important;

    transform:translateY(-2px);
}


/* INFO CARD */

.hh-contact-info-card{
    max-width:420px;

    margin-left:auto;

    padding:34px 30px;

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.16);

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.hh-contact-info-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:56px;
    height:56px;

    margin:0 auto 16px;

    border:1px solid #c0aa7b;
    border-radius:50%;

    color:#d2b86f;

    font-size:22px;
}

.hh-contact-info-card h2{
    margin:0 0 12px;

    color:#fff;

    font-family:Georgia, "Times New Roman", serif;
    font-size:28px;
}

.hh-contact-info-card p{
    margin-bottom:18px;

    color:#fff;

    font-size:15px;
    line-height:1.6;
}

.hh-contact-info-divider{
    width:60px;
    height:1px;

    margin:18px auto;

    background:#c0aa7b;
}

.hh-contact-info-card span{
    display:block;

    color:#d2b86f;

    font-size:11px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
}


/* MOBILE */

@media(max-width:991.98px){

    .hh-contact-hero{
        padding:60px 0;
    }

    .hh-contact-info-card{
        margin:35px auto 0;
    }

}

@media(max-width:575.98px){

    .hh-contact-hero{
        text-align:center;
    }

    .hh-contact-hero-actions{
        justify-content:center;
    }

    .hh-contact-btn{
        width:100%;
        max-width:320px;
    }

}


/* ==========================================
   HINCHEY FOOTER
========================================== */
.footertopwrap {background:#171717;border-top:12px solid #916929;}
.footerwrap {background:#0d0d0d;}

.hh-footer{
    position:relative;

    padding:85px 0 55px;

    background:#171717;v

    color:#fff;
}


/* ICON ABOVE FOOTER */

.hh-footer-icon{
    position:absolute;
    top:0;
    left:50%;
    width:200px;
    height:200px;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:3;
}

.hh-footer-icon img{
    object-fit:contain;
    border-radius:50%
}


/* BRAND */

.hh-footer-brand{
    text-align:center;
}

.hh-footer-logo{
    display:block;
    margin-bottom:22px;
}

.hh-footer-brand p{
    margin-bottom:16px;

    color:#eee;

    font-size:16px;
    line-height:1.6;
}

.hh-footer-phone a{
    color:#fff !important;

    font-size:22px;
    font-family:Georgia, "Times New Roman", serif;

    text-decoration:none;
}

.hh-footer-phone a:hover{
    color:#c0aa7b !important;
}


/* SOCIAL */

.hh-footer-social{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}
.hh-footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;

    color:#fff !important;

    font-size:26px;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.hh-footer-social a:hover{
    background:#c0aa7b;
    border-color:#c0aa7b;

    color:#08082f !important;

    transform:translateY(-2px);
}


/* NAV */

.hh-footer-nav{
    display:flex;
    flex-direction:column;

    padding-top:25px;
}

.hh-footer-nav a{
    display:inline-block;

    margin-bottom:13px;

    color:#eee !important;

    font-size:13px;
    font-weight:600;

    letter-spacing:.7px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.hh-footer-nav a:hover{
    color:#c0aa7b !important;

    padding-left:5px;
}


/* MAP */

.hh-footer-map{
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 14px 30px rgba(0,0,0,.2);
}

.hh-footer-map iframe{
    display:block;
}


/* RESPONSIVE */

@media(max-width:991.98px){

    .hh-footer{
        padding:80px 0 45px;
    }

    .hh-footer-brand,
    .hh-footer-nav{
        margin-bottom:35px;
    }

}

@media(max-width:767.98px){

    .hh-footer{
        text-align:center;
    }

    .hh-footer-brand{
        text-align:center;
    }

    .hh-footer-logo{
        margin-left:auto;
        margin-right:auto;
    }

    .hh-footer-social{
        justify-content:center;
    }

    .hh-footer-nav{
        align-items:center;
    }

}

.login {color:#666;font-size:12px;}
.login li {color:#00a9e1;font-size:12px;}


a.login:link {color:#666; font-size:12px; text-decoration:none;}
a.login:visited {color:#666; font-size:12px; text-decoration:none;}
a.login:active {color:#ad9669; font-size:12px; text-decoration:none;}
a.login:hover {color:##00a9e1; font-size:12px; text-decoration:underline;}

.copyright {font-size: 12px;color: #666;text-align:center;}

a.copyright:visited {color: #666; font-size:12px; text-decoration:none;}
a.copyright:active {color: #666; font-size:12px; text-decoration:none;}
a.copyright:link {color: #666; font-size:12px; text-decoration:none;}
a.copyright:hover {color: #00a9e1; font-size:12px; text-decoration:underline;}

.wecontrol {
    text-align: center;
    font-size: 11px;
    padding-top: 10px; 
	color: #666;

}

.wecontrol ul { 

  margin:0;
  padding:0;
}

.wecontrol ul li { 
  display: inline; 
  color: #666; 
  margin:0;
  padding:0;
}

.wecontrol ul li a
{
   text-decoration: none;
   padding: 3px;
   color: #666;
}

.wecontrol ul li a:hover {
    color:#ad9669;
    text-decoration:underline;
}

/*------------------------------------------------*/
/* @media Display STYLES */
/*------------------------------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .testimonialtext {text-align:center; margin-top:0;}
}

/* Small Devices, Tablets */

@media only screen and (max-width : 768px) {
   .showcasetext h2 {font-weight:600;font-size:40px;color:#111;line-height:1.1;font-weight:400;} 

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  
}


/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

