*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  font-size: 16px;
  font-weight: 300;
  background: #fff;
  line-height: 1.5;
  color: #142736;
  font-family: "Poppins", sans-serif;
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: #8E7159;
  outline: 0;
}
body.overfloy-y-hidden, html.overfloy-y-hidden {
  overflow-y: hidden;
}

a[href] {
  text-decoration: none;
  transition: 0.5s ease;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
  transition: 0.5s ease;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 45px;
  }
}
@media (max-width: 1230px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}
@media (max-width: 675px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}

.container-fluid {
  padding: 0 25px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #142736;
  font-weight: bold;
  font-family: "Mingolia Display";
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-style: normal;
}

h1 {
  font-size: 62px;
  line-height: 1.3;
}
@media (max-width: 1300px) {
  h1 {
    font-size: 46px;
  }
}
@media (max-width: 1140px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 38px;
  line-height: 1.5;
}
@media (max-width: 1300px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 36px;
  line-height: 1.5;
}
@media (max-width: 1300px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 1140px) {
  h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  line-height: 35px;
  font-size: 1.5;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

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

.text-img-center {
  text-align: -webkit-center;
}

.grid {
  display: grid;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-scroll::-webkit-scrollbar {
  width: 3px;
  display: none;
}
.custom-scroll::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #000;
  outline: 0;
}

input, button, select {
  font-size: 16px;
  line-height: 25px;
  color: #142736;
}

.overflow_hidden {
  overflow: hidden;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  background: #000;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.4s ease;
}
.overlay.overlay_active {
  pointer-events: all;
  opacity: 0.6;
  transition: 0.5s ease;
}

.video_icon {
  width: 45px;
  height: 45px;
  border: 2px solid #7b7b7b;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .video_icon {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .video_icon {
    border-width: 1px;
  }
}
.video_icon:before {
  width: 50px;
  height: 50px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: rgba(0, 0, 0, 0.8196078431);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (max-width: 1024px) {
  .video_icon:before {
    width: 33px;
    height: 33px;
  }
}
.video_icon img {
  width: 10px;
  position: relative;
  margin-left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 6px;
}
.social-links a svg {
  width: 35px;
  height: 35px;
  margin: 0 auto;
}
.social-links a svg path {
  fill: #fff;
  transition: 0.5s ease;
}

.model .close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 10px;
  padding: 0;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s ease;
  z-index: 999;
}

.ModelPop {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close svg {
  width: 26px;
  height: 26px;
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 188;
  background: #000;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video .close_model {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
}

.tab-nav ul {
  text-align: center;
}
.tab-nav ul li {
  display: inline-block;
  cursor: pointer;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transition: 0s ease;
}
.tab-nav-content .tabs .to-up {
  transition: 0s ease;
  transform: translateY(50px);
}
.tab-nav-content .tabs.active {
  transition: 0.5s ease;
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}
.tab-nav-content .tabs.active .to-up {
  transition: 0.5s ease;
  transform: translateY(0px);
}

.has_dropdown {
  position: relative;
}
.has_dropdown a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.has_dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 1;
  transition: 0.5s ease;
}
.has_dropdown:hover::before {
  right: 0;
  width: 100%;
}
.has_dropdown:hover .nav_dropdown {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  height: auto;
  transform: translateY(0px);
  user-select: auto;
  visibility: visible;
  overflow: hidden;
  opacity: 1;
  pointer-events: all;
  transition: 0.2s ease, height 0.6s ease;
}
.has_dropdown .nav_dropdown {
  background: #fff;
  border-radius: 3px;
  width: 150px;
  height: 0;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(5px) scale(0.99);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.1s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.has_dropdown .nav_dropdown ul li {
  display: block;
  margin-left: 0;
}
.has_dropdown .nav_dropdown ul li a {
  color: #000;
  display: block;
  padding: 6px 0 6px 20px;
}

.text-left {
  text-align: left !important;
}

.bannerBN .titleHead {
  font-size: 48px;
}

.section {
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.flex-single {
  display: flex;
}
@media (max-width: 520px) {
  .flex-single {
    display: block;
  }
}

.p-30 {
  padding: 30px 0 10px !important;
}

.block {
  display: inline-block;
}

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

.pl-30 {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .pl-30 {
    padding-left: 0;
  }
}

.bg-light {
  background: #F9F3F0;
}

.web_cta_btn a {
  display: inline-block;
  color: #142736;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.3294117647);
  font-weight: normal;
}
.web_cta_btn a:hover {
  color: #fff;
  background: #8E7159;
}
@media (max-width: 767px) {
  .web_cta_btn a {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.inner_cta_btn.brown a {
  border-color: #C9A78F;
  color: #C9A78F;
}
.inner_cta_btn a {
  display: inline-flex;
  color: #fff;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 18px 35px;
  background: transparent;
  font-weight: normal;
  gap: 10px;
  transition: 0.3s ease;
}
.inner_cta_btn a:hover {
  background: rgba(255, 255, 255, 0.3294117647);
  gap: 15px;
}
@media (max-width: 767px) {
  .inner_cta_btn a {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.inner_cta_btn a img {
  width: auto !important;
}

.heading.heading_style3 h3 {
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.heading.heading_style3 h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 115%;
  height: 1px;
  background: #c9a78f;
}
@media (max-width: 991px) {
  .heading.heading_style3 h3::before {
    right: 0;
    width: 100%;
  }
}
.heading.heading_style3 h3::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -15px;
  width: 32px;
  height: 32px;
  background: url(../../assets/images/icons/star.png);
}
.heading.heading_style3 p:not(:first-child) {
  margin-top: 30px;
}
.heading.heading_style2 {
  text-align: center;
}
.heading.heading_style2 h3 {
  position: relative;
  padding-bottom: 40px;
}
.heading.heading_style2 h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 359px;
  height: 32px;
  background: url(../../assets/images/icons/heading-shape.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 675px) {
  .heading.heading_style2 h3::before {
    width: 100%;
  }
}
.heading h3 {
  margin: 0px 0 20px;
}
@media (max-width: 1300px) {
  .heading h3 {
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  .heading h3 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .heading h3 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: 24px;
  }
}
.heading h6 {
  font-weight: normal;
  color: #C9A78F;
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}
.heading span {
  width: 100px;
  border-bottom: 1px solid #C9A78F;
  display: inline-flex;
  padding-left: 3px;
  margin-left: 5px;
}

.content p {
  margin: 30px 0;
  font-weight: normal;
}
.content.ul-style-one ul {
  margin: 30px 0;
}
.content.ul-style-one ul li {
  position: relative;
  padding-left: 40px;
  margin: 20px 0;
}
.content.ul-style-one ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 18px;
  background: url(../../assets/images/icons/title_left.png);
}
.content.ul-style-two ul {
  margin: 30px 0;
}
.content.ul-style-two ul li {
  position: relative;
  padding-left: 40px;
  margin: 35px 0;
}
.content.ul-style-two ul li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 32px;
  height: 32px;
  background: url(../../assets/images/icons/star.png);
}
.content.ul-style-two ul li p {
  margin: 8px 0;
}

form .form-group, .form .form-group {
  margin: 20px 0;
}
form .form-group:first-child, .form .form-group:first-child {
  margin-top: 0;
}
form input, .form input {
  width: 100%;
  background: #fff;
  padding: 15px 25px;
  border-radius: 36px;
  outline: none;
  border: none;
}
form input[type=submit], .form input[type=submit] {
  background: #C9A78F;
  color: #fff;
  display: inline-block;
  padding: 15px 30px;
  width: auto;
  cursor: pointer;
  border: 1px solid #fff;
}
form input[type=submit]:hover, .form input[type=submit]:hover {
  background: #fff;
  border-color: #8E7159;
  color: #8E7159;
}

.flower-shape {
  position: relative;
}
.flower-shape::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/resource/footer-shpe.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 675px) {
  .flower-shape::before {
    opacity: 0.5;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 0 5px;
  z-index: 9;
  background: rgba(255, 255, 255, 0.431372549);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0901960784);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  background: #fff;
  transition: 0.5s ease;
  z-index: -1;
}
header.header-fixed::before {
  height: 100%;
}
header .container .outer-wrap {
  justify-content: space-between;
  align-items: center;
}
header .container .outer-wrap .aside-left {
  flex: 0 1 20%;
  max-width: 20%;
  width: 100%;
}
header .container .outer-wrap .aside-left .site-logo figure img{
    width: 55%;
}
header .container .outer-wrap .aside-center {
  flex: 0 1 60%;
  max-width: 60%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 30px;
}
@media (max-width: 1140px) {
  header .container .outer-wrap .aside-center {
    flex: 0 1 80%;
    max-width: 80%;
  }
}
@media (max-width: 520px) {
  header .container .outer-wrap .aside-center {
    flex: 0 1 80%;
    max-width: 80%;
  }
}
header .container .outer-wrap .aside-center ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
}
@media (max-width: 1140px) {
  header .container .outer-wrap .aside-center ul {
    justify-content: flex-end;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  header .container .outer-wrap .aside-center ul li {
    display: none;
  }
}
header .container .outer-wrap .aside-center ul li.drop-menu {
  position: relative;
}
header .container .outer-wrap .aside-center ul li.drop-menu .dropdown {
  position: absolute;
  left: -20px;
  top: 100%;
  display: block;
  padding: 15px 0 10px 0;
  width: 225px;
  box-shadow: 0 30px 30px 0 rgba(29, 10, 81, 0.1);
  border-radius: 5px;
  text-align: left;
  background: #fff;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(30px);
  transition: 0.3s ease;
}
header .container .outer-wrap .aside-center ul li.drop-menu .dropdown > li {
  width: 100%;
}
header .container .outer-wrap .aside-center ul li.drop-menu .dropdown > li a {
  color: #142736;
  padding: 4px 15px;
  display: inline-block;
  width: 100%;
  text-transform: none;
  margin: 4px 0;
}
header .container .outer-wrap .aside-center ul li.drop-menu .dropdown > li a:hover {
  color: #8E7159;
}
header .container .outer-wrap .aside-center ul li.drop-menu:hover ul {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0px);
}
header .container .outer-wrap .aside-center ul li .action {
  display: none;
}
@media (max-width: 991px) {
  header .container .outer-wrap .aside-center ul li .action {
    display: block;
  }
}
header .container .outer-wrap .aside-center ul li a {
  color: #142736;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
  position: relative;
  padding-left: 15px;
}
header .container .outer-wrap .aside-center ul li a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 12px;
  background: #142736;
  opacity: 0;
}
header .container .outer-wrap .aside-center ul li a:hover::before, header .container .outer-wrap .aside-center ul li a.active::before {
  opacity: 1;
}

.ham-menu {
  display: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  .ham-menu {
    display: block;
  }
}
.ham-menu svg {
  fill: #8E7159;
}

.overflow_hidden {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  max-width: 450px;
  width: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s ease;
  padding: 0px 30px 30px 40px;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url(../../assets/images/resource/footer-shpe.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.mobile-menu::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.mobile-menu::-webkit-scrollbar-track {
  box-shadow: none;
}
.mobile-menu::-webkit-scrollbar-thumb {
  outline: 0;
  background: #8E7159;
}
.mobile-menu.overfloy-y-hidden {
  overflow-y: hidden;
}
@media (max-width: 675px) {
  .mobile-menu {
    max-width: 100%;
    padding: 0px 30px 30px;
  }
}
.mobile-menu.open-ham {
  transform: translateX(0%);
}
.mobile-menu .site-logo {
  display: inline-block;
}
.mobile-menu .site-logo figure {
  padding: 15px 0;
}
.mobile-menu .site-logo figure img {
  margin: auto 0;
}
@media (max-width: 675px) {
  .mobile-menu .site-logo figure img {
    width: 70px;
  }
}
.mobile-menu ul.main-list {
  margin: 40px 0 30px;
}
.mobile-menu ul.main-list li {
  margin: 10px 0;
}
.mobile-menu ul.main-list li:nth-child(9) {
  display: none;
}

.mobile-menu ul.main-list li.drop-menu {
  position: relative;
}
.mobile-menu ul.main-list li.drop-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/images/icons/arrow-down.png);
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.mobile-menu ul.main-list li.drop-menu ul.dropdown {
  padding-left: 20px;
}
.mobile-menu ul.main-list li.active a {
  color: #8E7159;
  font-weight: 500;
}
.mobile-menu ul.main-list li a {
  color: #142736;
  transition: 0.2s ease;
}
.mobile-menu ul.main-list li a:hover {
  color: #8E7159;
  font-weight: 500;
}
.mobile-menu .hamburger-icon {
  width: 100%;
  display: inline-block;
}
.mobile-menu .hamburger-icon .col {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}
.mobile-menu .hamburger-icon .col figure {
  flex: 0 1 10%;
  max-width: 10%;
  width: 100%;
  margin-top: 5px;
}
.mobile-menu .hamburger-icon .col figure img {
  width: 100%;
}
.mobile-menu .hamburger-icon .col .details {
  width: 100%;
}
.mobile-menu .hamburger-icon .col .details span {
  display: block;
  font-size: 14px;
  color: #142736;
  transition: 0.2s ease;
}
.mobile-menu .hamburger-icon .col .details a {
  display: block;
  color: #142736;
  transition: 0.2s ease;
}
.mobile-menu .hamburger-icon .col .details a:hover {
  color: #8E7159;
}

.Hero_banner {
  position: relative;
  height: 100vh;
  background: #8E7159;
}
.Hero_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/resource/banner-shape.png);
  background-repeat: no-repeat;
}
@media (max-width: 675px) {
  .Hero_banner::before {
    display: none;
  }
}
@media (max-width: 860px) {
  .Hero_banner {
    height: 70vh;
  }
}
.Hero_banner .Outer_wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.Hero_banner .Outer_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/icons/banner-shape.png) no-repeat;
  background-position: right bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 1230px) {
  .Hero_banner .Outer_wrap::before {
    right: 4%;
  }
}
@media (max-width: 675px) {
  .Hero_banner .Outer_wrap::before {
    background-size: 80%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
  }
}
.Hero_banner .Outer_wrap .Hero_slider {
  content: "";
  position: absolute;
  bottom: 0;
}
@media (max-width: 1140px) {
  .Hero_banner .Outer_wrap .Hero_slider {
    position: relative;
  }
}
.Hero_banner .Outer_wrap .Hero_slider .owl-nav {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.Hero_banner .Outer_wrap .Hero_slider .owl-dots {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: left;
  width: 1180px;
  margin: 0 auto;
  max-width: 1180px;
}
@media (max-width: 1300px) {
  .Hero_banner .Outer_wrap .Hero_slider .owl-dots {
    padding: 0 45px;
  }
}
@media (max-width: 1140px) {
  .Hero_banner .Outer_wrap .Hero_slider .owl-dots {
    bottom: -20%;
  }
}
@media (max-width: 1024px) {
  .Hero_banner .Outer_wrap .Hero_slider .owl-dots {
    padding: 0 60px;
  }
}
@media (max-width: 675px) {
  .Hero_banner .Outer_wrap .Hero_slider .owl-dots {
    padding: 0 15px;
  }
}
.Hero_banner .Outer_wrap .Hero_slider .owl-dots .owl-dot {
  width: 60px;
  border-bottom: 1px solid #fff;
  opacity: 0.3;
}
.Hero_banner .Outer_wrap .Hero_slider .owl-dots .owl-dot.active {
  opacity: 1;
}
.Hero_banner .Outer_wrap .Hero_slider .owl-dots .owl-dot span {
  color: #fff;
}
.Hero_banner .Outer_wrap .container > .flex {
  align-content: center;
  justify-content: space-between;
  gap: 60px;
}
.Hero_banner .Outer_wrap .container .Hero_text {
  width: 600px;
  margin-top: 70px;
}
@media (max-width: 1140px) {
  .Hero_banner .Outer_wrap .container .Hero_text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .Hero_banner .Outer_wrap .container .Hero_text {
    margin: 120px 0 40px;
  }
}
.Hero_banner .Outer_wrap .container .Hero_text .inner_wrap {
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .Hero_banner .Outer_wrap .container .Hero_text .inner_wrap {
    text-align: center;
  }
}
.Hero_banner .Outer_wrap .container .Hero_text .inner_wrap .flex {
  gap: 20px;
  align-items: center;
  justify-content: left;
}
@media (max-width: 1140px) {
  .Hero_banner .Outer_wrap .container .Hero_text .inner_wrap .flex {
    justify-content: center;
  }
}
.Hero_banner .Outer_wrap .container .Hero_text h1 {
  font-weight: bold;
  color: #fff;
}
.Hero_banner .Outer_wrap .container .Hero_text h2 {
  margin: 10px 0;
}
.Hero_banner .Outer_wrap .container .Hero_text p.desc {
  margin: 25px 0 30px;
  font-size: 18px;
  font-weight: 500;
}
.Hero_banner .Outer_wrap .container .Hero_banner_img {
  flex: 1;
}
@media (max-width: 1140px) {
  .Hero_banner .Outer_wrap .container .Hero_banner_img {
    display: none;
  }
}
.Hero_banner .Outer_wrap .container .Hero_banner_img figure {
  position: relative;
}
.Hero_banner .Outer_wrap .container .Hero_banner_img figure img {
  width: auto;
}

.Home_SecA .container .flex {
  justify-content: space-between;
}
.Home_SecA .container .flex .col {
  width: 100%;
}
.Home_SecA .container .flex .col:first-child {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (max-width: 860px) {
  .Home_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecA .container .flex .col:first-child figure img {
  width: 100%;
}
.Home_SecA .container .flex .col:last-child {
  flex: 0 1 43%;
  max-width: 43%;
  margin: auto 0;
}
@media (max-width: 860px) {
  .Home_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}

.Home_SecB .container .flex {
  justify-content: space-between;
}
.Home_SecB .container .flex .col {
  width: 100%;
}
.Home_SecB .container .flex .col:first-child {
  flex: 0 1 30%;
  max-width: 30%;
}
@media (max-width: 860px) {
  .Home_SecB .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecB .container .flex .col:last-child {
  flex: 0 1 70%;
  max-width: 70%;
}
@media (max-width: 860px) {
  .Home_SecB .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecB .container .Home_service_slider {
  margin-top: 40px;
}
.Home_SecB .container .Home_service_slider .item {
  padding: 10px;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap {
  border-radius: 36px;
  background: #fff;
  padding: 8px 8px 25px 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 10px rgba(201, 167, 143, 0.2509803922);
}
.Home_SecB .container .Home_service_slider .item .inner-wrap:hover .icons img {
  transform: rotateY(180deg);
}
.Home_SecB .container .Home_service_slider .item .inner-wrap:hover figure img {
  transform: scale(1.2);
}
.Home_SecB .container .Home_service_slider .item .inner-wrap .icons {
  content: "";
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -59%);
  z-index: 1;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media (max-width: 1230px) {
  .Home_SecB .container .Home_service_slider .item .inner-wrap .icons {
    top: 55%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 1024px) {
  .Home_SecB .container .Home_service_slider .item .inner-wrap .icons {
    top: 65%;
    transform: translate(-50%, -65%);
  }
}
@media (max-width: 675px) {
  .Home_SecB .container .Home_service_slider .item .inner-wrap .icons {
    top: 53%;
    transform: translate(-50%, -53%);
  }
}
.Home_SecB .container .Home_service_slider .item .inner-wrap .icons img {
  width: auto;
  transition: 0.3s ease;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap figure {
  border-radius: 27px;
  overflow: hidden;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap figure img {
  transition: 0.3s ease;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap figcaption {
  text-align: center;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap figcaption h5 {
  margin: 50px 0 15px;
}
.Home_SecB .container .Home_service_slider .item .inner-wrap figcaption p {
  color: #707070;
}

.Home_SecC .container .benifit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .Home_SecC .container .benifit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Home_SecC .container .benifit-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Home_SecC .container .benifit-grid .benefit-box {
  border: 1px solid #C9A78F;
  padding: 25px 15px 30px;
  border-radius: 36px;
}
.Home_SecC .container .benifit-grid .benefit-box figure img {
  margin: auto;
}
.Home_SecC .container .benifit-grid .benefit-box figcaption {
  text-align: center;
}
.Home_SecC .container .benifit-grid .benefit-box figcaption h6 {
  margin: 15px 0;
}
.Home_SecC .container .benifit-grid .benefit-box figcaption p {
  color: #707070;
}
.Home_SecC .container .Offer-slider {
  margin-top: 60px;
}
@media (max-width: 675px) {
  .Home_SecC .container .Offer-slider {
    margin-top: 30px;
  }
}
.Home_SecC .container .Offer-slider .item {
  padding: 8px;
}
.Home_SecC .container .Offer-slider .item figure {
  border-radius: 36px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.Home_SecD .flex {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .Home_SecD .flex {
    padding: 60px;
  }
}
@media (max-width: 675px) {
  .Home_SecD .flex {
    padding: 40px 15px;
  }
}
.Home_SecD .flex .col {
  width: 100%;
}
.Home_SecD .flex .col:first-child {
  flex: 0 1 40%;
  max-width: 40%;
}
@media (max-width: 860px) {
  .Home_SecD .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecD .flex .col:first-child figure img {
  width: 100%;
}
.Home_SecD .flex .col:last-child {
  flex: 0 1 55%;
  max-width: 55%;
  margin: auto 0;
}
@media (max-width: 1366px) {
  .Home_SecD .flex .col:last-child {
    padding: 60px 0;
  }
}
@media (max-width: 860px) {
  .Home_SecD .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 675px) {
  .Home_SecD .flex .col:last-child {
    padding: 60px 0 0;
  }
}
.Home_SecD .flex .col:last-child .inner-wrap {
  width: 600px;
}
@media (max-width: 1024px) {
  .Home_SecD .flex .col:last-child .inner-wrap {
    width: 100%;
    padding: 60px 0;
  }
}
@media (max-width: 675px) {
  .Home_SecD .flex .col:last-child .inner-wrap {
    padding: 0px 0 20px;
  }
}
.Home_SecD .flex .col:last-child .inner-wrap .web_cta_btn {
  margin-top: 40px;
}
.Home_SecD .flex .col:last-child .inner-wrap .web_cta_btn a {
  background: #C9A78F;
  border: 1px solid #C9A78F;
}
.Home_SecD .flex .col:last-child .inner-wrap .web_cta_btn a:hover {
  background: #fff;
  color: #8E7159;
  border-color: #8E7159;
}

.Home_SecE .container .heading {
  margin: auto;
  width: 900px;
}
@media (max-width: 991px) {
  .Home_SecE .container .heading {
    width: 100%;
  }
}
.Home_SecE .container .personalised {
  margin-top: 40px;
  padding: 40px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 675px) {
  .Home_SecE .container .personalised {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 675px) {
  .Home_SecE .container .personalised .box:not(:first-child) {
    margin-top: 40px;
  }
}
.Home_SecE .container .personalised .box figure img {
  margin: auto;
  transition: 0.3s ease;
}
.Home_SecE .container .personalised .box:hover figure img {
  transform: rotateY(180deg);
}
.Home_SecE .container .personalised .box figcaption {
  text-align: center;
  margin-top: 20px;
}

.Home_SecF .container .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .Home_SecF .container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Home_SecF .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Home_SecF .container .grid .inner-wrap {
  border-radius: 36px;
  background: #fff;
  padding: 8px 8px 25px 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 10px rgba(201, 167, 143, 0.2509803922);
}
.Home_SecF .container .grid .inner-wrap:hover figure img {
  transform: scale(1.2);
}
.Home_SecF .container .grid .inner-wrap figure {
  border-radius: 27px;
  overflow: hidden;
}
.Home_SecF .container .grid .inner-wrap figure img {
  width: 100%;
  transition: 0.3s ease;
}
.Home_SecF .container .grid .inner-wrap figcaption {
  padding: 0 15px;
}
.Home_SecF .container .grid .inner-wrap figcaption h6 {
  margin: 20px 0 15px;
}
.Home_SecF .container .grid .inner-wrap figcaption h6 a {
  color: #142736;
}
.Home_SecF .container .grid .inner-wrap figcaption h6:hover a {
  color: #8E7159;
}
.Home_SecF .container .grid .inner-wrap figcaption p {
  color: #142736;
  font-size: 12px;
  margin-top: 15px;
}
.Home_SecF .container .grid .inner-wrap figcaption p a{
	color: #8E7159;
}
.Home_SecF .container .grid .inner-wrap figcaption > a {
  display: inline-flex;
  color: #8E7159;
}
.Home_SecF .container .grid .inner-wrap figcaption > a span {
  margin-right: 10px;
  transition: 0.3s ease;
}
.Home_SecF .container .grid .inner-wrap figcaption > a:hover span {
  margin-right: 15px;
}

.Home_SecG .container .flex {
  justify-content: space-between;
}
.Home_SecG .container .flex .col {
  width: 100%;
}
.Home_SecG .container .flex .col:first-child {
  flex: 0 1 40%;
  max-width: 40%;
}
@media (max-width: 860px) {
  .Home_SecG .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecG .container .flex .col:last-child {
  flex: 0 1 55%;
  max-width: 55%;
}
@media (max-width: 860px) {
  .Home_SecG .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecG .container .leadform {
  border-radius: 36px;
  width: 900px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .Home_SecG .container .leadform {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .Home_SecG .container .leadform {
    padding: 40px 20px;
  }
}
.Home_SecG .container .leadform::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url(../../assets/images/resource/appoinment-image.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .Home_SecG .container .leadform::before {
    display: none;
  }
}
.Home_SecG .container .leadform .col {
  width: 100%;
}
.Home_SecG .container .leadform .col:first-child {
  flex: 0 1 60%;
  max-width: 60%;
}
@media (max-width: 767px) {
  .Home_SecG .container .leadform .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer {
  padding: 60px 0 0;
  background: #142736;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  bottom: 8%;
  right: 0;
  width: 231px;
  height: 280px;
  background: url(../../assets/images/resource/footer-shpe.png);
  background-position: right bottom;
}
footer .container .flex {
  border-bottom: 1px solid #8E7159;
  padding-bottom: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .container .flex {
    justify-content: space-evenly;
  }
}
@media (max-width: 860px) {
  footer .container .flex {
    justify-content: flex-start;
  }
}
footer .container .flex .col {
  width: 100%;
  flex: 0 1 25%;
  max-width: 25%;
}
footer .container .flex .col:last-child{
    width: 100%;
  flex: 0 1 30%;
  max-width: 30%;
}
@media (max-width: 860px) {
  footer .container .flex .col {
    flex: 0 1 48%;
    max-width: 48%;
  }
  footer .container .flex .col:last-child {
    margin-top: 40px;
  }
}
@media (max-width: 520px) {
footer .container .flex .col:last-child{
  flex: 0 1 100%;
  max-width: 100%;
}
  footer .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
  footer .container .flex .col:not(:first-child) {
    margin-top: 40px;
  }
}
footer .container .flex .col h5 {
  color: #fff;
  font-weight: 400;
  padding-left: 30px;
}
footer .container .flex .col > ul {
  margin-top: 20px;
}
footer .container .flex .col > ul > li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px 0;
}
footer .container .flex .col > ul > li:hover::before, footer .container .flex .col > ul > li.active::before {
  opacity: 1;
}
footer .container .flex .col > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/icons/title_left.png);
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 1;
}
footer .container .flex .col > ul > li > a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease;
  display: block;
  padding: 5px 0px 5px 30px;
  position: relative;
  z-index: 2;
}
footer .container .flex .col > ul > li > a:hover, footer .container .flex .col > ul > li > a.active {
  color: #8E7159;
}
footer .container .flex .col > ul.editor-view > li {
  margin: 15px 0;
  display: flex;
  padding: 5px 0px 5px 30px;
  width: 100%;
}
footer .container .flex .col > ul.editor-view > li::before {
  display: none;
}
footer .container .flex .col > ul.editor-view > li figure {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: left;
}
footer .container .flex .col > ul.editor-view > li figcaption {
  flex: 1;
}
footer .container .flex .col > ul.editor-view > li figcaption a {
  color: #fff;
}
footer .container .flex .col > ul.editor-view > li figcaption a:hover {
  color: #8E7159;
}
footer .container .flex .col > ul.editor-view > li figcaption p {
  color: #fff;
  font-size: 14px;
}
footer .patner_approved {
  padding: 15px 0;
  border-bottom: 1px solid #8E7159;
}
footer .patner_approved .flex {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer .patner_approved .flex .col {
  width: 100%;
}
footer .patner_approved .flex .col:first-child {
  flex: 0 1 15%;
  max-width: 15%;
}
footer .patner_approved .flex .col:nth-child(2) {
  flex: 1;
}
footer .patner_approved .flex .col:last-child {
  flex: 0 1 23%;
  max-width: 23%;
  text-align: left;
}
footer .patner_approved .flex .col p {
  color: #fff;
}
footer .patner_approved .flex .col figure img {
  margin: auto;
}

.social-media-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
}
.social-media-links > li > a {
  background: #8E7159;
  padding: 8px !important;
  width: 40px;
  height: 40px;
  border-radius: 25px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.social-media-links > li > a:hover i {
  color: #fff;
}
.social-media-links > li > a > i {
  font-size: 18px;
  color: #142736;
}

.footer-strip {
  padding: 10px 0;
  background: #C9A78F;
  position: relative;
}
.footer-strip > .container > .flex {
  padding-bottom: 0;
  border: none;
}
.footer-strip > .container > .flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 860px) {
  .footer-strip > .container > .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer-strip > .container > .flex .col:last-child {
    margin-top: 10px;
  }
}
.footer-strip > .container > .flex .col p {
  color: #142736;
  font-size: 14px;
}
.footer-strip > .container > .flex .col .box {
  display: flex;
  justify-content: right;
  align-items: center;
}
@media (max-width: 860px) {
  .footer-strip > .container > .flex .col .box {
    justify-content: center;
  }
}
.footer-strip > .container > .flex .col .box a {
  color: #142736;
  font-size: 14px;
  padding: 0 10px;
  transition: 0.3s ease;
}
.footer-strip > .container > .flex .col .box a:hover {
  color: #fff;
}

.InquiryPopModule {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 50%;
  transform: translate(200%, 0%);
  height: 100vh;
  width: 100%;
  background: #fff;
  transition: 0.5s ease;
  z-index: 999;
}
@media (max-width: 1024px) {
  .InquiryPopModule {
    height: auto;
    overflow-y: auto;
  }
}
@media (max-width: 520px) {
  .InquiryPopModule {
    max-width: 100%;
  }
}
.InquiryPopModule::-webkit-scrollbar {
  width: 3px;
  display: none;
}
.InquiryPopModule::-webkit-scrollbar-track {
  box-shadow: none;
}
.InquiryPopModule::-webkit-scrollbar-thumb {
  background-color: #8E7159;
  outline: 0;
}
.InquiryPopModule.open {
  transform: translate(-50%, 0%);
}
.InquiryPopModule .model-Wrap {
  padding: 80px 0 0;
  height: 100%;
  position: relative;
  overflow: auto;
}
@media (max-width: 520px) {
  .InquiryPopModule .model-Wrap {
    padding: 50px 0px 30px;
  }
}
.InquiryPopModule .modelBody {
  position: relative;
  padding-bottom: 40px;
}
.InquiryPopModule .modelBody .container .title {
  width: 600px;
}
@media (max-width: 675px) {
  .InquiryPopModule .modelBody .container .title {
    width: 100%;
  }
}
.InquiryPopModule .modelBody .container .title span.pop-title {
  font-size: 94px;
  font-weight: bold;
  color: #8E7159;
}
@media (max-width: 675px) {
  .InquiryPopModule .modelBody .container .title span.pop-title {
    font-size: 40px;
  }
}
.InquiryPopModule .modelBody .container .title p a {
  color: #8E7159;
}
.InquiryPopModule .modelBody .container .Outer_formbox {
  margin-top: 30px;
  position: relative;
}
.InquiryPopModule .modelBody .container .Outer_formbox .inner_box {
  width: 900px;
  position: relative;
  background: #F9F3F0;
  border-radius: 27px;
  padding: 40px 280px 40px 40px;
}
@media (max-width: 1024px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .inner_box {
    width: 100%;
    padding: 40px;
  }
}
@media (max-width: 675px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .inner_box {
    width: 100%;
    padding: 20px;
  }
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail {
  content: "";
  position: absolute;
  width: 380px;
  top: 50%;
  transform: translateY(-50%);
  right: -27%;
  border-radius: 27px;
  overflow: hidden;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(142, 113, 89, 0.3294117647);
  border: 1px solid #8E7159;
}
@media (max-width: 1140px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail {
    right: -17%;
  }
}
@media (max-width: 1024px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail {
    width: 100%;
    position: relative;
    top: 0;
    transform: translateY(0);
    right: 0;
    margin-top: 40px;
  }
}
@media (max-width: 675px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail {
    border-radius: 15px;
  }
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail h2 {
  color: #8E7159;
  font-weight: 500;
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li {
  margin: 20px 0;
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex {
  gap: 25px;
  align-items: center;
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex figure {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
  background: white;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 675px) {
  .InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex figure {
    width: 40px;
    height: 40px;
  }
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex figcaption {
  flex: 1;
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex figcaption a {
  display: block;
  color: #000;
  font-weight: 500;
}
.InquiryPopModule .modelBody .container .Outer_formbox .pop_contact_detail ul.pop-contact-details li .flex figcaption a:hover {
  color: #8E7159;
}
.InquiryPopModule .InquiryForm .flex {
  justify-content: space-between;
}
.InquiryPopModule .InquiryForm .flex .half {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 767px) {
  .InquiryPopModule .InquiryForm .flex .half {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.InquiryPopModule .form-group {
  position: relative;
  margin: 5px 0;
}
.InquiryPopModule .form-group label {
  padding-left: 10px;
}
.InquiryPopModule .form-group input {
  color: #000;
}
.InquiryPopModule .form-group input[type=submit] {
  margin-top: 20px;
  background: #fff;
  width: auto;
  padding: 12px 25px;
  border-radius: 30px;
  color: #8E7159;
  transition: 0.2s ease;
  display: inline-block;
  border: 1px solid #8E7159;
}
.InquiryPopModule .form-group input[type=submit]:hover {
  background: #8E7159;
  color: #fff;
}
.InquiryPopModule .form-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #8E7159;
  border-radius: 27px;
  font-size: 14px;
  font-family: Poppins;
}
.InquiryPopModule .form-control {
  width: 100%;
  padding: 10px 25px;
  color: #000000;
  border: 0;
  border: 1px solid #8E7159;
  outline: none;
  font-size: 14px;
}

.Internal_Banner_sec {
  height: 63vh;
  position: relative;
  background: #8E7159;
}
@media (max-width: 675px) {
  .Internal_Banner_sec {
    height: 35vh;
  }
}
.Internal_Banner_sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../../assets/images/icons/bannershape1.png);
  background-repeat: no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 675px) {
  .Internal_Banner_sec::before {
    display: none;
  }
}
.Internal_Banner_sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url(../../assets/images/icons/bannershape2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 675px) {
  .Internal_Banner_sec::after {
    opacity: 0.5;
  }
}
.Internal_Banner_sec .outer_wrap .banner-heading {
  content: "";
  position: absolute;
  left: 50%;
  top: 60%;
  width: 100%;
  transform: translate(-50%, -60%);
  text-align: center;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .Internal_Banner_sec .outer_wrap .banner-heading {
    width: 100%;
    text-align: center;
    top: 65%;
    transform: translate(-50%, -65%);
  }
}
.Internal_Banner_sec .outer_wrap .banner-heading h1 {
  color: #fff;
}

.About_SecA .container .flex {
  justify-content: space-between;
}
.About_SecA .container .flex .col {
  width: 100%;
}
.About_SecA .container .flex .col:first-child {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (max-width: 1024px) {
  .About_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.About_SecA .container .flex .col:first-child figure img {
  width: 100%;
}
.About_SecA .container .flex .col:last-child {
  flex: 0 1 43%;
  max-width: 43%;
  margin: auto 0;
}
@media (max-width: 1024px) {
  .About_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.About_SecA .container .dr-profile .flex {
  justify-content: space-between;
}
.About_SecA .container .dr-profile .flex .col {
  width: 100%;
}
.About_SecA .container .dr-profile .flex .col:first-child {
  flex: 0 1 30%;
  max-width: 30%;
  background: #F9F3F0;
  padding: 40px;
}
@media (max-width: 860px) {
  .About_SecA .container .dr-profile .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.About_SecA .container .dr-profile .flex .col:first-child figure {
  background: #C9A78F;
  padding: 15px 15px 0 15px;
}
.About_SecA .container .dr-profile .flex .col:first-child figcaption {
  text-align: center;
  margin-top: 15px;
}
.About_SecA .container .dr-profile .flex .col:last-child {
  flex: 0 1 67%;
  max-width: 67%;
}
@media (max-width: 860px) {
  .About_SecA .container .dr-profile .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.Service_SecA .container {
  position: relative;
}
.Service_SecA .container .flex .col {
  width: 100%;
  flex: 0 1 50%;
  max-width: 50%;
  margin: auto 0;
}
@media (max-width: 991px) {
  .Service_SecA .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Service_SecA .container .flex .col:first-child {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .Service_SecA .container .flex .col:last-child {
    margin-top: 30px;
  }
}
.Service_SecA .container .flex .col figure img {
  width: 100%;
  border-radius: 36px;
}

.Treatment_SecA .repeater {
  padding: 40px 0;
  position: relative;
}
.Treatment_SecA .repeater:first-child {
  padding-top: 0px;
}
.Treatment_SecA .repeater .container .flex {
  margin-top: 80px;
}
.Treatment_SecA .repeater .container .flex:first-child {
  margin-top: 0px;
}
.Treatment_SecA .repeater .container .flex.gap-30 {
  gap: 20px;
}
.Treatment_SecA .repeater .container .flex .col {
  width: 100%;
  flex: 0 1 50%;
  max-width: 50%;
  margin: auto 0;
  position: relative;
}
@media (max-width: 991px) {
  .Treatment_SecA .repeater .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Treatment_SecA .repeater .container .flex .col:first-child {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .Treatment_SecA .repeater .container .flex .col:last-child {
    margin-top: 30px;
  }
}
.Treatment_SecA .repeater .container .flex .col figure img {
  width: 100%;
  border-radius: 36px;
}
.Treatment_SecA .repeater .container .flex .col .booking-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .Treatment_SecA .repeater .container .flex .col .booking-btn {
    flex-wrap: wrap;
  }
}
@media (max-width: 675px) {
  .Treatment_SecA .repeater .container .flex .col .booking-btn {
    gap: 15px;
  }
}
.Treatment_SecA .repeater .container .flex .col .booking-btn .inner_cta_btn:first-child a {
  background: #C9A78F;
  border-color: #C9A78F;
}
.Treatment_SecA .repeater .container .flex .col .booking-btn .inner_cta_btn:last-child a {
  border-color: #C9A78F;
  color: #C9A78F;
}
.Treatment_SecA .repeater:nth-child(even) .container .flex .col:first-child {
  order: 2;
}
@media (max-width: 991px) {
  .Treatment_SecA .repeater:nth-child(even) .container .flex .col:first-child {
    order: 1;
  }
}
.Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child {
  order: 1;
}
@media (max-width: 991px) {
  .Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child {
    order: 2;
  }
}
.Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child .heading, .Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child .booking-btn {
  padding-left: 0;
  padding-right: 40px;
}
.Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child .heading h3::before, .Treatment_SecA .repeater:nth-child(even) .container .flex .col:last-child .booking-btn h3::before {
  width: 100%;
}

.Contact-SecA .container .flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 675px) {
  .Contact-SecA .container .flex .col:first-child {
    display: none;
  }
}
@media (max-width: 1140px) {
  .Contact-SecA .container .flex .col:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 675px) {
  .Contact-SecA .container .flex .col:last-child {
    padding-left: 0px;
  }
}
@media (max-width: 675px) {
  .Contact-SecA .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Contact-SecA .container .flex .col .contact-form {
  margin-top: 30px;
}
.Contact-SecA .container .flex .col .contact-form .form .flex {
  gap: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .Contact-SecA .container .flex .col .contact-form .form .flex {
    flex-wrap: wrap;
    gap: 0;
  }
}
.Contact-SecA .container .flex .col .contact-form .form .flex > .form-group {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  .Contact-SecA .container .flex .col .contact-form .form .flex > .form-group {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Contact-SecA .container .flex .col .contact-form .form .form-group {
  width: 100%;
  padding: 10px 0;
  margin: 0;
}
.Contact-SecA .container .flex .col .contact-form .form .form-group label {
  display: block;
  font-size: 16px;
  padding-left: 15px;
}
.Contact-SecA .container .flex .col .contact-form .form .form-group input {
  width: 100%;
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1803921569);
}
.Contact-SecA .container .flex .col .contact-form .form .form-group input[type=submit], .Contact-SecA .container .flex .col .contact-form .form .form-group input.form-submit-btn {
  background: #C9A78F;
  color: #fff;
  display: inline-block;
  padding: 15px 30px;
  width: auto;
  cursor: pointer;
  border: 1px solid #C9A78F;
  position: relative;
}
.Contact-SecA .container .flex .col .contact-form .form .form-group input[type=submit]:hover, .Contact-SecA .container .flex .col .contact-form .form .form-group input.form-submit-btn:hover {
  background: #fff;
  color: #8E7159;
}
.Contact-SecA .container .flex .col .contact-form .form .form-group input[type=submit]::after, .Contact-SecA .container .flex .col .contact-form .form .form-group input.form-submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(../../assets/images/icons/arrow-right.png);
}
.Contact-SecA .container .flex .col .contact-form .form .form-group textarea {
  width: 100%;
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1803921569);
  font-size: 16px;
  font-family: Poppins;
  border-radius: 36px;
  outline: none;
}
@media (max-width: 860px) {
  .Contact-SecA .container .flex .col figure {
    position: sticky;
    top: 120px;
  }
}

.Contact_SecB {
  padding-top: 0;
}
.Contact_SecB .container .heading {
  margin: auto;
  width: 900px;
}
@media (max-width: 991px) {
  .Contact_SecB .container .heading {
    width: 100%;
  }
}
.Contact_SecB .container .personalised {
  border-radius: 36px;
  margin-top: 40px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: baseline;
}
@media (max-width: 675px) {
  .Contact_SecB .container .personalised {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Contact_SecB .container .personalised .box {
  text-align: center;
}
@media (max-width: 675px) {
  .Contact_SecB .container .personalised .box:not(:first-child) {
    margin-top: 40px;
  }
}
.Contact_SecB .container .personalised .box figure {
  background: #fff;
  display: inline-block;
  padding: 25px;
  border-radius: 50%;
}
.Contact_SecB .container .personalised .box figure img {
  margin: auto;
  transition: 0.3s ease;
}
.Contact_SecB .container .personalised .box:hover figure img {
  transform: rotateY(180deg);
}
.Contact_SecB .container .personalised .box figcaption {
  text-align: center;
  margin-top: 20px;
}
.Contact_SecB .container .personalised .box figcaption a {
  display: inline-block;
  color: #142736;
  font-weight: normal;
  margin-top: 15px;
}
.Contact_SecB .container .personalised .box figcaption a:hover {
  color: #8E7159;
}

.Contact_SecC {
  line-height: 0;
}

.Blog_SecA .container .flex {
  justify-content: space-between;
}
.Blog_SecA .container .flex .col {
  width: 100%;
}
.Blog_SecA .container .flex .col:first-child {
  flex: 0 1 60%;
  max-width: 60%;
}
@media (max-width: 991px) {
  .Blog_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Blog_SecA .container .flex .col:first-child .blog-box {
  position: relative;
  padding-bottom: 40px;
  margin-top: 40px;
}
.Blog_SecA .container .flex .col:first-child .blog-box:first-child {
  margin-top: 0;
}
.Blog_SecA .container .flex .col:first-child .blog-box:first-child figure {
  border-radius: 36px 36px 0 0px;
}
@media (max-width: 991px) {
  .Blog_SecA .container .flex .col:first-child .blog-box:first-child figure {
    border-radius: 0;
  }
}
/*.Blog_SecA .container .flex .col:first-child .blog-box:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 11px;
  background: url(../../assets/images/icons/blog-end.png);
}*/

.Blog_SecA .container .flex .col:first-child .blog-box:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 11px;
  background: url(../../assets/images/icons/blog-end.png);
}

.Blog_SecA .container .flex .col:first-child .blog-box:hover figure img {
  transform: scale(1.2);
}
.Blog_SecA .container .flex .col:first-child .blog-box:hover figcaption h6 {
  color: #8E7159;
}
.Blog_SecA .container .flex .col:first-child .blog-box figure {
  overflow: hidden;
}
.Blog_SecA .container .flex .col:first-child .blog-box figure img {
  width: 100%;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption span {
  display: block;
  font-size: 12px;
  margin: 10px 0 0;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption span a{
	color: #8E7159;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption h6 {
  margin: 15px 0;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption .blog-cta {
  margin-top: 20px;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption .blog-cta a {
  display: inline-flex;
  align-items: center;
  color: #8E7159;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption .blog-cta a:hover img {
  margin-left: 15px;
}
.Blog_SecA .container .flex .col:first-child .blog-box figcaption .blog-cta a img {
  margin-left: 10px;
  transition: 0.3s ease;
}
.Blog_SecA .container .flex .col:last-child {
  flex: 0 1 38%;
  max-width: 38%;
}
@media (max-width: 991px) {
  .Blog_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}
.Blog_SecA .container .flex .col:last-child .sidebar {
  border-radius: 36px;
  background: #F9F3F0;
}
.Blog_SecA .container .flex .col:last-child .sidebar .heading {
  padding: 25px 20px 20px 25px;
  border-bottom: 1px solid #C9A78F;
}
.Blog_SecA .container .flex .col:last-child .sidebar .heading h5 {
  color: #142736;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul {
  padding: 20px 20px;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li {
  margin: 20px 0;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li:first-child {
  margin-top: 0;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li .flex {
  justify-content: space-between;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li .flex figure {
  flex: 0 1 35%;
  max-width: 35%;
  width: 100%;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li .flex figcaption {
  flex: 0 1 60%;
  max-width: 60%;
  width: 100%;
}
.Blog_SecA .container .flex .col:last-child .sidebar ul li .flex figcaption h6 {
  font-size: 14px;
}

.BlogDetail_SecA .container .flex {
  justify-content: space-between;
}
.BlogDetail_SecA .container .flex .col {
  width: 100%;
}
.BlogDetail_SecA .container .flex .col:first-child {
  flex: 0 1 60%;
  max-width: 60%;
}
@media (max-width: 991px) {
  .BlogDetail_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.BlogDetail_SecA .container .flex .col:first-child .content figure img {
  width: 100%;
}
.BlogDetail_SecA .container .flex .col:first-child .content figure span {
  display: inline-block;
  margin: 15px 0;
  font-size: 12px;
}
.BlogDetail_SecA .container .flex .col:first-child .content figure span a {
    color: #8E7159;
}
.BlogDetail_SecA .container .flex .col:last-child {
  flex: 0 1 38%;
  max-width: 38%;
}
@media (max-width: 991px) {
  .BlogDetail_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar {
  border-radius: 36px;
  background: #F9F3F0;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar .heading {
  padding: 25px 20px 20px 25px;
  border-bottom: 1px solid #C9A78F;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar .heading h5 {
  color: #142736;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul {
  padding: 20px 20px;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li {
  margin: 20px 0;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li:first-child {
  margin-top: 0;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li .flex {
  justify-content: space-between;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li .flex figure {
  flex: 0 1 35%;
  max-width: 35%;
  width: 100%;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li .flex figcaption {
  flex: 0 1 60%;
  max-width: 60%;
  width: 100%;
}
.BlogDetail_SecA .container .flex .col:last-child .sidebar ul li .flex figcaption h6 {
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */

textarea.wpcf7-form-control.wpcf7-textarea {
    height: auto !important;
}