/*
Theme Name: Heart Bookkeeping
Author: Five by Five
Version: 1.1
*/

@font-face {
    font-family: 'Beyond Infinity - Demo';
    src: url(/wp-content/themes/heartbk/fonts/BeyondInfinity.ttf);
}


:root {
    color-scheme: auto;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
	color: #060000;
	font-size: 16px;
	line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
	margin: 0 0 20px;
	line-height: 1.25;
    font-weight: 300;
}

h1 { font-size: 47px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 30px; }
h5 { font-size: 24px; }
h6 { font-size: 18px; }


.beyond-infinity-font {
    font-family: 'Beyond Infinity - Demo';
}

.poppins-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

p {
	margin: 0 0 20px;
}

a {
	color: inherit;
    transition: background-color .3s ease, opacity .3s ease, color .3s ease;
}

a[role="button"] {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

select,
button,
textarea,
input { 
    font-size: inherit;
    font-family: inherit;
}

.btn,
button,
input[type="submit"],
a {
    cursor: pointer;
}

.wrapper {
    width: 1420px;
	max-width: 100%;
	padding: 0 10px;
	margin: 0 auto;
}

.site-container {
    overflow-x: hidden;
}



/* Site Scrollbar */
::-webkit-scrollbar {
    width: 0.7rem;
}
::-webkit-scrollbar-track {
    border: none;
	background: #E5E5E5;
}
::-webkit-scrollbar-thumb {
    border-radius: 20px; 
    /* background: #DC291E; */
    background: linear-gradient(180deg, rgba(237,33,58,1) 0%, rgba(147,41,30,1) 100%);
}
::-webkit-scrollbar-thumb:hover {
    background: #3b3f42; 
}



/* Keyframes */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@-webkit-keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-top {
	-webkit-animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-bottom {
	-webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
@keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
.fade-out-top {
	-webkit-animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.elementor-button {
    background-color: #DC291E;
    border: 2px solid #DC291E;
    color: #fff;
    font-weight: 700;
    padding: 16.5px 26px;
    line-height: 1;
    transition: background-color .3s ease, color .3s ease, border .3s ease;
    border-radius: 50px;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.elementor-button:hover {
    border-color: #DC291E;
    background: #fff;
    color: #000;
}

.secondary.btn,
.secondary .elementor-button{
    border: 2px solid #DC291E;
    background: #fff;
    color: #2C0E34;
}

.secondary.btn:hover,
.secondary .elementor-button:hover{
    background: #DC291E;
    color: #fff;
}


.terrain.btn,
.terrain .elementor-button{
    background: #fff;
    color: #060000;
    border-color: #fff;
}

.terrain.btn:hover,
.terrain .elementor-button:hover{
    border-color: #060000;
    background: #060000;
    color: #fff;
}

.gm-style button {
    border-radius: 0;
}

.btn, .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    min-height: 50px;
}

/* Header */
.elementor-location-header {
/*    background: #fff;*/
}
/* .header-stick .site-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    animation:fade-in-top .3s cubic-bezier(.39,.575,.565,1.000) both;
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 5%);
}
/* .header-unstick .site-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
    animation:fade-out-top .2s cubic-bezier(.25,.46,.45,.94) both;
}

.header-stick #search-popup-btn{
    color: #fff !important;
}
.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
	position: absolute;
	width: 100%;
	z-index: 100;
}

.header-type2 .site-header {
	background: none;
	color: #fff;
}
.header-type1.header-stick .elementor-location-header,
.header-type2.header-stick .elementor-location-header {
    background: var(--FONTS-BASE, #060000);
	color: inherit;
    padding-bottom: 20px;
}


.header-type1.header-stick .elementor-location-header .elementor-nav-menu > li > a,
.header-type2.header-stick .elementor-location-header .elementor-nav-menu > li > a,
.header-type1.header-stick .elementor-location-header a.phone {
    color: #fff!important;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt {
    display: none;
}
.header-type2.header-stick .with-alt-logo .site-logo-alt {
    display: inline-block;
}
@media (max-width: 1199px){
    .header-type2.header-stick .with-alt-logo .site-logo-alt{
        max-width: 100px;
    }
}
@media(max-width:767px){
    .header-type1.header-stick .elementor-location-header, .header-type2.header-stick .elementor-location-header {
        padding-bottom: 10px;
    }
}

/* Menu */
ul.menu {
    list-style: none;
    padding: 0;
}
ul.sub-menu > li.grey-bg:nth-child(5) {
   margin-top: 15px;
}
ul.sub-menu li{
    margin-top: 5px;
}
ul.sub-menu li:nth-child(1) {
    margin-top: 0;
}
ul.sub-menu li.grey-bg{
    margin-top: 17px;
    margin-bottom: 7px;
}

li.grey-bg a {
    border: 1px solid #E9ECEF !important;
    background: #F8F9FA;
    border-radius: 500px;
    margin: 0 20px 0 20px !important;
    padding: 5px !important;
}
/*ul.sub-menu li{
    margin-bottom: 10px;
}*/
div .elementor-nav-menu .sub-arrow {
    display: none;
}
.elementor-nav-menu .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
} 
.elementor-nav-menu .menu-item-has-children > a:after {
    content: '\e90b';
    font-family: 'icomoon';
    opacity: 1!important;
    position: relative;
}


/* Search */
.ff-search {
    background: linear-gradient(180deg, #060000 0%, rgba(6, 0, 0, 0.00) 100%);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: transform .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    will-change: transform;
    transform: translate3d(0, -100%, 0);
}
.show_search .ff-search {
    transform: translate3d(0, 0, 0);
}
.show_search .ff-search i:before{
    color: #fff;
}
.ff-search form {
    width: 730px;
    max-width: 100%;
    position: relative;
}
.ff-search .search-input {
    width: 100%;
    background: #fff;
    border: 1px solid #ACB5BD;
    height: 60px;
    border-radius: 60px;
    padding: 5px 25px 5px 25px;
}
.ff-search .submit {
    width: 150px;
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    border-radius: 50px;
}
.ff-search .close {
    position: absolute;
    top: 20px;
    right: -30px;
    font-size: 25px;
    font-weight: 400;
    opacity: .6;
    cursor: pointer;
}
.ff-search .close:hover {
    opacity: 1;
}




/* Slide Menu */
.ff-slide-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
    pointer-events: none;
    display: none;
}
.show_slide_menu .ff-slide-menu-mask {
    display: block;
    pointer-events: auto;
    animation: fadeIn 1s;
}
.ff-slide-menu {
    width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 110;
    transition: transform .6s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    transition-delay: .1s;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    padding: 20px;
    overflow: auto;
}
.show_slide_menu .ff-slide-menu {
    transform: translate3d(0, 0, 0);
}
/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
    overflow: hidden;
}
.ff-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.ff-slide-menu-close {
    cursor: pointer;
    font-size: 30px;
}
.ff-slide-menu-close:hover {
    opacity: .8;
}

.ff-slide-menu-trigger {
    background: none;
    border: none;
    padding: 2px;
    width: 38px;
    height: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}
.ff-slide-menu-trigger span {
    height: 1px;
    width: 100%;
    background: #fff;
}

.header-type1 .ff-slide-menu-trigger span {
    background: #060000;
}




.ff-slide-menu-trigger:hover {
    background: none;
}
.ff-slide-menu-trigger .l1 {
    width: 70%;
    transition: width .5s ease;
    will-change: width;
}
.ff-slide-menu-trigger:hover .l1 {
    width: 100%;
}

.ff-slide-menu .sub-menu {
    /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
    padding: 0;

}
/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

.ff-slide-menu .menu-item-has-children > a {
    position: relative;
    display: inline-block;
}
.ff-slide-menu .menu-item-has-children > a:after {
    content: '\e930';
    font-family: 'icomoon';
    color: #DC291E;
    transition: transform .5s ease;
    display: inline-block;
    margin-left: 14px;
    position: absolute;
    font-size: 18px;
    top: 5px;
    line-height: 1;
    right: 0;
}
.ff-slide-menu .menu-item-has-children.show-sub > a:after {
    transform: rotate(180deg);
}
.ff-slide-menu .toggle_height_el_con {
    transition: height 500ms ease;
}

/* Swiper / Carousel */
.swiper-slide {
    width: auto;
}
.transition-linear {
    transition-timing-function: linear;
}
.swiper-pagination-bullet {
	font-size: 0;
	line-height: 1;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    border: 1px #495056 solid;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #060000;
}

.swiper-pagination.numeric .swiper-pagination-bullet {
	font-size: 15px;
	font-weight: bold;
	color: #a4a7aa;
	letter-spacing: 1px;
    width: 40px ;
    height: 15px;
    display: inline-flex;
	justify-content: center;
	align-items: center;
    border-radius: 0;
    background: transparent;
    border: 0px;
	border-right: 2px #a4a7aa solid;
	margin: 0;
}
.swiper-pagination.numeric .swiper-pagination-bullet:last-of-type {
	border-right: 0px;
}
.swiper-pagination.numeric .swiper-pagination-bullet-active {
    background: transparent;
	color: #495056;
}

/* Toggle Height */
.toggle_height_el_con {
    height: 0;
    overflow: hidden;
    transition: height 600ms ease;
}







/* Others */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.NOIntersectionObserver .elementor-invisible {
	visibility: visible;
}

body.admin-bar .dialog-lightbox-widget {
    min-height: 100vh;
}

body:not(.elementor-editor-active) .defer-bg-image div,
body:not(.elementor-editor-active) .defer-bg-image section,
body:not(.elementor-editor-active) .defer-bg-image {
	background-image: none!important;
}

.section-with-border-top:before,
.section-with-border-bottom:before {
	content: '';
	position: absolute;
	width: 1400px;
    max-width: 100%;
	left: 50%;
	translate: -50%;
	height: 2px;
    background: #eff0f1;
}
.section-with-border-bottom:before {
    top: initial;
    bottom: 0;
}
.section-with-border-top:before {
    bottom: initial;
	top: 0;
}

.elementor-video-wrapper iframe {
    height: 100%;
}

.flex {
    display: flex;
}
.items-no-shrink .item {
    flex-shrink: 0;
}

.color-white {
    color: #fff;
}

.hide {
    display: none!important;
}

.text-center { text-align: center; }

.lh-0 { line-height: 0; }
.lh-1 { line-height: 1; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.limit-lines-4,
.limit-lines-3,
.limit-lines-2,
.limit-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.limit-lines-2 {
    -webkit-line-clamp: 2;
}
.limit-lines-3 {
    -webkit-line-clamp: 3;
}
.limit-lines-4 {
    -webkit-line-clamp: 4;
}

@media(max-width:1023px){
    .tablet-ml-auto { margin-left: auto; }
    .tablet-mr-auto { margin-right: auto; }
    .tablet-mx-auto { margin-left: auto; margin-right: auto; }
    .tablet-text-center { text-align: center; }

    .tablet-cols-fullwidth.e-con > .e-con-inner {
        flex-wrap: wrap;
    }
    .tablet-cols-fullwidth.e-con > .e-con-inner > .e-con {
        width: 100%;
    }
}
@media(max-width:767px){
    .mobile-ml-auto { margin-left: auto; }
    .mobile-mr-auto { margin-right: auto; }
    .mobile-mx-auto { margin-left: auto; margin-right: auto; }
    .mobile-text-center { text-align: center; }
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
} */


/*Custom Accordion*/
.accordion-style-1{
    color: #060000;
}
.accordion-style-1 .elementor-accordion .elementor-accordion-item, .accordion-style-1 .elementor-accordion .elementor-tab-content{
    border: 0;
}
.accordion-style-1 .elementor-accordion .elementor-tab-title{
    padding: 20px 0;
}
.accordion-style-1 .elementor-accordion .elementor-tab-content{
    padding: 15px 0;
}
.accordion-style-1 .elementor-tab-title{
    border-bottom: 2px solid #06000017;
}
.accordion-style-1 .elementor-tab-title.elementor-active{
    border-bottom: 0;
}
.accordion-style-1 .elementor-tab-content.elementor-active{
    border-bottom: 2px solid #06000017;
}



/*footer*/
.elementor-location-footer {
    padding-bottom: 0!important;
}

/*Testimonials Carousel*/

.item-testimonial-carousel {
    text-align: center;
    background: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 20px;
    box-shadow: 0px 20px 33px 0px rgba(2, 6, 19, 0.09);
    padding: 35px 109px 35px 119px;
    margin: 0 20px 70px 20px;
    min-height: 389px;
}
.item-testimonial-carousel .text {
    font-size: 21px;
    max-height: 128px;
    line-height: 1.52em;
    text-align: center;
    padding-right: 20px;
    margin: 20px 0;
    overflow-y: auto;
}


/* width */
.item-testimonial-carousel .text::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.item-testimonial-carousel .text::-webkit-scrollbar-track {
    background: #E9ECEF; 
}

/* Handle */
.item-testimonial-carousel .text::-webkit-scrollbar-thumb {
    background: #495056; 
    border: none;
}

/* Handle on hover */
.item-testimonial-carousel .text::-webkit-scrollbar-thumb:hover {
    background: #495056; 
}
.item-testimonial-carousel .image {
    display: inline-block;
    margin: 0 auto;
    padding: 4px;
    background-color: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 100%;
}

.item-testimonial-carousel .image img{
    object-fit: cover;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: block;
}
.item-testimonial-carousel .heading{
    font-size: 16px;
    font-weight: 700;
}
.item-testimonial-carousel .location{
    font-size: 16px;
    font-weight: 400;
}
.testimonial-container .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    cursor: pointer;
}
/*.swiper-slide{
    min-width: 1200px !important;
}*/
.testimonial-quote {
    background: url(/wp-content/uploads/2024/01/testi-before.svg);
    background-size: contain;
    height: 24px;
    width: 32px;
    background-repeat: no-repeat;
    display: inline-block;
}
@media (max-width: 1024px){
    .item-testimonial-carousel{
        padding: 50px;
    }
}
@media (max-width: 768px){
    .item-testimonial-carousel{
        padding: 20px;
        width: 100%;
    }
    
}
@media (max-width: 767px){
    .item-testimonial-carousel{
        margin: 0 0px 70px 0px;
        box-shadow: none;
    }
    
}



/* News Carousel*/
.item-post{
	box-shadow: 0px 20px 33px 0px rgba(2, 6, 19, 0.09);
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	position: relative;
    margin-bottom: 50px;
}
.item-post .img-con img{
	object-fit: cover;
	height: 500px;
	width: 100%;
}
.item-post .s2{
	border-radius: 0px 30px 20px 20px;
	background: #fff;
	padding: 10px 20px 20px 20px;
	position: absolute;
    bottom: 0;
    width: 100%;
/*    height: 137px;*/
}
.item-post .img-container img{
	border-radius: 20px;
}
/*.item-post h6{
	font-size: 18px;
	font-weight: 400;
}*/
.item-post span.categories {
    position: absolute;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    left: 20px;
    top: 20px;
}
.item-post .border-top-s2 {
    position: absolute;
    top: -25px;
    left: 0;
    background: url(/wp-content/uploads/2024/01/border-bottom-svg.svg);
    width: 25px;
    height: 25px;
    background-size: cover;
}
.item-post .title{
	margin: 20px 0 16px 0;
    color: #060000;
    line-height: 1.555em;
    font-size: 18px;
}
.item-post .excerpt {
	height: 0;
    line-height: 26px;
    color: #060000;
    transition: height .5s ease;
    opacity: 0.5;
}
.item-post .bottom-bg{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 50px;
    height: 25px;
    background: linear-gradient(180deg, #ED213A 0%, #93291E 100%);
    border-radius: 1000px 1000px 0px 0px;
    margin: auto;
    transform: scale(1);
    transition: transform .3s;
}
.item-post .top-bubble-icon {
    position: absolute;
    top: -17px;
    left: 0;
}
/*.item-post:hover .bottom-bg{
    transform: scale(1.3);
    bottom: 3px;
    transition: transform .5s;
}*/
.item-post .bottom-bg:before{
    content: "\e922";
    color: #fff;
    font-family: 'icomoon';
    font-size: 16px;
    transition: all 500ms ease;
    display: flex;
    justify-content: center;
    opacity: 0;
}
.item-post:hover .bottom-bg:before{
    opacity: 1;
}
.item-post:hover .s2 .excerpt{
	height: 80px;
	transition: height .5s ease;
	margin-bottom: 20px;
}
.item-post .limit-lines-3 {
    -webkit-line-clamp: 3;
}

.item-post .excerpt2 {
	height: 100%;
    line-height: 26px;
    color: #060000;
}
@media (max-width: 767px){
    .item-post {
        width: calc(100%);
        margin: 0 auto 50px;
    }
    
}




/*List style 1*/
.list-style-1 {
    margin-left: 0;
    padding-left: 20px;
}
.list-style-1 li{
    font-weight: 700;
    line-height: 28px; /* 175% */
}

.list-style-1 ::marker {
    color: #DC291E;
    font-size: 1.2em;
}


/* Slide Menu */
.ff-slide-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
    pointer-events: none;
    display: none;
}
.show_slide_menu .ff-slide-menu-mask {
    display: block;
    pointer-events: auto;
    animation: fadeIn 1s;
}
.ff-slide-menu {
    width: 350px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    color: #060000;
    z-index: 110;
    transition: transform .6s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    transition-delay: .1s;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    padding: 0;
    overflow: auto;
}
.show_slide_menu .ff-slide-menu {
    transform: translate3d(0, 0, 0);
}
/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
    overflow: hidden;
}
.ff-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    margin: 5px 0 5px 5px;
}
.ff-slide-menu-close {
    cursor: pointer;
    font-size: 19px;
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 10px 25px 25px;
    background: #DC291E;
    border-bottom-left-radius: 100px;
    color: #fff;
}
.ff-slide-menu-close:hover {
    opacity: .8;
}
.ff-slide-menu-trigger {
    background: none;
    border: none;
    padding: 2px;
    width: 38px;
    height: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}
.ff-slide-menu-trigger span {
    height: 2px;
    width: 100%;
    background: #060000;
}
.ff-slide-menu-trigger:hover {
    background: none;
}
.ff-slide-menu-trigger .l2 {
    width: 100%;
    transition: width .5s ease;
    will-change: width;
    background: #060000;
}
.ff-slide-menu-trigger:hover .l2 {
    width: 100%;
}

.header-type2 .ff-slide-menu-trigger span,
.header-stick .ff-slide-menu-trigger span {
    background: #fff;
}

.header-type2 .ff-slide-menu-trigger .l2,
.header-stick  .ff-slide-menu-trigger .l2  {
    background: #fff;
}

.ff-slide-menu .menu-item{
    margin-bottom: 15px;
    position: relative;
}
.ff-slide-menu .menu-item a{
    font-weight: bold;
    text-decoration: none;
    display: block;
    transition: opacity .3s ease;
}
.ff-slide-menu .menu-item a:hover{
    opacity: 0.7;
}
.ff-slide-menu .sub-menu {
    /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1.2;
    padding: 10px 0px 0px 0px;
}
.ff-slide-menu .sub-menu li{
    margin-top: 0;
}
/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */
.ff-slide-menu .sub-menu a{
    font-weight: normal;
}
.ff-slide-menu .menu-item-has-children > a {
    position: relative;
    display: block;
}
.ff-slide-menu .menu-item-has-children > a:before {
    content: '\e930';
    font-family: 'icomoon';
    color: #DC291E;
    transition: transform .5s ease;
    display: none;
    margin-left: 14px;
    position: absolute;
    font-size: 18px;
    top: 5px;
    right: 0;
    line-height: 1;
}
.ff-slide-menu .menu-item-has-children > a.toggle_switch:after {
    content: '\e92d';
}
.ff-slide-menu .menu-item-has-children.show-sub > a:after {
    transform: rotate(180deg);
}
.ff-slide-menu .toggle_height_el_con {
    transition: height 500ms ease;
}


.ff-slide-menu .xero-setup span, .ff-slide-menu .xero-training span{
    display: block;
}
.ff-slide-menu li.xero-setup > a, .ff-slide-menu li.xero-training > a {
    border: 1px solid #E9ECEF !important;
    background: #F8F9FA;
    border-radius: 500px;
    margin: 0;
    padding: 5px 10px!important;
    width: 150px;
    text-align: center;
}




.ff-slide-menu-footer{
    /* background: #F5F6F8; */
/*    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 10px 10px;*/
}
.ff-slide-menu-body {
    flex: auto;
}
.ff-slider-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ff-slide-menu-footer a{
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.ff-slide-menu-footer .slide-menu-footer-links {
    padding: 0 10px;
}
.ff-slide-menu-footer a span{
    margin-right: 10px;
}
.ff-slide-menu .ff-slide-menu-footer input[type="search"]{
    background-color: #fff;
    border: 1px solid #E9ECEF;
    height: 40px;
    padding: 10px 50px 10px 15px;
    font-family: inherit;
    color: #060000;
    outline: none;
    border-radius: 30px;
    width: 100%;
}
.ff-slide-menu-footer .search-form input {
    outline: none;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 10px 10px 0px;
    font-size: 14px;
    line-height: 15px;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    height: auto;
    font-weight: 700;
}
.ff-slide-menu-footer .search-form:before {
    content: '\e9e5';
    font-family: 'icomoon';
    display: inline-block;
    position: absolute;
    color: #060000;
    font-size: 20px;
    bottom: 17px;
    right: 30px;
    transform: scaleX(-1);
}
.ff-slide-menu-footer input[type="search"]::-webkit-input-placeholder { opacity: 1; color: #060000; }
.ff-slide-menu-footer input[type="search"]:-moz-placeholder { opacity: 1; color: #060000; }
.ff-slide-menu-footer input[type="search"]::-moz-placeholder { opacity: 1; color: #060000; }
.ff-slide-menu-footer input[type="search"]:-ms-input-placeholder { opacity: 1; color: #060000; }
.ff-slide-menu .slide-menu-footer-links {
    display: flex;
    justify-content: space-around;
    gap: 5px;
    border: 1px solid #E9ECEF;
    background: #fff;
    border-radius: 5px;
    padding: 0;
}
.ff-slide-menu .icon-phone-alt:before{
    color: #DC291E;
    font-size: 16px;
}
.ff-slide-menu .ff-slide-menu-body, .ff-slide-menu .slide-menu-footer-links{
    padding: 10px;
}
.ff-slide-menu form.search-form {
    padding: 15px;
    position: relative;
    background: #DC291E;
}
.ff-slide-menu .slide-menu-outer-footer {
    background: #F8F9FA;
    padding: 15px;
}
a.book-call.btn {
    font-size: 13px;
    line-height: 25.2px;
    padding: 0 10px;
    min-height: 33px;
   
}


/* FF Slide Custom Toggle
.ff-slide-menu .sub-menu{
    display: none;
    list-style: none;
}
.ff-slide-menu .menu-item-has-children > a:after {
    content: '\e930';
    font-family: 'icomoon';
    color: #DC291E;
    transition: transform .5s ease; 
    font-size: 18px;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 5px;
}
.ff-slide-menu .hide-menu::after{
    content: '\e92d';
    font-family: 'icomoon';
    color: #DC291E;
    transition: transform .5s ease;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: -3px;
}
/* .ff-slide-menu .toggle-show{
    display: inline-block;
    margin-left: 14px;
    position: absolute;
    top: 5px;
    right: 0;
    width: 50%;
    text-align: right;
}  
.ff-slide-menu .xero-setup span, .ff-slide-menu .xero-training span{
    display: block;
}
.ff-slide-menu li.xero-setup > a, .ff-slide-menu li.xero-training > a {
    border: 1px solid #E9ECEF !important;
    background: #F8F9FA;
    border-radius: 500px;
    margin: 0;
    padding: 5px 10px!important;
    width: 150px;
    text-align: center;
} */


@media(max-width:1024px){
    .ff-slide-menu .menu-item a:hover {
        opacity: 1;
    }
}


@media(max-width:767px){
    .ff-slide-menu {
        width: 100%;
    }
}













/* Team Popup */
.team-popup {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}
.show-team-popup {
    margin: 0; 
    height: 100%; 
    overflow: hidden;
}
.show-team-popup .team-popup,
.team-popup--show {
    display: block;
}
.team-popup__overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.team-popup__container {
    min-height: 459px;
    left: 50%;
    max-height: calc(100vh - 40px);
    opacity: 0;
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    transition: top 0.5s ease, opacity 0.5s ease;
    width: min(820px, calc(100vw - 40px));
}
.team-popup__container--show {
    opacity: 1;
    top: 50%;
}

.team-popup__body {
    background: #FFF;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 20px 33px 0px rgba(2, 6, 19, 0.09);
    min-height: 459px;
    position: relative;
}



@media(max-height:700px){
    .team-popup__body {
        min-height: auto;
        height: 450px;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

    





.team-popup__loading {
    aspect-ratio: 1;
    background: transparent;
    /* border-radius: 10%; */
    border-radius: 20%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    /* width: 98px; */
    width: 196px;
}
.team-popup__loading::before {
    aspect-ratio: 1;
    /* background: transparent url(/wp-content/uploads/2023/10/well-icon.svg) no-repeat center center; */
    background: transparent url(/wp-content/uploads/2023/12/heart-bookkeeping-logo@2x.png) no-repeat center center;
    background-size: contain;
    content: ' ';
    display: block;
    width: 100%;

    animation-name: loading;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.team-popup__close {
    aspect-ratio: 1;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 17px 0px rgba(2, 6, 19, 0.12);
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    width: 45px;
}
.team-popup__close::before {
    color: #2C0E34;
    content: '\e9df';
    font-family: icomoon;
    font-size: 26px;
    left: 50%;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


@keyframes loading {
    to { transform: scale(1.5) }
}
/* End Team Popup` */



