/*
Desktop Styles for Hedredesign Theme
HomeEquity Bank Design
*/

/* ===================================
   CSS VARIABLES
   =================================== */

:root {
    --hebTeal: #00414C;
    --hebMint: #65CF8C;
    --hebYellow: #FFD700;
    --white: #ffffff;
    --black: #000000;
    --bg-light: rgba(0, 65, 76, 0.05);
    --blue-dark: #023841;

    --primary-font: "Poppins", sans-serif;

    --text-primary: #00414C;
    --text-secondary: #303230;
    --text-light: #666666;

    --font-size-16: 16px;
    --font-size-15: 15px;
    --font-size-18: 18px;
    --font-size-10: 10px;
    --font-size-14: 14px;
    --font-size-20: 20px;
    --font-size-24: 24px;
    --font-size-32: 32px;
    --font-size-42: 42px;

    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;

    --border-radius12: 12px;
    --line-height-22: 22px;

    --spacing-XS: 12px;
    --spacing-SM: 24px;
    --spacing-SM2: 16px;
    --spacing-MD: 32px;
    --spacing-MD2: 48px;
    --spacing-MD3: 40px;
    --spacing-LG: 64px;
    --spacing-XL: 96px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-400);
    background: url(../images/bg.png);
}

body.nobgcolor {
    background: none;
}

.mt-5 {
    margin-top: 2rem !important;
}

.bg-theme {
    background-color: var(--hebTeal);
    color: #fff !important;
}

.bg-theme p,
.bg-theme-light p {
    color: var(--white) !important;
}

.bg-theme-light {
    background-color: var(--blue-dark);
}

.bg-theme-light h2.wp-block-heading {
    margin: 0;
}

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

h2 {
    font-size: var(--font-size-32);
    font-weight: var(--font-weight-600);
    margin-bottom: 1rem;
    color: var(--hebTeal);
}


ol,
p,
ul {
    margin: 0 0 1rem;
    font-size: var(--font-size-16);
    color: var(--text-secondary);
    /* line-height: 130%; */
    /* font-weight: 400; */
}

a {
    text-decoration: underline;
    color: var(--hebTeal);
    transition: .3s;
}

a:hover {
    text-decoration: none;

}

b,
strong {
    font-weight: var(--font-weight-600);
}

.mb-1-75 {
    margin-bottom: 1.75em;
}

.page-default-section a[href="tel:1-866-331-2447"] {
    white-space: nowrap;
}

/* ===================================
   BUTTONS
   =================================== */


.btn-color-yellow,
.btn_primary a,
.btn-color-yellow a {
    background: var(--hebYellow);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 62.5px;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    line-height: 120%;
}

.btn-color-yellow:hover,
.btn_primary a:hover,
.btn-color-yellow a:hover {
    color: var(--text-primary);
    text-decoration: none;
    background: var(--hebMint);
    /* transform: translateY(-2px); */
}


.btn-yellow {
    padding: 10px 25px;
    background: var(--hebYellow);
    border-radius: 100px;
    color: var(--hebTeal);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
    display: inline-block;
    text-transform: uppercase;
}

.btn-yellow:hover {
    background: var(--hebMint);
}

.btn-color-yellow.btn-small {
    padding: var(--spacing-XS) var(--spacing-SM);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: var(--font-weight-700);
    line-height: 24px;
    text-transform: uppercase;
}

.btn-secondary {
    background-color: var(--hebTeal);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary-small {
    /* border-radius: 25px; */
    /* font-size: 18px; */
    /* padding: 10px 25px; */
    /* text-transform: none; */
}

.btn-secondary:hover {
    background: var(--hebMint);
    color: var(--hebTeal);
}

.wp-block-buttons .wp-block-button__link {
    width: auto;
}

.wp-block-quote {
    border-color: #eee;
}

.popup {
    width: 100%;
    max-width: 90%;
}

.product-cta .cta-link a:before {
    background: url(../images/cta-phone_white.svg) no-repeat center/18px auto;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 0px;
}

.product-cta .cta-link a:hover:before {
    background-image: url(../images/cta-phone_teal.svg);
}

.bullet {
    padding-left: 0;
    font-size: var(--font-size-16);
    /* padding-top: 10px; */
    padding-left: 0 !important;
    list-style: none !important;
}

.page-default-section {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 16px;
}

.page-default-section ul.bullet {
    margin-bottom: 1rem;
    padding-top: 0px;
}

.bullet li {
    padding-left: 26px;
    /* color: #777; */
    position: relative;
    padding-bottom: 5px;
}

.bullet li:before {
    content: "";
    padding-right: 15px;
    color: var(--hebTeal);
    width: 20px;
    position: absolute;
    height: 14px;
    background: url(../images/tick.svg) no-repeat;
    top: 8px;
    left: 0;
}

.pagemid-ctabanner {
    margin: 1.75em 0;
}

/* ===================================
   TOP NAVIGATION BAR
   =================================== */

.top-nav {
    background-color: var(--white);
    padding: 0;
}

.top-header-content {
    padding: 3px 0;
}

.top-nav-lang {
    text-align: right;
}

.top-nav-lang .lang-link {
    text-decoration: none;
    font-weight: 400;
}

.top-nav-lang .lang-link:hover {
    text-decoration: underline;
}

/* ===================================
   HEADER STYLES
   =================================== */

.site-header {
    padding: 0;
    position: relative;
    z-index: 1000;
    margin-bottom: 40px;
}

body.home .site-header {
    margin-bottom: 0;
}

.header-content {
    background-color: var(--hebTeal);
    color: var(--white);
    padding: var(--spacing-SM2) 0;
    /* 16px vertical padding */
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.site-branding {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo-link img,
.site-branding .custom-logo {
    height: 56px;
    width: auto;
    display: block;
}

.logo-home {
    color: var(--white);
}

.logo-equity {
    color: var(--white);
    position: relative;
}

.equity-arrow {
    color: var(--hebMint);
    font-size: var(--font-size-16);
    position: absolute;
    top: -8px;
    left: -8px;
}

.logo-bank {
    color: var(--white);
}

.logo-icon {
    margin-left: 10px;
}

/* Header Contact & CTA Section */
.header-contact-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-SM);
    /* 24px gap */
}

/* Header Contact (Phone Section) */
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-XS);
    /* 12px gap */
}

.phone-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 37.975px;
    flex-shrink: 0;
}

.phone-icon-wrapper .phone-icon,
.header-contact .phone-icon {
    width: 34px;
    height: 37.975px;
    display: block;
    object-fit: contain;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.assistance-text {
    font-family: var(--primary-font);
    font-size: var(--font-size-16);
    /* 16px */
    font-weight: var(--font-weight-400);
    color: var(--white);
    margin: 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-text {
    font-family: var(--primary-font);
    font-size: var(--font-size-16);
    /* 16px */
    font-weight: var(--font-weight-400);
    color: var(--white);
}

.phone-number {
    font-size: var(--font-size-18);
    /* 18px */
    font-weight: var(--font-weight-700);
    color: var(--white);
}

.phone-number:hover {
    text-decoration: none;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--hebYellow);
    color: var(--hebTeal);
    padding: 12px var(--spacing-SM);
    /* 12px vertical, 24px horizontal */
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: var(--font-size-20);
    /* 20px */
    font-weight: var(--font-weight-700);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s;
}

.cta-button:hover {
    text-decoration: none;
    background-color: var(--hebMint);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

/* Phone Button for Mobile */
.phone-button-mobile {
    display: none;
}


/* ===================================
   MAIN NAVIGATION
   =================================== */
.header-navigation {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 32px;
}

.primary-menu .menu-item {
    position: relative;
    /* padding: 10px; */
}

.primary-menu .menu-item:last-child {
    padding-right: 0;
}

.primary-menu .menu-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-500);
    line-height: 130%;
    letter-spacing: 0%;
    padding: 16px 0;
    display: inline-block;
    font-size: 18px;
}

.site-header a:hover {}

.site-header a:hover {}



.primary-menu>.menu-item-has-children>a::after {
    background: url(../images/nav-downarrow.svg) center / 12px auto no-repeat;
    content: "";
    width: 14px;
    height: 10px;
    margin-left: 8px;
    display: inline-block;
}

.dropdown-arrow {
    font-size: var(--font-size-10);
    margin-left: 5px;
}

/* Dropdown Menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 55px;
    right: auto;
    background-color: #fff;
    min-width: 200px;
    width: max-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
}

.primary-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu {
    /* border-left: solid 1px rgba(0, 0, 0, .1); */
    /* border-right: solid 1px rgba(0, 0, 0, .1); */
}

.primary-menu .sub-menu li {
    border-bottom: solid 1px rgba(0, 0, 0, .1);
    padding: 0;
    list-style: none;
}

.primary-menu .sub-menu li:first-child {}



.primary-menu .sub-menu li:last-child {
    border-bottom: none;
}

.primary-menu .sub-menu a {
    padding: 14px var(--spacing-SM2);
    display: block;
    color: var(--hebTeal);
    white-space: nowrap;
    /* font-size: 16px; */
}

.primary-menu .sub-menu a:hover {
    background: rgba(0, 65, 76, .05);
}

/* ===================================
   CONTENT AREA
   =================================== */


.top-header {
    background: #fff;
}

.site-content {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.site-main {
    overflow-x: hidden;
    position: relative;
}

#page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.spacebottom main {}

.page-content {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 60px;
    padding-bottom: 32px;
    padding-top: 32px;
}

    {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 60px;
    padding-bottom: 60px;
    padding-top: 55px;
    padding-left: 30px;
    padding-right: 30px;
}

.noborder {
    border: 0;
}

h1 {
    font-size: 40px;
    color: var(--hebTeal);
    margin-bottom: 32px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    /* color: #000; */
    margin-bottom: 30px;
}

a:not(.btn-secondary),
a:not(.btn-secondary):hover {
    /* color: var(--hebTeal); */
    /*text-decoration: underline;*/
}

p {
    /* margin-bottom: 1rem; */
}

.page-breadcrumbs .breadcrumb-list {
    list-style: none;
    padding: 0 0 20px;
    margin-bottom: 0;
    display: flex;
    font-size: var(--font-size-16);
    color: var(--text-secondary);
    font-weight: 400;
}

.page-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    content: "»";
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin: 0 8px;
}

.breadcrumb-list .breadcrumb-item a {
    text-decoration: none;
    color: var(--hebTeal);
}

.breadcrumb-list .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Channel Section */
.channel-section {
    padding: 0 30px 50px;
}

.channel-inner {
    text-align: left;
    min-height: 305px;
    margin-top: -69px !important;
    padding: 15px 30px;
    border: 1px solid #eee;
    background: #fdfdfd;
    color: #000;
}

.channel-inner h2,
.channel-inner h3 {
    text-align: center;
}

.channel-inner h2 a {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid #555;
    text-decoration: none;
}

.channel-inner h3 a {
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.channel-inner h3 a:hover {
    text-decoration: underline;
}

.channel-inner p {
    font-size: 14px;
    text-align: left;
    color: #212121;
}

/* Our Story Section */
.our-story {
    background-color: #fff;
    padding: 0 30px 50px;
    margin-bottom: 65px;
}

.our-story h1 {
    text-align: center;
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 30px;
    text-decoration: underline;
}

.our-story h2 {
    font-size: 32px;
    margin: 15px;
    line-height: 82px;
    color: #fff;
    background: var(--hebTeal);
    width: calc(100% + 60px);
    margin-left: -30px;
    font-weight: 700;
}

/* General Section Styles */
.white_bg {
    background: var(--white);
}

.light_bg {
    background: var(--bg-light);
}

.dark_bg {
    background: var(--hebTeal);
}

.dark_bg p,
.dark_bg h3,
.dark_bg h2 {
    color: var(--white);
}

.padding-top54 {
    padding-top: 54px;
}

.padding-top64 {
    padding-top: 64px;
}

.padding-bottom64 {
    padding-bottom: 64px;
}

.borderbottom_1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bordertop_2 {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.topbottom-spacing-section {
    padding: 54px 0 var(--spacing-LG) 0;
}

.section-inner-spacing {
    margin: var(--spacing-MD) 0 var(--spacing-MD2) 0;
}

.spacingbottom0 {
    margin-bottom: 0;
}

.faq-section .spacing_lr_245,
.spacing_lr_245 {
    /* margin-left: 245px; */
    /* margin-right: 245px; */
}

.faq-section .spacing_lr_245 {
    max-width: 900px;
    margin: auto;
}

.how-it-works-block {
    border-radius: 24px;
    border: 1.5px solid rgba(0, 65, 76, 0.10);
    background: #FFF;
    overflow: hidden;
    gap: 0;
    margin: 0;
}

.how-it-works-block .wp-block-image {
    margin-bottom: 0;
    height: 100%;
}

.how-it-works-block .wp-block-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.error-message,
.error-message label {
    color: #E74C3C;
    font-size: 1em;
    font-weight: normal;
    display: block;
}

/* Legacy Footer Styles */
.site-footer {
    margin: 0;
    padding: 60px 0 40px;
    background-color: var(--hebTeal);
    color: #AFD9B8;
}

.footer-widgets {}

.footer-widget-area {
    display: flex;
}

.site-footer .wp-block-heading {
    color: #AFD9B8;
    font-size: 25px;
}

.site-footer ul {
    padding: 0;
}

.site-footer ul li {
    list-style: none;
    margin-bottom: 12px;
}

.site-footer ul li a,
.site-footer p {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}

#block-13 p {
    margin-bottom: 0;
}

.getintouch p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.getintouch .label {
    flex-basis: 90px;
    margin-right: 10px;
}

.site-footer .form-control {
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
}

.site-footer .btn-subscription {
    padding: 12px 32px;
    font-size: 20px;
}

.site-footer .getintouch a {
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    background: rgba(101, 207, 140, 0.10);
    padding: 4px 16px;
    display: inline-block;

}

.site-footer .getintouch a:hover {
    background: rgba(101, 207, 140, 0.20);
}


.site-footer ul li a:hover {
    text-decoration: underline;

}

.widget_media_image .wp-block-image {
    margin: 24px 0 0;
}

.footernavigation .wp-block-image {
    margin: 28px 0 0;
}

.footernavigation .wp-block-image img {
    width: 120px;
}

.site-footer .getintouch {
    margin-bottom: var(--spacing-SM2);
}

.site-footer .error-message {
    background: #E74C3C;
    font-size: 13px;
    color: #fff;
    padding: 8px 10px;
    border-radius: 2px;
    line-height: 110%;
    position: relative;
    margin-top: 12px;
}

.site-footer .error-message:before {
    bottom: 100%;
    left: 18px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: rgba(255, 255, 255, 0);
    border-bottom-color: #E74C3C;
    border-width: 6px;
    margin-left: -8px;
}


.footer-content {
    margin: 0;
    color: #fff;
}


.footer-content {
    margin: 24px 0 0;
}

.footer-content p {
    margin: 0;
    padding: 0;
}

.site-footer .textsecure,
.site-footer .textsecure a {
    color: var(--white);
    text-decoration: none;
}

.site-footer .textsecure a {
    text-decoration: underline;
}

.site-footer .textsecure a:hover {
    transform: translateY(-2px);
}

/* Social Links */
#menu-social-links {
    margin: 32px 0 40px;
}

#menu-social-links li {
    display: inline-block;
    margin: 0 3px;
}

#menu-social-links li a {
    text-indent: -99999px;
    display: inline-block;
    width: 34px;
    height: 34px;
}

#menu-social-links li a:hover {
    opacity: .8;
    transform: translateY(-2px);
}

#menu-social-links li.fb a {
    background: url(../images/facebook.svg) no-repeat;
}


#menu-social-links li.li a {
    background: url(../images/linkedin.svg) no-repeat;
}

#menu-social-links li.yt a {
    background: url(../images/youtube.svg) no-repeat;
}


.cdiclogo img {
    vertical-align: middle;
    width: 140px;
    padding-top: 40px;
    margin-left: 25px;
}

/* Subscribe Form - Thansks Popup*/
#popThankYou {
    background: rgba(0, 0, 0, .45);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.popup.popThankYouInner {
    background: #fff;
    width: 400px;
    padding: 2.5em 1.75em;
    position: relative;
}

.popThankYouInner .closebtn1 {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 18px;
    width: 30px;
    text-align: center;
    height: 30px;
    cursor: pointer;
    line-height: 30px;
}

.popThankYouInner .thank.p-5 {
    padding: 2em 1.75em !important;
}

.popThankYouInner p {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
}


/* Footer Bottom */
.footer-bottom {
    padding-top: var(--spacing-MD);
    border-top: 1px solid rgba(101, 207, 140, 0.20);
    margin-top: var(--spacing-MD);
}

.footer-bottom-menu-wrapper ul li {
    margin-left: 0;
}

.footer-bottom-menu-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    /* font-size: 14px; */
}

.footer-bottom-menu-wrapper ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.social-menu-wrapper {
    margin: 0;
    padding: 0;
}

.footer-bottom .footer-content p a {
    /* font-weight: 500; */
    text-decoration: none;
    color: var(--white);
    /* font-size: var(--font-size-15); */
}

.footer-bottom .footer-content p a:hover {
    text-decoration: underline;
}

.footer-bottom-menu {
    display: flex;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.footer-bottom-menu li {
    display: inline-block;
    margin: 0 24px;
}

.footer-bottom-menu li a {
    color: #fff;
    text-decoration: none;
    /* font-size: 14px; */
}

.footer-bottom-menu li a:hover {
    text-decoration: underline;
}

/* ===================================
   SENIOR CODE PAGE STYLES
   =================================== */

.seniors_banner {
    background: url(../images/senior_code_banner.jpg) no-repeat;
    background-size: cover;
    height: 320px;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.seniors_banner h1 {
    position: absolute;
    bottom: 15px;
    display: block;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.seniors_banner+.page-default-section {
    border-radius: 0 0 16px 16px;
}

.what-is-the-code {
    /* padding: 30px; */
}

.senior_h2 {
    font-weight: 600;
    font-size: 30px;
    color: var(--hebTeal);
}

.senior_darkBg .senior_h2 {
    color: #AFD9B8;
    margin-top: 0;
}

.cba-content a {
    color: #00414c;
    text-decoration: underline;
    font-weight: 700;
    font-style: italic;
}

.cbc-principle {
    background: #cdefe2;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 16px;
}

.cbc-principle h5 {
    font-size: 18px;
    color: #00414c;
    font-weight: 600;
    margin-bottom: 20px;
}

.cbc-principle ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}

.cbc-principle ol li {
    counter-increment: item;
    position: relative;
    margin-bottom: 15px;
    padding-left: 38px;
}

.cbc-principle .right-side ol {
    list-style: none;
    counter-reset: item 4;
}

.cbc-principle ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--hebTeal);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.cba-content .cba-more-details p {
    margin-bottom: 0;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.senior_darkBg {
    background: var(--hebTeal);
    padding: 30px;
    color: #fff;
    border-radius: 16px;
}

.senior_darkBg p {
    color: #fff;
}

.testimonial {
    padding-right: 20px;
}

.testimonial .wp-block-group .wp-block-group__inner-container {
    position: relative;
}

.testimonial .wp-block-group .wp-block-group__inner-container::before {
    content: "";
    height: 32px;
    width: 40px;
    background: url(../images/quote_before.png) no-repeat;
    position: absolute;
    top: 0;
    left: -50px;
}

.testimonial .has-text-align-right {
    padding-right: 15px;
}

.testimonial .wp-block-group .wp-block-group__inner-container::after {
    content: "";
    height: 32px;
    width: 40px;
    background: url(../images/quote_after.png) no-repeat;
    position: absolute;
    bottom: 25px;
    right: -30px;
}

.our-leaders-section {
    margin-bottom: 60px;
    padding: 40px 30px 40px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
}

.our-leaders-section h1,
h1.brief {
    font-size: 42px !important;
    color: var(--hebTeal);
    margin-bottom: 45px;
    text-align: center;
    font-weight: 600;
}

.our-leaders-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.history-section {
    background-color: #fff;
}

.Senior_a {
    color: #00414c !important;
    text-decoration: underline;
    font-weight: 700;
    font-style: italic;
}

.a-bold {
    color: #00414c;
    text-decoration: underline;
    font-weight: bold;
}

/* ===================================
   PRODUCT PAGE STYLES
   =================================== */

.solution-finder {
    gap: 0 !important;
}

.product-section {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 42px;
    gap: 5px;
    border-radius: 16px;
    overflow: hidden;
}

.product-section .wp-block-column {
    padding: 32px;
}

.product-section .bg-theme-light.wp-block-column {
    display: flex;
    align-items: center;
}

.product-section .bg-theme.wp-block-column,
.product-section .bg-theme-light.wp-block-column {
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-section .wp-block-heading {
    color: var(--hebTeal);
}

.product-section ul.wp-block-list li:last-child {
    padding-bottom: 0;
}

.product-section h2 a {
    color: var(--hebTeal);
    text-decoration: none;
}

.product-section h2 a:hover {
    text-decoration: underline;
}

.solution-finder h2.wp-block-heading {
    margin: 0;
    color: var(--white);
    line-height: 120%;
}

.product-section-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.product-benefit {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

.product-inner-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: #00414C;
}

.how-can-use-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.how-can-use-item p {
    margin-top: 0;
}

.product-inner-page .footnote li {
    font-size: 14px;
    font-style: italic;
}

/* ===================================
   FEES PAGE STYLES
   =================================== */

.fees-section {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 110px;
    padding-bottom: 60px;
    padding-top: 55px;
    padding-left: 30px;
    padding-right: 30px;
}

.fees-section h1 {
    font-size: 34px;
    color: var(--hebTeal);
    margin-bottom: 45px;
    font-weight: 600;
    text-align: center;
}

.fees-section p {
    margin-bottom: 18px;
    margin-top: 18px;
}

.fees-section .fees-section-inner {
    width: 85%;
    margin: auto;
}

.fees-table table {
    border: 0;
}

.fees-table thead {
    border-bottom: 0;
}

.fees-table table th {
    background-color: #00414c;
    color: #fff;
    text-align: center;
}

.fees-table table tr {
    background-color: #f4f4f4 !important;
}

.fees-table table td {
    border: 1px solid #fff;
    color: #777;
    background-color: inherit;
}

.gic {
    margin-bottom: 50px;
}

.table-center table>tbody>tr>td {
    text-align: center;
}

.rates_bottom,
.rates_bottom p {
    font-size: 14px;
}

.left-align {
    text-align: left !important;
}

/* ===================================
   CAREER PAGE STYLES
   =================================== */

.menu-careers-menu-container {
    margin-bottom: 24px;
}

.menu-careers-menu-container .wp-block-buttons {
    align-items: normal;
}

.menu-careers-menu-container .wp-block-button {
    /* width: 49%; */
    /* margin: auto; */
    /* display: table-cell; */
    /* text-align: center; */
    /* float: none; */
    flex: 1;
    width: 49%;
    margin: auto;
    display: table-cell;
    text-align: center;
    float: none;
}

.menu-careers-menu-container .wp-block-button a {
    /* margin: auto 10px; */
    border: 1px solid var(--hebMint);
    border-radius: 0;
    text-transform: uppercase;
    background-color: #fff;
    transition: all .5s ease;
    color: var(--hebTeal);
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    border-radius: 3px;
    line-height: 120%;
}

.menu-careers-menu-container .wp-block-button.active a {
    background-color: var(--hebMint);
}

.social-icons {
    padding-right: 20px;
    background-color: #fff;
}

.social-icons .wp-block-group__inner-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
}

.our-culture h1,
.our-culture h2,
.our-culture h3,
.our-culture h4,
.our-culture h5 {
    color: var(--hebTeal);
}

.our-culture h4 {
    font-size: 23px;
}

/* ===================================
   MVP PAGE STYLES
   =================================== */

.mvp-tool-section {
    align-items: center !important;
    /* max-width: 1140px; */
    margin: 0 auto 48px;
    gap: 60px;
}

.mvp-left-title .wp-block-group__inner-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mvp-left-title .heading {
    margin: 0;
    font-size: 48px;
    line-height: 120%;
    font-weight: 600;
    color: var(--hebTeal);
}

.mvp-heading .description {
    margin: 20px 0 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 130%;
}

.horizontal-bar {
    background: #00414c;
    color: #fff;
    padding: 24px 32px;
    display: flex;
    margin: 2.5em 0 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
    border-radius: 16px;
}

.horizontal-bar h3 {
    color: #fff;
    margin: 0;
    font-size: 27px;
    font-weight: 600;
    text-align: center;
    line-height: 130%;
}

.horizontal-bar * {
    margin: 0;
}

.horizontal-bar a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    white-space: nowrap;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: #fafafa;
}

.bg-theme {
    background-color: var(--hebTeal);
}

.bg-dark-theme {
    background-color: #023841;
}

.bg-theme p,
.bg-theme-light p {
    color: #fff !important;
}

.p24 {
    font-size: 24px;
}

.faq-para {
    /*margin-bottom: 0 !important;*/
}

p.faq-para {
    font-size: var(--font-size-18);
}

/* ===================================
   HOME PAGE STYLES
   =================================== */

.hero-section {
    background: var(--hebTeal);
    color: var(--white);
    position: relative;
}

.hero-section .wp-block-image {
    margin-bottom: 0;
    height: 100%;
    position: relative;
}

.hero-section .hero-container {
    gap: 0;
}

.hero-content .wp-block-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--hebMint);
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.hero-features li {
    color: var(--white);
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: var(--font-size-20);
}

.hero-features li::before {
    content: url(../images/hebmint-tick.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    padding-top: 0px;
}

.hero-section .hero-content {
    flex-grow: 0 !important;
    flex-shrink: 0;
    flex-basis: 50% !important;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-right: 40px;
}

.hero-section .hero-image {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: calc(100% + 54px);
    flex-grow: 0 !important;
    flex-shrink: 0;
    flex-basis: 50% !important;
    right: 0;
    top: 0;
    border-radius: 0 0 0 48px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .roof-section {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 180px;
    max-height: 40%;
}

.hero-section .roof-section img {
    height: 100% !important;
    width: 100%;
    object-fit: contain;
}

.hero-trustpilot-badge {
    position: absolute;
    bottom: 54px;
    left: 50px;
    margin: auto;
    max-width: 320px;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.hero-trustpilot-badge p {
    line-height: 120%;
}

.hero-trustpilot-badge img {
    width: 90px;
}

.wp-block-media-text__content p {
    margin: 0;
    /* line-height: 120%; */
    font-size: 17px;
    color: var(--hebTeal);
}

.hero-trustpilot-badge.wp-block-media-text>.wp-block-media-text__content {
    padding: 0;
}

.hero-trustpilot-badge strong {
    font-size: 20px;
}

.hero-content {
    min-height: 54px;
}

.empower-container .hero-tagline {
    color: var(--hebTeal);
    margin: 24px 0 0;
    font-size: 18px;
}

.lead-form-trust-badges {
    position: relative;
    padding: 38px 0 40px;
}

.swiper-pagination,
#benefits-section-mobile {
    display: none;
}

.lead-form-trust-badges .wp-block-image {
    border: 2px solid #E5ECED;
    width: 72px;
    min-width: 72px;
    height: 72px;
    display: flex;
    border-radius: 100px;
    margin: 0;
    padding: 16px;
}

.trust_item_content p {
    margin: 0;
    color: var(--hebTeal);
}

.lead-form-trust-badges .text {
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 4px;
}

.lead-form-trust-badges .description {
    font-size: 17px;
    line-height: 120%;
}

/* Stats Section */
.stats-section {
    background: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.stat-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.3;
}


.how-it-works-container .wp-block-heading {
    margin-bottom: 32px;
}

/* CTA Section */
.cta-banner-section {
    margin-top: 64px;

}

.cta-banner-section .wp-block-group__inner-container {
    background: var(--hebTeal);
    border-radius: 24px;
    padding: 40px;
}

.cta-banner-section .wp-block-heading {
    font-size: 30px;
    margin: 0 0 6px;
}

.cta-banner-section .wp-block-media-text {
    display: flex;
}


.cta-banner-section .wp-block-columns {
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap !important;
}

.cta-banner-section p {
    color: #fff;
}

.cta-banner-section .wp-block-column,
.cta-banner-section .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex: 0 0 auto !important;
    width: auto;
}

.cta-banner-section .cta-content {
    /* flex-basis: 60% !important; */
}

.cta-banner-cta .wp-block-buttons {
    justify-content: center;
}

.cta-banner-section .wp-block-media-text>.wp-block-media-text__content {
    padding-right: 0;
    padding-left: 40px;
}

.customer-reviews-section {
    border-bottom: 2px solid rgba(0, 65, 76, 0.1);
    margin-bottom: 64px;
}

.cta-banner-container {
    margin: 0 auto;
    /* padding: 0; */
    /* border-radius: 24px; */
    /* border: 1.5px solid rgba(0, 65, 76, 0.10); */
    gap: var(--spacing-XL);
    background: none;
}

.cta-banner-container .wp-block-group__inner-container {
    background: var(--hebTeal);
    border-radius: 24px;
}

.partnerandcta-banner-section .cta-banner-container {
    padding: 0;
}


.partnerandcta-banner-section p {
    color: #fff;
    margin-bottom: 4px;
    font-size: 27px;
    font-weight: 300;
}

.partnerandcta-banner-section .wp-block-heading {
    font-size: 36px;
    margin: 0;
    line-height: 120%;
}

.partner-section,
.contactinfo-section {
    padding: 48px 64px;
    justify-content: center;
    flex-wrap: wrap !important;
}

.contactinfo-section .wp-block-media-text {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-section .wp-block-image {
    border-radius: 12px;
    background: #fff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.partner-section .wp-block-image img {
    max-width: 80%;
}

.partner-section .wp-block-column:last-child .wp-block-image img {
    max-width: 67%;
}

.contactinfo-section figure img {
    max-width: 60px;
}

.contactinfo-section .cta-content,
.contactinfo-section.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex: 0 0 auto !important;
}

.contactinfo-section .cta-banner-cta {
    flex: 0 0 auto !important;
    width: auto;
}

.contactinfo-section .wp-block-media-text__content {
    padding: 0;
}

.cta-banner-content {
    color: var(--white);
}

.cta-banner-content h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-banner-content p {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
}


/** ArtWork Pages **/
.greenborder_tb:before,
.greenborder_tb:after {
    content: "";
    width: 350px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #7bc792;
    height: 2px;
    max-width: 100%;
}

.greenborder_tb:after {
    top: auto;
    bottom: 60px;
}

.wp-block-table.simpletable .has-fixed-layout {
    width: 60%;
}

.wp-block-table.simpletable td,
.wp-block-table.simpletable th {
    vertical-align: top;
    border-color: var(--hebTeal);
    font-size: var(--font-size-16);
    color: var(--text-secondary);
    line-height: 130%;
    font-weight: 400;
}

/*Thank you page styles*/
#output-quote {
    margin-bottom: 1rem;
}

#reason_thank {
    text-align: left;
    color: #00414c;
    font-size: 18px
}

#reason_thank strong {
    font-size: 30px
}

#reason_thank sup {
    top: -10px
}

.thank-bu {
    text-decoration: underline;
}

.thank-you-page {
    margin-top: 50px;
    margin-bottom: 30px
}

.thank-you-page .wp-block-columns {
    padding: 50px 60px;
    background: #f0f0f0;
    margin: 0
}

.thank-you-page .thankyou-right-section .trust_pilot_review {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    background: #fff;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .1);
    padding: 15px 20px;
    max-width: 360px;
    margin: auto
}

.thank-you-page .thankyou-right-section .trust_pilot_review p {
    color: #00414c;
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    text-align: left;
    max-width: 200px;
    position: relative;
    line-height: normal;
    padding-left: 15px
}

.mobile-sticky-banner-cta {
    display: none;
}

.thank-you-page .wp-block-columns {
    border-radius: 16px;
}

.thank-you-page .non-eligible {
    font-size: 24px;
    color: var(--hebTeal);
    margin-bottom: 30px;
}

.thank-you-page .non-eligible span {
    font-weight: 700;
}

.thank-you-page {
    margin-bottom: 60px;
}

.thank-you-page .thankyou-right-section .trust_pilot_review p {
    line-height: 120%;
    padding: 0;
    font-weight: 600;
}

#reason_thank {
    margin-bottom: 30px;
}

#reason_thank strong {
    font-weight: 700;
}

#reason_thank .thank-bu {
    text-decoration: none;
}

.thank-you-page .wp-block-buttons {
    margin-top: 30px;
}

.thank-you-page .thankyou-right-section .trust_pilot_review {
    padding: 12px 20px;
    gap: 16px;
}

.trust_pilot_review img {
    width: 100px;
}

.thank-you-page .thankyou-right-section .trust_pilot_review p span {
    font-weight: 700;
    font-size: 120%;
    white-space: nowrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1200px) {
    .header-container {
        padding: 0 var(--spacing-SM2);
    }

    .primary-menu {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer responsive for tablets */
    .footer-links-container {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 16px);
        min-width: 280px;
    }

    .footer-column-newsletter {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .header-container {
        /* flex-wrap: wrap; */
        gap: 15px;
    }

    .primary-menu {
        gap: 15px;
    }

    .primary-menu .menu-item a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 var(--spacing-SM2);
        /* min-height: 70px; */
    }

    .site-branding {
        flex: 0 0 auto;
    }

    .header-contact-cta {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    /* Hide desktop phone contact section on mobile */
    .header-contact {
        display: none;
    }

    /* Hide CTA button on mobile */
    .header-cta.findoutmore-cta {
        display: none;
    }

    /* Show mobile phone button */
    .phone-button-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: var(--hebYellow);
        color: var(--hebTeal);
        padding: 8px 12px;
        border-radius: 25px;
        text-decoration: none;
        font-family: var(--primary-font);
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-700);
        line-height: 1.2;
        transition: opacity 0.3s ease;
    }

    .phone-button-mobile:hover {
        opacity: 0.9;
        text-decoration: none;
        color: var(--hebTeal);
    }

    .phone-icon-mobile {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .phone-number-mobile {
        color: var(--hebTeal);
        white-space: nowrap;
    }


    .mobile-menu-toggle {
        display: block;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .main-navigation {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .solutions-container .wp-block-heading,
    .how-container .wp-block-heading {
        /* font-size: 28px; */
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-content {
        flex-direction: column;
    }

    .wp-block-table.simpletable .has-fixed-layout {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .site-branding .custom-logo {
        height: 48px;
    }

    .header-contact-cta {
        gap: 8px;
    }

    .phone-button-mobile {
        /* padding: 6px 12px; */
        /* font-size: 14px; */
        /* gap: 6px; */
    }

    .phone-icon-mobile {
        width: 16px;
        height: 16px;
    }

    .phone-number-mobile {
        /* font-size: 14px; */
    }

    .header-separator {
        height: 24px;
    }

    .primary-menu .menu-item a {
        font-size: 12px;
        padding: 12px 15px;
    }

    .hero-section {
        /* padding: 40px 15px 30px; */
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .trustpilot-badge {
        position: static;
        margin-top: 15px;
    }

    .btn_primary,
    .btn_cta {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: var(--hebMint);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.scroll-to-top:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.scroll-to-top:focus {
    outline: 2px solid var(--hebTeal);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top img {
        width: 20px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 13px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top img {
        width: 18px;
        height: 14px;
    }
}