/**********
SITEWIDE STYLES
**********/

:root {
    --primary-text: #0a0a0a;
    --white: #fff;

    --primary: #C1AC79;
    --primary-alt: #a08950 ;

    --secondary: #ceff80;
    --secondary-alt: #a5d15e;

    --accent: #bd4b27;

    --bgblockone:#dbe7ff;
    --bgblocktwo: #fff;

    --transparent:rgba(0,0,0,0);
}

body {
    color:#47414F;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    font-family: avenir-lt-pro, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 1;
    padding-bottom: 10px;
    font-family: 'Playfair';
}
button {
    outline:0;
}
.ff-avenir {
    font-family: 'avenir-lt-pro';
}

h1 {
    font-size:75px;
}
h2 {
    font-size:42px;
}
h3 {
    font-size:26px;
}
h4 {
    font-size:21px;
}

.playfair {
    font-family: 'Playfair';
}

.txt-primary {
    color: var(--primary);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.text-white {
    color: #fff;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
}

.t20 {
    font-size:20px;
}

/* BLOG */
.featured-image img {
    object-fit: cover;
    transform: scale(1);
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease;
    -webkit-transform: 300ms ease;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    position:absolute;
}
.featured-image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.featured-image {
    overflow: hidden;
    padding-top:60%;
    margin-bottom: 10px;
    position: relative;
}
.placeholder-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--dark);
}
.featured-image .placeholder-image {
    position: absolute;
    width: 100%;
    background-color: #e1e1e1;
    height: 100%;
    text-align: center;
}

/**********
BUTTON    
**********/
.btn {
    background-color: transparent ;
    box-shadow: none !important;
    padding: 12px 25px;
    border-radius:0;
    transition: all .15s ease-in-out;
    text-transform: uppercase;
    border-width:0px;
    font-size:14px;
    font-weight: 600;
    border-style: solid;
}

.btn-small {
    font-size: .9rem;
    padding: 7px 20px;
}

.btn.btn-primary {
    font-weight: bold;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    border-width:0;
    border-style: solid;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active
 {
    background-color: var(--primary-alt);
    color: var(--white);
}

.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit {
    font-weight: bold;
    background-color: var(--accent);
    color: #fff;
    position: relative;
    border-width:0;
    border-style: solid;
}

.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:hover,
.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:focus,
.frm_button_submit:active {
    background-color: var(--secondary-alt);
    color: #fff;
}

.btn.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--secondary-alt);
    border: 0 solid var(--transparent);
    color: var(--white);
}

.btn.btn-white {
    color: #47414F;
    background-color:var(--white);
    opacity: 1;
    border: #47414F 1px solid;
}

.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
    color:#fff;
    background-color: var(--primary-alt);
    border-color: var(--primary-alt);
}

.teamlist-btns {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

/* DEFAULTS */
.list-style-none {
    list-style-type: none;
}
.box-bullets ul,
.ld-bottom-box-content ul {
    display:flex;
    row-gap: 15px;
    margin-bottom:30px;
    flex-direction: column;
}
.box-bullets ul li,
.ld-bottom-box-content ul li, 
.fc-text-description ul li  {
    list-style-type: none;
    position: relative;
}
.box-bullets ul li:before,
.ld-bottom-box-content ul li:before, 
.fc-text-description ul li:before 

{
    content: '';
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -19px;
    top: 7px;
}
.nav ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav ul li {
    display: inline-block;
}
.transition {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.bgcover {
    background-size:cover;
}
section.block {
    padding:100px 0;
}

/* DEFAULT GRAVITY FORMS */
.gform_wrapper.gravity-theme .gform_validation_errors {
    padding: 20px 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 16px;
    font-weight: 700;
}
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    border-radius: 0;
    font-weight: bold;
    margin-top: 12px;
}
.gform_wrapper .gform_footer input.gform_button {
    padding: 16px 60px !important;
    text-transform: uppercase;
    color: #fff;
    border-radius:0;
    font-weight: 700;
    background-color: var(--primary);
}
.gform_wrapper .gform_footer input.gform_button:hover {
    background-color: var(--primary-alt);
    color: #fff;
}
.gform_wrapper textarea {
    height: 120px;
    border-radius: 0;
    margin-top: 5px;
    border: 0;
    border-bottom: 1px solid #DBDBDB;
    transition: all 0.5s ease;
}
.gform_wrapper.gravity-theme .gfield textarea:focus {
    outline:0;
    border-bottom:1px solid var(--primary) !important;
}
.gform_wrapper select {
    border-radius: 100px;
    border-color: #e1e1e1;
    padding: 18px 15px;
    outline:0 !important;
}
.gform_wrapper input {
    border: 0;
    border-bottom: 1px solid #DBDBDB;
    line-height: 1;
    transition: all 0.5s ease;
}
.gform_wrapper input:focus {
    border-color: var(--primary);
    border-width: 1px;
}
.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    padding: 15px 15px !important;
}

/* MOBILE NAV */
.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    background: url(./images/icons/nav-closed.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 30px;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


/* -------------------------
NEW STYLES HERE 
-------------------------  */


/* HEADER */
.header {
    position: relative;
    z-index: 55;
}
.header-socials a {
    font-size:17px;
}
.header-email a {
    font-size:14px;
}
.top-header a:hover {
    color: var(--primary);
}
.top-header a {
    color:#000;
}
.blacklink {
    color: #000;
}
.blacklink:hover {
    color: var(--primary);
}
.logo-img {
    max-width: 200px;
}

@media (min-width: 1201px) {
    /* MENU */
    ul.header-menu-list {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    ul.header-menu-list a {
        color:#323232;
    }
    ul.header-menu-list a:hover {
        color: var(--primary);
    }
    ul.header-menu-list2 {
        list-style: none;
        position: relative;
        padding:0;
        margin:0;
    }
    ul.header-menu-list2 .sub-menu {
        list-style: none;
        padding-left: 0;
        background-color: #fff;
        position: absolute;
        overflow-y: scroll;
        width: 480px !important;
        max-height: 0;
        top: 100%;
    }
    ul.header-menu-list2 > li.menu-item-has-children:hover > .sub-menu {
        max-height: 480px;
        transition: all 0.25s linear;
    }
    ul.header-menu-list2 .sub-menu-outer {
        margin: 10px 0;
    }
    .header-menu-list2 a  {
        color:#323232;
    }
    .sub-menu-inner {
        column-count: 2;
    }
    ul.header-menu-list2 a:hover {
        color: var(--primary) !important;
    }
    ul.header-menu-list2 .sub-menu a {
        color:#323232;
        padding:8px 20px;
        line-height:1.4;
        display:block;
    }
    .header-bottom {
        background-color: #F1F1F1;
    }
    ul.header-menu-list2 > li {
        padding: 10px 0;
    }
    /* 1. ensure it scrolls */
    ul.header-menu-list2 .sub-menu {
        overflow: hidden;
        padding-right: 5px;
    }

  /* 2. WebKit browsers (Chrome, Safari, Edge) */
  ul.header-menu-list2 .sub-menu-outer::-webkit-scrollbar {
    width: 1px;
    max-height:480px;
  }
  
  ul.header-menu-list2 .sub-menu-outer::-webkit-scrollbar-track {
    background: red;
    border-radius: 4px;

  }
  
  ul.header-menu-list2 .sub-menu-outer::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
  }
  
  ul.header-menu-list2 .sub-menu-outer::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  ul.header-menu-list2 li.menu-item-has-children:hover > a {
    color: var(--primary) !important;
  }
  /* 3. Firefox */
  ul.header-menu-list2 .sub-menu-outer {
    scrollbar-width: thin;            /* “auto” or “thin” */
    scrollbar-color: #888 #fff;    /* thumb color | track color */
  }

  ul.header-menu-list2 .sub-menu-outer {
    max-height: 480px;     /* or whatever */
    position:relative;
    overflow-x: hidden;
  }
  /*ul.header-menu-list2 .sub-menu-inner:before {
    content: '';
    width: 1px;
    background-color: #aaa;
    height: calc(100% - 30px);
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 1;
} */
.header-menu-list2 .menu-item-has-children {
    position: relative; 
}
.header-menu-list2 .menu-item-has-children > a {
    position: relative; /* for any spacing tweaks */
  }
  .header-menu-list2 .menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0d7";
    display: inline-block;
    margin-left: 9px;
    vertical-align: middle;
    position: relative;
    font-size:14px;
    top: -2px;
    transition: transform 0.3s;
}

@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3px);
    }
  }
  
  .header-menu-list2 .menu-item-has-children:hover > a::after {
    animation: bounce 1.4s ease-in-out infinite;
  }

}
  




/* FOOTER */
.footer {
    padding: 80px 0 30px;
    background-image: url(/wp-content/uploads/2025/05/footerbg.png);
    color: #fff;
    background-size: cover;
}
.footer-logo {
    width: 300px;
}
.ftrc-box-wrap a {
    color:#fff;
}
.ftmc-box {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}
.ftmc-right {
    text-align: right;
}
.ftmc-box {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    margin-bottom: 15px;
}
.ftmc-left {
    font-weight: bold;
}
.footer-top-mid-inner {
    width: 440px;
    max-width: 100%;
}
.footer-bottom {
    border-top: 1px solid #737179;
}
.footer-socials {
    margin-top:5px;
    font-size:18px;
}
ul.footer-menu-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    column-gap: 30px;
    padding: 0;
    margin: 0;
}
.footer-menu-list a {
    color:#fff;
}


/* HERO */
.bhb-img {
    max-width: 42px;
}
#mainhero .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
#mainhero .slick-dots {
    text-align: center;
    position: absolute;
    padding-left:0;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
#mainhero .slick-dots li.slick-active button {
    background-color:var(--primary);
}
#mainhero .slick-dots button {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 100%;
    box-shadow: none;
    cursor: pointer;
    font-size: 0;
    height: 15px;
    outline: 0 none !important;
    width: 15px;
}
#mainhero .slick-slide {
    outline:0;
}

#mainhero .slick-arrow.fa-arrow-right {
    right: 30px;
}
#mainhero .slick-arrow.fa-arrow-left {
    left: 30px;
}
#mainhero .slick-arrow {
    color: #fff;
    cursor: pointer;
    font-size: 50px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 60px;
    z-index: 20;
}
#herotext {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: -70px;
}
.herotextinner {
    position: relative;
    padding-left:75px;
}
.herotextinner:before {
    content: '';
    height: 2px;
    width: 55px;
    background-color: #ddd;
    top: 13px;
    position: absolute;
    left: 0;
}
#homehero {
    position: relative;
}
#mainhero {
    overflow: hidden;
}
#homehero:after {
    content: '';
    position: absolute;
    height: 100%;
    z-index: 5;
    top:0;
    left:0;
    width: 100%;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.61) 0%, rgba(0, 0, 0, 0) 100%);
}
.herotextinner h1 {
    font-size: 81px;
    width: 680px;
    line-height: 1;
    margin-top: 10px;
    max-width: 100%;
}
.herotexttop {
    font-size: 18px;
}
.herobtn .btn {
    font-size:18px;
}
#mainhero .mainheroslide {
    height: 900px;
}
.mainheroslide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.heroslideinner {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#mainhero .slick-arrow {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    height: 46px;
    line-height: 46px;
    position: absolute;
    margin-top: -60px;
    text-align: center;
    top: 50%;
    width: 46px;
    z-index: 20;
    background-color: rgba(0,0,0,0.2);
}
#bottomhero {
    position: absolute;
    width: 100%;
    z-index: 20;
    color: #fff;
    bottom: 0;
    border-top: 1px solid #979797;
}
.bottomherobox:last-child {
    border-right:0;
}
#bottomhero .row > div:last-child {
    border-right:0;
}
#bottomhero .row > div {
    border-right:1px solid #979797;
}
.bottomherobox {
    display:flex;
    column-gap:15px;
    padding: 40px 30px;
    align-items:center;
}
.bhb-text-top {
    font-weight: 600;
    color:var(--primary);
}
.bottomherobox h3 {
    font-size: 35px;
    font-weight: 400;
    margin-top: -7px;
    color:#fff;
    padding-bottom:0;
}
#bottomhero a:hover {
    background-color: rgba(0,0,0,0.2);
}
#bottomhero a {
    background-color: transparent;
    transition: all 0.5s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}
.sra-logo {
    height: 75px;
}
@media (min-width:1201px) {
    .lg-space-left {
        padding-left:90px;
        position: relative;
    }   
    .lg-space-left.brown:before {
        background-color: #C1AC79;
    }   
    .lg-space-left.transparent:before {
        background-color: transparent;
    }   
    .lg-space-left:before {
        content: '';
        width: 53px;
        display: block;
        position: absolute;
        height: 1px;
        background-color: #808080;
        left: 20px;
        top: 22px;
    }
}


/* PRACTICE AREAS */
.practice-areas-wrap {
    max-width: 900px;
    margin: 0 15px;
  }
  .fs16 {
    font-size:16px;
  }
  .practice-areas-columns {
    display: flex;
    gap: 2rem;
  }
  
  .practice-areas-column {
    flex: 1;
  }
  
  .practice-areas-box {
    display: block;
    position: relative;
    padding: 13px 0;
    border-bottom: 1px solid #777;
    color: #fff;
    text-decoration: none;
    font-size:22px;
    font-family: 'Playfair';
    transition: color 0.3s;
  }
  
  .practice-areas-box:first-child {
        border-top: 1px solid #777;
  }
  
  .practice-areas-box:hover {
    color: var(--primary);
  }
  
  .practice-areas-arrow {
    position: absolute;
    right: 10px;
    font-size:14px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
  }
  
  /* arrow slide on hover */
  .practice-areas-box:hover .practice-areas-arrow {
    transform: translateY(-50%) translateX(4px);
  }
  #home-logos img {
    width: 240px;
    margin: 0 auto;
    display: block;
}
.about2-cta {
    padding: 40px 35px;
}
.aboutsectionimage img {
    height: 100%;
    width:100%;
    object-fit: cover;
}
.aboutsectionimage {
    aspect-ratio: 613/562;
}



/* CONTACT */
#contactbox {
    padding: 50px;
    box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.1);
}
.home #gform_wrapper_1 .gform_heading {
    display: none;
}
.cform-testi-box {
    background-color: #ECECED;
    padding: 40px;
    margin-top: 20px;
}
.cform-testi-box img {
    border-radius: 50%;
    width: 140px;
    margin: 0 auto 15px;
    display: block;
}
.cform-testi-text {
    font-family: 'Playfair';
    font-size: 23px;
    width: 400px;
    max-width: 100%;
    line-height: 1.4;
    margin: 0 auto;
}
.cform-testi-box {
    background-color: #ECECED;
    padding: 40px;
    border-radius: 25px;
}
.contactpage .location-details-main {
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:0;
    row-gap:13px;
}
.contactlocations {
    padding: 30px 0;
    border-bottom: 1px solid #e1e1e1;
}
.location-details-main-wrap:last-child .contactlocations {
    border-bottom:0;
}

/* OUR LOCATIONS */
ul.nav.nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 0;
    column-gap:20px;
}
.nav-tabs .nav-link.active {
    color: var(--primary);
}
.nav-tabs li a {
    color: #47414F;
    font-weight: 600;
}
.nav-tabs li {
    font-size: 16px;
}


/* LOCATIONS BOX */
.locationsbox {
    position: relative;
    overflow:hidden;
    aspect-ratio: 1/1;
}
.locationsbox a:hover:before {
    background-color: rgb(193 171 121 / 65%);
}
.locationsbox a:before {
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.35);
    z-index: 4;
    transition: all 0.5s ease;
}
.locationsbox h3 {
    font-size:35px;
    padding-bottom: 0;
    text-align:center;
    position: absolute;
    z-index: 5;
    color:#fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.locationsbox {
    width: 100%;
    height:100%;
    object-fit: cover;
}

.locationsbox:hover img {
    transform: scale(1.15);
}
.locationsbox img {
    transition: all 0.5s ease;
}
.home-locations-top h2:after {
    content:'';
    display:block;
    width:110px;
    height:1px;
    margin: 25px auto 40px;
    background-color: var(--primary);
}
.text-white-link {
    color:#fff;
}
.text-white-link:hover {
    color:var(--primary);
}
.ttb-text {
    background:#fff;
    padding:20px;
}
.ttb-title h3 {
    font-size: 24px;
    padding-bottom: 3px;
    color:#47414F;
}
.theteambox .lg-space-left {
    padding-left:37px;
}
.ttb-title.lg-space-left:before {
    width:28px;
}
.ttb-title.lg-space-left.brown:before {
    left: 0;
    top: 12px;
    width: 26px;
}
.ttb-image {
    aspect-ratio: 449 / 503;
}
.ttb-image img {
    width:100%;
    height:100%;
    overflow: hidden;
    object-fit: cover;
}
.ttb-position {
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.5;
}
.ttb-text {
    border:1px solid #f1f1f1;
    border-right:0;
}
.theteambox {
    /* box-shadow: 0px 0px 33px -3px rgba(0,0,0,0.1); */
}
.home-team-main-slider {
    padding:0 21px 20px;
}
.home-team-main-slider .slick-list {
    padding-bottom:20px;
    padding-right:1px;
}
#home-team .home-team-top .slick-list {
    padding:0 20px;
}
.home-team-main-slider .slick-next {
    right: -20px;
}
.home-team-main-slider .slick-prev {
    left: -20px;
}
.home-team-main-slider .slick-arrow {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 40px;
    z-index: 10;
}


/* TEAM FORM */
div#gform-lawyer-modal .modal-content {
    border-radius: 0;
    padding: 50px !important;
}
div#gform-lawyer-modal .modal-dialog {
    max-width: 630px;
}
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
    padding-bottom: 0;
    margin-bottom: 0;
}
textarea#input_4_1 {
}
h3#gform-lawyer-title {
    font-size: 32px;
    text-align: center;
}
input#gform_submit_button_4 {
    margin: 0 auto;
}

/* WATCH OUR VIDEO */
.wov-wrapper1 {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 60px;
    position:relative;
    cursor: pointer;
}
.wov-thumb1 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wov-play-btn1 i {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: all 0.5s ease;
    font-size: 90px;
}
.wov-wrapper1:hover .wov-play-btn1 i {
    transform: translate(-50%, -50%) scale(1.1);
}
.wov-play-btn1 i {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 90px;
}
#wov-video-container1 {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.wov-wrapper1 iframe {
    aspect-ratio: 16/9;
}

.wov-wrapper2 {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 60px;
    position:relative;
}
.wov-thumb2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wov-play-btn2 i {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 90px;
}
#wov-video-container2 {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.wov-wrapper2 iframe {
    aspect-ratio: 16/9;
}

li.current-menu-item > a {
    color: var(--primary) !important;
    font-weight:600;
}


/* INNERHERO */
section#innerhero {
    padding: 180px 0 250px;
    overflow: hidden;
    background-size: cover;
    overflow: hidden;
    position: relative;
    background-position: center;
}
/* #innerhero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(85 63 11 / 30%);
} */
#innerhero .container {
    position: relative;
    z-index: 5;
}
#innerhero h1, .breadcrumbs > *, 
.innerhero-description, 
#innerhero .post-meta 
{
    text-shadow: 0px 0px 10px rgba(0,0,0,0.45);
}

/* OFFSET */
.section-offset-inner {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px -30px 29px -3px rgba(0,0,0,0.1);
}
.innerhero-description {
    font-size: 18px;
    width: 550px;
    max-width: 100%;
}
.lawyer-name {
    font-weight: 800;
}
.breadcrumbs i {
    font-size: 11px;
    position: relative;
    margin:0 4px;
    top:-1px;
}
section.section-offset {
    margin-top: -100px;
    overflow: hidden;
    position:relative;
    z-index: 10;
}


/* MEET THE TEAM */
.teamlist-text {
    padding: 15px;
}
.teamlist-btns .btn {
    padding:10px 20px;
}
.teamlist-text h3 {
    font-size: 30px;
    letter-spacing: -0.5px;
    padding-bottom: 5px;
}
.team-intro {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size:14px;
    line-height: 1.35;
}
span.team-role {
    font-size: 14px;
    opacity: 0.6;
}
.teamlistbox:hover {
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}
.teamlistbox {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s ease;
  }
  
  /* Let the text block fill all available space */
  .teamlist-text {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }
  .teamlist-image {
    aspect-ratio: 294 / 330;
    position: relative;
}
  .teamlist-btns {
    margin-top: auto;
  }
.teamlist-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.teamlist-image {
    aspect-ratio: 294 / 330;
    position: relative;
    overflow: hidden;
}
h2.member-name {
    font-size: 50px;
}
.member-info-top {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
p.member-role {
    color: #999;
    font-size: 16px;
}
.member-phone a {
    color:#47414F;
}

/* GLOSSARY */
.glossary-term {
    font-size: 20px;
    font-weight: 800;
}
.glossary-wrap {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    width: 1000px;
	max-width:100%;
    margin: 30px auto;
}
.glossary-item {
    margin-bottom: 20px;
}
.glossary-item:last-child {
    margin-bottom: 0;
}
.glossary-letter {
    font-size: 30px;
    font-weight: 800;
    position: sticky;
    top: 0;
}


/* CONTACT */
.contactpage form#gform_1 {
    width: 600px;
    margin: 30px auto 0;
    max-width: 100%;
}



/* ABOUT */
@media (min-width: 1400px) {
    .about-legal-services .container {
        max-width: 1370px;
    }
}
.about-legal-services {
    background-color:#F6F6F6;
}
.als-box:before {
    width:100%;
    height:100%;
    left:0;
    top:0;
    content:'';
    position:absolute;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    z-index: 5;
}
.als-box:hover:before {
    background-color: rgba(69, 53, 4, 0.5);
}
.als-box {
    aspect-ratio: 1;
    position: relative;
    text-align: center;
    display: block;
    overflow: hidden;
}
.als-box:hover img {
    transform: scale(1.02);
}
.als-box img {
    object-fit: cover;
    width:100%;
    height:100%;
    transition: all 0.5s ease;
    transform: scale(1);
    z-index: 4;
}
.als-box strong {
    z-index: 6;
    text-transform: uppercase;
    padding: 10px 20px;
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
}

/* SINGLE + BLOG */
.the-post-content-inner {
    width: 1000px;
    margin: 50px auto;
    max-width: 100%;
}
#innerhero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(72, 52, 5, 0.4);
}
.related-blogs-date {
    color: #888;
}
.related-blogs-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}
.related-blogs-thumb:hover img {
    transform: scale(1.05);
}
.related-blogs .card-body h3 {
    font-weight: 600;
}
.related-blogs-thumb {
    aspect-ratio: 368 / 213;
    overflow: hidden;
}
.related-blog-section-title {
    position: relative;
    font-weight:600;
}
.section-offset-inner .the-content-page {
    width:1000px;
    max-width: 100%;
    margin:30px auto;
}
.page-numbers {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid;
    align-content: center;
    line-height: 1.5;
    color: #B0B0B0;
    font-weight: 600;
    margin: 0 2px;
    border-radius:3px;
    transition: all 0.5s ease;
}
.pagination-wrapper .prev, .pagination-wrapper .next {
    font-size: 11px;
    position: relative;
    top: -1px;
}
.page-numbers.current, .page-numbers:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.related-blogs .card-body h3 a:hover {
    color: var(--primary) !important;
}
.lsb-text .btn {
    margin-top: 10px;
}
.lsb-text h3 {
    font-size:27px;
}
.lsb-image {
    margin-bottom: 12px;
    aspect-ratio: 1;
}
.blacklink:hover {
    color: var(--primary);
}
.blacklink {
    color:#47414F;
}
.zoomimg {
    position: relative;
    overflow: hidden;
}
.zoomimg img:hover {
    transform: scale(1.05);
}
.zoomimg img {
    transition: all 0.5s ease;
}
.bggray {
    background-color:#F6F6F6;
}
.blogpage {
    padding-bottom: 90px;
}



/* CAREERS */
.benefits .fc-list-title {
    font-weight: 800;
    color:#48424F;
}
.square-list li:before {
    content: '';
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 7px;
}
.square-list li {
    position: relative;
}
.benefits ul li:before {
    content: '';
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 7px;
}
.benefits ul li {
    position: relative;
}
.rd-box {
    border-bottom: 1px solid #ddd;
}
.fc-spec-list-wrap > strong {
    font-weight:800;
}
.fc-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    padding-left: 0;
}
.benefits ul li {
    position: relative;
    margin: 10px 0;
    padding: 0 15px 0 20px;
    width: 50%;
}
.benefits ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

/* APPLY NOW */
#field_3_6 .ginput_container_fileupload {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    background-color: #F1F1F1;
    height: 180px;
    cursor: pointer;
}
#field_3_6 .ginput_container_fileupload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
#field_3_6 .ginput_container_fileupload:hover:before {
    background: #e1e1e1;

}
#field_3_6 .ginput_container_fileupload::before {
    transition: all 0.5s ease;
    content: "choose file";
    display: inline-block;
    text-transform: uppercase;
    position:absolute;
    left: 50%;
    z-index: 5;
    top:50%;
    transform: translate(-50%, -50%);
    background: #F1F1F1;
    padding: 8px 16px;
    border: 1px solid #999;
    font-weight: 600;
    font-size: 15px;
    pointer-events: none;
}
span#gfield_upload_rules_3_6 {
    display: none;
}
.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
    max-width: 100%;
    border: 0;
    border-bottom: 1px solid #DBDBDB;
    border-radius: 0;
}
#input_3_7 {
    color: #666;
    background-color: #fff;
}
#gform_wrapper_3 .gform_title {
    text-align: center;
    display: block;
    font-size: 36px;
}
.apply-now-wrap {
    padding: 40px;
    max-width: 100%;
    width: 1050px;
    margin: 0 auto 50px;
    box-shadow: 0px 5px 33px 8px rgba(0,0,0,0.05);
}
#gform_wrapper_3 .gform-footer.gform_footer.top_label {
    display: block;
    text-align: center;
    margin-top:20px;
}
.current-roles.block {
    margin-bottom: 50px;
    background-color: #F6F6F6;
    padding: 80px 0;
}
.career-post-card {
    background-color: #EBE7DE;
    padding: 25px;
}
.career-post-excerpt {
    line-height: 1.35;
    margin-bottom: 50px;
}
a.career-post-readmore:hover {
    background-color: var(--primary);
    color:#fff;
    border-color:#fff;
}
a.career-post-readmore {
    color: #47414F;
    transition: 0.5s all ease;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #47414F;
    cursor: pointer;
    display: inline-block;
}

/* SERVICES */
.services-title-left h2 {
    font-size:35px;
}
.services-location {
    font-weight: 500;
    font-size: 16px;
}
.services-title-left {
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}
.services-left img {
    width: 200px;
}
h3.fc-text-title {
    font-family: 'avenir-lt-pro';
    font-weight: 800;
    font-size: 21px;
}
.fc-content {
    margin-bottom:30px;
}
.fc-list-block .fc-list-title {
    font-weight: 800;
    color:#48424F;
    font-family: 'avenir-lt-pro';
    font-size: 21px;
}
.fc-list-block ul li:before {
    content: '';
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -19px;
    top: 7px;
}
.fc-list-block ul li {
    position: relative;
}
.fc-list-items {
    margin-top:10px;
    column-count: 2;
    list-style: none;
}
.fc-list-items li {
    margin-bottom: 12px;
}
.page-id-133 .fc-text-description h3 {
    font-family: 'avenir-lt-pro';
    font-size: 25px;
    font-weight: 700;
    margin-top: 25px;
}
.fc-text-description h1,
.fc-text-description h2,
.fc-text-description h3,
.fc-text-description h4,
.fc-text-description h5,
.fc-text-description h6 {
    font-family: 'avenir-lt-pro';
    font-weight: 700;
}
.fc-text-description ul li {
    margin-bottom:10px;
}
.fc-text-description ul {
    list-style: none;
}
.custom-probate-table tbody td {
    padding: 13px 0;
    vertical-align: top;
    color:#504C59;
}
.custom-probate-table thead th {
    font-weight: 700;
    color:#504C59;
    padding: 0.75rem 0;
}

/* LOCATIONS */
.location-details-box {
    display: flex;
}
.ldbox-left {
    flex: 0 0 30%; /* exact 30% */
}
.ldbox-right {
    flex: 1; /* take remaining space */
}
.location-details-main {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}
.ld-bottom-box-title > * {
    font-weight: 800;
    letter-spacing: 0.05px;
}


.wov-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}
.wov-modal.show {
    opacity: 1;
    visibility: visible;
}
.wov-modal-inner {
    position: relative;
    max-width: 90%;
    width: 800px;
    aspect-ratio: 16/9;
    background: #000;
}
.wov-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}
.wov-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.wov-iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* REQUEST A FREE CALL BACK */
#gform_wrapper_5 .gform_heading {
    text-align: center;
    margin-bottom:35px;
}

#gform_wrapper_5 form {
    width: 590px;
    margin: 0 auto;
    max-width: 100%;
}
#gform_wrapper_5 input[type=text], #gform_wrapper_5 input[type=email], #gform_wrapper_5 input[type=tel], #gform_wrapper_5 select {
    padding: 5px 10px 10px 10px !important;
    margin-bottom: 10px;
}
select:has(option.gf_placeholder:checked) {
    color: #aaa;
}
.page-template-template-book-a-consultation section#innerhero {
    padding: 170px 0 170px;
}
#gform_wrapper_5 .gform_title {
    font-size: 60px;
}
#gform_wrapper_5 .gform_footer {
    text-align: center;
    display: flex;
    justify-content: center;
}


/* PROPERTY FEES */
.cost-breakdown {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    border: 1px solid #F2F2F2;  /* ← here’s your outer border */
}

.cost-breakdown th,
.cost-breakdown td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cost-breakdown thead th {
    background-color: #fff;
    border-bottom: 2px solid #dee2e6;
}

.cost-breakdown .group-header th {
    background-color: #e9ecef;
    font-weight: 800;
    border-bottom: 1px solid #F3F3F3;
}

.cost-breakdown .total-row th,
.cost-breakdown .total-row td {
    font-weight: bold;
    border-top: 2px solid #dee2e6;
}

.cost-breakdown caption {
    caption-side: top;
    text-align: left;
    padding-bottom: 0.5rem;
    font-weight: bold;
}