/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #fff;
  overflow-x: hidden;
}

p {
  font-family: "Roboto Condensed", sans-serif;
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  color: var(--Charcoal, #333);
  font-family: "Bebas Neue";
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 2.5rem;
  color: var(--Pine-Green, #2e4a3b);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.75rem;
  display: inline-block;
  position: relative;
  padding: 0 3.4375rem;
}
h2:before {
  content: "";
  width: 2.625rem;
  height: 0.625rem;
  background: url(../images/heading-left.png) no-repeat 0 0;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
}
h2:after {
  content: "";
  width: 2.625rem;
  height: 0.625rem;
  background: url(../images/heading-right.png) no-repeat 0 0;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
}
h2.otherAdjust {
  text-align: left;
}
h2.otherAdjust::before {
  top: 0.375rem;
  transform: translateY(0px);
}
h2.otherAdjust::after {
  content: "";
  display: inline-block;
  inset: 0;
  position: relative;
  margin-top: auto;
  transform: translateY(0px);
  margin-left: 0.5rem;
}

h3 {
  padding: 0;
  margin: 0;
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2.5rem;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  color: var(--Charcoal, #333);
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h5 {
  margin: 0;
  padding: 0;
  color: var(--Soft-White, #fff);
  font-family: "Bebas Neue";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.875rem;
}

h6 {
  margin: 0;
  padding: 0;
  color: #b7b7b7;
  font-family: "Bebas Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.8438rem 1.25rem;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--Soft-White, #fff);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  justify-content: center;
  align-items: center;
  background: var(--Barn-Red, #c14c26);
  border-radius: 0;
  border: 0.0625rem solid var(--Barn-Red, rgba(193, 77, 38, 0));
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  background: var(--Pine-Green, #2e4a3b);
  color: white;
}
.btn.withborder {
  background-color: transparent;
  border: 0.0625rem solid var(--Barn-Red, #c14c26);
  color: var(--Barn-Red, #c14c26);
}
.btn.withborder:hover {
  background: var(--Pine-Green, #2e4a3b);
  border-color: var(--Pine-Green, #2e4a3b);
  color: var(--Soft-White, #fff);
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]):not([type=radio]):not([type=checkbox]),
select {
  display: block;
  width: 100%;
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 0.75rem;
  border: none;
  border-bottom: 0.0625rem solid #bfbfbf;
  background-color: white;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

select {
  background: #fff url(../images/select-arrow-down.svg) no-repeat right 0.625rem center !important;
}

textarea {
  height: 4.75rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background-color: white;
  margin-bottom: 0;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: white;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/downarrow.svg) no-repeat right center;
  cursor: pointer;
}

select:focus {
  border: none;
  outline: none;
  background-color: #fff;
  border-bottom: 0.0625rem solid #bfbfbf;
}

select option {
  color: #1d1d1d;
  font-size: 0.875rem;
  font-weight: 400;
}

label {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: start;
  gap: 0.5rem;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.0625rem solid #bbc4cd;
  padding: 0.6875rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 0.375rem;
  font-size: 0.8125rem;
  top: 0.0625rem;
  color: #121212;
}

.sectiondefaultspacing {
  padding: 6.25rem 0;
  background-color: white;
  position: relative;
}

.mainhd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: white;
}
.mainhd .headerrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainhd .headerrow .logo {
  max-width: 5.25rem;
  width: 100%;
  flex-shrink: 0;
  padding: 0.2813rem 0;
}
.mainhd .headerrow .logo img {
  width: 100%;
  aspect-ratio: 84/89;
}
.mainhd .headerrow .contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.mainhd .headerrow .contact .flagsearch {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.mainhd .headerrow .contact .flagsearch img {
  width: 1.875rem;
}
.mainhd .headerrow .contact .flagsearch select {
  border: none;
  padding-right: 1.25rem;
}
.mainhd .headerrow .navigation ul li a {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding: 2.4688rem 0.625rem;
  text-decoration: none;
}
.mainhd .headerrow .navigation ul li a:before {
  content: "";
  position: absolute;
  height: 0.25rem;
  background-color: #c14c26;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.mainhd .headerrow .navigation ul li.active a:before, .mainhd .headerrow .navigation ul li:hover a:before {
  opacity: 1;
}

.banner {
  position: sticky;
  top: 0;
  height: 100dvh;
  z-index: 1;
}
.banner > img {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner h1 {
  margin-bottom: 0.3125rem;
}
.banner .bannertext {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.banner .bannertext .bannertext-inner {
  margin-top: 10.625rem;
}
.banner .bannertext .bannertext-inner p {
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}
.banner .bannertext .bannertext-inner .btnsec {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefits {
  text-align: center;
  position: relative;
}
.benefits .benefitsbx {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  position: relative;
  border-radius: 1.125rem;
  border: 0.0625rem solid #ede4d1;
  background: var(--Cream-beige, #f5efe2);
  box-shadow: 0.375rem 0.4375rem 0.8938rem 0 rgba(185, 173, 149, 0.14);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.benefits .benefitsbx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/card-bg.png) no-repeat 0 0;
  background-size: cover;
}
.benefits .benefitsbx .icon,
.benefits .benefitsbx .text {
  position: relative;
  z-index: 1;
}
.benefits .benefitsbx .icon {
  max-width: 6rem;
  width: 100%;
  margin: 0 auto;
}
.benefits .benefitsbx .icon img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  transition: all 0.3s ease-in-out;
}
.benefits .benefitsbx .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}
.benefits .benefitsbx .text h4 {
  transition: all 0.3s ease-in-out;
}
.benefits .benefitsbx .text p {
  margin-bottom: 5rem;
  transition: all 0.3s ease-in-out;
  line-height: 1.5rem;
}
.benefits .benefitsbx .text a {
  color: var(--Primary, #c14c26);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 1.5rem */
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
}
.benefits .benefitsbx .text a img {
  width: 1.4rem;
  transition: all 0.3s ease-in-out;
}
.benefits .benefitsbx:hover {
  border-radius: 1.125rem;
  background: var(--Barn-Red, #c14c26);
  box-shadow: 0.3125rem 0.3125rem 0.9688rem 0 rgba(63, 53, 49, 0.36);
}
.benefits .benefitsbx:hover .icon img {
  filter: brightness(0) invert(1);
}
.benefits .benefitsbx:hover .text h4,
.benefits .benefitsbx:hover .text p,
.benefits .benefitsbx:hover .text a {
  color: white;
}
.benefits .benefitsbx:hover .text h4 img,
.benefits .benefitsbx:hover .text p img,
.benefits .benefitsbx:hover .text a img {
  filter: brightness(0) invert(1);
}

.shortprocess {
  padding: 5rem 0;
  background: var(--Cream-Beige, #f5efe2);
  min-height: 40.625rem;
}
.shortprocess .img {
  position: absolute;
  max-width: 47.125rem;
  top: 50%;
  transform: translateY(-45%);
}
.shortprocess .img img {
  width: 100%;
}
.shortprocess .text ul {
  display: flex;
  flex-direction: column;
  counter-reset: my-sec-counter;
}
.shortprocess .text ul li {
  position: relative;
  padding-left: 3.375rem;
  padding-bottom: 2.1875rem;
}
.shortprocess .text ul li:first-child:after {
  top: 2.5rem;
}
.shortprocess .text ul li:last-child {
  padding-bottom: 0;
}
.shortprocess .text ul li::before {
  content: "";
  background: url(../images/check.png) no-repeat bottom left;
  background-size: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  position: absolute;
  left: -0.625rem;
  top: 1.3125rem;
  z-index: 1;
  border: 0.625rem solid var(--Cream-Beige, #f5efe2);
}
.shortprocess .text ul li:after {
  content: "";
  position: absolute;
  background: url(../images/line.png) repeat-y;
  top: 0;
  bottom: 0;
  left: 0.625rem;
  z-index: 0;
  width: 0.125rem;
  left: 0.6875rem;
}
.shortprocess .text ul li h4 {
  font-family: "Roboto Condensed";
  margin-bottom: 0;
}
.shortprocess .text ul li h6 {
  margin-bottom: 0.3125rem;
}
.shortprocess .text ul li h6::after {
  margin-left: 0.3125rem;
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
}

.about-us {
  min-height: 49.5625rem;
}
.about-us .text .storymissonrow {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
  align-self: stretch;
  margin-bottom: 3rem;
}
.about-us .text .storymissonrow .storymissoninner {
  width: 50%;
}
.about-us .text .storymissonrow .storymissoninner h4 {
  margin-bottom: 0.5rem;
}
.about-us .text .homeownership {
  margin-bottom: 3rem;
}
.about-us .text .homeownership h4 {
  margin-bottom: 0.5rem;
}
.iconsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.iconsrow .icons {
  display: flex;
  width: 6.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}
.iconsrow .icons .iconsinner {
  display: flex;
  height: 3rem;
  padding: 0.75rem 0.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 1.5rem;
  background: var(--Cream-Beige, #f5efe2);
}
.iconsrow .icons .iconsinner img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
.iconsrow .icons h6 {
  color: #000;
  font-family: "Roboto Condensed";
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.gettouch {
  position: relative;
  background: url(../images/get-touch.jpg) no-repeat center center;
  background-size: cover !important;
  padding: 2.5rem 0;
}
.gettouch:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #fff 3.74%, rgba(255, 255, 255, 0) 147.38%);
}
.gettouch .container {
  position: relative;
  z-index: 1;
}
.gettouch .container h2 {
  margin-bottom: 0.625rem;
}
.gettouch .container p {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 0.9938rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 2rem;
}
.gettouch .container .text {
  margin-top: 10rem;
}
.gettouch .container .contacts {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.gettouch .container .contacts .contacts-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gettouch .container .contacts .contacts-inner .icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: var(--Barn-Red, #c14c26);
}
.gettouch .container .contacts .contacts-inner .icon img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.gettouch .container .contacts .contacts-inner .ic-text h6 {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  /* 114.286% */
  margin-bottom: 0.25rem;
}
.gettouch .container .contacts .contacts-inner .ic-text p {
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  /* 100% */
  margin-bottom: 0;
}
.gettouch .container .contacts .contacts-inner .ic-text p a {
  color: var(--Sceondary-02, #432818);
}

.formarea {
  display: flex;
  padding: 2.5rem 3rem;
  flex-direction: column;
  align-items: flex-start;
  border: 0.0625rem solid #d9d9d9;
  background: var(--Soft-White, #fff);
}
.formarea .forminner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.formarea .forminner .formrow {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.formarea .forminner .formrow .inputcontainer {
  width: 100%;
}
.formarea .forminner .formrow .inputcontainer.w-50 {
  width: 50%;
}
.formarea .forminner .formrow label {
  margin: 0 0 0.5rem;
}
.formarea .forminner .formrow input[type=checkbox] {
  flex: 1 0 1rem;
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid black;
  padding: 0;
  position: relative;
  top: 0.125rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.formarea .forminner .formrow input[type=checkbox]:checked:after {
  content: "";
  background: url(../images/checkbox-icon.png) no-repeat 0 0;
  width: 1.25rem;
  height: 1.0625rem;
  position: absolute;
  top: -0.25rem;
}
.formarea .forminner .formrow .consent {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.formarea .forminner .formrow .consent label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
  cursor: pointer;
  margin: 0 0 0.5rem;
}

.mainft {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 3.3125rem;
}
.mainft p {
  font-weight: 300 !important;
}
.mainft:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 74, 59, 0.9) 0%, rgba(46, 74, 59, 0.9) 100%);
}
.mainft .ft-top {
  z-index: 1;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
.mainft .ft-top .ft-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
}
.mainft .ft-top .ft-row:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.875rem;
  height: 0.0625rem;
  background-color: var(--Soft-White, rgba(255, 255, 255, 0.3));
}
.mainft .ft-top .ft-row .ftbx.mxw306 {
  max-width: 19.125rem;
  width: 100%;
}
.mainft .ft-top .ft-row .ftbx.mxw114 {
  max-width: 7.125rem;
  width: 100%;
}
.mainft .ft-top .ft-row .ftbx .ftlogo {
  width: 9.103rem;
  flex-shrink: 0;
  margin-bottom: 1.875rem;
}
.mainft .ft-top .ft-row .ftbx .ftlogo img {
  width: 100%;
}
.mainft .ft-top .ft-row .ftbx .ftlogo + p {
  color: var(--Soft-White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}
.mainft .ft-top .ft-row .ftbx ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.mainft .ft-top .ft-row .ftbx ul li a,
.mainft .ft-top .ft-row .ftbx ul li span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: stretch;
  color: var(--Soft-White, #fff);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mainft .ft-top .ft-row .ftbx ul li a img,
.mainft .ft-top .ft-row .ftbx ul li span img {
  width: 1rem;
}
.mainft .ft-top .ft-row .ftbx .fttext p {
  color: var(--Cream-Beige, #f5efe2);
  font-family: "Roboto Condensed";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer {
  margin-bottom: 1rem;
  position: relative;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer input[type=email] {
  padding: 1rem;
  border: 0.0625rem solid var(--Soft-White, #fff);
  color: var(--Cream-Beige, #f5efe2);
  font-family: "Roboto Condensed";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background-color: transparent;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer input[type=email]::-moz-placeholder {
  color: white;
  opacity: 1;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer input[type=email]::placeholder {
  color: white;
  opacity: 1;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer input[type=submit] {
  display: flex;
  width: 3rem;
  padding: 0.25rem;
  justify-content: center;
  align-items: center;
  background: #fff url(../images/emailsend.png) no-repeat center center;
  background-size: 1.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: none;
  height: 3.1875rem;
  font-size: 0;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer .wpcf7-not-valid-tip {
  margin: 0.9375rem 0;
}
.mainft .ft-top .ft-row .ftbx .emailcontainer .wpcf7-response-output {
  margin: 0 !important;
  color: #fff;
  padding: 10px !important;
  font-size: 14px;
}
.mainft .ft-bot {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mainft .ft-bot p {
  color: var(--Soft-White, #fff);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}

.backtoptop {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  background-color: white;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 999;
}
.backtoptop.show {
  opacity: 1;
  visibility: visible;
}
.backtoptop img {
  height: 1.5rem;
}

.chatbot {
  display: flex;
  height: 3.75rem;
  padding: 0.625rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  background: var(--Cream-Beige, #f5efe2);
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 5.625rem;
  right: 1.25rem;
  z-index: 11;
}
.chatbot img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}

.contact-navigation-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1.25rem;
}

.stellarnav ul {
  gap: 0.925rem;
}

section.innerBanner {
  position: relative;
  width: 100%;
  height: 18.75rem;
  z-index: 1;
}
section.innerBanner img.banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: relative;
  z-index: -1;
}
section.innerBanner::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(46, 74, 59, 0.9) 0%, rgba(46, 74, 59, 0.9) 100%);
  z-index: 1;
}
section.innerBanner .bannerTxt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 4rem;
  z-index: 2;
  text-align: center;
}
section.innerBanner .bannerTxt h1 {
  color: var(--Soft-White, #fff);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.1875rem;
}
section.innerBanner .bannerTxt .breadCrumb ul {
  display: flex;
  justify-content: center;
}
section.innerBanner .bannerTxt .breadCrumb ul li {
  color: #fff;
  text-align: center;
  color: var(--Soft-White, #fff);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.innerBanner .bannerTxt .breadCrumb ul li a {
  font-weight: 600;
  color: #fff;
}
section.innerBanner .bannerTxt .breadCrumb ul li a:hover {
  color: #c14c26;
}
section.innerBanner .bannerTxt .breadCrumb ul li + li::before {
  content: "";
  color: #fff;
  display: inline-block;
  width: 0.8125rem;
  height: 0.9375rem;
  background: url(../images/arrow_breadcrumb.png) no-repeat;
  background-size: contain;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  top: 0.0813rem;
  position: relative;
}

section.about-us.otherPg1 {
  min-height: auto;
}
section.about-us.otherPg1 h2 {
  max-width: 30.875rem;
}
section.about-us.otherPg1 p {
  max-width: 33.125rem;
  margin: 0 0 2.5rem;
}
section.about-us.otherPg1 p:first-of-type {
  margin: 0 0 0.9375rem;
}

section.abtSec2 {
  position: relative;
  padding: 3.75rem 0;
  background: var(--Cream-Beige, #f5efe2);
  z-index: 1;
}
section.abtSec2 .grp_txt_mid {
  width: 100%;
  max-width: 26.125rem;
  margin: auto;
}
section.abtSec2 .grp_txt_mid h3 {
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.5rem;
}
section.abtSec2 .bg_txt::before {
  content: " ";
  position: absolute;
  width: calc(150% + 0.975rem);
  left: -100vw;
  height: 100%;
  background: url(../images/repeat_bg_pattern.png);
  z-index: -1;
  top: 0;
}
section.abtSec2 .bg_txt h3,
section.abtSec2 .bg_txt p {
  color: #fff;
}

section.abtSec3 {
  position: relative;
  min-height: 50rem;
  text-align: center;
  z-index: unset;
  background-color: transparent;
}
section.abtSec3::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 35.81%, #fff 90.35%);
  left: 0;
  top: 0;
  z-index: -1;
}
section.abtSec3 img.new_house {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -2;
  inset: 0;
}
section.abtSec3 .heading_adjust h2 {
  margin: 0 0 1rem;
}
section.abtSec3 .heading_adjust p {
  margin: 0 0 1.5rem;
}
section.abtSec3 .iconsrow {
  max-width: 40.125rem;
  margin: 0 auto;
}

section.about-us.hw_wrk_sec1 .text {
  margin-top: 4.875rem;
}
section.about-us.hw_wrk_sec1 h2 {
  max-width: 36rem;
}
section.about-us.hw_wrk_sec1 p + .btn {
  margin-top: 2.0625rem;
}

section.hw_wrk_sec2 h2 {
  margin: 0 0 1rem;
}
section.hw_wrk_sec2 .btn_adjust {
  margin-top: 3rem;
  text-align: right;
}
section.hw_wrk_sec2 .hw_work {
  width: 100%;
  margin-top: 0.4375rem;
}
section.hw_wrk_sec2 .hw_work img {
  width: 100%;
}
section.hw_wrk_sec2 ul.list_counter {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  counter-reset: section;
}
section.hw_wrk_sec2 ul.list_counter li {
  counter-increment: section;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter {
  position: relative;
  padding: 2.25rem 3.15rem 2.5125rem 7rem;
  border-radius: 0.625rem;
  background: var(--Cream-Beige, #f5efe2) url(../images/dots_bx.svg) no-repeat;
  background-position: left 1.375rem bottom 1.75rem;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .counterNumber {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border-right: 0.5625rem solid #fff;
  border-bottom: 0.5625rem solid #fff;
  border-radius: 0 0 0.9375rem 0;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .counterNumber::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../images/cruve_bx.png);
  top: 0;
  right: -1.1875rem;
  z-index: 1;
  transform: rotate(180deg);
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .counterNumber::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../images/cruve_bx.png);
  bottom: -1.1875rem;
  left: 0;
  transform: rotate(181deg);
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .counterNumber span {
  position: relative;
  display: flex;
  width: 4.5625rem;
  height: 4.5625rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  background: #f0ddce;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .counterNumber span::before {
  position: relative;
  content: counter(section, decimal-leading-zero);
  display: inline-block;
  color: var(--Soft-White, #fff);
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.55rem;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .arrowAbs {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5625rem 0 0 0.5625rem;
  background: #fff;
  border-radius: 0.625rem 0 0 0;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .arrowAbs a.arrow_button {
  position: relative;
  display: flex;
  width: 6.4375rem;
  padding: 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: var(--Pine-Green, #2e4a3b);
  padding: 0.625rem;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .arrowAbs a.arrow_button::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../images/cruve_bx.png);
  top: -1.1875rem;
  right: 0;
}
section.hw_wrk_sec2 ul.list_counter li .groupCounter .arrowAbs a.arrow_button::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../images/cruve_bx.png);
  bottom: 0;
  left: -1.1875rem;
}

section.hw_wrk_sec3 .roundBx_hw {
  position: relative;
  border-radius: 1.875rem;
  background: #f5efe2;
  z-index: 1;
  padding: 5rem 7.1875rem;
  overflow: hidden;
}
section.hw_wrk_sec3 .roundBx_hw::before {
  content: " ";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(270deg, rgba(245, 239, 226, 0) 21.46%, var(--Cream-Beige, #f5efe2) 38.06%);
}
section.hw_wrk_sec3 .roundBx_hw .bg_img {
  width: 36.0625rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
section.hw_wrk_sec3 .roundBx_hw .bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 3.125rem center;
     object-position: 3.125rem center;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw h2 {
  margin: 0 0 2.4875rem;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx {
  display: flex;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li {
  position: relative;
  margin-left: 3.2344rem;
  margin-right: 3.2344rem;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li:first-of-type {
  margin-left: 0;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li:last-of-type {
  margin-right: 0;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li:last-of-type::after {
  display: none;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li::after {
  content: " ";
  position: absolute;
  width: 0.0625rem;
  height: 3.875rem;
  right: -3.2344rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #b8b8b8;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li .hwWrk {
  width: 9.0625rem;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx li .hwWrk .wrkIcon {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem 0.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.5rem;
  background: var(--Soft-White, #fff);
  margin: 0 0 1rem;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx.twoColummns li {
  margin-left: 5.5rem;
  margin-right: 5.5rem;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx.twoColummns li:first-of-type {
  margin-left: 0;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx.twoColummns li:last-of-type {
  margin-right: 0;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx.twoColummns li:last-of-type::after {
  display: none;
}
section.hw_wrk_sec3 .roundBx_hw .innerTxtHw ul.eachBx.twoColummns li::after {
  right: -5.5rem;
}

section.ourWrkSec2 {
  overflow: hidden;
}
section.ourWrkSec2 .headingAdjustFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 3rem;
}
section.ourWrkSec2 .headingAdjustFlex h2 {
  margin: 0;
}
section.ourWrkSec2 .headingAdjustFlex .filter-buttons {
  display: flex;
  padding: 0.625rem;
  align-items: center;
  gap: 0.625rem;
  background: var(--Cream-Beige, #f5efe2);
}
section.ourWrkSec2 .headingAdjustFlex .filter-buttons a.filter-button {
  display: flex;
  padding: 0.4375rem 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.ourWrkSec2 .headingAdjustFlex .filter-buttons a.filter-button.is-checked {
  background: var(--Barn-Red, #c14c26);
  color: #fff;
}
section.ourWrkSec2 .eachGallary {
  width: 100%;
  margin: 0 0 1.75rem;
}
section.ourWrkSec2 .eachGallary a {
  display: block;
  width: 100%;
  height: 100%;
}
section.ourWrkSec2 .eachGallary a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.ourWrkSec2 .bottom_btn {
  text-align: center;
  margin-top: 0.9375rem;
}

section.hw_wrk_sec3 .contacts-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section.hw_wrk_sec3 .contacts-inner .icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: var(--Barn-Red, #c14c26);
}
section.hw_wrk_sec3 .contacts-inner .icon img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
section.hw_wrk_sec3 .contacts-inner .ic-text h6 {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  /* 114.286% */
  margin-bottom: 0.25rem;
}
section.hw_wrk_sec3 .contacts-inner .ic-text p {
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  /* 100% */
  margin-bottom: 0;
}
section.hw_wrk_sec3 .contacts-inner .ic-text p a {
  color: var(--Sceondary-02, #432818);
}

section.hw_wrk_sec3.cntSec2 .roundBx_hw {
  padding-bottom: 8.1875rem;
}

section.serSec1 {
  counter-reset: counters;
}
section.serSec1 .row [class*=col-]:nth-child(1) {
  order: 2;
  text-align: center;
}
section.serSec1 .row [class*=col-]:nth-child(2) {
  order: 1;
}
section.serSec1 .row [class*=col-]:nth-child(3) {
  order: 3;
}
section.serSec1 .groupCircle_services {
  position: relative;
  width: 40.125rem;
  height: 40.125rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin: auto;
}
section.serSec1 .groupCircle_services::before {
  content: " ";
  position: absolute;
  left: 0;
  height: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.0625rem solid var(--Barn-Red, #c14c26);
  background: var(--Cream-Beige, #f5efe2);
  opacity: 0.3;
  z-index: -1;
}
section.serSec1 .groupCircle_services::after {
  content: " ";
  position: absolute;
  left: 0;
  height: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.0625rem solid var(--Barn-Red, #c14c26);
  background: var(--Cream-Beige, #f5efe2);
  opacity: 0.4;
  z-index: -1;
  transform: scale(0.77881);
}
section.serSec1 .groupCircle_services [class*=eachImg] {
  position: absolute;
}
section.serSec1 .groupCircle_services img.mainHouse {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: -3.75rem;
}
section.serSec1 .groupCircle_services img.eachImg1 {
  width: 6.375rem;
  height: 4.75rem;
  flex-shrink: 0;
  aspect-ratio: 51/38;
  border-radius: 7.5rem;
  border: 0.0625rem solid var(--Cream-Beige, #f5efe2);
  overflow: hidden;
  background: #fff;
  left: 2.6875rem;
  top: 3.8125rem;
}
section.serSec1 .groupCircle_services img.eachImg2 {
  width: 3.875rem;
  height: 3.125rem;
  flex-shrink: 0;
  aspect-ratio: 31/25;
  border-radius: 6.875rem;
  border: 0.0625rem solid var(--Cream-Beige, #f5efe2);
  background: #fff;
  top: 7.375rem;
  right: 2.0625rem;
}
section.serSec1 .groupCircle_services img.eachImg3 {
  width: 3.875rem;
  height: 3.125rem;
  flex-shrink: 0;
  aspect-ratio: 31/25;
  border-radius: 6.875rem;
  border: 0.0625rem solid var(--Cream-Beige, #f5efe2);
  background: #fff;
  left: -0.125rem;
  bottom: 11.8125rem;
}
section.serSec1 .groupCircle_services img.eachImg4 {
  width: 6.375rem;
  height: 4.75rem;
  flex-shrink: 0;
  aspect-ratio: 51/38;
  border-radius: 7.5rem;
  border: 0.0625rem solid var(--Cream-Beige, #f5efe2);
  overflow: hidden;
  background: #fff;
  right: -0.125rem;
  bottom: 14.125rem;
}
section.serSec1 .groupCircle_services + .btn {
  margin: -10.9375rem auto 0;
  position: relative;
  z-index: 1;
}
section.serSec1 .serItem {
  padding: 0.625rem;
  height: 100%;
  min-height: 12.5rem;
  border: 0.0625rem solid var(--Cream-Beige, #f5efe2);
}
section.serSec1 .serItem + .serItem {
  margin: 2.6875rem 0 0;
}
section.serSec1 .serItem .counterEach {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--Cream-Beige, #f5efe2);
  margin: 0 0 0.8125rem;
}
section.serSec1 .serItem .counterEach::before {
  counter-increment: counters;
  content: counter(counters, decimal-leading-zero);
  display: inline-block;
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.serSec1 .serItem h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.625rem;
}

.details-modal h4 {
  color: #000;
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
  padding-left: 3.2rem;
}
@media (max-width: 1200px) {
  .details-modal h4 {
    font-size: 1.5rem;
  }
}
.details-modal h4:before {
  content: "";
  width: 2.625rem;
  height: 0.625rem;
  background: url(../images/heading-left.png) no-repeat 0 0;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0.675rem;
  transform: translateY(0px);
}
.details-modal h4:after {
  content: "";
  width: 2.625rem;
  height: 0.625rem;
  background: url(../images/heading-right.png) no-repeat 0 0;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 45%;
  display: inline-block;
  inset: 0;
  position: relative;
  margin-top: auto;
  transform: translateY(-4px);
  margin-left: 0.5rem;
}
.details-modal h4.otherAdjust {
  text-align: left;
}
.details-modal h4.otherAdjust::before {
  top: 0.375rem;
  transform: translateY(0px);
}
.details-modal h4.otherAdjust::after {
  content: "";
  display: inline-block;
  inset: 0;
  position: relative;
  margin-top: auto;
  transform: translateY(0px);
  margin-left: 0.5rem;
}
.details-modal .modal-body {
  padding: 1.2rem 2rem;
}
.details-modal .btn-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  filter: brightness(0) saturate(100%) invert(34%) sepia(24%) saturate(3961%) hue-rotate(348deg) brightness(92%) contrast(85%);
}

.wpcf7-spinner {
  display: none;
}

section.about-us.sectiondefaultspacing.terms_comn {
  min-height: auto;
}
section.about-us.sectiondefaultspacing.terms_comn h2 {
  text-align: left;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  padding: 0;
  display: block;
}
section.about-us.sectiondefaultspacing.terms_comn h2::after {
  content: none;
}
section.about-us.sectiondefaultspacing.terms_comn h2::before {
  content: none;
}
section.about-us.sectiondefaultspacing.terms_comn h3 {
  font-size: 1.5rem;
  color: var(--Dark-Blue, #05172e);
  margin: 2rem 0 1.25rem;
}
section.about-us.sectiondefaultspacing.terms_comn p {
  margin-bottom: 1.25rem;
}
section.about-us.sectiondefaultspacing.terms_comn p a {
  text-decoration: underline;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #ab3335;
}
@media (max-width: 767px) {
  section.about-us.sectiondefaultspacing.terms_comn p {
    text-align: left;
  }
}
section.about-us.sectiondefaultspacing.terms_comn ul,
section.about-us.sectiondefaultspacing.terms_comn ol {
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
section.about-us.sectiondefaultspacing.terms_comn ul li,
section.about-us.sectiondefaultspacing.terms_comn ol li {
  color: var(--Body-text, #4b5159);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 17px;
}
section.about-us.sectiondefaultspacing.terms_comn ul li::before,
section.about-us.sectiondefaultspacing.terms_comn ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #ab3335;
}
section.about-us.sectiondefaultspacing.terms_comn ol {
  counter-reset: my-counter;
}
section.about-us.sectiondefaultspacing.terms_comn ol li {
  counter-increment: my-counter;
}
section.about-us.sectiondefaultspacing.terms_comn ol li::before {
  content: counter(my-counter) ".";
  color: #ab3335;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  background-color: transparent;
  top: 0;
}

.page-template-tpl-common-page .about-us {
  min-height: auto;
}
.page-template-tpl-common-page .about-us h2 {
  text-align: left;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  padding: 0;
  display: block;
}
.page-template-tpl-common-page .about-us h2::after {
  content: none;
}
.page-template-tpl-common-page .about-us h2::before {
  content: none;
}
.page-template-tpl-common-page .about-us h3 {
  font-size: 1.5rem;
  color: var(--Dark-Blue, #05172e);
  margin: 2rem 0 1.25rem;
}
.page-template-tpl-common-page .about-us p {
  margin-bottom: 1.25rem;
}
.page-template-tpl-common-page .about-us p a {
  text-decoration: underline;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #ab3335;
}
@media (max-width: 767px) {
  .page-template-tpl-common-page .about-us p {
    text-align: left;
  }
}
.page-template-tpl-common-page .about-us ul,
.page-template-tpl-common-page .about-us ol {
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.page-template-tpl-common-page .about-us ul li,
.page-template-tpl-common-page .about-us ol li {
  color: var(--Body-text, #4b5159);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 17px;
}
.page-template-tpl-common-page .about-us ul li::before,
.page-template-tpl-common-page .about-us ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #ab3335;
}
.page-template-tpl-common-page .about-us ol {
  counter-reset: my-counter;
}
.page-template-tpl-common-page .about-us ol li {
  counter-increment: my-counter;
}
.page-template-tpl-common-page .about-us ol li::before {
  content: counter(my-counter) ".";
  color: #ab3335;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  background-color: transparent;
  top: 0;
}

body:has(.error-page) section,
body:has(.error-page) header,
body:has(.error-page) footer {
  display: none;
}
body:has(.error-page) .error-page {
  display: flex;
}

section.error-page {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Cream-Beige, #f5efe2);
}

section.error-page h1 {
  color: var(--Rich-Brown, #c14c26);
  font-size: 8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-align: center;
}

section.error-page h2 {
  text-align: center;
  margin: 0 auto 1rem;
  text-transform: capitalize;
}

section.error-page p {
  color: var(--Navy-Blue, #333);
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  line-height: normal;
  margin-bottom: 1.88rem;
}

section.error-page a.blue-btn {
  margin: 0 auto;
  display: table;
}

.page-wrap {
  position: relative;
  z-index: 2;
}

.modal-backdrop.show {
  display: none;
}

.iconsrow .modal {
  position: fixed;
}
.iconsrow .modal::before {
  content: "";
  content: "";
  position: fixed;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3019607843);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.iconsrow .modal .modal-dialog {
  position: relative;
  z-index: 2;
}

section.blogSec1 .BlogListGroup {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  margin-bottom: 6.25rem;
}

.listBlg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  border-top: 0.5px solid var(--Pine-Green, #2e4a3b);
  border-right: 0.5px solid var(--Pine-Green, #2e4a3b);
  border-bottom: 0.5px solid var(--Pine-Green, #2e4a3b);
}
.listBlg .blogIframe {
  width: 100%;
  height: 100%;
}
.listBlg .blogIframe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listBlg .blogIframe a {
  display: block;
  height: 100%;
  width: 100%;
}
.listBlg .blogDts {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listBlg .blogDts .blg_heading {
  display: grid;
  grid-template-columns: 2.6875rem 1fr;
  gap: 0.6875rem;
  padding: 1.5rem 0 1.25rem;
  margin: 0 0 1.5rem;
  border-bottom: 0.5px solid var(--Pine-Green, #2e4a3b);
}
.listBlg .blogDts .blg_heading .circle_icon {
  width: 2.6875rem;
  height: 2.6875rem;
  aspect-ratio: 1/1;
  background: #ebebeb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.listBlg .blogDts .blg_heading .circle_icon img {
  width: 1.375rem;
  height: 1.375rem;
}
.listBlg .blogDts .blg_heading .circle_icon img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.listBlg .blogDts .blg_heading .blg_title h5 {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 0.3125rem;
}
.listBlg .blogDts .blg_heading .blg_title ul {
  display: flex;
  flex-direction: row;
}
.listBlg .blogDts .blg_heading .blg_title ul li {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8rem; /* 150% */
}
.listBlg .blogDts .blg_heading .blg_title ul li + li::before {
  content: "|";
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8rem; /* 150% */
  margin: 0 8px;
}
.listBlg .blogDts h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.6rem;
}
.listBlg .blogDts h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.listBlg .blogDts p {
  color: var(--Pine-Green, #2e4a3b);
  line-height: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.listBlg .blogDts .innerGp {
  padding-right: 1.75rem;
  margin-bottom: 2.5rem;
}
.listBlg .blogDts .blgBottom {
  display: flex;
  padding: 1rem 1rem 0.8125rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--Cream-Beige, #f5efe2);
  margin-top: auto;
}
.listBlg .blogDts .blgBottom ul {
  display: flex;
  width: 100%;
  gap: 2.5rem;
  align-items: center;
}
.listBlg .blogDts .blgBottom ul li a {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.listBlg .blogDts .blgBottom ul li:last-of-type {
  margin-left: auto;
}
.listBlg .blogDts .blgBottom ul li:last-of-type a {
  padding-right: 2.5rem;
}
.listBlg .blogDts .blgBottom ul li .share_link {
  display: flex;
  gap: 0.625rem;
  flex-direction: column;
}
.listBlg .blogDts .blgBottom ul li .share_link .share_icons {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.listBlg .blogDts .blgBottom ul li .share_link .share_icons a {
  padding: 0;
  margin: 0;
}
.listBlg:hover .blogDts h3,
.listBlg:hover .blogDts p {
  color: var(--Barn-Red, #c14c26);
}

.pageinationNumber {
  display: flex;
  justify-content: center;
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
.pageinationNumber .page-numbers {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
.pageinationNumber .page-numbers.prev {
  display: flex;
  padding: 0.825rem 1.45rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 1px solid var(--Barn-Red, #c14c26);
  background: var(--Barn-Red, #c14c26);
  margin-right: 2.5rem;
}
.pageinationNumber .page-numbers.prev:hover {
  background: #fff;
  color: #c14c26;
}
.pageinationNumber .page-numbers.next {
  display: flex;
  padding: 0.825rem 1.45rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 1px solid var(--Barn-Red, #c14c26);
  background: var(--Barn-Red, #c14c26);
  margin-left: 2.5rem;
}
.pageinationNumber .page-numbers.next:hover {
  background: #fff;
  color: #c14c26;
}
.pageinationNumber .page-numbers.current {
  color: var(--Barn-Red, #c14c26);
}

ul.pagination {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
ul.pagination li a {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
ul.pagination li a.numbers {
  display: inline-block;
}
ul.pagination li a.arrowBtn {
  display: flex;
  padding: 0.825rem 1.45rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 1px solid var(--Barn-Red, #c14c26);
  background: var(--Barn-Red, #c14c26);
}
ul.pagination li a.arrowBtn.prev {
  margin-right: 2.5rem;
}
ul.pagination li a.arrowBtn.next {
  margin-left: 2.5rem;
}
ul.pagination li a.arrowBtn.emptyPg {
  border: 1px solid var(--Barn-Red, #c14c26);
  background: #fff;
  color: #c14c26;
}
ul.pagination li a.arrowBtn.emptyPg span {
  font-size: 0;
  line-height: 0;
  margin-left: -0.625rem;
}
ul.pagination li a.arrowBtn.emptyPg:hover {
  background: var(--Barn-Red, #c14c26);
  color: #fff;
}
ul.pagination li a.arrowBtn:hover {
  background: #fff;
}
ul.pagination li a.active {
  color: var(--Barn-Red, #c14c26);
}
ul.pagination li a:hover {
  color: var(--Barn-Red, #c14c26);
}

.headingUnderLine {
  border-bottom: 1px solid var(--Pine-Green, #2e4a3b);
  margin: 0 0 1.25rem;
  padding: 0 0 0.75rem;
}
.headingUnderLine h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

section.blgDtSec1 {
  padding-top: 3.75rem;
}
section.blgDtSec1 .container {
  max-width: 52%;
}
section.blgDtSec1 .blgFrame {
  width: 100%;
  margin: 0 0 3.75rem;
}
section.blgDtSec1 .blgFrame img {
  width: 100%;
}
section.blgDtSec1 .below_heading {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2.5rem;
}
section.blgDtSec1 .below_heading ul.date_time {
  display: flex;
}
section.blgDtSec1 .below_heading ul.date_time li {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
section.blgDtSec1 .below_heading ul.date_time li + li::before {
  content: "|";
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0 8px;
}
section.blgDtSec1 .below_heading .share_link a {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
section.blgDtSec1 h4 {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.85rem;
}
section.blgDtSec1 h5 {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 1.8rem 0 1.25rem;
}
section.blgDtSec1 p {
  line-height: 1.5rem; /* 150% */
  margin: 0 0 1.25rem;
}
section.blgDtSec1 p + h4 {
  margin: 1.8rem 0 1.65rem;
}
section.blgDtSec1 p + .blgFrame {
  margin-top: 2.8125rem;
}
section.blgDtSec1 .blgDtBt {
  display: flex;
  padding: 1rem 1rem 0.8125rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--Cream-Beige, #f5efe2);
  margin: 3rem 0 3.75rem;
}
section.blgDtSec1 .blgDtBt ul {
  display: flex;
  width: 100%;
  gap: 2.5rem;
  align-items: center;
}
section.blgDtSec1 .blgDtBt ul li a {
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section.blgDtSec1 ul.dots_list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
section.blgDtSec1 ul.dots_list li {
  position: relative;
  padding-left: 15px;
}
section.blgDtSec1 ul.dots_list li::before {
  content: " ";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--Barn-Red, #c14c26);
  border-radius: 50%;
  left: 0;
  top: 0.5rem;
}
section.blgDtSec1 ul.dots_list + p {
  margin-top: 1.25rem;
}
section.blgDtSec1 .comments .headingUnderLine {
  margin: 0 0 2.5rem;
}
section.blgDtSec1 .comments .headingUnderLine h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.blgDtSec1 .comments .comment-form-cookies-consent {
  display: inline-flex;
  gap: 15px;
}
section.blgDtSec1 .comments input:not([type=submit]):not([type=radio]):not([type=checkbox]),
section.blgDtSec1 .comments select {
  border: 0.5px solid var(--Charcoal, #333);
  padding: 1.25rem;
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  height: auto;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 2.25rem;
}
section.blgDtSec1 .comments textarea {
  border: 0.5px solid var(--Charcoal, #333);
  padding: 1.25rem;
  color: var(--Charcoal, #333);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  height: 8.1875rem;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 2.25rem;
}
section.blgDtSec1 .comments input[type=submit] {
  position: relative;
  display: inline-flex;
  padding: 0.8438rem 1.25rem;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--Soft-White, #fff);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  justify-content: center;
  align-items: center;
  background: var(--Barn-Red, #c14c26);
  border-radius: 0;
  border: 0.0625rem solid var(--Barn-Red, rgba(193, 77, 38, 0));
}
section.blgDtSec1 .comments input[type=submit]:focus, section.blgDtSec1 .comments input[type=submit]:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
section.blgDtSec1 .comments input[type=submit]:hover {
  background: var(--Pine-Green, #2e4a3b);
  color: white;
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.commentlist .comment {
  background: #f5efe2;
  /* border-radius: 12px; */
  padding: 15px 20px;
  margin-bottom: 15px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
  display: flex;
  gap: 15px;
  align-items: flex-start;
  /* Avatar */
  /* Meta Info (date/time) */
  /* Comment Text */
  /* Reply Button */
  /* Nested Replies */
}
.commentlist .comment .comment-author {
  margin: 0 0 0.625rem;
}
.commentlist .comment .comment-author img.avatar {
  border-radius: 50%;
  width: 2.8125rem;
  height: 2.8125rem;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  /* border: 3px solid #304f3c; */
  margin-right: 0.375rem;
}
.commentlist .comment .comment-author .fn {
  font-weight: 600;
  color: #333;
}
.commentlist .comment .comment-author .fn a {
  color: #c14c26;
  text-decoration: none;
}
.commentlist .comment .comment-author .fn a:hover {
  text-decoration: underline;
}
.commentlist .comment .comment-author .says {
  display: none;
}
.commentlist .comment .comment-meta {
  font-size: 12px;
  color: var(--Pine-Green, #2e4a3b);
  margin-top: 2px;
}
.commentlist .comment .comment-meta a {
  color: var(--Pine-Green, #2e4a3b);
}
.commentlist .comment p {
  margin: 8px 0 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.commentlist .comment .reply a {
  background: #c14c26;
  color: #fff !important;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}
.commentlist .comment .reply a:hover {
  background: #c14c26;
}
.commentlist .comment .children {
  margin-left: 50px;
  border-left: 2px solid #eee;
  padding-left: 15px;
}

section.blgDtSec2 .row {
  gap: 1.875rem 0;
}
section.blgDtSec2 .topHeading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin: 0 0 2.5rem;
}
section.blgDtSec2 .topHeading .headingUnderLine {
  margin: 0;
}
section.blgDtSec2 .topHeading .headingUnderLine h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Bebas Neue";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.blgDtSec2 .topHeading a.sellLink {
  color: var(--Pine-Green, #2e4a3b);
  font-family: "Roboto Condensed";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin: 0;
  padding: 0;
}

.recPostItem .recPostFrame {
  height: 18.75rem;
  margin: 0 0 1.875rem;
}
.recPostItem .recPostFrame a {
  display: block;
  height: 100%;
  width: 100%;
}
.recPostItem .recPostFrame a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recPostItem .recPostDets h3 {
  color: var(--Pine-Green, #2e4a3b);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1rem;
}
.recPostItem .recPostDets h3 a {
  color: var(--Pine-Green, #2e4a3b);
}
.recPostItem .recPostDets ul {
  display: flex;
  flex-direction: row;
  margin: 0 0 1.5rem;
}
.recPostItem .recPostDets ul li {
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.recPostItem .recPostDets ul li + li::before {
  content: "|";
  color: var(--Sceondary-02, #432818);
  font-family: "Roboto Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  margin: 0 8px;
}
.recPostItem .recPostDets p {
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recPostItem .recPostDets .btn {
  margin-top: 0.625rem;
}

.mainhd .headerrow .contact .call_icon {
  display: none;
  gap: 8px;
  align-items: center;
}
.mainhd .headerrow .contact .call_icon span {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 6.25rem;
  background: rgba(193, 76, 38, 0.08);
}
.mainhd .headerrow .contact .call_icon a {
  color: var(--Sceondary-02, #432818);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem; /* 80% */
}

body:has(.landingPg) .mainhd {
  position: sticky;
}
body:has(.landingPg) .mainhd .headerrow .navigation {
  display: none;
}
body:has(.landingPg) .mainhd .headerrow .contact .btn {
  display: none;
}
body:has(.landingPg) .mainhd .headerrow .contact .call_icon {
  display: flex;
}
body:has(.landingPg) .mainft {
  padding: 2.0938rem 0;
  background: #fff !important;
}
body:has(.landingPg) .mainft::before {
  display: none;
}
body:has(.landingPg) .mainft .ft-top {
  display: none;
}
body:has(.landingPg) .mainft .ft-bot p {
  color: var(--Charcoal, #333);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 1.5rem; /* 133.333% */
  margin: 0;
  padding: 0;
}

section.banner.landingPg {
  position: relative;
  height: auto;
  z-index: 1;
  padding: 3.125rem 0;
}
section.banner.landingPg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
section.banner.landingPg::before {
  content: " ";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(55, 19, 7, 0) 25.91%, #361206 135.02%);
  z-index: -1;
}
section.banner.landingPg .bannertext {
  position: relative;
  inset: unset;
}
section.banner.landingPg .bannertext .bannertext-inner {
  padding-left: 0;
}
section.banner.landingPg .bannertext .bannertext-inner h1,
section.banner.landingPg .bannertext .bannertext-inner p {
  color: #fff;
}
section.banner.landingPg .bannertext .bannertext-inner h1 {
  color: var(--Soft-White, #fff);
  font-family: "Bebas Neue";
  font-size: 4.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.125rem; /* 101.538% */
  letter-spacing: 0.0406rem;
  text-transform: capitalize;
  margin: 0 0 0.75rem;
}
section.banner.landingPg .bannertext .bannertext-inner p {
  max-width: 31.75rem;
  line-height: 1.75rem;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
section.banner.landingPg .bannertext .formarea {
  padding: 1.875rem;
  border-radius: 0.5rem;
  border-left: 0.25rem solid var(--Barn-Red, #c14c26);
  background: #fff;
  box-shadow: 0 0.25rem 1.25rem 0 rgba(0, 0, 0, 0.08);
}
section.banner.landingPg .bannertext .formarea h3 {
  color: #000;
  margin: 0 0 2rem;
}
section.banner.landingPg .bannertext .formarea .forminner .submit {
  width: 100%;
}
section.banner.landingPg .bannertext .formarea .forminner .submit .btn {
  width: 100%;
  font-weight: 300;
}
section.banner.landingHeading h2 {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.landingSec2 {
  background: rgba(193, 76, 38, 0.04);
  position: relative;
  z-index: 1;
}
section.landingSec2 h2 {
  margin: 0 0 1.875rem;
}
section.landingSec2 .imgBg {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% - 45px);
  z-index: -1;
}
section.landingSec2 .imgBg img {
  width: auto;
  height: 100%;
}
section.landingSec2.landingHeading h2 {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

ul.two_cols {
  display: grid;
  grid-template-columns: 51% 51%;
  gap: 1.6875rem 2.375rem;
  align-items: center;
}
ul.two_cols li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 6px;
  color: var(--Paragraph, #535353);
  font-family: "Roboto Condensed";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.landingSec3 {
  padding: 3.75rem 0;
  position: relative;
  z-index: 1;
}
section.landingSec3 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
section.landingSec3 .container {
  text-align: center;
}
section.landingSec3 .gp_steps {
  display: grid;
  grid-template-columns: 254px 254px 254px;
  justify-content: space-between;
}
section.landingSec3.landingHeading h2 {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item_steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item_steps .circle_bx {
  width: 7.625rem;
  height: 7.625rem;
  background: #c14c26;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  margin: 0 0 2.1875rem;
}
.item_steps .circle_bx::before {
  content: " ";
  width: 8.875rem;
  height: 8.875rem;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: #c14c26;
  opacity: 0.4;
  border-radius: 50%;
}
.item_steps .circle_bx::after {
  content: " ";
  width: 10.125rem;
  height: 10.125rem;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  background: #c14c26;
  opacity: 0.3;
  border-radius: 50%;
}
.item_steps h3 {
  color: #000;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  text-transform: capitalize;
  margin: 0 0 0.45rem;
  padding: 0;
}
.item_steps p {
  color: var(--Paragraph, #535353);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 15.625rem;
  margin: auto;
}
.item_steps + .item_steps::before {
  content: " ";
  position: absolute;
  width: 324px;
  height: 67px;
  background: url(../images/dash_line_arrow1.svg) no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(-100% - 2.1875rem);
}
.item_steps + .item_steps:nth-child(odd)::before {
  background: url(../images/dash_line_arrow2.svg) no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 73px;
}/*# sourceMappingURL=style.css.map */