
/* Common CSS Start */
:root {
	--color-1-black: rgba(0, 0, 0, 1);
	--color-2-green: rgba(11, 148, 68, 1);
	--color-3-white: rgba(255, 255, 255, 1);
	--color-4-grey: rgba(243, 243, 243, 1);
	--color-5-darkgreen: rgba(0, 68, 36, 1);
	--font-regular: "Urbanist", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body, html {
	height: 100%;
}

body {
	width: 100%;
	overflow-x: hidden;
	position: relative;
	letter-spacing: 0px;
	font-family: var(--font-regular);
	font-weight: 400;
	color: var(--color-1-black);
	font-size: 16px;
	line-height: 26px;
	padding-top: 110px;
}

.wow {
	overflow: hidden;
}

@keyframes zoomIn {
	0% {
		transform: scale(.5);
		opacity: 0;
	}
	
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.zoomInEffect {
	animation: zoomIn 1s ease-out forwards;
}

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

.nav-link:focus, .nav-link:hover {
	color: var(--color-2-green);
}

.hide {
	display: none;
}

:focus {
	outline: 0;
	outline: none;
}

a {
	color: var(--color-2-green);
	text-decoration: none;
}

a:hover {
	color: #000;
}

p {
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

a:focus {
	color: #000;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
}

a, .btn, input, select, textarea, button, img {
	outline: 0 !important;
	box-shadow: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
	color: var(--color-2-green);
}

select {
	color: rgba(0, 0, 0, 0);
	text-shadow: 0 0 0 #000;
}

a img {
	outline: 0;
}

input[type=checkbox], input[type=radio] {
	vertical-align: middle;
}

.fullwidth {
	position: relative;
	width: 100%;
	z-index: 1;
}

.bgcover {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.logged-in header#header {
	top: 32px;
}

/* body.logged-in {
    padding-top: 112px;
} */
body.nav-open-menu {
	overflow: hidden;
}

/* btn sec */
.link-button {
	margin-top: 35px;
}

.btn {
	position: relative;
	padding: 14px 30px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 50px;
	background-color: var(--color-2-green);
	border: 1px solid var(--color-2-green);
	color: var(--color-3-white);
	z-index: 1;
	overflow: hidden;
	text-transform: capitalize;
	min-width: 178px;
	letter-spacing: 1.5px;
	transition: .5s;
}

.btn:hover {
	background: var(--color-3-white);
	color: var(--color-2-green);
	transition: all 1s;
	border: 1px solid var(--color-2-green);
}

.btn.focus, .btn:focus {
	transition: .5s;
	background-color: var(--color-2-green);
	border: 1px solid var(--color-2-green);
	color: var(--color-3-white);
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
	transition: .5s;
	background-color: var(--color-2-green);
	border: 1px solid var(--color-2-green);
	color: var(--color-3-white);
}

input, select, textarea {
	outline: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
}

[type=submit] {
	cursor: pointer;
}

a:hover, a:focus {
	text-decoration: none;
}

p:empty {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
	position: relative;
	text-transform: capitalize;
}

h1 {
	font-size: 48px;
	line-height: 60px;
	margin-bottom: 15px;
}

h2 {
	margin-bottom: 15px;
	font-size: 38px;
	line-height: 48px;
	text-transform: capitalize;
}

h3 {
	font-size: 32px;
	line-height: 42px;
	margin-bottom: 15px;
}

h4 {
	font-size: 25px;
	line-height: 35px;
	margin-bottom: 15px;
}

h5 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 15px;
}

h6 {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 15px;
}

.linklist ol, .linklist ul {
	margin-bottom: 15px;
	line-height: 28px;
	padding-left: 15px;
}

.linklist ul li ul, .blog-box .blog-content ol li ol, .blog-box .blog-content ul li ul {
	margin-top: 10px;
	position: relative;
}

.linklist ol li, .linklist ul li {
	margin-bottom: 5px;
	position: relative;
	padding-left: 15px;
	display: inline-block;
	vertical-align: top;
	padding-right: 0;
	width: 100%;
}

.linklist ul li:after {
	position: absolute;
	left: 0;
	top: 12px;
	content: "";
	width: 5px;
	height: 5px;
	background: var(--color-2-green);
	border-radius: 100%;
}

.linklist ol {
	padding-left: 30px;
}

.linklist ol li {
	padding-left: 0px;
	display: list-item;
}

.list-dot-green ul li:after {
	background: rgba(11, 148, 68, 1);
}

.section-md {
	margin: 70px 0;
}

.section-pd {
	padding: 70px 0;
}

.section-pt {
	padding-top: 70px;
}

.section-pb {
	padding-bottom: 70px;
}

.row.box-items {
	--bs-gutter-x: 3.5rem;
}

.title, .heading {
	margin-bottom: 25px;
	position: relative;
	display: block;
	color: var(--color-2-green);
	font-size: 44px;
	line-height: 46px;
	font-weight: 900;
}

.title span, .heading span {
	color: var(--color-1-black);
}

.small-heading {
	color: var(--color-1-black);
	margin-bottom: 10px;
	font-size: 24px;
	letter-spacing: 2.5px;
	font-weight: 300;
	font-style: normal;
}

.medium-heading {
	margin-bottom: 15px;
	position: relative;
	display: block;
	color: var(--color-1-black);
	text-transform: none;
	font-size: 35px;
	line-height: 45px;
}

.white-color-sec p a, .white-color-sec .heading, .white-color-sec p, .white-color-sec .title, .white-color-sec ul li, .white-color-sec h2, .white-color-sec h3, .white-color-sec h4, .white-color-sec h5, .white-color-sec h6 {
	color: var(--color-3-white);
}

.white-color-sec .btn {
	color: var(--color-2-green);
	background-color: var(--color-3-white);
	border: 1px solid var(--color-3-white);
}

.white-color-sec .btn:hover {
	color: var(--color-3-white);
	background-color: transparent;
	border-color: var(--color-3-white);
}

div#html5-close {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/optimized/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/close.png");
	background-size: auto;
	width: 31px;
	height: 34px;
	background-repeat: no-repeat;
	top: 6px !important;
	right: 5px !important;
}

div#html5-close.nitro-lazy {
	background-image: none !important;
}

div#html5-close img {
	display: none;
}

.searchform .close-btn {
	right: 5px;
	top: 10px;
}

.searchform .close-btn:before, .searchform .close-btn:after {
	left: 0;
	right: 0;
	top: 12px;
}

/* Common CSS END */

/* Menu CSS Start */
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.menu-top li {
	display: inline-block;
	color: #fff;
	position: relative;
	margin-left: 15px;
}

ul.menu-top li:first-child {
	margin-left: 0px;
}

ul.menu-top > li.menu-item-has-children {
	margin-right: 15px;
}

ul.menu-top > li#menu-item-250 > ul.sub-menu {
	right: 0;
}

.menu-top li a br, .menu-top li .sub-menu li a br {
	display: none;
}

.menu-top li a {
	padding: 0px;
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
	text-transform: capitalize;
	color: var(--color-1-black);
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 1px;
}

.nav-menu .menu-top > li > a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--color-2-green);
	transition: all .3s ease-in-out;
	margin: auto;
	opacity: 1;
}

.nav-menu .menu-top > li > a:hover:before {
	width: 100%;
}

.nav-menu .menu-top > li.current-menu-ancestor a:before, .nav-menu .menu-top > li.current-menu-item > a:before {
	width: 100%;
}

.menu-top li a:hover, .menu-top li a:focus {
	color: var(--color-2-green);
}

.nav-menu .menu-top > li.current-menu-item > a, .nav-menu .menu-top > li.current-menu-ancestor > a {
	color: var(--color-2-green);
}

.nav-menu > .menu-top > li.menu-item-has-children:after {
	content: "";
	position: absolute;
	top: 0;
	margin: auto;
	bottom: 0;
	right: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 5px 0;
	border-color: #fff transparent transparent;
	display: flex;
	align-items: center;
}

ul.menu-top li ul.sub-menu li.menu-item-has-children:after {
	display: none;
}

/* dropdown start here */
ul.menu-top li:hover > ul {
	display: block;
}

ul.menu-top li:hover li {
	float: none;
}

ul.menu-top li:hover li a:hover {
	background: var(--color-2-green);
	color: #fff;
}

.menu-top .sub-menu > li {
	border-bottom: none;
}

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

.menu-top .sub-menu li.current_page_item a {
	background-color: var(--color-2-green);
	color: #fff;
}

.menu-top .sub-menu > li:nth-child(1) {
	border-top: 1px solid #efefef;
}

.menu-top .sub-menu > li.current_page_item ul li a {
	background-color: rgba(0, 0, 0, .95);
	color: #fff;
	font-weight: 400;
}

.menu-top .sub-menu > li.current_page_item ul li a:hover, .menu-top .sub-menu > .current_page_ancestor > a {
	background-color: var(--color-2-green);
	color: #fff;
}

.menu-top li ul li {
	border-top: 0;
	display: block;
	margin: 0;
}

ul.menu-top li#menu-item-6815 {
	display: none;
	opacity: 0;
}

/* Displays second level dropdowns to the right of the first level dropdown */
ul.menu-top ul ul {
	left: 100%;
	top: 0;
	position: absolute;
}

ul.menu-top li .sub-menu li {
	padding: 0;
	display: block;
	width: 100%;
	border-bottom: 1px solid #f3f3f3;
}

.nav-menu-inner {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.menu-top {
	transition: all ease-in-out .2s;
	text-align: right;
	justify-content: space-between;
	display: flex;
	right: -10px;
	position: static;
}

.menu-top li:first-child {
	padding-left: 0;
}

.menu-top li:last-child {
	margin-right: 0;
	padding-right: 0px;
}

ul.menu-top li#menu-item-25 {
	display: none;
}

.sub-menu {
	background-color: var(--color-3-white);
	min-width: 215px;
	text-align: left;
}

ul.menu-top li .sub-menu li a {
	font-size: 14px;
	padding: 5px 10px;
	line-height: 18px;
	margin: 0;
	color: #000;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	position: relative;
	text-transform: capitalize;
	line-height: 24px;
	letter-spacing: 0px;
}

ul.menu-top li .sub-menu li:last-child a {
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.menu-top .sub-menu li.current_page_item a:before, .menu-top .sub-menu li a:hover:before {
	background: #fff;
}

ul.menu-top li .sub-menu li a:hover {
	color: var(--color-3-white);
	background: var(--color-2-green);
	transition: .7s;
}

ul.menu-top li .sub-menu li.current-menu-item > a {
	color: var(--color-3-white);
	background: var(--color-2-green);
}

.menu-header ul.sub-menu li.menu-item-has-children > a:after {
	-ms-transform: rotate(227deg);
	-webkit-transform: rotate(227deg);
	-moz-transform: rotate(227deg);
	-o-transform: rotate(227deg);
	transform: rotate(227deg);
	right: 13px;
	top: 0;
	bottom: 0;
	content: "";
	border-left: 2px solid #293a4c;
	border-bottom: 2px solid #293a4c;
	display: inline-block;
	width: 8px;
	height: 8px;
	position: absolute;
	margin: auto;
}

ul.menu-top li .sub-menu li.menu-item-has-children > a:hover {
	background-color: var(--color-2-green);
	color: #fff;
}

.menu-header ul.sub-menu li.current-menu-ancestor > a:after {
	border-color: #fff;
}

.menu-header ul.sub-menu li.current-menu-item > a:after, .menu-header ul.sub-menu li.menu-item-has-children > a:hover:after {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.menu-header > ul > li > ul {
	transform: translateY(1.25em);
	transition: all linear .1s;
	top: 100%;
	position: absolute;
	list-style: none;
	z-index: 1;
	margin: 0;
	padding: 0;
	transition: all linear .1s;
	margin-top: 0px;
}

header#header.small-header .menu-header > ul > li > ul {
	box-shadow: 0px 0px 11px rgba(0, 0, 0, .258);
	transition: all linear .1s;
}

.menu-header .sub-menu {
	visibility: hidden;
}

.menu-header ul li:hover > ul {
	opacity: 1;
	transform: translateY(0);
	display: block;
	visibility: visible;
	z-index: 1;
}

.menu-top li.menu-item-has-children:after {
	content: "";
	position: absolute;
	top: 2px;
	margin: auto;
	right: -15px;
	background-size: 10px;
	background-repeat: no-repeat;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/down-arrow.svg");
	background-position: center;
	height: 10px;
	width: 10px;
	bottom: 1px;
}

.menu-top > li.current-menu-item:after, .nav-menu .menu-top > li.current-menu-ancestor:after {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/down-arrow-active.svg");
}

.menu-header ul li#menu-item-146765:hover > ul {
	max-height: 500px;
	overflow-y: scroll;
}

/* Menu CSS END */

/* block css default */
.wp-block-group, .wp-block-columns {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
	margin-bottom: 35px;
	padding-left: 12px;
	padding-right: 12px;
}

.wp-block-group ul, .wp-block-columns ul {
	padding-left: 20px;
	list-style: disc;
	margin-bottom: 15px;
}

/* block css default */

/* Header Search */
.search-box-outer {
	width: 57%;
	margin-left: auto;
}

.search-icon {
	cursor: pointer;
	transition: all ease-in-out .45s;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url("https://bankruptcytruth.com/wp-content/themes/walker/img/search-white.png");
	background-position: 0px 0px;
	width: 19px;
	height: 19px;
	top: 5px;
	position: relative;
}

.search-icon.nitro-lazy {
	background-image: none !important;
}

.close-search {
	cursor: pointer;
}

.search-bar {
	padding: 1px 0 10px 15px;
	margin-left: 0;
	color: #000;
	position: relative;
	width: auto;
	display: inline-block;
	margin-top: 0px;
}

.search-bar:before {
	content: "";
	background-color: #fff;
	position: absolute;
	height: 1.15em;
	left: 0;
	width: 1.5px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
}

.search-bar-box {
	background-color: rgba(53, 163, 175, 0);
	position: relative;
	right: 0px;
	height: 3rem;
	border: 1px solid rgba(53, 163, 175, 0);
	border-bottom-color: #e9e9e9;
	z-index: 2;
	opacity: 1;
	width: calc(100% - 0em);
}

.mobile-search-bar {
	margin-left: 0px;
	cursor: pointer;
	position: relative;
	margin-right: 0;
	top: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: normal;
	color: var(--color-3-white);
	background-color: var(--color-2-green);
	height: 35px;
	width: 35px;
	border-radius: 30px;
	transition: .52s;
}

.mobile-search-bar .white-search-icon {
	display: block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/search.svg");
	background-position: center;
	cursor: pointer;
	transition: .5s;
}

.mobile-search-bar .white-search-icon.nitro-lazy {
	background-image: none !important;
}

.mobile-search-bar:hover {
	background-color: #000;
	transition: .52s;
}

.mobile-search-bar .white-search-icon:hover {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/search.svg");
	transition: .5s;
}

.mobile-search-bar .white-search-icon:hover.nitro-lazy {
	background-image: none !important;
}

header#header.small-header .search-bar-box {
	top: 0;
}

#SiteSearchs img {
	width: 1.5em;
}

.browser-ie .search-bar-box, .browser-unknown .search-bar-box, .browser-ie .search-bar-box.active-bar, .browser-unknown .search-bar-box.active-bar {
	-webkit-transition: all ease-in-out 0s;
	-moz-transition: all ease-in-out 0s;
	-o-transition: all ease-in-out 0s;
	transition: all ease-in-out 0s;
}

.search-icon-form button.btn {
	background-color: var(--color-2-green);
	padding: 20px;
	margin-top: 0;
}

.search-icon-form button.btn:hover {
	background-color: #fff;
	color: var(--color-2-green);
	border: 1px solid #fff;
}

.search-icon-form button.btn:focus {
	background-color: var(--color-2-green);
	color: #fff;
	border: 1px solid var(--color-2-green);
}

.search-wrapper {
	flex-direction: column;
	text-align: center;
}

.search-wrapper .title {
	color: var(--color-2-green);
	margin-bottom: 50px;
}

.search-input-box .form-control {
	color: #76777a;
}

.search-form-outer {
	width: 100%;
}

.search-icon-form {
	padding: 8px 15px;
	margin-left: 0;
	margin-right: 0;
	padding-right: 0;
}

.close-search .bar {
	background: #fff;
	border-radius: 0;
	display: block;
	height: 2px;
	width: 45px;
}

.close-search .bar:nth-of-type(2) {
	width: 25px;
	margin-bottom: 7px;
	margin-top: 7px;
	margin-left: auto;
}

.search-input-box {
	width: 100%;
}

.search-input-box input {
	border: none;
	padding-left: 0;
	padding-right: 0;
	color: #fff;
}

.search-input-box input:focus {
	outline: none !important;
	box-shadow: none !important;
}

#m-SiteSearchs-form .search-input-box ::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}

#m-SiteSearchs-form .search-input-box ::-moz-placeholder {
	color: #fff;
	opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-ms-input-placeholder {
	color: #fff;
	opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-moz-placeholder {
	color: #fff;
	opacity: 1;
}

#search-icon-bar .fa-search {
	color: #fff;
	font-size: 0;
}

.top-search-wrap {
	display: inline-block;
}

.search-input-box .form-control {
	padding: 0;
	height: 2.5rem;
	background-color: transparent;
	color: #000;
}

.search-icon-form .fa-search {
	color: #fff;
	font-size: 0;
}

/* Header Search End */

/* Header CSS Start */
.menu-wrap, .mobile-header-sec {
	display: none;
}

.logo-wrapper {
	width: 100%;
}

.logo-wrapper a {
	display: block;
}

.logo-wrapper a img {
	width: auto;
	transition: 1s;
	object-fit: contain;
}

.menu-top li a, header#header.small-header .header-contact-info a {
	transition: 1s;
}

header#header.small-header .logo-wrapper a img {
	max-width: 100%;
}

/* header#header.small-header .menu-top > li > a {
    padding: 32px 0;
} */
.top-search-bar {
	text-align: right;
	position: relative;
	width: 45px;
}

.nav-menu-wrapper {
	width: 100%;
	position: relative;
	margin-bottom: 0;
	transition: all ease-in-out .2s;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 30px;
}

.menu-main-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

header#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	padding: 0;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
	background: var(--color-3-white);
}

header#header.small-header {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .18);
	background: var(--color-3-white);
}

.header-top .header-left-logo {
	display: flex;
	align-items: center;
	padding-bottom: 0px;
}

.header-aside-col {
	align-items: center;
	display: flex;
}

.header-top {
	padding: 21px 0px;
	width: 100%;
	position: relative;
}

.right-top-wrap {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	flex-direction: column;
}

.header-contact-info {
	margin-left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 10px;
}

.header-contact-info a {
	padding: 0;
	display: inline-block;
	line-height: normal;
	transition: .5s;
	font-size: 18px;
	font-weight: 700;
}

.header-contact-info a span {
	font-size: 18px;
	color: #000;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
}

.header-contact-info .fees-page-btn:hover {
	text-decoration: underline;
}

.header-contact-info .fees-page-btn {
	margin-right: 20px;
}

.nav-menu-inner ul > li .sub-menu * {
	transition: none;
}

.header-wrap {
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/** Mobile Search Bar ***/
.mobile-search-bar-box .search-input-box {
	width: 100%;
	position: relative;
}

.close-btn {
	position: absolute;
	right: -15px;
	top: -10px;
	width: 50px;
	height: 50px;
	opacity: 1;
	font-size: 0;
	color: #fff;
	border: none;
	background: var(--color-2-green);
	border-radius: 45px;
	z-index: 1;
}

.close-btn:hover {
	opacity: 1;
	cursor: pointer;
	background-color: var(--color-1-black);
}

.close-btn:before, .close-btn:after {
	position: absolute;
	left: 0;
	content: " ";
	height: 26px;
	width: 2px;
	background-color: #fff;
	right: 0;
	margin: auto;
}

.close-btn:hover:before, .close-btn:hover:after {
	opacity: 1;
	background-color: #fff;
}

.close-btn:before {
	transform: rotate(45deg);
}

.close-btn:after {
	transform: rotate(-45deg);
}

.modal-dialog-scrollable .modal-content {
	overflow: inherit;
}

.mobile-search-bar-box {
	display: none;
}

.mobile-search-bar-box {
	position: fixed;
	top: 0;
	width: 100%;
	height: 142px;
	z-index: 10000;
	background-color: var(--color-2-green);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
	transition: all ease-in-out .5s;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .42);
	opacity: 0;
}

.mobile-search-active .mobile-search-bar-box {
	transform: translate(0);
	z-index: 999999;
	opacity: 1;
}

.mobile-search-bar-box form {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.mobile-search-bar-box .search-input-box input {
	font-size: 16px;
	border-bottom: 1px solid #fff;
	color: #fff;
	height: 46px;
	padding-left: 0px;
	padding-right: 50px;
}

.mobile-search-bar-box .search-icon-form img {
	width: 28px;
	max-width: 54px;
}

.search-icon-form button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	background-size: 22px;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	width: 22px;
	height: 22px;
	top: 0px;
	position: relative;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/search-icon-white.svg");
	opacity: .7;
}

.search-icon-form button.nitro-lazy {
	background-image: none !important;
}

.search-icon-form button:hover {
	opacity: 1;
}

.search-input-box .form-control:focus {
	border-bottom: 1px solid #fff;
	color: #fff;
}

.mobile-search-bar-box .search-input-box {
	position: relative;
}

.req-error {
	position: absolute;
	font-size: 11px;
	bottom: 1px;
	display: none;
	color: #fff;
	font-weight: normal;
	right: 50px;
	background-color: #b30000;
	padding: 1px 5px;
	border-radius: 4px 4px 0px 0px;
	line-height: normal;
	text-transform: capitalize;
}

.mobile-search-bar img {
	cursor: pointer;
	top: -3px;
	position: relative;
}

.m-close-search .bar {
	background: #fff;
	border-radius: 0;
	display: block;
	height: 1px;
	width: 45px;
	display: none;
}

.m-close-search .bar:nth-of-type(2) {
	width: 25px;
	margin-bottom: 9px;
	margin-top: 9px;
}

.mobile-search-bar-box .search-icon-form {
	padding: 0;
	margin-left: 15px;
	margin-right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	position: absolute;
	right: 0px;
	bottom: 3px;
	width: 40px;
}

.mobile-search-bar-box [type='submit'], .mobile-search-bar-box [type='submit']:focus {
	background-color: transparent;
}

.nav-menu-inner .nav-menu {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	position: relative;
}

header#header.small-header .nav-menu-inner .nav-menu {
	top: 0;
}

/* Mobile Search Bar */

/* Header CSS End */

/* owl css for nav */
.owl-nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	top: 0px;
	height: 65px;
	right: 0;
	margin: auto;
	z-index: 1;
	width: 100%;
	bottom: 0;
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	height: 44px;
	width: 44px;
	font-size: 0px;
	position: relative;
	z-index: 1;
	opacity: 1;
	border-radius: 100%;
	border: none;
	background: #0b9444;
	background-size: 17px;
	background-repeat: no-repeat;
	border: 1px solid transparent;
}

.owl-carousel .owl-nav .owl-prev {
	left: 0;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/next-white.svg");
	background-position: center;
	transform: rotate(180deg);
}

.owl-carousel .owl-nav .owl-prev.nitro-lazy {
	background-image: none !important;
}

.owl-carousel .owl-nav .owl-next {
	right: 0px;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/next-white.svg");
	background-position: center;
}

.owl-carousel .owl-nav .owl-next.nitro-lazy {
	background-image: none !important;
}

.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
	opacity: 1;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/next.svg");
	background-color: transparent;
	border-color: #0b9444;
}

.owl-carousel .owl-nav .owl-next:hover.nitro-lazy, .owl-carousel .owl-nav .owl-prev:hover.nitro-lazy {
	background-image: none !important;
}

/* end owl css */

/* owl dots */
.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 65px;
}

.owl-dots .owl-dot span {
	display: block;
	background: #d9d9d9;
	width: 15px;
	height: 15px;
	border-radius: 100%;
}

.owl-dots .owl-dot {
	margin: 0 5px;
	cursor: pointer;
}

.owl-dots .owl-dot.active span {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-2-green);
}

/* owl dots end */

/* Contact Form CSS Start */
.wpcf7 form.spam .wpcf7-response-output {
	margin-left: auto !important;
	margin-right: auto !important;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
	background: #293a4c;
	color: #fff;
}

.wpcf7 .wpcf7-form-control-wrap.quiz-math, .wpcf7 .wpcf7-form-control-wrap.quiz-math label {
	width: 100%;
	margin: 0;
}

.wpcf7 .wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: #121212;
	z-index: 2;
}

div.wpcf7 .wpcf7-form .form-control, .common-form-style .form-group .form-control, select {
	padding: 3px;
	font-size: 16px;
	text-transform: none;
	height: 55px;
	padding-left: 15px;
	border-radius: 12px;
	background-color: var(--color-3-white);
	border: 1px solid var(--color-3-white);
	color: rgba(110, 110, 110, 1);
	font-weight: 300;
}

select {
	width: 100%;
	background-repeat: no-repeat;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/down-arrow.svg");
	background-size: 14px;
	background-position: calc(100% - 15px) 50%;
}

select.nitro-lazy {
	background-image: none !important;
}

div.wpcf7 .wpcf7-form .form-control:focus {
	border-bottom-color: var(--color-3-white);
}

div.wpcf7 .wpcf7-form textarea.form-control, .common-form-style .form-group textarea.form-control {
	height: 120px;
}

div.wpcf7 .wpcf7-form textarea.form-control {
	padding-top: 10px;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.wpcf7 .wpcf7-response-output {
	font-size: 12px;
	line-height: 1.3;
	position: absolute;
	left: 0;
	bottom: -40px;
	right: 0;
	color: #fff;
	text-align: center;
	border: none !important;
	margin: 0 !important;
	background: #b31517;
	max-width: 389px;
}

.form-control, .form-control:focus {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	box-shadow: none;
	padding: .4rem 0rem;
	font-size: .9rem;
}

.wpcf7-form-control-wrap {
	display: inline-flex;
	width: 100%;
}

.wpcf7 .wpcf7-not-valid-tip {
	color: #fff;
	font-weight: normal;
	display: block;
	position: absolute;
	bottom: 1px;
	right: 0;
	font-size: 10px;
	background-color: #b30000;
	padding: 6px;
	border-radius: 4px 4px 0px 0px;
	line-height: 6px;
	text-transform: capitalize;
}

.form-banner-404 .wpcf7 .wpcf7-not-valid-tip {
	padding: 2px 5px;
}

.wpcf7 {
	position: relative;
}

.wpcf7 .form-acceptance-col .wpcf7-list-item-label {
	font-size: 16px;
	line-height: 24px;
}

.wpcf7 .btn-wrap {
	padding: 0;
	display: inline-block;
	width: auto;
	margin-top: 0;
	position: relative;
	overflow: hidden;
}

div.wpcf7 .ajax-loader {
	position: absolute;
	left: 0;
	right: 0px;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 1;
	z-index: 1;
	display: block;
}

div.wpcf7 form.submitting .btn-wrap input, .sidebar div.wpcf7 form.submitting .btn-wrap input {
	text-decoration: none;
	opacity: .3;
}

div.wpcf7 form.submitting .btn-wrap {
	border: none;
	background: none;
	pointer-events: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	max-width: 224px;
	visibility: hidden;
	display: none !important;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok, .wpcf7 form.sent .wpcf7-response-output, .thank-you-message {
	color: #fff !important;
	background: #00772c !important;
	text-align: center;
	margin-left: auto !important;
	margin-right: auto !important;
	opacity: 0;
}

.wpcf7 .form-label {
	color: rgba(0, 0, 0, 1);
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

textarea {
	resize: none;
	height: 5rem;
}

[type=submit], [type=submit]:focus {
	cursor: pointer;
	box-shadow: none;
}

/* placeholder */
.wpcf7 ::-webkit-input-placeholder {
	color: rgba(110, 110, 110, 1);
	font-weight: 400;
}

.wpcf7 select {
	color: rgba(110, 110, 110, 1);
	font-weight: 400;
}

.wpcf7 ::-moz-placeholder {
	color: rgba(110, 110, 110, 1);
	font-weight: 400;
}

.wpcf7 :-ms-input-placeholder {
	color: rgba(110, 110, 110, 1);
	font-weight: 400;
}

.wpcf7 :-moz-placeholder {
	color: rgba(110, 110, 110, 1);
	font-weight: 400;
}

.wpcf7 .wpcf7-not-valid-tip, .wpcf7 label.error {
	color: #fff;
	position: absolute;
	bottom: -14px;
	right: 0px;
	font-size: 10px;
	background-color: #b30000;
	padding: 4px;
	border-radius: 0px;
	line-height: 6px;
	text-transform: capitalize;
	margin: 0;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: 0px;
	display: none;
}

.wpcf7 .quiz-math .wpcf7-not-valid-tip {
	font-size: 10px;
	display: inline-block;
}

.contact-form-sidebar .wpcf7-select {
	color: white;
	border: 1px solid white;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	text-transform: capitalize;
	color: rgba(110, 110, 110, 1);
	font-weight: 300;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
	display: inline-block;
	margin: 0;
	margin-right: 20px;
	vertical-align: middle;
}

.wpcf7-list-item {
	margin-left: 0;
	margin-right: 1em;
}

.wpcf7 .wpcf7-list-item label {
	display: flex;
	align-items: center;
}

.wpcf7 .wpcf7-list-item label input[type="checkbox"] {
	margin-right: 10px;
}

.wpcf7 .wpcf7-list-item label .wpcf7-list-item-label {
	display: inline-block !important;
	opacity: 1 !important;
	transition: none !important;
	color: rgba(0, 0, 0, 1);
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	padding-left: 11px;
	margin-left: 0;
}

.form-acceptance-col .wpcf7-list-item label {
	line-height: 1.625rem;
	font-size: 16px;
	color: #000;
	display: flex;
	align-items: flex-start;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block !important;
	transition: none;
	line-height: 26px;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label * {
	transition: none;
}

.form-acceptance-col .wpcf7-list-item label input {
	position: relative;
	top: 5px;
}

.form-acceptance-col .wpcf7-list-item {
	margin-left: 0;
}

.wpcf7 form[data-status=sent] .wpcf7-response-output.message-sent {
	opacity: 1;
	font-size: 15px;
	background: #fff !important;
	color: #00772c !important;
	position: relative !important;
	bottom: 0 !important;
	border-left: 5px solid #00772c !important;
	text-align: center !important;
	box-shadow: 0px 0px 11px #e2e2e2 !important;
	min-width: 411px !important;
	padding: 15px !important;
	font-weight: 600 !important;
}

.sidebar .wpcf7 form[data-status="sent"] .wpcf7-response-output {
	color: #0b9444 !important;
	min-width: 320px !important;
}

.footer-form-wrapper .wpcf7 form[data-status=sent] .wpcf7-response-output.message-sent {
	margin-left: inherit !important;
}

/* Contact Form CSS END */

/* footer css start */

/* footer social icon */
.footer-social-icon-wrap {
	width: 100%;
	position: relative;
	margin-top: 45px;
}

ul.footer-social {
	z-index: 1;
	display: flex;
	margin-top: 0px;
}

ul.footer-social li {
	margin: 0;
	margin-right: 11px;
}

ul.footer-social li:last-child {
	margin-right: 0px;
}

.footer-social li a {
	position: relative;
	height: 25px;
	width: 25px;
	line-height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.footer-social li a svg, ul.footer-social li a img {
	height: 20px;
	width: 20px;
}

ul.footer-social li a svg path, ul.footer-social li a svg circle, ul.footer-social li a svg rect {
	fill: var(--color-3-white);
}

ul.footer-social li a:hover svg path, ul.footer-social li a:hover svg circle, ul.footer-social li a:hover svg rect {
	fill: var(--color-1-black);
}

.footer-sec ul li a br, ul.menu-top li a br {
	display: none;
}

.footer-sec ul li.current_page_item a {
	color: var(--color-1-black);
}

/* footer social icon */

/* Footer CSS Start */
.footer-logo a {
	display: inline-block;
}

.main-footer {
	padding-top: 50px;
	background: rgba(1, 68, 36, 1);
}

.main-footer * {
	color: var(--color-3-white);
}

.footer-section-links .menu-footer li a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-left-side {
	padding-right: 35px;
}

.footer-right-side {
	padding-left: 15px;
}

.footer-info p {
	font-weight: 300;
	font-size: 16px;
}

.footer-logo img {
	width: auto;
	max-width: 100%;
}

.footer-logo {
	margin-bottom: 30px;
	max-width: 573px;
}

.footer-info {
	position: relative;
	max-width: 430px;
}

.footer-wrapper {
	margin-bottom: 40px;
}

.footer-title {
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 25px;
	margin-bottom: 15px;
	color: var(--color-1-white);
	font-family: var(--font-title);
}

.copyright {
	text-align: left;
	line-height: normal;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: start;
	padding-bottom: 40px;
	position: relative;
	margin-top: -50px;
}

.copyright p {
	margin: 0;
	font-weight: 300;
}

.copyright .small-nav {
	margin-left: 5px;
	font-size: 14px;
	color: var(--color-3-white);
}

.small-nav a {
	display: inline-block;
	margin-right: 6px;
	position: relative;
	padding-right: 0;
	color: var(--color-3-white);
	margin-left: 4px;
	font-size: 16px;
}

.small-nav a:hover {
	color: var(--color-3-white);
	text-decoration: underline;
}

.small-nav a:after {
	position: absolute;
	content: "";
	width: 1px;
	height: 10px;
	background: var(--color-3-white);
	top: 0;
	right: -8px;
	bottom: 0;
	margin: auto;
}

.small-nav a:last-child:after {
	display: none;
	opacity: 0;
}

.footer-section-links {
	width: 100%;
	text-align: center;
	position: relative;
}

.footer-sec ul {
	width: 100%;
}

.footer-section-links ul li a {
	font-size: 14px !important;
	font-weight: 700;
	text-transform: uppercase;
}

.footer-section-links ul li {
	margin-bottom: 8px;
}

.footer-section-links ul li:last-child {
	margin-bottom: 0px;
}

.footer-sec ul li a br, ul.menu-top li a br {
	display: none;
}

.footer-contact-info .footer-call-text {
	font-size: 19.86px;
	color: #fff;
}

.footer-sec .common-contact-wrap {
	margin-bottom: 8px;
}

.footer-sec .common-contact-wrap:last-child {
	margin-bottom: 0px;
}

.footer-sec .common-contact-wrap a {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	padding-left: 35px;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/call-image.svg");
	padding-top: 10px;
	padding-bottom: 15px;
	background-position: 0 11px;
	background-repeat: no-repeat;
	background-size: 23px;
}

.footer-sec .common-contact-wrap a.nitro-lazy {
	background-image: none !important;
}

.footer-sec .common-contact-wrap .phone-wrap {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/call-image.svg");
}

.footer-sec .common-contact-wrap .phone-wrap.nitro-lazy {
	background-image: none !important;
}

.footer-sec .common-contact-wrap .message-wrap {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/message-icon.svg");
}

.footer-sec .common-contact-wrap .message-wrap.nitro-lazy {
	background-image: none !important;
}

.footer-sec .common-contact-wrap .chat-wrap {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/chat.svg");
}

.footer-sec .common-contact-wrap .chat-wrap.nitro-lazy {
	background-image: none !important;
}

.footer-sec .common-contact-wrap .email-wrap {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/mail-icon-white.svg");
}

.footer-sec .common-contact-wrap .email-wrap.nitro-lazy {
	background-image: none !important;
}

.footer-contact-info a:hover {
	text-decoration: underline;
}

/* Footer CSS Start END */

/* Home banner form CSS Start Here */
.modal-popup-content {
	background: rgba(243, 243, 243, 1);
}

.modal-popup-form {
	background: rgba(243, 243, 243, 1);
	border-radius: 12px;
	width: 100%;
	position: relative;
	padding: 40px 40px;
	padding-top: 10px;
}

.modal-popup-form .form-title {
	margin-bottom: 15px;
	position: relative;
	display: block;
	color: var(--color-2-green);
	font-size: 40px;
	line-height: 46px;
	font-weight: 900;
}

/* Home banner form CSS END Here */

/* Home Page CSS Start Here */
.home-banner {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
	background-color: #fff;
	padding-top: 0;
	padding-bottom: 0;
}

.home-banner div#homeSlidesWrap, .home-banner div#homeSlidesWrap .owl-stage-outer, .home-banner .owl-carousel .owl-stage, .home-banner div#homeSlidesWrap .owl-stage-outer .owl-item, .home-banner div#homeSlidesWrap .owl-stage-outer .owl-item .item {
	height: 100%;
}

.home-banner div#homeSlidesWrap .owl-stage-outer .owl-item .item {
	position: relative;
}

.home-banner div#homeSlidesWrap .owl-stage-outer .owl-item .item:after {
	background: linear-gradient(270deg, rgba(11, 148, 68, 0) 26.92%, rgba(11, 148, 68, .42) 100%);
	background-blend-mode: multiply;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 100%;
	width: 100%;
	content: "";
	z-index: 0;
	opacity: 0;
}

.home-banner .container {
	z-index: 2;
	position: relative;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.home-banner-info {
	max-width: 550px;
	position: relative;
}

.home-banner .banner-content {
	width: 100%;
	position: relative;
	margin-bottom: 15px;
}

.home-banner .banner-title {
	position: relative;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 40px;
	line-height: 42px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
}

.home-banner .banner-description {
	width: 100%;
	position: relative;
	margin-top: 20px;
	margin-bottom: 30px;
}

.home-banner .banner-description p {
	color: #fff;
	font-size: 16px;
	opacity: 1;
	font-weight: 500;
	line-height: 26px;
}

.home-banner .banner-description ul {
	width: 100%;
	position: relative;
}

.home-banner .banner-description ul li {
	background-position: left;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/check-mark.svg");
	background-repeat: no-repeat;
	background-size: 16px;
	padding-left: 30px;
	margin-bottom: 5px;
}

.home-banner .banner-description ul li.nitro-lazy {
	background-image: none !important;
}

.home-banner .banner-description ul li:last-child {
	margin: 0;
}

.home-banner img.home-banner-bg {
	position: absolute;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	background-position: top center;
}

.home-banner #homeSlidesWrap .owl-dots {
	position: absolute;
	bottom: 50px;
	right: 0;
	left: 0;
	z-index: 0;
	width: auto;
	max-width: 50%;
	margin: 0 auto;
}

.home-banner #homeSlidesWrap .owl-dots .owl-dot span {
	display: block;
	background: rgba(255, 255, 255, .2);
	width: 75px;
	height: 22px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, .3);
}

.home-banner #homeSlidesWrap .owl-dots .owl-dot.active span {
	background: rgba(255, 255, 255, .3);
	border-color: rgba(255, 255, 255, .6);
}

.side-call-btn {
	position: fixed;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 230px;
	justify-content: flex-end;
	width: 62px;
	transform: rotate(270deg);
	top: 0;
	bottom: 0;
	margin: auto;
}

.modal-open .side-call-btn {
	right: 15px;
}

.side-call-btn a {
	color: #fff;
	display: block;
	transform: rotate(270deg);
	width: auto;
	font-size: 18px;
	line-height: normal;
	font-weight: 700;
	text-align: center;
	background: #0b9444;
	padding: 20px 25px;
	box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, .1);
	position: absolute;
	transform: translate(-54%, 0%);
	left: 100%;
	white-space: normal;
	min-width: 222px;
	border-radius: 12px 12px 0 0;
	transition: .5s;
}

.side-call-btn a:hover {
	background: #000;
	transition: .5s;
}

/* Home CSS End */

/* Home About CSS */
.our-about-sec {
	background-color: rgba(255, 255, 255, .48);
	position: relative;
	z-index: 1;
	padding: 70px 0px;
}

.our-about-sec .about-image {
	display: flex;
}

.our-about-sec .about-image .fullwidth {
	position: relative;
}

.our-about-sec .about-image img {
	height: calc(100% - 0px);
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.about-info-col {
	display: flex;
	align-items: center;
	padding-left: 40px;
}

.video-about-sec {
	display: flex;
}

.play-icon {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: block;
	width: 69px;
	height: 69px;
	font-size: 0px;
	border: 1px solid var(--color-3-white);
	border-radius: 50%;
	background-color: var(--color-2-green);
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/play-icon.svg");
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: 51%;
	transition: 1s;
}

.play-icon.nitro-lazy {
	background-image: none !important;
}

.html5lightbox:hover .play-icon {
	background-color: transparent;
	transition: 1s;
	transform: scale(1.1);
}

.video-about-sec .html5lightbox .play-icon {
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.video-about-sec .html5lightbox .play-icon {
	z-index: 1;
}

.video-about-sec .html5lightbox {
	display: block;
	height: 100%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.video-about-sec .html5lightbox:after {
	display: block;
	position: absolute;
	border-radius: 12px;
	content: "";
	transition: 1s;
	background: #000;
	height: 100%;
	width: 100%;
	bottom: 0;
	z-index: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0%;
}

.video-about-sec .html5lightbox img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: 1s;
}

.video-about-sec .html5lightbox:hover img {
	transition: 1s;
	transform: scale(1.05);
}

/* Home About CSS */

/* why people Section CSS */
.why-people-content-sec {
	background: var(--color-4-grey);
}

.why-people-right-image img {
	width: 100%;
	position: relative;
	border-radius: 10px;
}

.why-people-left-content {
	display: flex;
	align-items: center;
	padding-right: 102px;
}

.why-people-left-content ul {
	padding-left: 20px;
	list-style: disc;
	margin-bottom: 15px;
}

.why-people-left-content ul li {
	margin-bottom: 5px;
}

/* why people Section CSS */

/* bankruptcy Section CSS */
.bankruptcy-left-image .fullwidth {
	height: 100%;
}

.bankruptcy-left-image img {
	width: 100%;
	position: relative;
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
}

.bankruptcy-content-content {
	display: flex;
	align-items: center;
	padding-left: 92px;
}

/* bankruptcy Section CSS */

/* Make This Easier Section CSS */
.make-easier-sec {
	background: var(--color-5-darkgreen);
}

.make-easier-list-row {
	margin-left: auto;
	margin-right: auto;
}

.easier-col-item .choose-item .choose-name {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.easier-col-item .choose-item .choose-icon {
	display: inline-block;
	width: 80px;
}

.easier-btn-row .link-button {
	margin-top: 55px;
}

.easier-col-item {
	margin-top: 25px;
	margin-bottom: 0;
}

.easier-col-item .choose-item .choose-icon svg path {
	fill: #fff;
}

.easier-col-item .choose-item .choose-icon svg {
	width: 80px;
	height: 80px;
}

.easier-col-item .choose-item {
	width: 100%;
	display: flex;
	align-items: center;
	background: rgba(9, 89, 47, 1);
	border-radius: 16px;
	padding: 30px;
	justify-content: center;
}

.white-color-sec .easier-btn-row .btn {
	color: var(--color-5-darkgreen);
}

.white-color-sec .easier-btn-row .btn:hover {
	color: var(--color-3-white);
}

.easier-col-item .choose-item .short-info-and-name {
	width: calc(100% - 80px);
	padding-left: 40px;
	max-width: 376px;
}

/* Make This Easier Section CSS */

/* Team Section Home CSS */
.home-team-sec {
	background: var(--color-4-grey);
}

.home-team-row {
	margin-top: 50px;
	justify-content: center;
}

.home-team-item {
	transition: .9s;
	width: 18%;
	position: relative;
	padding: 0;
}

.home-team-item.active {
	width: calc(25% - 30px);
	margin-left: 15px;
	margin-right: 15px;
	transition: .9s;
}

.home-team-item:before {
	background: linear-gradient(180deg, #0b9444 0%, rgba(11, 148, 68, 0) 100%);
	position: absolute;
	top: 0;
	height: 0px;
	content: "";
	z-index: 0;
	left: 0;
	right: 0;
	opacity: 0;
	border-radius: 30px;
	transition: .9s;
}

.home-team-item.active:before {
	opacity: .8;
	transition: .9s;
	height: 100%;
}

.home-team-content-wrap {
	padding-top: 25px;
	width: 100%;
	position: relative;
	padding-left: 25px;
	padding-right: 25px;
}

.home-team-item .team-featured-img {
	width: 100%;
	display: block;
	position: relative;
}

.home-team-item .team-featured-img img {
	border-radius: 12px;
	height: 300px;
	object-fit: cover;
	width: 100%;
	object-position: top center;
}

.home-team-item.active .team-featured-img img {
	object-position: top center;
}

.home-team-item .team-link-button {
	height: 60px;
	position: relative;
	overflow: hidden;
}

.home-team-item .team-link-button .btn {
	margin-bottom: -190px;
	transition: 1s;
}

.home-team-item.active .team-link-button .btn {
	margin-bottom: 0px;
	transition: 1s;
}

.home-team-item .team-name {
	font-size: 18px;
	letter-spacing: 2px;
	color: #000;
	font-weight: 500;
	margin-top: 20px;
	margin-bottom: 20px;
	transition: .5s;
}

.home-team-item.active .team-name {
	font-size: 24px;
}

/* Team Section Home CSS */

/* testimonial slider css */
button:focus:not(:focus-visible) {
	outline: none !important;
}

.modal-header .btn-close:focus {
	outline: none !important;
	box-shadow: none;
}

.modal-dialog .modal-header {
	border: none;
	padding-bottom: 0;
}

.modal-content-body .modal-heading {
	position: relative;
	display: block;
	color: var(--color-2-green);
	font-size: 34px;
	line-height: 44px;
	font-weight: 700;
	text-align: right;
	margin: 0;
	margin-top: 30px;
}

.testimonial-sec-wrap .testimonial-item {
	min-height: 217px;
	width: 100%;
	border: 1px solid rgba(11, 148, 68, 1);
	padding: 30px;
	border-radius: 14.3px;
	display: flex;
}

.testimonial-sec-wrap .testimonial-item .testimonial-details {
	position: relative;
	width: 100%;
	height: auto;
}

.testimonial-sec-wrap .owl-item .items {
	padding-left: 1px;
}

.testimonial-sec-wrap .testimonial-item p {
	font-size: 20px;
	line-height: 28.61px;
	color: rgba(50, 50, 50, 1);
	font-style: italic;
}

.testimonial-sec-wrap .client-name {
	color: rgba(50, 50, 50, 1);
	font-size: 18px;
	text-align: right;
	position: absolute;
	width: 100%;
	bottom: 0;
}

.testimonial-sec-wrap .owl-dots .owl-dot span {
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 100%;
	background: rgba(245, 245, 245, 1);
}

.testimonial-sec-wrap .owl-dots .owl-dot {
	margin: 0 5px;
	cursor: pointer;
	border: 1px solid rgba(226, 226, 226, 1);
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.testimonial-sec-wrap .owl-dots .owl-dot.active {
	border: 1px solid var(--color-2-green);
}

.testimonial-sec-wrap .owl-dots .owl-dot.active span {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(210, 210, 210, 1);
}

.testimonial-header {
	margin-bottom: 20px;
}

/* testimonial slider css */

/* Home Blog CSS */
.blog-section {
	width: 100%;
	position: relative;
}

.blog-section:after {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 10%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
	z-index: 1;
	content: "";
	right: 0;
	pointer-events: none;
	opacity: 0;
}

.blog-section .container-fluid {
	padding-left: 34px;
	padding-right: 0px;
	overflow: hidden;
}

.blog-list-row .custom-drag-container {
	max-width: calc(100% - 0px);
	padding-right: 0;
	padding-left: 15px;
}

.blog-detail-wrap {
	display: flex;
	gap: 0px;
	overflow-x: scroll;
	/* Scroll enabled but scrollbar hidden */
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
	padding-bottom: 20px;
}

.blog-detail-wrap::-webkit-scrollbar {
	display: none;
}

/* Custom Drag Scroll Bar */
.custom-drag-container {
	margin-top: 20px;
	margin-bottom: 30px;
}

.custom-drag-bar {
	position: relative;
	width: 100%;
	height: 1px;
	background: var(--color-2-green);
	border-radius: 0px;
	margin-top: 0px;
}

.drag-handle {
	position: absolute;
	top: -15px;
	left: 0;
	width: 124px;
	height: 31px;
	background-color: transparent;
	border-radius: 10px;
	cursor: grab;
	transition: background .3s;
	background-size: 124px;
	background-repeat: no-repeat;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/drag-icon.svg");
	background-position: center;
}

.drag-handle.nitro-lazy {
	background-image: none !important;
}

.drag-handle.active {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/drag-icon.svg");
	cursor: grabbing;
}

.drag-handle.active.nitro-lazy {
	background-image: none !important;
}

body.no-select {
	user-select: none;
}

.blog-detail-wrap .blog-col-item {
	position: relative;
	width: 33.33333%;
	padding: 0 15px;
	flex: 0 0 auto;
}

.blog-detail-wrap .blog-col-item .blog-title {
	margin-bottom: 20px;
}

.blog-detail-wrap .blog-col-item .blog-title a {
	font-size: 22px;
	font-weight: 600;
	color: var(--color-1-black);
}

.blog-detail-wrap .blog-col-item .blog-title a:hover {
	color: var(--color-2-green);
}

.home-post-image {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.home-post-image .thumb-img, .home-post-image .no-thumb-image {
	width: 100%;
	position: relative;
	display: block;
	height: 227px;
	border-radius: 20px;
	overflow: hidden;
}

.home-post-image .thumb-img img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
	border-radius: 20px;
	transition: .5s;
}

.blog-col-item .home-post-image img {
	transition: .5s;
}

.blog-col-item:hover .home-post-image img {
	transition: .5s;
	transform: scale(1.07);
}

.home-post-image .no-thumb-image {
	background: #f7f7f7;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
}

.home-post-image .no-thumb-image img {
	height: auto;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.blog-list-row {
	margin-top: 20px;
}

/* Home Blog CSS */

/* Footer Nap Location */
.map_location.map-loc-front {
	position: relative;
	height: 500px;
}

.contact-maps-wrap {
	display: none;
	height: 100%;
}

.contact-maps-wrap.active-map {
	display: block;
}

.contact-maps-wrap iframe {
	width: 100%;
	height: 100%;
	margin-bottom: -1rem;
}

.nap-footer {
	height: 200px;
	align-items: flex-end;
	display: flex;
	position: relative;
}

.nap-postal-address-wrapper {
	display: flex;
	position: absolute;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	gap: 0 15px;
	height: 100%;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
}

.nap-postal-address-wrapper .nap-wrapper {
	border: 1px solid var(--color-2-green);
	width: calc(20% - 12px);
	border-radius: 14px;
	padding: 20px;
	transition: background .5s ease, border-color .5s ease, transform .5s ease;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab {
	background: var(--color-2-green);
	z-index: 1;
}

.nap-address-info, .nap-address-info a, .nap-address-info *, .nap-contact-info .phoneno, .nap-time-info {
	padding: 0;
	display: inline-block;
	color: var(--color-1-black);
	font-size: 13.42px;
	line-height: normal;
	position: relative;
	font-weight: 400;
	letter-spacing: 2px;
}

.nap-postal-address-wrapper .nap-wrapper .nap-contact-info {
	width: 100%;
	margin-bottom: 7px;
	margin-top: 5px;
	line-height: normal;
}

.nap-postal-address-wrapper .nap-wrapper .nap-address-info {
	width: 100%;
	position: relative;
}

.nap-postal-address-wrapper .nap-wrapper .location-center {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/location-icon.svg");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: 0 3px;
	padding-left: 30px;
}

.nap-postal-address-wrapper .nap-wrapper .location-center.nitro-lazy {
	background-image: none !important;
}

.nap-postal-address-wrapper .nap-wrapper .nap-address-info .nap-title {
	font-size: 16.78px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	display: block;
}

.nap-contact-info .phoneno {
	display: inline-block;
	padding: 0;
	line-height: normal;
	font-size: 24px;
	font-weight: 400;
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/call-icon.svg");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: 0 9px;
	padding-left: 30px;
	padding-bottom: 10px;
}

.nap-contact-info .phoneno.nitro-lazy {
	background-image: none !important;
}

.nap-address-info .direction-link {
	color: var(--color-1-black);
	border-bottom: 1px solid var(--color-1-black);
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
}

.nap-contact-info .email_address:hover, .nap-contact-info .email_address:hover span {
	color: var(--color-2-green);
}

.nap-address-info .direction-link:hover {
	color: var(--color-2-green);
	border-color: var(--color-2-green);
}

.nap-contact-info .phoneno:hover, .nap-contact-info .phoneno:hover span {
	color: var(--color-2-green);
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .nap-address-info *, .nap-postal-address-wrapper .nap-wrapper.active-tab .nap-postal-address-wrapper .nap-wrapper .location-center, .nap-postal-address-wrapper .nap-wrapper.active-tab .nap-contact-info .phoneno, .nap-postal-address-wrapper .nap-wrapper.active-tab .nap-address-info .direction-link {
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .nap-address-info .nap-title {
	color: #fff;
	font-size: 20px;
	letter-spacing: 1px;
}

.nap-postal-address-wrapper .nap-wrapper .nap-address-info .location-center {
	line-height: 18px;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .location-center {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/location-icon-white.svg");
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .location-center.nitro-lazy {
	background-image: none !important;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .nap-contact-info .phoneno {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/call-icon-white.svg");
	padding-top: 10px;
	padding-bottom: 15px;
	background-position: 0 11px;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .nap-contact-info .phoneno.nitro-lazy {
	background-image: none !important;
}

.nap-postal-address-wrapper .nap-wrapper.active-tab .nap-address-info .direction-link {
	border-color: #fff;
}

/* end css footer nap locations*/

/* footer form css */
.footer-form-wrapper {
	background: rgba(243, 243, 243, 1);
	border-radius: 12px;
	width: 100%;
	position: relative;
	padding: 70px;
}

.footer-form-wrapper .short-content-text {
	max-width: 407px;
	margin-bottom: 40px;
	padding-top: 25px;
	border-top: 1px solid rgba(110, 110, 110, 1);
}

.footer-form-wrapper .short-content-text p {
	font-size: 20px;
	line-height: 32px;
}

.footer-form-wrapper .contant-link-button .btn-link-text {
	font-size: 20px;
	line-height: 32px;
	display: inline-block;
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: 0 6px;
	padding-left: 35px;
	color: var(--color-1-black);
	transition: .5s;
	word-break: break-all;
}

.contant-link-button.email-item-wrap {
	margin-top: 20px;
	margin-bottom: 20px;
}

.footer-form-wrapper .phone-item-wrap .btn-link-text {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/call.svg");
}

.footer-form-wrapper .phone-item-wrap .btn-link-text.nitro-lazy {
	background-image: none !important;
}

.footer-form-wrapper .email-item-wrap .btn-link-text {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/mail-icon.svg");
	background-position: 0 8px;
}

.footer-form-wrapper .email-item-wrap .btn-link-text.nitro-lazy {
	background-image: none !important;
}

.footer-form-wrapper .location-item-wrap .btn-link-text {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/location-pin.svg");
	text-transform: capitalize;
	background-size: 28px;
}

.footer-form-wrapper .location-item-wrap .btn-link-text.nitro-lazy {
	background-image: none !important;
}

.footer-form-wrapper .location-item-wrap .btn-link-text span {
	display: inline-block;
	font-weight: 700;
	color: var(--color-2-green);
	border: 1px solid var(--color-2-green);
	padding: 5px 16px;
	border-radius: 12px;
	line-height: normal;
	transition: .5s;
}

.footer-form-wrapper .contant-link-button .btn-link-text:hover {
	color: var(--color-2-green);
	transition: .5s;
}

.footer-form-wrapper .location-item-wrap .btn-link-text:hover span {
	background: var(--color-2-green);
	color: #fff;
	transition: .5s;
}

/* footer form css */

/* FAQ Section CSS */
.home-faq-sec {
	background: var(--color-4-grey);
}

.home-faq-col-item .accordion {
	background: none;
	border-radius: 0px;
	border: none;
}

.home-faq-col-item .faq-item-wrap {
	width: 100%;
	position: relative;
	background: none;
	border: none;
}

.home-faq-col-item .faq-item-wrap .accordion-header .accordion-button {
	border-radius: 0px;
	border: none;
	border-top: 2px solid rgba(11, 148, 68, .3);
	outline: none !important;
	box-shadow: none;
	font-size: 17px;
	color: rgba(29, 34, 27, 1);
	font-weight: 700;
	background: none;
	padding-top: 17px;
	padding-bottom: 17px;
	padding-left: 0;
	padding-right: 0px;
}

.home-faq-col-item .faq-item-wrap .accordion-body {
	padding: 0;
	padding-bottom: 17px;
}

.home-faq-col-item .faq-item-wrap .accordion-button::after {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/faq-arrow.svg");
	background-size: 12px;
	background-position: center;
}

.home-faq-col-item .faq-item-wrap .accordion-button:not(.collapsed)::after {
	background-image: url("https://bankruptcytruth.com/nitropack_static/fHsxLjsuRiHgCGsgWPSzbDXrhkEAZStw/assets/images/source/rev-6e37849/bankruptcytruth.com/wp-content/themes/walker/img/faq-arrow-up.svg");
	transform: rotate(-0deg);
}

/* FAQ Section CSS */
.blog-list-row .blog-content .blog-read-more {
	font-size: 18px;
	font-weight: 600;
}

.menu-header > ul > li#menu-item-338 > ul {
	left: inherit;
	right: -20px;
}

.wpcf7 .checkbox-group-wrap .wpcf7-list-item label .error {
	right: inherit;
	left: 0;
}

.main-footer .m-footer-common {
	position: relative;
	z-index: 2;
}

.contact-nap-address {
	padding-top: 0;
	height: 850px;
}

/* For Google Reviews */
.google-testimonial-section {
	width: 100%;
	position: relative;
	padding: 70px 0;
	background: rgba(0, 68, 36, 1);
}

.google-testimonial-section .google-feedback-reviews {
	width: 100%;
	height: 478px;
	margin-top: 15px;
}

/* For Google Reviews */

/* Profile Subscribe CSS */
.subscribe-section-wrap {
	padding-bottom: 70px;
	padding-top: 0;
	margin-top: 16px;
	width: 100%;
	position: relative;
}

.subscribe-profile-list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.subscribe-profile-info {
	text-align: center;
}

.subscribe-profile-list li {
	margin: 0 70px;
}

.profile-icon-image {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.subscribe-profile-info p {
	font-size: 25px;
	margin: 0;
}

.subscribe-profile-info .profile-link-button {
	margin-top: 20px;
	width: 100%;
}

.profile-icon-image a {
	display: flex;
	height: 65px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.profile-icon-image a svg {
	height: 65px;
}

/* Profile Subscribe CSS */

/* Trust Logo CSS */
.trust-logos-section {
	background: #d3d3d3;
	padding: 45px 0px;
	overflow: hidden;
}

.trust-logos-section .owl-carousel .owl-item .item {
	height: 100px;
	padding: 0 10px;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-logos-section .owl-carousel .owl-item .item img {
	height: 100px;
	width: auto;
	margin: 0;
	padding: 0px;
	max-width: 200px;
	object-fit: contain;
	object-position: center;
}

/* trust symbol logo */

/* Desktop Trust */
.trust-info-desktop {
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-info-desktop .item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	padding: 0 30px;
	width: 20%;
}

.trust-info-desktop .item div {
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-info-desktop .item div img {
	width: auto;
	height: auto;
	border-radius: 0px;
	align-items: center;
	justify-content: center;
	display: flex;
	max-height: 120px;
}

/* Desktop Trust */

/* Trust Logo CSS */

/* #CreditComeBack Section */
.credit-comeback-section {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
}

.credit-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}

.credit-subtitle {
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 30px;
}

.btn-green {
	background: #0aa33f;
	color: #fff;
	padding: 12px 24px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: background .3s;
}

.btn-green:hover {
	background: #088d36;
}

.credit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.credit-item {
	background: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	padding: 20px;
	transition: transform .3s ease;
}

.credit-item:hover {
	transform: translateY(-5px);
}

.credit-image-wrap img {
	max-width: 100%;
	border-radius: 10px;
}

.read-more-btn {
	background: #0aa33f;
	color: #fff;
	border: none;
	padding: 10px 20px;
	margin-top: 15px;
	border-radius: 25px;
	cursor: pointer;
	transition: background .3s ease;
}

.read-more-btn:hover {
	background: #088d36;
}

/* Credit ComeBack Gallery */
.credit-comeback-section {
	background: #fff;
}

.credit-title {
	font-size: 2.5rem;
	font-weight: 700;
}

.credit-subtitle {
	font-size: 1.2rem;
	color: #555;
}

.card img {
	border-bottom: 1px solid #eee;
}

.card .btn {
	border-radius: 30px;
}

.credit-comeback-section .card, .credit-comeback-col .card {
	border-radius: 0px;
	box-shadow: none !important;
	border: none;
	outline: none;
	max-width: 80%;
	margin: 0 auto;
}

.credit-comeback-section .card img, .credit-comeback-col .card img {
	border-radius: 0px;
	width: 100%;
}

.credit-comeback-page {
	border-bottom: 1px solid #eee;
	margin-bottom: 70px;
}

/* Credit ComeBack Gallery */
.news-link-btn {
	margin-top: 50px;
	margin-bottom: 10px;
	text-align: center;
}

.text-white .wpcf7-list-item-label {
	color: #fff !important;
}

.trust-logos-new-sec {
	background: #0b9444;
	padding: 15px;
}

#trustSlider .item img {
	height: 36px;
	width: auto;
	filter: invert(1) brightness(2);
	margin: 0 auto;
}

.googleReview-sec {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	position: relative;
	padding-right: 10px;
}

.googleReview-sec span {
	color: #ffd700;
}

.googleReview-sec:after {
	position: absolute;
	content: "";
	right: 0;
	top: 2px;
	bottom: -10px;
	background: #fff;
	width: 2px;
}

.trustSlider-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
}

.video-iframe iframe {
	width: 100%;
	height: 400px;
	display: block;
}

/* Fix to display bullet points in our-about-sec */
.our-about-sec ul, .our-about-sec ol {
	padding-left: 20px !important;
	margin-bottom: 15px !important;
}

.our-about-sec ul {
	list-style: disc !important;
}

.our-about-sec ol {
	list-style: decimal !important;
}

.our-about-sec ul li, .our-about-sec ol li {
	display: list-item !important;
}

.our-about-sec ul li {
	list-style-type: disc !important;
}

.our-about-sec ol li {
	list-style-type: decimal !important;
}
