
/* =====Document Styles===== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  /* outline: 1px solid red; */
}
::-moz-selection {
  color: #fff;
  background: rgba(126, 72, 46, 1);
}
::selection {
  color: #fff;
  background: rgba(126, 72, 46, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  color: #342f2c;
  background-color: #fefbf9;
  /* min-height: 200vh; */
}

/* Content Style */
h1 {
  font-family: "SourceSerifPro", serif;
  font-size: 44px;
  font-weight: 600;
  font-style: normal;
}
h2 {
  font-family: "SourceSerifPro", serif;
  font-size: 35.15px;
  font-weight: 600;
  font-style: normal;
}
h3 {
  font-family: "SourceSerifPro", serif;
  font-size: 28.1px;
  font-weight: 600;
  font-style: normal;
}
h4 {
  font-family: "SourceSerifPro", serif;
  font-size: 22.5px;
  font-weight: 600;
  font-style: normal;
}
p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #342f2c;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container_sp {
  /* max-width: 1920px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 80px;
  margin: auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
  .container_sp {
    padding: 0 20px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 728px;
  }
  h1 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 396px;
  }
  .container_sp {
    padding: 0 12px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 427px) {
  .container {
    max-width: calc(100% - 32px);
  }
}

/* =====Buttons===== */
.gen_fill_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #fff;
  padding: 15px 25px;
  background-color: #7e482e;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: rgba(126, 72, 46, 0.4) 5px 5px 0px;
          box-shadow: rgba(126, 72, 46, 0.4) 5px 5px 0px;
}
.gen_fill_btn:hover {
  -webkit-box-shadow: rgba(126, 72, 46, 0.4) 4px 4px 0px;
          box-shadow: rgba(126, 72, 46, 0.4) 4px 4px 0px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .gen_fill_btn {
    padding: 12px 20px;
  }
}

/* =====Extra Generic Styling===== */
.brand_line_left,
.brand_line_centre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand_line_fat {
  height: 6px;
  width: 140px;
  background-color: #7e482e;
}
.brand_line_thin {
  height: 2px;
  width: 60px;
  background-color: #7e482e;
}
.brand_line_centre .brand_line_thin {
  width: 40px;
}
.bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
.pre_head {
  color: #7e482e;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .pre_head {
    font-size: 16px;
  }
}

/* =====Header===== */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: sticky;
  top: -45px;
  z-index: +999;
}
.container_head {
  max-width: 1920px;
}

/* =====Collapsible Header===== */
.head_colp {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  border-bottom: 1px solid #ebebea;
  width: 100%;
}
.head_copl_left,
.head_copl_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.head_colp_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.head_colp_a {
  font-size: 14px;
  color: #342f2c;
}
.head_colp_a:hover {
  text-decoration: underline;
}
.head_colp_left_line {
  height: 15px;
  width: 1px;
  background-color: #c1cdd9;
}

/* =====G-Translate===== */
.gtranslate_wrapper .gt_selector {
  border-width: 0 !important;
  max-width: 80px !important;
  outline: none !important;
}
.gtranslate_wrapper .gt_selector option {
  font-size: 14px !important;
}

/* =====Sticky Header===== */
.head_logo {
  height: 60px;
}
.head_stick {
  background-color: #fff;
  width: 100%;
  border-bottom: 3px solid #f5f0eea3;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
  clip-path: inset(0px -5px -5px -5px); */
}
.head_stick_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#head_stick_ul_lvl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* gap: 40px; */
}
.head_stick_nav {
  font-size: 18px;
  color: #342f2c;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.head_stick_nav:hover {
  color: #a17966;
}
.head_stick_nav.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.head_stick_nav.dropdown img {
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.current_page {
  color: #a17966;
}

/* Mega Dropdown */
.head_mega_dpdn {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #f1f1f1;
  left: 0;
  right: 0;
  top: 126.5px;
  z-index: +10000;
}
.head_mega_dpdn .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 50px;
}
.head_mega_dpdn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  /* max-width: 388px;
  width: 100%; */
}
.head_mega_dpdn_box_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.head_mega_dpdn_box_head img {
  height: 28px;
}

.head_mega_dpdn_box_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.head_mega_dpdn_box_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  color: rgba(52, 47, 44, 0.7);
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.head_mega_dpdn_box_links a:hover {
  /* text-decoration: underline; */
  gap: 12px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
/* Mobile Navigation */
.head_mob {
  display: none;
  background-color: #fff;
  padding: 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
          box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
}
.head_mob_right_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.head_ham {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.head_ham .line {
  width: 30px;
  height: 2.5px;
  background-color: #342f2c;
  border-radius: 10px;
}
/* Mobile Nav Links */
.head_mob_nav_links {
  display: none;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  width: 100%;
  top: 84px;
  z-index: +1000;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;
  -webkit-clip-path: inset(0px -5px -5px -5px);
          clip-path: inset(0px -5px -5px -5px);
}
.head_mob_nav_links a {
  font-size: 18px;
  font-weight: 500;
  color: #342f2c;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  text-align: center;
  border-top: 2px solid rgba(126, 72, 46, 0.15);
}
.head_mob_nav_links a:last-of-type {
  border-bottom: 2px solid rgba(126, 72, 46, 0.15);
}
.megadpdn-foot{
  background-color: #342F2C;
  padding-top: 10px;
  padding-bottom: 10px;

}
.megadpdn-foot-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #fff;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.megadpdn-foot-box:hover{
  text-decoration: underline;
}
.megadpdn-foot-box-icon{
  width: 22px;
}
@media (max-width: 1200px) {
  .header {
    top: 0px;
  }
  .head_colp,
  .head_stick {
    display: none;
  }
  .head_mob {
    display: block;
  }
}
@media (max-width: 767px) {
  .head_logo {
    height: 50px;
  }
  .head_ham .line {
    width: 25px;
    height: 2px;
  }
  .head_mob {
    padding: 10px 0 6px;
  }
  .head_mob_right_wrap {
    gap: 13px;
  }
  .head_mob_nav_links {
    top: 70px;
  }
}
/* Navigation Button */
.head_btn {
  padding: 14px 30px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  background-color: #f2f2f2;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.head_btn:hover {
  background-color: #ebebeb;
}
@media (max-width: 767px) {
  .head_btn {
    padding: 12px 20px;
  }
}

/* Resources Dropdown */
.resources-mini-dpdn{
  position: absolute;
  left: 0;
  top: 80px;

  padding: 20px;
  background-color: #F1F1F1;
  border: 1px solid rgba(126, 72, 46, 0.3);

  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.resources-mini-dpdn-a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: rgba(52, 47, 44, 0.7);
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.resources-mini-dpdn-a:hover{
  color: #7e482e;
  text-decoration: underline;
}
.page-id-1313 .page_banner .container_sp {
    padding-top: 120px;
}
@media (max-width: 745px) {
  .page-id-1313 .page_banner .container_sp {
    padding-top: 250px;
  }
}




/* =====Footer===== */
.footer {
  background-color: #342f2c;
}
.footer .container_sp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.foot_btm_sepa {
  height: 15px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
.container_foot {
  max-width: 1536px;
}
/* Top Footer */
.foot_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0 60px;
  width: 100%;
}
.foot_top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
/* Top Footer: First */
.foot_top_wrap:nth-of-type(1) {
  max-width: 310px;
}
.foot_top_para {
  color: rgba(255, 255, 255, 0.6);
}
.foot_top_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
/* Top Footer: Second */
.foot_top_wrap h3 {
  color: #fff;
  font-size: 31.25px;
}
.foot_top_links {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.foot_top_links_sub_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.foot_top_links_sub_wrap a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}
.foot_top_links_sub_wrap a:hover {
  text-decoration: underline;
}
/* Top Footer: Third */
.foot_top_contact_sub_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.foot_top_contact_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.foot_top_contact_box img {
  margin-top: 2px;
}
.foot_top_contact_box p,
.foot_top_contact_box a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}
.foot_top_contact_box a {
  border-bottom: 3px solid #7e482e;
  padding-bottom: 5px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.foot_top_contact_box a:hover {
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
}
/* Top Footer: Third: Location */
#foot_top_contact_box_address p {
  line-height: 25px;
}
#foot_top_contact_box_address p:nth-of-type(2) {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
}
/* Top Footer: Third: Phone */
#foot_top_contact_box_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

/* Footer Horizontal Row */
.foot_hr {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
/* Bottom Footer */
.foot_btm {
  padding: 15px 0 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
.foot_btm_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.foot_btm_links_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.foot_btm_links a,
.foot_btm_links p {
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.6);
}
.foot_btm_links a {
  border-bottom: 2px solid rgba(126, 72, 46, 0.6);
  padding-bottom: 3px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.foot_btm_links a:hover {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
/* Footer Disclaimer */
.foot_btm_disclaimer {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.foot_btm_disclaimer p {
  text-align: center;
  font-size: 12.8px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.foot_btm_disclaimer span {
  text-decoration: underline;
}
.foot_top_links_sub_wrap.foot_admin {
  display: none;
}
.admin-bar .foot_top_links_sub_wrap.foot_admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .foot_top {
    padding: 60px 0 80px;
  }
  .foot_top_wrap:nth-of-type(2) {
    margin-right: 30px;
  }
}
@media (max-width: 1023px) {
  .foot_top_wrap:nth-of-type(2) {
    display: none;
  }
}
@media (max-width: 767px) {
  .foot_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .foot_top_wrap:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot_top_wrap h3 {
    font-size: 28px;
  }
  .foot_top_links {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 15px;
  }
  .foot_top_links_sub_wrap a {
    font-size: 18px;
  }
  .foot_btm_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
/* =====Pre-Footer===== */
.pre-foot {
  position: relative;
  padding-bottom: 20px;
}
.pre-foot-bg {
  position: absolute;
  height: 220px;
  background-color: #342f2c;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pre_foot_content_wrap {
  width: 100%;
  padding: 100px 200px;
  /* background-color: #7e482e; */
  position: relative;
}
.pre_foot_content_wrap h2 {
  font-size: 48.83px;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
.pre_foot_content_wrap p {
  font-size: 22.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.pre-foot-content-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pre_foot_fill_btn {
  background-color: #fff;
  color: #342f2c;
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 5px 5px 0px;
          box-shadow: rgba(255, 255, 255, 0.2) 5px 5px 0px;
}
.pre_foot_fill_btn:hover {
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 4px 4px 0px;
          box-shadow: rgba(255, 255, 255, 0.2) 4px 4px 0px;
}
.pre_foot_hollow_btn {
  border: 3px solid #fff;
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 5px 5px 0px;
          box-shadow: rgba(255, 255, 255, 0.2) 5px 5px 0px;
}
.pre_foot_hollow_btn:hover {
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 4px 4px 0px;
          box-shadow: rgba(255, 255, 255, 0.2) 4px 4px 0px;
}
@media (max-width: 1200px) {
  .pre_foot_content_wrap {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  .pre_foot_content_wrap {
    padding: 50px;
  }
  .pre_foot_content_wrap h2 {
    font-size: 35px;
  }
  .pre_foot_content_wrap p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pre_foot_content_wrap {
    padding: 30px 15px 35px;
  }
  .pre_foot_content_wrap h2 {
    font-size: 26px;
  }
  .pre_foot_content_wrap p {
    margin-bottom: 30px;
  }
}

/* =====Generic Page Banner===== */
.page_banner {
  background-color: #f5f0ee;
}
.page_banner .container,
.page_banner .container_sp {
  position: relative;
  padding-top: 150px;
  padding-bottom: 30px;
}
.page_banner_cont_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  width: 100%;
  max-width: 690px;
}
.page_banner_prime_para {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.page_banner_prime_para p {
  font-size: 22.5px;
  color: rgba(52, 47, 44, 0.8);
  margin-top: 5px;
}
.page_banner_prime_para u {
  text-decoration: underline;
}
.parent-pageid-16 .page_banner .container {
  padding-top: 100px;
  padding-bottom: 35px;
}
.parent-pageid-16 .page_banner .page_banner_cont_wrap {
  max-width: 750px;
}
@media (max-width: 767px) {
  .parent-pageid-16 .page_banner .container {
    padding-top: 60px;
  }
}
@media (max-width: 745px) {
  .page_banner_prime_para p {
    font-size: 18px;
  }
}
/* Breadcrum */
.page_banner_breadcrum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.page_banner_breadcrum_divide {
  font-size: 18px;
  color: #5b5653;
  font-weight: 500;
}
.page_banner_breadcrum_page_name {
  font-size: 18px;
  color: #5b5653;
  font-weight: 500;
}
.page_banner_breadcrum_page_name.curr_page {
  color: #986d58;
  font-weight: 700;
}
.page_banner_breadcrum_page_name.par_page:hover {
  text-decoration: underline;
}
.page_banner_breadcrum_dash {
  height: 2px;
  width: 40px;
  margin-left: 5px;
  background-color: #986d58;
}
@media (max-width: 767px) {
  .page_banner_breadcrum_divide.two {
    display: none;
  }
  .parent-pageid-18 .page_banner_breadcrum .page_banner_breadcrum_page_name.curr_page {
    display: none;
  }
}
/* Image */
.page_banner_thumb {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -35px;
}
.page_banner_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 250px;
  width: 450px;
}
.page_banner_thumb_sp {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 30%;
}
.page_banner_thumb_sp img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.page_banner_oblique_line {
  position: absolute;
  z-index: 1;
  right: -15px;
  bottom: -50px;
  height: 185px;
  width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/* Forms */
.page_banner_audio_bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* display: none; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.page_banner_audio_bubble_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_banner_audio_bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background-color: rgba(254, 251, 249, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(126, 72, 46, 0.4);
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.page_banner_audio_bubble:hover {
  background-color: rgba(126, 72, 46, 0.02);
}
@media (max-width: 1023px) {
  .page_banner_audio_bubbles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /* gap: 10px; */
  }
  .page_banner_audio_bubbles_prime_p {
    text-decoration: underline;
  }
}
/* Socials */
.page_banner_socials_wrap {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.page_banner_social_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #342f2c;
  background-color: rgba(52, 47, 44, 0.12);
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 5px;
}
.page_banner_social_single:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .page_banner_cont_wrap {
    max-width: 500px;
  }
}
@media (max-width: 1023px) {
  .page_banner_thumb_sp {
    display: none;
  }
  .page_banner .container,
  .page_banner .container_sp {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .page_banner_prime_para {
    font-size: 18px;
  }
  .page_banner .container,
  .page_banner .container_sp {
    padding-top: 60px;
  }
  .page_banner_thumb_sp {
    display: block;
    max-width: 100%;
    height: 240px;
    padding: 15px 12px;
  }
  .page_banner .container,
  .page_banner .container_sp {
    padding-top: 250px;
  }
}

/* =====Accordian====== */
.accordion-item {
  width: 100%;
}
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
/* Accordian Header */
.accordion-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding: 10px;
  background-color: #f0f0f0;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.accordion-item-header:hover {
  background-color: #f5f0ee;
}
.accordian-icon-wrap {
  border: 2px solid #342f2c;
  height: 22px;
  width: 22px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 3px;
}
.accordian-icon-line-hor {
  width: 12px;
  height: 2px;
  background-color: #342f2c;
  border-radius: 5px;
}
.accordian-icon-line-ver {
  display: block;
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #342f2c;
  border-radius: 5px;
}
.accordion-item-header h4 {
  font-weight: 400;
  width: 100%;
}
.accordion-item-header.active {
  background-color: #f5f0ee;
}
.accordion-item-header.active h4 {
  color: #7e482e;
}
.accordion-item-header.active .accordian-icon-wrap {
  border: 2px solid #7e482e;
}
.accordion-item-header.active .accordian-icon-line-hor {
  background-color: #7e482e;
}
.accordion-item-header.active .accordian-icon-line-ver {
  background-color: #7e482e;
  display: none;
}
/* Accordian Body */
.accordion-item-body {
  display: none;
  margin: 15px 0 10px;
  padding: 0 10px 0 32px;
  position: relative;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.accordion-item-body::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 10px;
  background-color: rgba(126, 72, 46, 0.1);
}
@media (max-width: 767px) {
  .accordion-item-body {
    padding: 0 10px 0 25px;
  }
  .accordion-item-body::before {
    left: 7px;
  }
  .accordion-item-header h4 {
    font-size: 20px;
  }
  .accordion-item-header {
    gap: 12px;
  }
}

/* Sticky Side Sec */
.side_cta_par {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.side_cta_wrap {
  width: 100%;
  max-width: 388px;
  position: sticky;
  top: 140px;
  height: 100%;
}
.side_cta {
  width: 100%;
  background-color: #342f2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 15px;
  border-radius: 5px;
}
.side_cta h3 {
  color: #fff;
  margin-bottom: 20px;
}
.side_cta_hr {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}
.side_cta_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.side_cta_hollow_btn {
  border: 3px solid #7e482e;
  background-color: transparent;
}
.side_cta .gen_fill_btn {
  padding: 10px 25px;
}
.side_cta_txt_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.side_cta_txt_link p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.side_cta_txt_link p a {
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-bottom: 2px solid rgba(126, 72, 46, 0.8);
}
.side_cta_txt_link p a:hover {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1023px) {
  .side_cta_wrap {
    display: none;
  }
}

/* =====Website Body Content===== */
.website_blog_content u {
  text-decoration: underline;
}
.website_blog_content p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 27px;
}
.website_blog_content > *:first-child {
  margin-top: 0;
}
.website_blog_content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.website_blog_content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}
.website_blog_content ul {
  padding-left: 35px;
  padding-right: 65px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.website_blog_content li {
  font-size: 18px;
  line-height: 27px;
  list-style-type: disc;
  margin-bottom: 6px;
}
.website_blog_content li::marker {
  font-size: 20px;
  color: #7e482e;
}
.website_blog_content .accordion {
  margin-top: 25px;
  margin-bottom: 25px;
}
.website_blog_content a {
  font-weight: 700 !important;
  color: #7e482e;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: underline;
}
.website_blog_content a:hover {
  color: #342f2c;
}
.website_blog_content a span {
  font-weight: 700 !important;
}
.website_blog_content .accordion-item-body ul {
  margin-bottom: 0;
}
.website_blog_content blockquote {
  margin-top: 15px;
  font-size: 18px;
  line-height: 27px;
  padding-left: 20px;
  position: relative;
}
.website_blog_content blockquote::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background-color: rgba(126, 72, 46, 0.4);
}
.website_blog_content blockquote p {
  margin-top: 0;
}
.website_blog_content ol {
  padding-left: 35px;
  padding-right: 65px;
  margin-top: 10px;
  /* margin-bottom: 20px; */
}
.website_blog_content ol li {
  list-style: decimal;
}
.website_blog_content ol li::marker {
  font-size: 18px;
  font-weight: 600;
  color: #7e482e;
}
.website_blog_content ul ul li,
.website_blog_content ol ul li {
  list-style-type: circle;
}
@media (max-width: 767px) {
  .website_blog_content ul,
  .website_blog_content ol {
    padding-right: 15px;
    padding-left: 25px;
  }
  .website_blog_content h2 {
    font-size: 25px;
  }
}

/*===== Gtranslate CSS: Nav =====*/
.header .gt_white_content {
  border-radius: 5px;
}
.header .gt_switcher-popup img {
  display: none !important;
}
.header .gt_switcher-popup span {
  font-size: 15.5px !important;
  color: #342f2c !important;
}
.header .gt_switcher-popup span:hover {
  text-decoration: underline;
}
.header .gt_switcher-popup span:nth-child(3) {
  font-size: 10px !important;
}
.header .gt_switcher-popup span:nth-child(3):hover {
  text-decoration: none;
}
/*===== Gtranslate CSS: Foot =====*/
.footer .gt_switcher-popup img {
  display: none !important;
}
.footer .gt_switcher-popup span {
  font-size: 16px !important;
  color: #fff !important;
}
.footer .gt_switcher-popup span:nth-child(2) {
  margin-right: 115px !important;
}
.footer .gt_switcher-popup span:nth-child(3) {
  font-size: 10px !important;
  opacity: 0.8;
  margin-right: 0 !important;
}
.footer .gt_switcher-popup {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.footer .gt_switcher-popup:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
/* Dropdown */
.gt_languages span {
  color: #342f2c !important;
}