/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Nunito:ital,wght@0,200..1000;1,200..1000&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: "Nunito", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 1.6875rem */
  overflow-x: hidden;
}

p {
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
  /* 131.25% */
  letter-spacing: 0.01rem;
  margin-bottom: 1.25rem;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 0;
  color: #fff;
  font-family: "Italiana", sans-serif;
  font-size: 8.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 8.75rem */
  /* 4.124rem */
}

h2 {
  padding: 0;
  margin: 0;
  color: var(--text-dark-green, #022d23);
  font-family: "Italiana", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 3.375rem */
}

h3 {
  padding: 0;
  margin: 0;
  color: var(--White, #fff);
  font-family: "Italiana", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 1.75rem;
  color: #000;
  font-family: "Italiana", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 103.1%;
  /* 2.062rem */
}

h5 {
  padding: 0;
  margin: 0;
  color: var(--Black, #000);
  font-family: "Italiana", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.25rem;
  /* 150% */
}

h6 {
  color: var(--text-dark-green, #022d23);
  font-family: "Italiana", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 1.6875rem */
}

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 {
  display: inline-flex;
  padding: 0.875rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 3.125rem;
  background: var(--Dark-BG, #2c251e);
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.btn img {
  width: auto !important;
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  background-color: #7d5020;
  color: var(--White, #fff);
}
.btn:hover img {
  filter: invert(81%) sepia(51%) saturate(2999%) hue-rotate(1deg) brightness(106%) contrast(104%);
}
.btn.bg-transparent {
  background-color: transparent;
  border: 0.0625rem solid white;
  color: white;
}
.btn.bg-transparent img {
  filter: brightness(0) invert(1);
}
.btn.bg-transparent:hover {
  background-color: white !important;
  color: var(--Balck-Dark, #2b2b2d);
  border: 0.0625rem solid white;
}
.btn.bg-transparent:hover img {
  filter: unset;
}
.btn.border-blue {
  border-color: #3c4765;
  color: #3c4765;
}
.btn.border-blue img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(10%) saturate(2045%) hue-rotate(186deg) brightness(97%) contrast(85%);
}
.btn.border-blue:hover {
  background-color: #3c4765 !important;
  color: white;
}
.btn.border-blue:hover img {
  filter: brightness(0) invert(1);
}
.btn.nobtn {
  color: #2b2b2d;
  background-color: transparent;
}
.btn.nobtn img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(5%) saturate(409%) hue-rotate(202deg) brightness(99%) contrast(87%);
}

.fakebtn {
  position: relative;
}
.fakebtn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
}

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], [type=checkbox], [type=radio]),
select {
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0rem;
  background: #fff;
  color: var(--Balck-Dark, #2b2b2d);
  font-family: Satoshi;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  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 {
  height: 12.5625rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0rem;
  background: #fff;
  color: #000;
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 2.125rem */
  border: none;
  border-bottom: 0.0625rem solid var(--Black-300, #666);
  margin-bottom: 1.5rem;
  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;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Balck-Dark, #2b2b2d);
  font-family: Satoshi;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

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

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

label {
  color: #0d0d0d;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.75rem;
  display: block;
}

.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;
}

.mainhd {
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.3s ease;
  background: transparent;
}
.mainhd.is-sticky {
  background: #000; /* or your color */
}
.mainhd .headerrow {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
}
.mainhd .logo {
  max-width: 6.7564rem;
}
.mainhd .logo img {
  aspect-ratio: 108.1/98;
}
.mainhd .navouter .nav-row {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.mainhd .navouter .nav-row .navigation .stellarnav > ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mainhd .navouter .nav-row .navigation .stellarnav > ul li a {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
  text-transform: capitalize;
}
.mainhd .navouter .nav-row .navigation .stellarnav > ul li.current-menu-item a {
  text-decoration: none;
}
.mainhd .navouter .nav-row .navigation .stellarnav > ul li.active > a, .mainhd .navouter .nav-row .navigation .stellarnav > ul li:hover > a {
  color: #fff;
  text-decoration: none;
}
.mainhd .navouter .nav-row .navigation .stellarnav > ul li.has-sub > a {
  background: url(../images/tabler_chevron-up.png) no-repeat right center;
  padding-right: 1.75rem;
}

.banner {
  position: relative;
  overflow: hidden;
  height: 56.25rem;
}
.banner .banner-img {
  width: 100%;
  height: 100%;
}
.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 37, 30, 0) 68.72%, #2c251e 104.93%);
  z-index: 1;
}
.banner .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6.25rem;
}
.banner .banner-row {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.banner .banner-row .text {
  max-width: 59rem;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 40px;
  padding: 0 0 0 200px;
}
.banner .banner-row .text:before {
  content: "";
  border-radius: 70.4375rem;
  background: var(--Beige, #b29b7c);
  width: 70.4375rem;
  height: 70.4375rem;
  position: absolute;
  bottom: -35.1875rem;
  display: block;
  z-index: 0;
  left: 0rem;
  position: absolute;
  z-index: -1;
}
.banner .banner-row span {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3375rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.62rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.banner .banner-row span::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: var(--White, #fff);
  border-radius: 3.125rem;
}
.banner .banner-row h1 {
  color: var(--White, #fff);
  font-family: Italiana;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0.04688rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.banner .banner-row p {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 133.333% */
  letter-spacing: 0.01125rem;
  margin-bottom: 1.87rem;
}
.banner .banner-row span.radius {
  border-radius: 70.4375rem;
  background: var(--Beige, #b29b7c);
  width: 70.4375rem;
  height: 70.4375rem;
  position: absolute;
  bottom: -35.1875rem;
  display: block;
  z-index: 0;
  left: 0rem;
}
.banner .banner-row span.radius:before {
  display: none;
}
.banner .bannerslider {
  height: 100%;
}
.banner .bannerslider .splide__track {
  height: 100%;
}
.banner .bannerslider .splide__track .splide__list {
  height: 100%;
}
.banner .bannerslider .splide__track .splide__list .splide__slide {
  height: 100%;
}

.logoslider {
  padding: 6.25rem 0;
}
.logoslider h2 {
  color: var(--Dark, #160d03);
  text-align: center;
  font-family: Italiana;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01875rem;
  text-transform: capitalize;
  margin-bottom: 3.75rem;
}
.logoslider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logoslider .splide__track {
  position: relative;
}
.logoslider .splide__track:before {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(255, 253, 250, 0) 0%, #fffdfa 100%);
  width: 35.125rem;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.logoslider .splide__track:after {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(255, 253, 250, 0) 0%, #fffdfa 100%);
  width: 35.125rem;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  rotate: 180deg;
}
.logoslider .splide__list {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.logoslider .splide__slide__container img {
  height: 2.56381rem;
}

.photos {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  position: relative;
}
.photos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50vw + 5.625rem);
  height: 33.4375rem;
  border-radius: 0 3.75rem 0 0;
  background: var(--Light-BG, #e6e0da);
  z-index: 1;
}
.photos .container {
  position: relative;
  z-index: 1;
}
.photos .container .row {
  align-items: center;
  margin-top: 3.125rem;
}
.photos .container .row:nth-child(1) {
  margin-top: 0;
}
.photos .container .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.photos .container .row:nth-child(2n) .img img {
  max-width: 100%;
}
.photos:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.75;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0) 61.22%, #fffdfa 110%), linear-gradient(0deg, rgba(255, 253, 250, 0) 70.03%, #fffdfa 100%);
  z-index: 0;
}
.photos .img {
  position: relative;
}
.photos .img img {
  max-width: 41.95831rem;
  border-radius: 0.625rem;
}
.photos .img span {
  display: inline-flex;
  transform: rotate(90deg);
  align-items: center;
  gap: 1.25rem;
  color: var(--Beige, #b29b7c);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  position: absolute;
  right: -10rem;
  top: 13.75rem;
}
.photos .img span::before {
  content: "";
  border-radius: 3.125rem;
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: var(--Beige, #b29b7c);
}
.photos .text h4 {
  color: var(--Dark, #160d03);
  font-family: Italiana;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  /* 110% */
  letter-spacing: 0.03125rem;
  text-transform: capitalize;
  margin-bottom: 2.5rem;
}
.photos .text ul li {
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
  /* 131.25% */
  letter-spacing: 0.01rem;
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 1.25rem;
  max-width: 33.4375rem;
}
.photos .text ul li:last-child {
  margin-bottom: 0;
}
.photos .text ul li:before {
  content: "";
  position: absolute;
  background: url(../images/tick.png) no-repeat 0 0;
  background-size: 1.25rem;
  top: 50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
}

.compassion {
  background-color: #2c251e;
  padding: 6.25rem 0;
}
.compassion .img {
  border-radius: 0.625rem;
  position: relative;
}
.compassion .img img {
  width: 42rem;
  border-radius: 0.625rem;
}
.compassion .img .cm-logo {
  width: 9.375rem;
  height: 9.375rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #2c251e;
  border-radius: 6.25rem;
}
.compassion .img .cm-logo img {
  width: 5.92913rem;
}
.compassion .text .subheading {
  margin-bottom: 0.62rem;
}
.compassion .text .subheading span {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.compassion .text .subheading span:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 3.125rem;
}
.compassion .text h2 {
  color: var(--White, #fff);
  font-family: Italiana;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  /* 110% */
  letter-spacing: 0.03125rem;
  text-transform: capitalize;
  margin-bottom: 1.87rem;
}
.compassion .text p {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5625rem;
  /* 156.25% */
  letter-spacing: 0.01rem;
  margin-bottom: 1.875rem;
  max-width: 30.9375rem;
}
.compassion .text p:last-child {
  margin-bottom: 0;
}

.cta {
  padding: 6.34rem 0;
}
.cta .mxw-44 {
  max-width: 44.2rem;
  margin: 0 auto;
  text-align: center;
}
.cta .subheading {
  margin-bottom: 0.62rem;
}
.cta .subheading span {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}
.cta .subheading span:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 3.125rem;
}
.cta h2 {
  color: var(--White, #fff);
  font-family: Italiana;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  /* 110% */
  letter-spacing: 0.03125rem;
  text-transform: capitalize;
  margin-bottom: 1.87rem;
}
.cta p {
  color: var(--White, #fff);
  text-align: center;
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  margin-bottom: 1.87rem;
}

.testi {
  padding: 6.25rem 0;
  background-color: white;
  overflow-x: hidden;
}
.testi .subheading {
  margin-bottom: 0.62rem;
  text-align: center;
}
.testi .subheading span {
  color: var(--Dark, #160d03);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.testi .subheading span:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: #160d03;
  border-radius: 3.125rem;
  display: inline-block;
}
.testi h2 {
  color: var(--Dark, #160d03);
  text-align: center;
  font-family: Italiana;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  /* 110% */
  letter-spacing: 0.03125rem;
  text-transform: capitalize;
  margin-bottom: 2.5rem;
}
.testi .testibx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  padding: 1.87rem 1.25rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--Light-BG, #e6e0da);
  background: var(--Extra-Light-BG, #fffdfa);
  height: 100%;
}
.testi .testibx .imgrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.testi .testibx .imgrow .stars {
  max-width: 6.88rem;
}
.testi .testibx .imgrow .quotes {
  width: 3.125rem;
}
.testi .testibx p {
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
  /* 131.25% */
  letter-spacing: 0.01rem;
  margin-bottom: 0;
}
.testi .testibx h5 {
  color: var(--Dark, #160d03);
  font-family: Italiana;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01125rem;
  text-transform: capitalize;
  margin-bottom: 0;
}
.testi .row-container .row {
  margin-bottom: 1.88rem;
  row-gap: 1.7rem;
}
.testi .row-container .row:last-child {
  margin-bottom: 0;
}

.mainft {
  padding-top: 6.25rem;
  background: var(--Dark, #160d03);
}
.mainft .ft-top .ft-top-row {
  display: flex;
  align-items: center;
  padding-bottom: 3.75rem;
  justify-content: space-between;
}
.mainft .ft-top .ft-top-row .ftlogo {
  order: 2;
}
.mainft .ft-top .ft-top-row .ftlogo img {
  width: 6.75644rem;
}
.mainft .ft-top .ft-top-row .ft-text.cn-first {
  order: 1;
}
.mainft .ft-top .ft-top-row .ft-text.cn-three {
  order: 3;
}
.mainft .ft-top .ft-top-row .ft-text p {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  margin-bottom: 0;
  max-width: 14rem;
}
.mainft .ft-top .ft-top-row .ft-text a {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: stretch;
}
.mainft .ft-top .ft-top-row .ft-text a img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
.mainft .ft-mid {
  padding: 3.13rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.mainft .ft-mid p {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  margin-bottom: 0;
}
.mainft .ft-bot {
  padding: 1.25rem 0;
}
.mainft .ft-bot .ft-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainft .ft-bot .ft-top-row .ftlogo {
  order: 2;
}
.mainft .ft-bot .ft-top-row .ftlogo.ftsocial ul {
  display: flex;
  align-items: center;
  gap: 0.67938rem;
  flex-shrink: 0;
}
.mainft .ft-bot .ft-top-row .ftlogo.ftsocial ul li a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b29b7c;
  border: 0.0625rem solid #b29b7c;
  border-radius: 3.125rem;
}
.mainft .ft-bot .ft-top-row .ftlogo.ftsocial ul li a:hover {
  background-color: #b29b7c;
  color: var(--Dark, #160d03);
}
.mainft .ft-bot .ft-top-row .ft-text.cn-first {
  order: 1;
}
.mainft .ft-bot .ft-top-row .ft-text.cn-three {
  order: 3;
}
@media (min-width: 992px) {
  .mainft .ft-bot .ft-top-row .ft-text.cn-three {
    min-width: 23.16669rem;
  }
}
.mainft .ft-bot .ft-top-row .ft-text ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.mainft .ft-bot .ft-top-row .ft-text ul li a {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  text-transform: capitalize;
}
.mainft .ft-bot .ft-top-row .ft-text p {
  color: var(--White, rgba(255, 255, 255, 0.8));
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  margin-bottom: 0;
}
.mainft .ft-bot .ft-top-row .ft-text a {
  color: var(--White, #fff);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: stretch;
}
.mainft .ft-bot .ft-top-row .ft-text a img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}

.caseModal .modal-dialog {
  max-width: 82.125rem;
}
.caseModal .modal-body {
  padding: 0;
}
.caseModal .casemodalinner {
  padding: 2.5rem 1.88rem;
}
.caseModal .casemodalinner .casemodalrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caseModal .casemodalinner .casemodalrow .img {
  max-width: 33.125rem;
}
.caseModal .casemodalinner .formouter {
  max-width: 40.1rem;
}
.caseModal .casemodalinner .formouter .subheading {
  margin-bottom: 0.62rem;
}
.caseModal .casemodalinner .formouter .subheading span {
  color: var(--Dark, #160d03);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.caseModal .casemodalinner .formouter .subheading span:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: var(--Dark, #160d03);
  border-radius: 3.125rem;
}
.caseModal .casemodalinner .formouter h2 {
  color: var(--Dark, #160d03);
  font-family: Italiana;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  /* 110% */
  letter-spacing: 0.03125rem;
  text-transform: capitalize;
  margin-bottom: 2.5rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .inputrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.caseModal .casemodalinner .formouter .inputrow-outer .inputrow .inputrowinner {
  width: 100%;
  margin-bottom: 1.25rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .inputrow .inputrowinner input:not([type=submit], [type=checkbox], [type=radio]) {
  border: none;
  padding: 0.875rem 1.25rem;
  border-radius: 3.125rem;
  background: #f6f4ef;
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  text-transform: capitalize;
}
.caseModal .casemodalinner .formouter .inputrow-outer .inputrow textarea {
  height: 11.5625rem;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 1.25rem;
  background: #f6f4ef;
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
  text-transform: capitalize;
}
.caseModal .casemodalinner .formouter .inputrow-outer .paratext {
  margin-bottom: 0.75rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .paratext p {
  color: var(--Paragraph, #5b5855);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.01rem;
  margin-bottom: 1.875rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .paratext p:last-child {
  margin-bottom: 0;
}
.caseModal .casemodalinner .formouter .inputrow-outer .paratext p span {
  font-weight: 600;
}
.caseModal .casemodalinner .formouter .inputrow-outer .checkboxouter {
  margin-bottom: 2.5rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .checkboxouter label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0;
}
.caseModal .casemodalinner .formouter .inputrow-outer .checkboxouter label input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
}
.caseModal .casemodalinner .formouter .inputrow-outer .checkboxouter label span {
  color: var(--Dark, #160d03);
  font-family: Nunito;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
}

.innercontent {
  padding: 4rem 0;
  /* Every OL following an H2 (no matter what is in between) */
  /* Prefix numbering for list items */
}
.innercontent h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: Italiana;
  color: #6d593e;
  font-size: 3rem;
}
.innercontent h2 {
  color: var(--Black, #121212);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  font-family: Italiana;
  line-height: normal;
  margin: 2rem 0 1rem;
}
.innercontent h2:first-of-type {
  margin-top: 0;
}
.innercontent h3 {
  color: var(--Black, #121212);
  font-family: Italiana;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 1.2rem;
}
.innercontent p strong,
.innercontent p a {
  color: #6d593e;
}
.innercontent p a {
  font-weight: 500;
}
.innercontent ul,
.innercontent ol {
  margin-bottom: 1rem;
  border-radius: 1rem;
}
.innercontent ul li,
.innercontent ol li {
  color: var(--Body-Text, #505050);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5625rem;
  margin: 0;
}
.innercontent ul li:last-child,
.innercontent ol li:last-child {
  margin-bottom: 0;
}
.innercontent ul {
  list-style-type: disc;
  padding: 1.75rem 1.4rem;
  background: #f5f7e5;
  padding-left: 2.2rem;
}
.innercontent ul li {
  list-style-type: disc;
  margin-bottom: 1rem;
}
.innercontent ul li::marker {
  color: #6d593e;
}
.innercontent ol {
  list-style-type: decimal;
  padding: 1.75rem 1.2rem;
  background: #f5f7e5;
  padding-left: 2rem;
}
.innercontent ol li {
  list-style-type: decimal;
  margin-bottom: 1rem;
}
.innercontent ol li::marker {
  color: #6d593e;
}
.innercontent h2 {
  counter-increment: section;
  counter-reset: subsection;
  position: relative;
}
.innercontent h2 ~ ol > li {
  counter-increment: subsection;
  list-style: none;
  position: relative;
  padding-left: 30px;
}
.innercontent h2 ~ ol > li::before {
  content: counter(section) "." counter(subsection) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

.inner-banner {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-banner h1 {
  padding-top: 3rem;
  font-size: 6rem;
}

.page-404 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f5f7e5;
}
.page-404 .col-lg-12 {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 2rem;
}
.page-404 h1 {
  font-size: 9rem;
  margin-bottom: 1rem;
  line-height: 100%;
  font-family: Nunito;
}
.page-404 h2 {
  margin-bottom: 1.5rem;
  color: #fff;
  font: 2rem;
}
.page-404 p {
  margin-bottom: 1rem;
}

.mainhd.is-sticky {
  background: #000; /* or your color */
}/*# sourceMappingURL=style.css.map */