@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-25: 25px;
  --font-32: 32px;
  --font-30: 30px;
  --font-48: 48px;
  --font-50: 50px;
  --font-77: 77px;
  --pad-55: 55px;
  --pad-70: 70px;
}

@media (max-width: 991px) {
  :root {
    --font-25: 22px;
    --font-30: 27px;
    --font-32: 30px;
    --font-48: 42px;
    --font-50: 45px;
    --font-77: 70px;
    --pad-55: 50px;
    --pad-70: 65px;
  }
}
@media (max-width: 767px) {
  :root {
    --font-30: 22px;
    --font-32: 25px;
    --font-48: 35px;
    --font-50: 40px;
    --font-77: 55px;
    --pad-55: 45px;
    --pad-70: 60px;
  }
}
@media (max-width: 575px) {
  :root {
    --font-50: 35px;
    --font-77: 50px;
  }
}
@media (min-width: 1400px) {
  .cust-container {
    width: 90%;
    max-width: 1520px;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px;
  }
}
@media (max-width: 991px) {
  .gx-5 {
    --bs-gutter-x: 1.5rem;
  }
}
.smContainer {
  max-width: 1150px;
  margin: auto;
}

b,
strong {
  font-weight: 700;
}

body {
  font-size: var(--font-16);
  font-family: "Poppins", serif;
  font-weight: 400;
  color: #272727;
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #3a67f8;
}
a:hover {
  color: #2c2c2c;
}

a:not([class]) {
  position: relative;
}
a:not([class])::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
  background-color: currentColor;
}
a:not([class]):hover::before {
  width: 100%;
  background-color: currentColor;
}

p {
  margin-bottom: 15px;
}

.primary-btn {
  background-color: #8b6943;
  color: #fff;
  padding: 12px 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border: none;
  border: solid 3px #8b6943;
}
.primary-btn:hover {
  background-color: #fff;
  color: #8b6943;
  box-shadow: 0 0 5px #8b6943;
}

.panel-top {
  padding-top: var(--pad-70);
}

.panel-bottom {
  padding-bottom: var(--pad-70);
}

.panel-bg {
  padding-top: var(--pad-70);
  padding-bottom: var(--pad-70);
}

.panel-sm {
  padding-top: var(--pad-55);
  padding-bottom: var(--pad-55);
}

.custFlex {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
}

h1,
.h1 {
  font-weight: 300;
  font-size: var(--font-77);
  line-height: 1.1;
}

h2,
.h2 {
  font-weight: 300;
  font-size: var(--font-48);
  line-height: 1.1;
  margin-bottom: 35px;
}

h3,
.h3 {
  font-weight: 300;
  font-size: var(--font-32);
  line-height: 1.3;
  margin-bottom: 40px;
  color: #8b6943;
  font-weight: 500;
}

h4,
.h4 {
  font-weight: 500;
  font-size: var(--font-25);
  line-height: 1.2;
  margin-bottom: 10px;
}

.mainHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .mainHeader {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.mainNav {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media (max-width: 1200px) {
  .mainNav {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.mainNav li {
  list-style-type: none;
  font-size: var(--font-18);
  font-weight: 700;
  text-transform: uppercase;
}
.mainNav li a {
  color: #8b6943;
}
.mainNav li a:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.mainNav li a[aria-current=page] {
  color: #2c2c2c;
}

@media (max-width: 991px) {
  .toggler {
    font-size: 25px;
    padding: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .toggler:hover {
    color: #fff;
    background-color: #8b6943;
  }
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .close:hover {
    color: #8b6943;
  }
  .mainNavDiv {
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    overflow-x: scroll;
    z-index: 5;
    background: #fff;
    padding-top: 60px;
    transition: all 0.3s ease-in-out;
  }
  .mainNavDiv .mainNav {
    display: block;
  }
  .mainNavDiv .mainNav li a {
    width: 100%;
    display: inline-block;
    padding: 15px 20px;
  }
  .mainNavDiv .mainNav li a:hover {
    color: #fff;
    background-color: #8b6943;
  }
  .mainNavDiv .mainNav li a::before {
    display: none;
  }
  .mainNavDiv.active {
    right: 0;
    box-shadow: 0 0 10px 0px #2c2c2c;
  }
}
.mainFoot {
  background-color: #4c4222;
}

.mainFootFlex {
  color: #fff;
  line-height: 1.8;
}
.mainFootFlex a {
  color: #fff;
  position: relative;
}
.mainFootFlex a:hover {
  color: #9d9d9d;
}
.mainFootFlex ul {
  margin: 0;
  padding: 0;
}
.mainFootFlex ul li {
  list-style-type: none;
}
.mainFootFlex .footerMenu {
  text-transform: uppercase;
}
.mainFootFlex .column {
  max-width: 400px;
  width: 400px;
}
@media (max-width: 1199px) {
  .mainFootFlex .column {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .mainFootFlex .column {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .mainFootFlex .column .logoTxt {
    text-align: left;
  }
}

.copyRight {
  background-color: #2d2816;
  color: #bbbbbb;
  text-align: center;
  font-size: var(--font-14);
  padding: 20px 0;
}
.copyRight p {
  margin: 0;
}

.banFlex, .banFlexAttr {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  gap: 35px;
  flex-direction: column;
}

.banFlexAttr {
  gap: 0px;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(98, 85, 44, 0.6), transparent);
  mix-blend-mode: multiply;
}
.banner .banContent {
  position: relative;
  z-index: 1;
}
.banner h1,
.banner p {
  margin: 0;
}
.banner .subHead {
  font-size: var(--font-50);
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 20px;
}
.banner .banCont {
  font-size: var(--font-30);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

.homeBan {
  min-height: 75vh;
}

.innBan {
  min-height: 40vh;
}

input:not([type=submit]),
select,
textarea {
  width: 100%;
  border: none;
  background-color: #fff;
  margin-bottom: 15px;
  padding: 12px 32px;
  border-bottom: solid 1px #9d9d9d;
}
input:not([type=submit]):focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #272727;
}

textarea {
  resize: none;
}

.cntFrm {
  max-width: 700px;
  margin: auto;
  background-color: #bbbbbb;
  padding: 35px;
  text-align: center;
}
.cntFrm .wpcf7-spinner {
  display: none;
}

.arcList {
  margin: 0;
  padding: 0;
}
.arcList li {
  list-style-type: none;
  position: relative;
  padding-left: 30px;
}
.arcList li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 0;
  font-size: var(--font-20);
}

.listingLink {
  display: block;
  font-size: var(--font-32);
  font-weight: 600;
  margin-bottom: 10px;
  color: #8b6943;
}

.singleHeadBox {
  margin-bottom: 30px;
}
.singleHeadBox > div {
  display: flex;
  justify-content: start;
  align-items: start;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  gap: 40px;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .singleHeadBox > div {
    flex-direction: column;
  }
  .singleHeadBox > div figure {
    margin: auto;
  }
}
.singleHeadBox h2 {
  margin-bottom: 10px;
  font-weight: 600;
}
.singleHeadBox h6 {
  font-size: var(--font-20);
}
.singleHeadBox img {
  min-width: 140px;
}

.attrDetails p {
  margin-bottom: 0;
}

.attrItem {
  padding-bottom: 30px;
}

.attrBioDesc {
  margin-left: 90px;
  display: none;
}

.attrArrow {
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}
.attrArrow .attrIco {
  transition: all 0.3s ease-in-out;
}
.attrArrow:hover {
  color: #3a67f8;
}
.attrArrow.active {
  color: #3a67f8;
}
.attrArrow.active .attrIco {
  transform: rotate(90deg);
}

.attorney-list {
  margin: 0;
  padding: 0;
  -moz-column-count: 5;
       column-count: 5;
}
@media (max-width: 991px) {
  .attorney-list {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 767px) {
  .attorney-list {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 575px) {
  .attorney-list {
    -moz-column-count: 1;
         column-count: 1;
    text-align: center;
  }
}
.attorney-list li {
  list-style-type: none;
  font-weight: 300;
  margin-bottom: 5px;
}

.attorney-link.disabled {
  pointer-events: none;
  color: #9d9d9d;
}

.pagination {
  margin-top: 50px;
  justify-content: center;
}

.page-numbers {
  font-weight: 700;
  display: inline-block;
  text-align: center;
  width: 40px;
  line-height: 40px;
  padding: 0 10px;
  background-color: #9d9d9d;
  color: #4b4121;
}
.page-numbers:hover {
  background-color: #4b4121;
  color: #fff;
}
.page-numbers.current {
  background-color: #4b4121;
  color: #9d9d9d;
}
.page-numbers.current:hover {
  background-color: #4b4121;
  color: #9d9d9d;
}

.breadcrumb {
  margin-bottom: 40px;
  font-size: var(--font-20);
  color: #4b4121;
}
.breadcrumb a {
  text-transform: uppercase;
  margin-right: 10px;
  margin-left: 10px;
}
.breadcrumb a:first-child {
  margin-left: 0;
}
.breadcrumb .prsItem {
  font-weight: 700;
  margin-left: 10px;
}

#af-wrapper {
  font-family: "Poppins", sans-serif !important;
}

#af-wrapper a::before {
  display: none !important;
}

#af-wrapper #forum-header {
  background-color: #8b6943 !important;
}

#af-wrapper #profile-header {
  border-color: #2d2816 !important;
}

#af-wrapper #forum-navigation a {
  border-left-color: #2d2816 !important;
}

#af-wrapper .title-element {
  background-color: #8b6943 !important;
  border-bottom-color: #2d2816 !important;
}

#af-wrapper .main-title {
  font-size: var(--font-25) !important;
  color: #2c2c2c !important;
}

#af-wrapper .title-element {
  font-size: var(--font-16) !important;
}

#af-wrapper a {
  color: #3a67f8 !important;
}

#af-wrapper #read-unread .unread {
  background-color: #3a67f8 !important;
}

#af-wrapper #profile-navigation a.active {
  background-color: #2d2816 !important;
}

#af-wrapper #profile-navigation {
  background-color: #8b6943 !important;
}

#af-wrapper .user-online .avatar {
  box-shadow: 0px 0px 5px #8b6943 !important;
  border: 1px solid #8b6943 !important;
}

#af-wrapper .button-normal {
  background-color: #8b6943 !important;
  color: #fff !important;
  border: solid 2px #8b6943;
}
#af-wrapper .button-normal:hover {
  background-color: #fff !important;
  color: #8b6943 !important;
  box-shadow: 0 0 3px #8b6943;
}

#af-wrapper .button-red {
  color: #fff !important;
}
#af-wrapper .button-red:hover {
  box-shadow: 0 0 2px #f91111;
}

#af-wrapper .button-neutral {
  background-color: rgba(58, 103, 248, 0.5) !important;
  color: #fff !important;
}
#af-wrapper .button-neutral:hover {
  background-color: #3a67f8 !important;
  box-shadow: 0 0 2px #3a67f8;
}

#af-wrapper #bottom-navigation {
  color: #3a67f8 !important;
}

#af-wrapper .notices-panel {
  background-color: #fafafa !important;
  border: 1px solid #eee !important;
  color: #8b6943 !important;
}

#af-wrapper .notices-panel .notice a {
  color: #8b6943 !important;
}

.backArc {
  margin-top: var(--pad-55);
  text-align: right;
  font-size: var(--font-20);
}
.backArc .arrow {
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}
.backArc .linkArc:hover .arrow {
  margin-right: 15px;
}/*# sourceMappingURL=style.css.map */