/* bootstrap strat */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

a {
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s ease;
}


:root {
  --h1-color: #ffffff;
}


h1 {
  font-size: 70px;
  color: var(--h1-color);
}

@font-face {
  font-family: "Abril Fatface";
  src:
    url("../font/AbrilFatface/AbrilFatface-Regular.otf");
  font-weight: 500;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #cb188b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 1;
}

.custom-cursor.dissolve {
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

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

.pe-8 {
  padding-right: 30px;
}

p a:visited {
  color: unset;
}

.banner-title {
  font-size: 80px;
  color: var(--p-color);
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

.px-150 {
  padding: 0 150px;
}

img {
  height: auto;
}

/* bootstrap end */

:root {
  --p-color: #fff;
  --sec-color: #b72325;
  --gray: #555555;
  --text-color: #333;
  --text-color2: #666;
  --anchore-color: #b98649;
  --anchore-color2: #82c0c7;
  --admin-bar-color: #2EA3F2;
  --button-color: #b98649;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: 14px;
  line-height: 1.5em !important;
  scroll-behavior: smooth;
}

.page-template-inner {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Default header style */
.site-header,
#masthead2 {
  background-color: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important;
}

.site-header .header-top {
  background-color: #000;
  /* black */
  color: white;
  /*   padding: 0.5rem 1rem; */
  padding: 0.21em 18px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header .header-top .header-top-link {
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.4s ease-in-out;
  color: #fff;
}

.site-header .header-top .header-top-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-header .custom-logo {
  transition: transform 0.5s ease;
  transform-origin: left center;
  /* or center center, depending on layout */
}

.site-header.scrolled .custom-logo {
  transform: scale(0.7);
  /* Adjust the scale factor as needed */
}

.site-header.scrolled .header-top {
  background-color: #b6823d;
  /* brown */
}

/* 
.nav-row {
  padding: 32px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled .nav-row {
  padding: 10px 0;
} */


.top_nav li.has-dropdown .arrow{
  color: var(--anchore-color);
}


.site-header .nav-link {
  color: white;
}

.site-header.scrolled .nav-link {
  color: #333;
  /* or your desired text color */
}

.site-header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main Nav Links */
#primary-menu a {
  color: rgba(0, 0, 0, 0.54);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 15px;
  transition: opacity 0.4s ease-in-out;
}

#primary-menu a:hover {
  opacity: 0.7;
}

/* Active Menu Link */
#primary-menu .current-menu-item>a,
#primary-menu .current_page_item>a,
#primary-menu .current-menu-ancestor>a {
  color: #b98647 !important;
  font-weight: bold;
}

/* Main nav container padding */
.site-navigation-menu {
  padding-top: 56px;
  transition: padding 0.3s ease;
}

/* Top-level menu items only */
#primary-menu>li {
  display: inline-block;
  padding-right: 22px;
  position: relative;
  /*   padding-top: 68px; */
  padding-bottom: 68px;
  transition: padding 0.3s ease;
}

#primary-menu>li>a {
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
  transition: padding 0.3s ease;
}

/* Shrink top-level items on scroll */
.site-header.scrolled #primary-menu>li {

  padding-bottom: 43px;
}

.site-header.scrolled .site-navigation-menu {
  padding-top: 43px;
}

/* Dropdown Arrow */
#primary-menu li.menu-item-has-children>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  margin-left: 6px;
  color: rgba(0, 0, 0, 0.54);
  transition: transform 0.3s ease;
  position: relative;
  top: -2px;
}

/* Dropdown Submenu Base Style */
#primary-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top: 3px solid #b98647;
  margin-left: 0;
}

/* Show Dropdown on Hover */
#primary-menu li:hover>ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Submenu Items */
#primary-menu ul.sub-menu li {
  display: block;
  padding: 0;
}

#primary-menu ul.sub-menu li a {
  display: block;
  padding: 10px;
  color: rgba(0, 0, 0, 0.54);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0 20px;
  transition: all 0.3s ease;
}

/* Submenu Hover */
#primary-menu ul.sub-menu li a:hover {
  opacity: 0.7;
  background: #fafafa;
}


/* Mobile logo scrolled */

#masthead2 {
  transition: all 0.3s ease;
}

#masthead2 .custom-logo {
  width: 200px;
}

/* Mobile logo inside wrapper */
#masthead2 .logo-wrapper img {
  transition: transform 0.3s ease;
  transform-origin: left center;
}

/* Mobile layout row padding, optional */
#masthead2 .phone-nav {
  transition: padding 0.3s ease;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* On scroll shrink */
#masthead2.scrolled .logo-wrapper img {
  transform: scale(0.75);
}

#masthead2.scrolled .phone-nav {
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-banner-section {
  position: relative;
  background-image: linear-gradient(to right, #eae1d0 0% 80%, #fff 80% 100%);
}

.home-banner-section-mobile {
  position: relative;
  background-color: #eae1d0;
}

.home-banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 50%;
  background-color: #5d574e;
  z-index: 0;
}

.home-banner-row {
  max-width: 1080px;
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* min-height: 390px; */
  padding: 100px 0 50px;
  background: #eae1d0;
}

.home-banner-heading h1 {
  font-weight: bold;
  font-size: clamp(35px, 5vw, 80px);
  color: #000000 !important;
  line-height: 1.1em;
  overflow: visible;
  z-index: 11;
  position: relative;
  white-space: nowrap;
  /*   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.home-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  width: fit-content;
}

.home-banner-left {
  width: 36.7%;
  min-width: 320px;
  z-index: 14;
  position: relative;
  margin-bottom: 32%;
}

.home-banner-right {
  width: 58.8%;
  position: relative;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 11;
}

.banner-image {
  position: relative;
  z-index: 10;
  height: auto;
  object-fit: cover;
  max-width: 1008px;
}

.banner-image::after {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #5d574e;
}

.home-banner-right-text p {
  line-height: 1.8em;
  word-wrap: break-word;
  color: #666;
  font-weight: 400;
  font-size: clamp(15px, 3vw, 20px);
  position: relative;
  z-index: 3;
  padding: 0px 0 40px;
}

.button1 {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 24px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700 !important;
}

.button1:hover {
  background: #000 !important;
  color: #b98647 !important;
}

.button4 {
  padding: 15px 24px;
  text-transform: uppercase;
  color: #000000 !important;
  border-width: 0px !important;
  border-radius: 0px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700 !important;
  background-color: #e0d8c8;
  text-align: center;
}

.button5 {
  font-weight: 500;
  padding: .5em 1em;
  line-height: 1.7em !important;
  background-color: transparent;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid var(--button-color);
  color: var(--button-color);
  border-radius: 3px;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all !important;
  transition-property: all !important;
  position: relative;
  display: inline-block;
}

.button5-spacing {
  margin-top: 5.82%;
}

.button5:hover {
  background-color: rgba(0, 0, 0, .05);
  border: 2px solid transparent;
  padding: .5em 2em .5em .7em;
}

.button5:hover::after {
  opacity: 1;
}

.button5::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  color: var(--button-color);
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.button2,
.button3 {
  padding: 15px 24px;
  text-transform: uppercase;
  color: #000000 !important;
  border-width: 0px !important;
  border-radius: 0px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700 !important;
  background-color: #ffffff;
  text-align: center;
}

.button1,
.button2,
.button3,
.button4 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button1::after,
.button2::after,
.button3::after,
.button4::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.button1:hover::after,
.button2:hover::after,
.button3:hover::after,
.button4:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.button1:hover {
  color: #b98647 !important;
}

.button1:hover::after {
  color: #fff;
}

.button2:hover,
.button3:hover,
.button4:hover {
  color: #b98647 !important;
}

.button2:hover::after,
.button3:hover::after,
.button4:hover::after {
  color: #000;
}

.no-hover:hover {
  color: inherit !important;
  text-decoration: none !important;
}

.transition-hover {
  transition: transform 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-10px);
}

.card-row {
  width: 80%;
  margin: auto;
  display: flex;
  /* gap: 10px; */
  justify-content: center;
}

.card-title {
  font-weight: 700;
  line-height: 1.5em;
  color: #333;
}

.services-technology-section-row {
  max-width: 1080px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.services-technology-section .section-heading {
  font-size: clamp(20px, 5vw, 37px);
  font-weight: 700;
  color: #333;
  line-height: 1.2em;
}

.services-technology-section .left-content p,
.services-technology-section .right-content p {
  font-size: clamp(15px, 3vw, 17px);
  line-height: clamp(25PX, 3vw, 34px);
  color: #666;
}

.home-services-section-row {
  max-width: 1080px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  padding: 58px 0;
}

.home-section-heading {
  font-weight: 700;
  font-size: clamp(27px, 5vw, 37px);
  line-height: 1.1em;
  color: #fff;
}

.home-section-title {
  font-weight: 700;
  line-height: 1.5em;
  font-size: clamp(19px, 3vw, 24px);
}

.home-section-content {
  font-size: 17px;
  line-height: clamp(1.3, 3vw, 2);
  color: #fff;
  font-weight: 400;
}

.home-services-section .service-box {
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-services-section .service-box:hover {
  box-shadow: -20px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.home-services-section .service-box p {
  font-size: clamp(15px, 3vw, 16px);
  color: #fff;
  line-height: clamp(1.3, 3vw, 2);
  font-weight: 400;
}

/* .image-overflow-wrapper {
  overflow: visible;
  margin-right: -15vw; 
  margin-bottom:0;
  max-width: 720px;
} */
.image-absolute-wrapper {
  height: 832px;
  width: 636px;
}

.page-id-12 #page {
  overflow: hidden;
}

.home-section-img {
  width: 100%;
  height: auto;
  display: block;
}

.services-client-service-section {
  margin: 100px 0 50px;
}

.services-client-service-section .section-heading {
  font-size: clamp(20px, 5vw, 37px);
  font-weight: 700;
  color: #333;
}

.services-client-service-section .left-content p,
.services-client-service-section .right-content p,
.right-content {
  font-size: clamp(15px, 3vw, 17px);
  line-height: clamp(25PX, 3vw, 34px);
  color: #666;
}

/* About page css */

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

.about-section .section-title {
  font-size: clamp(30px, 3vw, 55px);
  font-weight: 700;
  color: #333;
  padding: 0 0 27px 0;
}

.about-section .section-text,
.about-section .section-bottom-text {
  line-height: 1.8em;
  color: #666;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
}

.about-section .btn {
  border-radius: 0;
  text-transform: uppercase;
}

.about-section .btn-light {
  background-color: #e2dbcf;
  color: #000;
}

.about-section .btn-dark {
  background-color: #000;
  color: #fff;
}

.about-section .btn:hover {
  opacity: 0.85;
}

.about-middle-section h4,
.about-bottom-section h4 {
  font-size: clamp(20px, 3vw, 37px);
  font-weight: 700;
  color: #333;
  padding: 18px 0;
}

.about-bottom-section h4 {
  padding: 0;
}

.about-middle-section p,
.about-bottom-section p {
  line-height: 1.8em;
  color: #666;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
}

.about_bottom_image {
  aspect-ratio: 4 / 2;
  /* Landscape ratio */
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.about_bottom_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-row-wrapper {
  max-width: 1080px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .custom-row-wrapper {
    width: 95%;
  }
}

.tax-financial-news-section img {
  object-fit: cover;
  height: 100%;
}

.post_title {
  font-size: clamp(17px, 5vw, 26px);
  font-weight: 700;
  color: #fff;
  padding-bottom: 10px;
  line-height: 1.2em;
  font-weight: 400;
}

.post_meta {
  font-size: clamp(14px, 5vw, 17px);
  margin-bottom: 6px;
  color: #fff;
}

.post_title_link h5 {
  transition: all 0.3s ease-in-out;
}

.tax-financial-news-section a:hover,
.post_title_link h5:hover {
  color: #b98647;
}

.post-box {
  transition: box-shadow 0.3s ease;
  z-index: 10;
  position: relative;
}

.post-box:hover {
  box-shadow: -20px 0px 0px 0px rgba(0, 0, 0, 0.3);
}




















/* Footer Design */

/* Max-width & responsiveness */
.footer-main {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

/* Footer Logo */
.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-description {
  color: #666;
  line-height: 1.7em;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

/* Footer Office Styling */
.footer-office p {
  margin: 0.5rem 0;
  color: #666;
  line-height: 1.7em;
  font-weight: 400;
  font-size: 14px;
}

.footer-office strong a {
  color: #666;
  line-height: 1.7em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.footer-office strong a:hover {
  color: #b98647;
}

/* Bottom bar */
.footer-bottom {
  font-size: 14px;
  background-color: #111;
  color: #666;
}

.footer-bottom a {
  color: #666;
}

.footer_heading {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: 1px;
  line-height: 1.5em;
}


/* styles for Tax & Financial News page */

.site-main-banner {
  /* background-image: linear-gradient(123deg,rgba(0,0,0,0.65) 0%,rgba(224,153,0,0) 100%); */
  padding: 6.083vw 0;
  position: relative;
}

.banner-heading {
  font-size: 70px !important;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.4em;
  z-index: 1;
  position: relative;

}

.heading-wrapper {
  width: 80%;
  max-width: 1080px;
  margin: auto;
  padding-left: 40px;
}

.banner-overlay {
  position: absolute;
  pointer-events: none;
  width: 100%;
  left: 0;
  right: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgwLDAsMCwwLjM4KSI+PHBhdGggZD0iTTAgMHYxNDBoMTI4MEwwIDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTAgNDJ2OThoMTI4MEwwIDQyeiIvPjwvZz48L3N2Zz4=);
  background-size: 100% 100%;
  bottom: 0;
  height: 100%;
  z-index: 1;
  transform: rotateY(180deg);
  margin-bottom: -1px;
}

.tax-lists {
  width: 90%;
  margin-left: auto;
  padding-bottom: 54px;
}

.tax-title {
  padding-bottom: 10px;
}

.tax-title a {
  font-size: 23px;
  color: #333;
  line-height: 1em;
  font-weight: 500;
}

.post-meta {
  font-size: 14px;
  margin-bottom: 6px;
  color: #666;
}

.post-meta a {
  font-size: 14px;
  margin-bottom: 6px;
  color: #666;
}

.post-content {
  color: #666;
  font-size: 14px;
  margin-bottom: 80px;
}

.each-tax-card {
  padding: 70px 30px;
}

.each-tax-card:first-child {
  background-color: #ffffff;
}

.each-tax-card:nth-child(2) {
  background-color: #faf9f7;
}

.each-tax-card:nth-child(3) {
  background-color: #f2ece1;
}

.each-tax-card:nth-child(4) {
  background-color: #cccccc;
}

.each-tax-card:nth-child(5) {
  background-color: #5c5c5c;
}

.each-tax-card:nth-child(6) {
  background-color: #000000;
}

.each-tax-card:nth-child(7) {
  background-color: #ffffff;
}

.each-tax-card:nth-child(8) {
  background-color: #faf9f7;
}

.each-tax-card:nth-child(9) {
  background-color: #f2ece1;
}

.each-tax-card:nth-child(5) .post-meta a,
.each-tax-card:nth-child(5) .tax-title a,
.each-tax-card:nth-child(5) .post-content,
.each-tax-card:nth-child(5) .post-meta {
  color: #fff;
}

.each-tax-card:nth-child(6) .post-meta a,
.each-tax-card:nth-child(6) .tax-title a,
.each-tax-card:nth-child(6) .post-content,
.each-tax-card:nth-child(6) .post-meta {
  color: #fff;
}

/* tax and financial inner page style start here */
.main-container {
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
  text-align: left;
}

.entry-title-inner {
  color: var(--text-color);
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 57px;
  line-height: 1.1em;
  word-wrap: break-word;
  margin: 0 !important;
}

.main-container .post-meta {
  font-size: 14px;
  padding-bottom: 15px;
}

.entry-content-inner {
  padding-top: 30px;
}

.entry-content-inner p {
  padding-bottom: 1em;
  font-size: 14px;
  color: var(--text-color2);
}

.left-area {
  padding-right: 5.5%;
  width: 79.125%;
  border-right: 1px solid #e2e2e2;
}

.inner-container .left-area,
.inner-container .sidebar {
  padding-top: 58px;
}

.right-heading {
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  font-size: 26px;
  color: var(--text-color);
}

.sidebar {
  width: calc(100% - 79.125%);
  padding-left: 30px;
}

.recent-post-list {
  list-style: none;
  margin: 0;
  margin-bottom: 30px;
}

.recent-post-list .rec-post a {
  text-decoration: none;
  color: var(--text-color2);
  font-size: 14px;
}

.recent-post-list .rec-post {
  margin-bottom: .5em;

}

.comment-wrap {
  padding: 155px 0 135px 0;
}

.comment-reply-title {
  font-size: 22px;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  color: var(--text-color);
}

.email-notes,
.comment-notes {
  padding-bottom: 1em;
  color: var(--text-color2);
  font-size: 14px;
}

#commentform input[type="email"],
#commentform input[type="text"],
#commentform input[type="url"],
#commentform textarea {
  padding: 12px;
  color: #999;
  line-height: 1em;
  background-color: #eee;
  font-size: 18px;
  border-width: 0;
}

#commentform p {
  padding-bottom: 1em;
  /* color: var(--text-color); */
  font-size: 14px;
}

.form-submit .submit {
  display: inline-block;
  cursor: pointer;
  color: var(--anchore-color);
  font-size: 20px;
  font-weight: 500;
  padding: .3em 1em;
  line-height: 1.7em !important;
  background-color: transparent;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid;
  border-radius: 3px;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all !important;
  transition-property: all !important;
}

.form-submit {
  text-align: right;
}

.form-submit .submit:hover {
  background: rgba(0, 0, 0, .05);
  border: 2px solid transparent;
}

::placeholder {
  color: #a8a8a8;
  /* Your custom color here */
  opacity: 1;
  /* Make sure it’s fully visible */
}

.comment-form-cookies-consent {
  font-size: 14px;
  color: var(--text-color2);
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  position: relative;
}

.comment-form-comment label {
  position: absolute;
  left: 15px;
  top: 6px;
  font-size: 17px;
  color: #8a8a8a;

}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-80%);
  font-size: 17px;
  color: #8a8a8a;

}

.comment-wrap a {
  color: var(--anchore-color) !important;
}

.logged-in-as {
  color: var(--text-color2);
  font-size: 14px;
}

.single .main-content .left-area .entry-content-inner a {
  color: var(--anchore-color);
}

.entry-content-inner.excerpt {
  padding-top: 0;
}

.pagination .page-numbers {
  display: none;
}

.pagination .page-numbers.next {
  display: block;
  color: var(--anchore-color);
}

.post-cont {
  margin-bottom: 60px;
}

.category .entry-title-inner,.entry-title-inner {
  font-size: 49.4px;
}

.title-post-page{
	font-size: 57px;
	font-weight: 400;
}

.rec-post a:hover{
	color: var(--anchore-color);
}

.category .left-area {
  padding-bottom: 23px;
}

.berifings-content {
  padding-bottom: 70px;
}

.ummc-news-pagination .page-numbers {
  display: block;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
}

.ummc-news-pagination .page-numbers li span {
  display: none;
}

.ummc-news-pagination .page-numbers .prev.page-numbers,
.ummc-news-pagination .page-numbers .next.page-numbers {
  display: block !important;
}

.ummc-news-pagination .page-numbers .prev.page-numbers {
  color: var(--anchore-color);
}

/* service page styles start here */
.services-banner-inner {
  width: 90%;
  background-color: #000000;
  padding: 54px 0;
}

.service-banner-heading {
  font-weight: 700;
  font-size: 70px;
  line-height: 0.9em;
  padding: 27px 0 37px 0;
}

.banner-buttons {
  display: flex;
  column-gap: 20px;
  padding: 27px 0;
  flex-wrap: wrap;
  row-gap: 20px;
}

.services-banner-inner .button2 {
  padding: 16px 28px;
}

.page-content-inner {
  padding: 54px 0 0px;
}

.for-sec-padding {
  padding: 27px 0;
}

.for-sec-padding2 {
  padding: 54px 0;
}

.right-img-sec {
  width: 510px;
}

.page-content-inner p {
  padding-bottom: 1em;
  line-height: 2em;
  color: var(--text-color2);
}

.ser-sec-head {
  font-weight: 700;
  font-size: 70px;
  line-height: 0.9em;
  color: #333;
  padding-bottom: 37px;
  margin: 0;
}

.roll-title {
  font-weight: 700;
  font-size: 37px;
  line-height: 1.1em;
  color: var(--text-color);
  padding-bottom: 10px;
}

.roll-text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 2em;
}


.roll-text p {
  padding-bottom: 1em;
}

.col-spacing {
  padding: 40px 0;
  padding-right: 60px;
}

.col-spac-right{
	padding-right: 60px;
}

.col-spacing2 {
  padding-right: 60px;
}

.right-roll-group .roll-text {
  margin-bottom: 20px;
}

.roll-2-sec {
  padding-bottom: 120px;
}

.buisness-page ul li,
.buisness-page p {
  font-size: 14px;
  color: var(--text-color2);
}

.ser2-head {
  font-size: 58px;
	line-height:60px;
}

.ongoing-head {
  font-size: 37px;
}

.col-spacing3 {
  padding-right: 60px;
}

.buisness-page {
  padding-bottom: 0;
}


/* services inner page styles */
.services-each-sec {
  padding-top: 27px;
  padding-bottom: 30px;
}

.services-each-sec img {
  width: 96%;
  margin-left: auto;
  display: block;
}


.services-each-sec1 {
  padding-top: 27px;
  padding-bottom: 10px;
}

.roll_title {
  font-weight: 700;
  font-size: 37px;
  line-height: 1.1em;
  color: var(--text-color);
  padding-bottom: 10px;
  /* font-size: 16px; */
}

.roll-text {
  color: var(--text-color2);
  font-size: 16px;
}

.roll-text p,
.roll-text ul li {
  padding-bottom: 1em;
  color: var(--text-color2);
  font-size: 16px;
}

.roll-text ul {
  margin-left: 20px !important;
}

.roll-text ul li {
  padding-bottom: 0;
}

.image-padding {
  padding-bottom: 50px;
}

.ser-image2 {
  width: 100% !important;
  margin-left: auto;
  display: block;
  max-width: 200%;
}
.ser-image1 {
  width: 100% !important;
  margin-left: auto;
  display: block;
  max-width: 200%;
	/*height:700px;*/
}

.inner-page-btn {
  position: absolute;
  bottom: 0;
  left: -12px;
}

.inner-btn{
	position: absolute;
  bottom: 0;
  left: auto;
}

.roll-text-auto {
  margin: auto 0;
}

.services-each-padding {
  padding-bottom: 220px;
}

.ser2-inner-wrap {
  margin-top: 150px;
}

.default-pos {
  position: relative;
  margin-top: 40px;
  /*margin-left: -50px;*/
}

.p-50 {
  padding-left: 50px;
}

/* resources page style start here */

.resources-padding {
  padding: 81px 0 45px 0;
}

.col-r-p {
  padding-right: 70px;
}

.resource-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 0.9em;
  color: var(--text-color);
  padding-bottom: 10px;
  padding: 27px 0 37px 0;
  margin-bottom: 0 !important;
}

.res-btn {
  margin-top: 30px;
}

.resource-col {
  padding: 27px 0;
}

.resource-padding {
  padding: 45px 0;
}

.resource-padding .resource-col:nth-of-type(2n+1) {
  padding-right: 60px;
}

.entry-title-inner2 {
  font-size: 30px;
  color: var(--text-color);
  padding-bottom: 10px;
  font-weight: 500;
  line-height: 1.1em;
  word-wrap: break-word;
  margin: 0 !important;
}

.tax-Questionnaire a {
  color: var(--anchore-color);
}

.col-r-p2 {
  padding-right: 40px;
}


.Questionnaire {
  overflow: hidden;
}

.Questionnaire img {
  max-width: 119%;
}

.Links-page hr {
  border-top: 1px solid var(--text-color);
  opacity: 1;
}

.Links-page a {
  color: var(--anchore-color);
}

.Links-page h3 {
  color: var(--text-color);
}


/* career page styls start here */
.career-page-inner {
  padding: 54px 0;
}

.career-each-p {
  padding: 27px 0;
}

.col-each-p {
  padding-top: 27px;
  padding-bottom: 27px;
}


.career-title1 {
  font-weight: 700;
  font-size: 37px;
  color: #000000 !important;
  line-height: 0.9em;
  padding-bottom: 10px;
  margin-top: 0;
  line-height: 1.4em;
}

.margin-title {
  margin-bottom: 5.8%;
}

.career-text p,
.career-text {
  padding-bottom: 1em;
  line-height: 2em;
  color: var(--text-color2);
  font-size: 16px;
}

.career-text ul li {
  line-height: 2em;
  color: var(--text-color2);
  font-size: 16px;
}

.col-l-p3 {
  padding-left: 60px;
}

.b4-m {
  margin-top: -6px !important;
}

.for-m {
  margin-left: -72px;
}

.for-t-m {
  margin-top: -11px;
}

.pp-t {
  padding-top: 140px;
}

.career-title2 {
  color: var(--text-color);
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  font-size: 26px;
  margin-top: 0;
}

.career-page-inner a {
  color: var(--anchore-color);
}


/* contact page style start here */
.contact-banner-text {
  color: #fff;
}

.contact-banner-head {
  padding-bottom: 10px;
}

.contact-banner-text {
  padding-bottom: 27px;
	font-size: 14px;
}

.contact-p {
  padding: 81px 0;
}

.contact-head1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.5em;
  color: var(--text-color);
  padding-bottom: 10px;
}

.c-m-b {
  margin-bottom: 7.493%;
}

.contact-text,
.contact-text p {
  line-height: 2em;
  color: var(--text-color2);
  font-size: 14px;
}

/* contact page style start here */
.contact-single {
  padding: 54px 0;
}

.single-page-sec {
  padding: 27px 0;
}

.single-page-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1em;
  color: var(--text-color);
  padding-bottom: 10px;
}

.member-bio,
.member-bio p,
.member-bio ul li {
  color: var(--text-color2);
  font-size: 14px;
}

.member-bio p {
  margin-bottom: 10px;
}

.member-bio ul {
  margin-left: 20px;
}

.member-email,
.member-phone,
.member-position {
  color: var(--text-color2);
}

.contacts-single-page a {
  color: var(--anchore-color);
}

.member-position {
  padding-bottom: 1em;
}

.member-bio {
  margin-top: 5.8%;
}

.sc-p-l {
  padding-left: 30px;
}

.sc-p-r {
  padding-right: 30px;
}

.listing-inner {
  padding: 131px 0;
}

.contact-listing-page a {
  color: var(--anchore-color);
}

.member-link {
  color: var(--anchore-color) !important;
}

.contact-listing-page p,
.contact-listing-page a {
  font-size: 14px;
}

.mb-40 {
  margin-bottom: 40px;
}


/* payment portal page style */
.payment-portal {
  padding-top: 6vw;
  padding-bottom: 6vw;
  position: relative;
}

.payment-form {
  background-color: #eae1d0;
  position: relative;
  padding-top: 40px !important;
  padding-right: 10px !important;
  padding-bottom: 40px !important;
  padding-left: 30px !important;
  margin-bottom: 0px !important;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.t-note-text {
  font-size: 14px;
  color: var(--text-color2);
}

.th-text {
  margin-top: 32px;
}

.payment-portal-form {
  margin-top: 50px;
  /* position: relative; */
}

.payment-portal-form input {
  width: 170px;
}

.payment-portal-form label {
  color: var(--text-color2);
  font-size: 14px;
  margin-bottom: 0;
}

.form-each-row {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  color: var(--text-color2);
  align-items: center;
  padding: 6px 24px;
}

.form-each-row .input-wrapper {
  width: 60%;
}

.form-each-row .form-label {
  width: 40%;
}

.submit-btn {
  font-size: 14px;
  background-color: #e9e9ed !important;
  color: var(--text-color2);
  width: max-content !important;
  padding: 5px !important;
}

.payment-portal-form {
  position: relative;
  height: max-content;
  width: 100%;
}

.form-center-overlay {
  position: absolute;
  height: 80%;
  width: 1px;
  background-color: var(--text-color2);
  /* top: 50%; */
  left: 41%;
  transform: translate(-50%, 0%);
}

.l-row-each {
  border-bottom: 1px solid #fff;
}

.input-wrapper {
  padding-left: 30px;
}

/* styles for contact us form */
.form-label-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color2);
}

.required {
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  padding-inline-start: 0.125em;
  font-style: italic;
}

.contact-in-wrapper {
  width: 50%;
}

.contact-form label {
  font-size: 15px;
  color: var(--text-color2);
  /* margin-bottom: 0 !important; */
}

.contact-form input {
  background-color: #fff;
  border: 1px solid #bbb !important;
  padding: 2px !important;
  color: #4e4e4e;
  font-size: 15px;
  padding: 8px !important;
}

textarea.form-control {
  height: 96px;
}

/* Principles of Our Practice page styles start here */
.princ-page-banner {
  padding: 81px 0;
}


.princ-text {
  font-size: 16px;
  color: var(--text-color2);
  line-height: 2em;
}

.col-l-p1 {
  padding-left: 35px;
}

.princ-p-title {
  padding-bottom: 10px;
  padding-top: 0;
  margin: 0;
}

.b-pos {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  right: -35px;
}

.b-pos * {
  width: max-content;
}

.b-pos-m {
  margin-bottom: -6px;
}

.image-absolute-wrapper2 {
  width: 171%;
  padding-bottom: 170px;
}

.left-bg-layer {
  position: absolute;
  top: 0;
  right: -17%;
  background-color: #000;
  height: 100%;
  width: 186px;
  z-index: 0;
}

.ser-box2 {
  padding-top: 0;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
}

.ser-box2 p {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.principle-ser-sec {
  padding: 54px 0;
}

.diff-sec {
  padding: 81px 0;
}

.text-formate p {
  font-size: 16px;
  color: var(--text-color2);
  line-height: 2em;
}

.rt-mb {
  margin-bottom: 54px;
}

.comm-sec {
  width: 90%;
  margin-left: auto;
}

.commitment-text {
  font-weight: 700;
  line-height: 1.5em;
  font-size: 20px;
  color: var(--text-color);
  padding-bottom: 10px;
}

.commitment-each {
  padding: 70px 30px;
}


/* our leaders style start here */
.each-leader {
  padding: 81px 0;
}

.bio-font,
.bio-font ul li,
.bio-font p {
  font-size: 16px;
  line-height: 2em;
}

.image-leaders {
  background-size: cover;
  background-position: center;
}

.leader-img {
  display: none;
}

.leader-padding {
  padding-bottom: 100px;
}

.entry-content-inner ul li {
  font-size: 14px;
  color: var(--text-color2);
}

.entry-content-inner ul {
  margin-left: 20px;
}


.eci-2 {
  padding-top: 81px;
}


.page-title4 {
  font-family: 'Abril Fatface';
  line-height: 0.9em;
}

.col-image-sec2 {
  overflow: hidden;
  height: 284px;
}

.col-image-sec2 img {
  height: auto;
  max-width: 200%;
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-innertitle2 {
  font-weight: 400;
  text-decoration: underline;
  padding-bottom: 10px;
  font-size: 26px;
  color: var(--text-color);
}

.testi-title {
  font-size: 26px;
  color: var(--text-color);
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 400;
  margin-top: 20px;
}

blockquote {
  margin: 20px 0 30px !important;
  border-left: 5px solid var(--anchore-color);
  padding-left: 20px;
}

blockquote,
q {
  quotes: none;
}

blockquote h5 {
  font-size: 16px;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  color: var(--text-color);
}

blockquote p {
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: var(--text-color2);
}

.liti-title{
  font-family: 'Abril Fatface',display;
  font-size: 38px;
  line-height: 1.1em;
  font-weight: 500;
}

.entry-content2 p{
  color: var(--text-color2);
  font-size: 14px;
}


.b-pos2{
  right: -59px;
}

.ser1-inner-wrapd-flex{
	display: flex;
}

.c-it-text{
	font-size: 22px;
}

.illi-baner-title{
	font-size: 110px;
	font-family: 'Abril Fatface';
	font-weight: 500;
}