/* @font-face {
    font-family: 'BE-Bold';
    src: url('../fonts/BeVietnamPro-Bold.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */
 @layer base {
  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
  }
}
:root {
    --main-color: #007E62;
    --yellow-color: #FFDB63;
    --green-bright: #00FF9F;
    --default-color-text: #222222;
}
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html,body{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--default-color-text);
}
input{
    box-sizing: border-box;
}
img{
    display: block;
    width: 100%;
    overflow-clip-margin: unset;
    overflow: clip;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
    color: #000;
}
.mc-container{
    max-width: 1360px;
    margin: 0 auto;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2146px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.background::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 449px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #f8cc6d -187.39%, #fff 60.47%), #edecec;
}
.background::after {
  content: "";
  position: absolute;
  top: 956.5px;
  width: 100%;
  height: 1697px;
  background: linear-gradient(180deg, #fff 9.96%, #f8cc6d 52.51%, #fff 84.63%),
    #edecec;
}

.post-background {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 449px;
  flex-shrink: 0;
  opacity: 0.4;
  background: linear-gradient(180deg, #f8cc6d -187.39%, #fff 60.47%), #edecec;
  z-index: 0;
}
.main-content {
  position: relative;
  z-index: 1;
}
.banner img {
  width: 100%;
  /* height: 711px; */
}

section {
  margin-top: 156px;
}

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

.container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.header-subheader {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 137px;
}

.section-title {
  color: var(--Gold-main, #b37917);
  text-align: center;
  font-size: 100px;
  font-weight: 400;
  max-width: 1473px;
  margin-bottom: 30px;
}

.section-desc {
  color: var(--Wireframe-60, #697077);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 772px;
  margin-bottom: 70px;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #dfc7a8;
}

.tab-button {
  background: none;
  border: none;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 5px solid transparent;
}

.tab-button.active {
  color: var(--Wireframe-90, #21272a);
  border-color: #b37917;
}

.tab-content,
.tab-card-content {
  display: none;
  grid-template-columns: repeat(3, 1fr);
}

.tab-content.active,
.tab-card-content.active {
  display: grid;
}

.tab-card-content {
  margin-top: 58px;
  gap: 20px;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 460px));
}

.card:hover {
  box-shadow: -1px 10px 16px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.card {
  padding: 40px 41px;
  border-radius: 10px;
  background: var(--Default, #fff);
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
}

.card-img {
  width: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.card-img.normal-img {
  opacity: 1;
  z-index: 1;
}

.card-img.hover-img {
  opacity: 0;
  z-index: 2;
}

.card:hover .card-img.normal-img {
  opacity: 0;
}

.card:hover .card-img.hover-img {
  opacity: 1;
}

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #333;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card-meta span {
  position: relative;
  padding: 0 8px;
  color: var(--Wireframe-90, #21272a);
  font-size: 14px;
}
.card-meta span:first-child {
  padding-left: 0;
}
.card-meta span.divider::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: #21272a;
}

.card-meta span.divider::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: #21272a;
}

.card-title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: start;
}

.tab-content img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slider-card.faded {
  opacity: 0.2;
  transition: all 0.5s ease;
}

.slider-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.3s;
  background-color: transparent;
}
.slider-img {
  height: 100%;
}
.slider-card img {
  width: 100%;
  height: 100%;
  max-height: 525px;
  object-fit: cover;
  display: block;
}

.slider-card.fade {
  opacity: 0.2;
}
.slider-info {
  margin-top: 31px;
  color: var(--Wireframe-60, #697077);
  font-size: 14px;
  font-weight: 400;
}
.slider-card-title {
  color: var(--Wireframe-90, #21272a);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-info {
  padding: 12px;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
  background: var(--Default, #fff);
  stroke-width: 3px;
  border: none;
  stroke: var(--Gold-main, #b37917);
  width: 60px;
  height: 60px;
  border-radius: 999px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-btn img {
  width: 70%;
}
.slider-btn:hover {
  background-color: #fef5dd;
}

.slider-dots {
  margin-top: 77px;
  text-align: center;
}
.news-section .slider-dots{
  margin-top: -15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: var(--Gold-light, #ffeed9);
  transition: background 0.3s;
}

.dot.active {
  background-color: var(--Gold-main, #b37917) !important;
}

.branch-wrapper {
  display: flex;
  max-width: 1669px;
  margin: 0 0 0 auto;
  margin-top: 182px;
  gap: 21px;
  flex-wrap: wrap;
}

.branch-left {
  flex: 1;
  padding: 0 16px;
}

.search-box {
  display: flex;
  width: 100%;
  padding: 28px 42px;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  background: var(--Wireframe-10, #f2f4f8);
  margin-bottom: 32px;
}

.search-box input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 18px;
  outline: none;
}

.search-box button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.branch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  max-height: 705px;
  overflow: auto;
}

.branch-card {
  border-radius: 10px;
  background: var(--Gold-light-yellow, #fff7e2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.branch-card img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 210px;
}

.branch-info {
  padding: 6px 20px;
}

.branch-info h4 {
  color: var(--Gold-main, #b37917);

  font-family: Manrope;
  font-size: 20px;
  font-weight: 700;
}

.branch-info p {
  color: var(--Wireframe-90, #21272a);

  font-family: Manrope;
  font-size: 14px;
  font-weight: 500;
  margin: 12px 0;
  display: flex;
  gap: 38px;
}

.branch-info span {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 7px;
  color: var(--Wireframe-90, #21272a);

  font-size: 14px;
  font-weight: 500;
}

.branch-info img {
  width: 14px;
  height: 14px;
}

.branch-map {
  flex: 1;
  min-height: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.branch-map iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}

.tab-card-content > .readmore-container {
  grid-column: 1 / -1;
  justify-self: center;
}

.readmore-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.readmore-btn {
  display: inline-flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(
    --Gold-gradient,
    linear-gradient(90deg, #cb9849 0%, #9e6e00 100%)
  );
  color: white;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.readmore-btn:hover {
  opacity: 0.8;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 64px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

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

.form-submit button {
  background: #b37917;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.highlight-box {
  background: linear-gradient(to right, #fdf3e7, #fff4d6);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.highlight-box img {
  width: 300px;
  border-radius: 12px;
}

.highlight-box ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
}

.branch-search {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.branch-search .search-box {
  max-width: 702px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.branch-card {
  background: #fffaf0;
  border: 1px solid #f1e3d0;
  border-radius: 10px;
  /* padding: 24px; */
}

.branch-card h4 {
  margin: 0 0 12px;
  color: #b37917;
  font-size: 16px;
}

.branch-card ul {
  list-style: none;
  padding-left: 10px;
  position: relative;
}

.branch-card li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.branch-card ul li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #b37917;
  border-radius: 50%;
}

.branch-card p {
  font-size: 14px;
  color: #444;
  margin: 4px 0 10px 0;
}

.post-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mc-content-post-single {
  line-height: 24px;
}
.mc-content-post-single img{
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
}
.mc-pagination .screen-reader-text{
  display: none;
}
.no-post{
    text-align: center;
    padding: 50px 0 0 0;
    color: red;
}
.mc-pagination .nav-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mc-content-post-single figure{
  width: 100% !important;
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
}
.mc-content-post-single figure img{
  margin-bottom: 0;
}
.mc-content-post-single figcaption{
    text-align: center;
    padding: 5px 0;
    background: #ffd897;
    border-radius: 0px 0px 10px 10px;
}
.mc-content-post-single ul{
  padding-left: 30px;
  margin-bottom: 15px;
}
.mc-content-post-single ul li{
  list-style-type: disc;
  margin-bottom: 10px;
}
.mc-content-post-single p{
  margin-bottom: 15px;
}
.mc-content-post-single h1{
  line-height: 35px;}
.mc-content-post-single h1, .mc-content-post-single h2, .mc-content-post-single h3, .mc-content-post-single h4, .mc-content-post-single h5, .mc-content-post-single h6{
  color: #B37917;
  margin-bottom: 15px;
}
.mc-content-post-single h3{
   font-size: 18px;
    color: #B37917;
    margin-bottom: 15px;
}
.mc-content-post-single h2{
  font-size: 24px;
  color: #B37917;
  margin-bottom: 15px;
  line-height: 30px;
}
.mc-content-post-single b, .mc-content-post-single strong{
  color: #B37917;
}

.post-container {
  max-width: 839px;
  margin: 0 auto;
  padding: 40px 0;
}

.post-breadcrumbs {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-title {
  color: #b37917;
  font-size: 64px;
  font-weight: 600;
  line-height: 120%;
  margin: 32px 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #697077;
  font-size: 14px;
  margin-bottom: 17px;
}

.post-meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.post-summary {
  color: #343a3f;
  font-size: 16px;
  font-weight: 800;
  line-height: 160%;
  margin-top: 41px;
  margin-bottom: 46px;
}

.makeup-summary-box {
  border-radius: 10px;
  border: 1px dashed #b37917;
  background: #fffbf7;
  padding: 44px;
}

.makeup-summary-box ul {
  padding-left: 20px;
}

.makeup-summary-box li,
.makeup-summary-box strong {
  color: #343a3f;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.28px;
}

.makeup-summary-box li {
  font-weight: 500;
}

.makeup-summary-box strong {
  font-weight: 700;
}

.post-body h2 {
  color: var(--Gold-main, #b37917);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.42px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.post-body h3 {
  color: var(--Gold-main, #b37917);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  margin: 10px 0;
}

.post-body p {
  color: var(--Wireframe-80, #343a3f);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28px;
}

.image-section {
  margin: 16px 0;
  text-align: center;
}

.image-section img {
  max-width: 100%;
}

.image-caption {
  background-color: var(--Gold-light, #ffeed9);
  color: var(--Gold-dark, #9e6e00);
  position: relative;
  top: -10px;
  padding: 5px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  font-size: 14px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.post-rating {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.stars {
  color: #ff9900;
  font-size: 25px;
}

.rating-value {
  color: var(--Wireframe-80, #343a3f);
  font-size: 14px;
  letter-spacing: 0.28px;
}

.post-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc6b5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon:hover {
  opacity: 0.8;
}
.social-icon img {
  width: 16px;
  height: 16px;
}

.post-author {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding: 16px;
  border-radius: 10px;
  border: 1px dashed #b37917;
  background: #fffbf7;
  align-items: flex-start;
}

.author-avatar img {
  width: 125px;
  height: 125px;
  object-fit: fill;
}

.author-name {
  color: var(--Gold-main, #b37917);
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0;
}

.author-role {
  color: var(--Wireframe-60, #697077);
  font-size: 13px;
  font-weight: 700;
  margin-top: 0 !important;
}

.author-info p {
  color: var(--Wireframe-60, #697077);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 18px;
}

.author-modified {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #009f57 !important;
  margin-top: 0;
  font-size: 12px;
  line-height: 120%;
}
.author-info p span {
  color: var(--Gold-main, #b37917);
}
.author-info p span:hover {
  font-weight: 700;
}
.qa-form {
  padding: 30px 34px;
  border-radius: 10px;
  border: 1px solid var(--Gold-middle, #f1d1a9);
  margin: 40px 0;
}

.qa-form label {
  color: #000;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.42px;
  gap: 10px;
}

.qa-form textarea {
  width: 100%;
  height: 80px;
  border: none;
  font-size: 14px;
  padding: 18px 28px;
  border-radius: 10px;
  background: var(--Gold-light, #ffeed9);
  margin: 20px 0;
  outline: none;
}
.qa-form button {
  display: flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(
    --Gold-gradient,
    linear-gradient(90deg, #cb9849 0%, #9e6e00 100%)
  );
  border: none;
  text-transform: uppercase;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.qa-form button:hover {
  background: #8f5800;
  cursor: pointer;
}

#post-section {
  margin-top: 86px;
  max-width: 1488px;
}

#post-section .section-title {
  font-size: 64px;
  margin-bottom: 20px;
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 80px;
}

.related-post-card img {
  width: 100%;
  border-radius: 4px;
}

.article-meta {
  font-size: 12px;
  color: #999;
  margin: 6px 0;
}

.article-title {
  font-weight: bold;
  font-size: 15px;
  color: #222;
}

.consultation-form {
  text-align: center;
  padding: 0 200px;
  padding-top: 64px;
  border-top: 1px solid #dfc7a8;
}

form {
  margin-top: 40px;
}

.form-row {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-row:last-child {
  margin-bottom: 0;
}
.input-data {
  position: relative;
  width: 100%;
}

.input-data input {
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #c1c7cd;
  background-color: transparent;
  outline: none;
  text-align: center;
}

/* .input-data label {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
} */

.input-data input::placeholder {
  color: var(--Wireframe-80, #343a3f);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.input-data input:focus::placeholder {
  color: transparent;
}

/* .input-data input:valid ~ label {
  opacity: 1;
  top: 0;
  font-size: 14px;
  color: #b67d17;
  background: #fff;
  padding: 0 4px;
  transform: translateY(-50%) translateY(0);
} */

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: #b67d17;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.input-data input:focus ~ .underline,
.input-data input:valid ~ .underline {
  transform: scaleX(1);
}

.submit-btn {
  display: inline-flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(
    --Gold-gradient,
    linear-gradient(90deg, #cb9849 0%, #9e6e00 100%)
  );
  font-size: 16px;
  border: none;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.submit-btn:hover {
  background: #8f5800;
  cursor: pointer;
}

.contact-container {
  padding: 0 250px;
}

.diva-info-section {
  margin-top: 197px;
  position: relative;
}
.diva-info{
    top: 50% !important;
    transform: translateY(-50%);
}
.diva-info-background,
.feedback-background,
.feedback-section {
  position: relative;
}
.diva-info-background img,
.feedback-background img {
  width: 100%;
  height: 540px;
}

.feedback-background .sub-background {
  right: 79px;
}
.sub-background {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.sub-background img {
  height: 120%;
  position: relative;
  transform: translateY(-16.5%);
}
.pagination{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.pagination .page-numbers{
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border: 1px solid #d1b071;
  margin-bottom: 10px;
}
.pagination .page-numbers.current{
  background: #d1b071;
  color: #fff;
}
.diva-info,
.feedback-info {
  position: absolute;
  top: 0;
  width: 100%;
}
.diva-info .content,
.feedback-info .content {
  padding: 60px 120px;
  width: 80%;
}
.contact-form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.diva-info .title {
  color: var(--Gold-main, #b37917);
  font-size: 54px;
  font-weight: 400;
}

.diva-info .contact-list {
  color: var(--Wireframe-80, #343a3f);
  font-size: 16px;
  font-weight: 400;
  margin-left: 30px;
  margin-top: 10px;
}

.diva-info .contact-list li {
  margin-bottom: 5px;
  list-style-type: disc;
}

.diva-info .contact-list strong {
  font-weight: 700;
}
.contact-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-container .form-label {
  color: var(--Wireframe-80, #343a3f);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0;
}

.contact-container textarea {
  width: 100%;
  padding-bottom: 20px;
  font-size: 16px;
  outline: none;
  text-align: center;
  font-family: "Manrope";
}

.contact-container textarea::placeholder {
  color: var(--Wireframe-80, #343a3f);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.social-icons a:hover {
  opacity: 0.8;
}

.slider-window {
  position: relative;
}

#background-mobile,
#banner-mobile {
  display: none;
}
.contact-form-container form {
  margin-top: 0;
}

.expert-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 250px;
}
.expert-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
.intro-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.intro-section .container {
  max-width: 1473px;
  padding: 0 16px;
}
.intro-section .sub-header {
  margin-bottom: 13px;
}
.intro-section .container-header {
  margin-bottom: 74px;
}
.intro-content {
  display: flex;
  justify-content: center;
  gap: 103px;
  flex-wrap: wrap;
  margin-bottom: 77.5px;
}

.intro-block {
  flex: 1;
  text-align: center;
}

.intro-block h3 {
  color: var(--Wireframe-80, #343a3f);
  margin-bottom: 12.5px;
  font-size: 20px;
  font-weight: 700;
}

.intro-block p {
  color: var(--Wireframe-70, #4d5358);
  font-size: 14px;
  font-weight: 500;
}

.intro-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 103px;
}

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

.stat-number {
  color: var(--Gold-main, #b37917);
  font-size: 64px;
  font-weight: 400;
  white-space: nowrap;
}

.stat-label {
  color: var(--Wireframe-80, #343a3f);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.timeline-section {
  padding-top: 55px;
  padding-bottom: 64px;
}

.header-subheader {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 257px;
  margin-bottom: 17px;
}
.sub-header {
  color: var(--Gold-main, #b37917);
  font-size: 16px;
  font-weight: 400;
}

.timeline-description {
  flex: 1;
  max-width: 500px;
  color: var(--Wireframe-80, #343a3f);

  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
.timeline-desktop {
  display: flex;
  gap: 150px;
  align-items: center;
}
.timeline-bar {
  flex: 1;
  display: flex;
  border-top: 1px solid #ccc;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  height: 60px;
  width: 100%;
}
.timeline-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  left: -1%;
}
.timeline-item .dot {
  width: 10px;
  height: 10px;
  background: #b37917;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 0;
}
.timeline-item .year {
  font-weight: bold;
  font-size: 14px;
  margin-top: -25px;
  display: block;
}
.timeline-item .popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: -30px;
  right: 0px;
  width: 250px;
  height: 150px;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
#introduce .mc_abus_style{
  margin-top: 0;
}

.timeline-item:hover .popup {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.timeline-item .popup .dot {
  position: relative;
}
.timeline-mobile {
  display: none;
}

.license-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.license-item img {
  width: 100%;
  max-height: 509px;
  aspect-ratio: 702/509;
}

.caption {
  color: var(--Wireframe-60, #697077);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
}
.heading-desc {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 235px;
  margin-bottom: 49px;
}
.heading-desc p {
  max-width: 772px;
}
.news-section .slider-card img {
  height: unset;
}
.news-section .slider-dots {
  text-align: left;
  max-width: 1670px;
  position: relative;
}
.news-section .slider-card.faded {
  opacity: 1 !important;
}

#doctor-section .dot {
  background-color: var(--Default, #fff);
}

.main-swiper img {
  width: 100%;
  height: 332px;
  aspect-ratio: 2/1;
}
.slide-show {
  position: relative;
  max-width: 700px;
}
.main-swiper {
  --swiper-navigation-color: #b37917;
}

.thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}

.thumb-swiper {
  flex: 1;
  padding: 10px 0;
}

.thumb-swiper .swiper-slide {
  width: 100px;
  height: 115px;
  cursor: pointer;
}

.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #b37917;
}

.thumb-swiper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.thumb-nav-btn {
  background: #b37917;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  border: none;
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.slide-show .slider-btn {
  top: 93%;
  width: 38px;
  height: 38px;
}
.slide-show .slider-btn img {
  width: 50%;
}

.equipment-section .heading-desc {
  margin-bottom: 53px;
  justify-content: flex-start;
}
.intro-branch-wrapper {
  display: flex;

  gap: 21px;
  flex-wrap: wrap;
}
.news-section .slider {
  padding: 0;
}
.intro-section .sub-header {
  text-align: center;
}
.doctor-section .slider {
  margin-top: 84px;
}
.equipment-section {
  position: relative;
  margin-top: 150px;
}
.equipment-section .sub-header {
  position: relative;
  top: -8px;
  left: 169px;
}
.equipment-section .section-title {
  margin-bottom: 13px;
}
.equipment-section .sub-header p {
  color: var(--Gold-main, #b37917);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.equipment-section img {
  width: 100%;
}
.equipment-section img.mobile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.equipment-section .container {
  position: absolute;
  top: 0;
  height: 100%;
}
.equipment-section .container > img {
  width: 100%;
}
.media-section {
  padding: 60px 0px;
  text-align: left;
}

.media-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.media-left {
  flex: 1;
  min-width: 280px;
}

.media-title {
  color: var(--Gold-main, #b37917);
  font-size: 100px;
  font-weight: 400;
}

.media-right {
  flex: 1;
  min-width: 280px;
}

.media-desc {
  color: var(--Wireframe-60, #697077);
  font-size: 16px;
  font-weight: 500;
}

.media-logos {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.media-logos img {
  height: 100%;
  height: 100%;
  max-height: 88px;
  object-fit: contain;
  max-width: 266px;
}

#introduce,
#homepage {
  max-width: 1670px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.center-banner {
  display: flex;
  justify-content: center;
}
#introduce .banner,
#homepage .banner {
  position: relative;

  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.form-box {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0.8;
  background: white;
  border-radius: 12px;
  padding: 48px 45px;
  width: 460px;
  height: 408px;
  max-width: 460px;
  text-align: left;
  border-radius: 20px;
  background: var(--Gold-light-yellow, #fff7e2);
}

.form-box h2 {
  color: var(--Gold-main, #b37917);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 3px;
  position: relative;
  left: 5px;
}

.form-box p {
  color: var(--Wireframe-60, #697077);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 21px;
  position: relative;
  left: 9px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-box input {
  display: flex;
  width: 100%;
  height: 56px;
  padding: 10px 24px;
  gap: 10px;
  outline: none;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid var(--Gold-main, #b37917);
  background: var(--Default, #fff);
}

.form-box button {
  border-radius: 100px;
  background: var(
    --Gold-gradient,
    linear-gradient(90deg, #cb9849 0%, #9e6e00 100%)
  );
  display: flex;
  width: 100%;
  height: 56px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  color: var(--Default, #fff);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 0.5px;
}

.form-box button:hover {
  background-color: #9c6214;
}
.form-section {
  position: relative;
}
.feedback-section,
.media-section,
.highlight-section {
  max-width: 1670px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.content-heading {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 55px;
}
.feedback-subheading {
  color: var(--Gold-main, #b37917);
  font-size: 16px;
  font-weight: 400;
}

.feedback-heading {
  color: var(--Gold-main, #b37917);
  font-size: 100px;
  font-weight: 400;
}

.feedback-quote {
  position: absolute;
  top: 200px;
  left: 120px;
  width: 60px;
  height: auto;
}

.feedback-quote img {
  width: 100%;
  height: auto;
}

.swiper {
  margin-top: 0;
}
.mc-branch-cate{
  max-width: 1670px;
  margin: 0 0 0 auto;
}

.feedback-card {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-left: 104px;
  margin-bottom: 30px;
}
.feedback-content {
  margin-bottom: 33px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  max-width: 550px;
}
.feedback-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feedback-user img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  margin: 0;
  color: var(--Wireframe-90, #21272a);
  font-size: 20px;
  font-weight: 700;
}

.user-info p {
  margin: 4px 0 6px;
  color: var(--Wireframe-90, #21272a);
  font-size: 14px;
  font-weight: 500;
}

.stars {
  color: #b37917;
  font-size: 16px;
  letter-spacing: 2px;
}

.swiper-pagination {
  text-align: left;
}

.swiper-pagination-bullet {
  background: #f2f4f8 !important;
  width: 10px;
  height: 10px;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #b37917 !important;
}
.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 283px;
}

.center {
  max-width: 555px;
  flex: none;
}

.center-image img {
  /* width: 100%; */
  /* max-width: 480px; */
  height: 100%;
  display: block;
}

.highlight-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 70px;
  height: 70px;
  background: #fff7e2;
  color: #b37917;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.highlight-item h3 {
  color: var(--Wireframe-80, #343a3f);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  margin-bottom: 4px;
}
.column.left,
.column.right {
  position: relative;
  top: 33px;
}
.column.left .circle {
  position: relative;
  left: -7px;
}
.highlight-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.highlight-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
  flex-wrap: wrap;
}
.highlight-section {
  text-align: center;
  position: relative;
  top: -122px;
}

.service-header .sub-header {
  display: flex;
  /* align-items: flex-start; */
  /* justify-content: flex-start; */
  text-align: left;
  margin-bottom: 51px;
}
.header-right {
  margin-left: 628px;
  line-height: 153%;
  /* flex: 1; */
}

.service-header .section-title {
  margin-bottom: 67px;
}

.service-header .heading-desc {
  margin-bottom: 75px;
}
.service-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.service-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1366px;
  margin: 0 auto;
}
.service-list a{
  flex: 0 0 25%;
  max-width: 23%;
  width: 100%;
}
.service-item {
  display: flex;
  max-width: 100%;
  height: 467px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: var(--Gold-light-yellow, #fff7e2);
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item p {
  padding: 22.5px 0;
  color: var(--Gold-main, #b37917);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-item:hover {
  transform: translateY(-6px);
}
.hero-section {
  padding: 40px 0;
}

.hero-header {
  flex: 1;
  padding: 37px;
  padding-bottom: 19px;
}

.hero-top {
  position: relative;
  top: 16px;
  left: -91px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 187px;
  text-align: right;
  margin-bottom: 8px;
  color: var(--Wireframe-80, #343a3f);
  font-size: 18px;
  font-weight: 700;
}
.hero-top > div > p:last-child {
  position: relative;
  left: 32.5%;
  top: 4px;
}
.hero-top span {
  color: var(--Gold-main, #b37917);
}

.hero-title {
  color: var(--Wireframe-80, #343a3f);
  font-size: 160px;
  font-weight: 400;
}

.hero-slider {
  flex: 1.5;
  position: relative;
}

.swiper-controller {
  position: absolute;
  width: 267px;
  right: 31px;
  top: -88px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-controls {
  position: relative;
  left: 0;
  top: -38px;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}

.swiper-scrollbar.custom-scrollbar {
  left: unset !important;
  right: 20px;
  width: calc(100% - 40px) !important;
  height: 4px !important;
  border-radius: 0 !important;
  background-color: #ffeed9;
  position: relative;
}

.swiper-scrollbar-drag {
  background: #b37917 !important;
  border-radius: 0 !important;
  height: 100%;
}

.hero-button-prev,
.hero-button-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #b37917;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b37917;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button-prev:hover,
.hero-button-next:hover {
  background-color: #fff7e2;
}

.branch-near-section .branch-card {
  padding: 24px;
}
.mobile-image {
  display: none;
}
.feedback-section {
  margin-top: 158px;
}
.form-section {
  margin-top: 107px;
}

a.card {
  text-decoration: none;
}
.hero-mobile {
  display: none;
}

.news-section .dot {
  background-color: var(--Wireframe-10, #f2f4f8);
}

.hero-top p:last-child {
  position: relative;
  top: 4px;
  left: 76px;
}
.swiper-slide {
  overflow: hidden;
}
.service-section {
  margin-top: 61px;
}
.service-section .container-header {
  position: relative;
  top: -13px;
  left: -124px;
}
.service-section .section-title {
  margin-bottom: 46px;
}
.service-section .heading-desc p {
  max-width: 414px;
  position: relative;
  left: -299px;
  text-align: left;
  color: var(--Wireframe-60, #697077);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.doctor-section {
  margin-top: 100px;
}
.doctor-section .sub-header {
  position: relative;
  top: -10px;
}
.doctor-section .sub-header p {
  color: var(--Gold-main, #b37917);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.doctor-section .section-title {
  position: relative;
  left: 11px;
  margin-bottom: 24px;
}

.doctor-section .heading-desc p {
  position: relative;
  left: 59px;
  color: var(--Wireframe-60, #697077);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
}
.doctor-section .slider {
  margin-top: 93px;
}
.highlight-section {
  max-width: 1361px;
}
.highlight-section .sub-header p {
  color: var(--Gold-main, #b37917);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.highlight-section .sub-header {
  margin-bottom: 10px;
}
.media-section {
  margin-top: 68px;
  max-width: 1422px;
}
.media-subtitle {
  position: relative;
  top: 13px;
  color: var(--Gold-main, #b37917);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 36px;
}
.media-title {
  position: relative;
}
.media-right p {
  position: relative;
  top: 23px;
  left: -10px;
  max-width: 555px;
}
.form-box form {
  margin-top: 10px;
}
.feedback-section {
  max-width: 1420px;
}
.footer {
  background-color: #b37917;
  color: white;
  font-family: sans-serif;
  margin-top: 120px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 87px 0px;
  flex-wrap: wrap;
  padding-bottom: 65px;
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-logo > div {
  display: flex;
  flex-direction: column;
}
.footer-logo .logo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 33px;
}
.dva-facebook {
  max-width: 461px;
  width: 100%;
  margin-bottom: 33px;
}
.footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  /* left: 8px; */
  padding-top: 10px;
}

.slogan {
  color: var(--Gold-light, #ffeed9);
  font-family: Manrope;
  font-size: 24px;
  font-weight: 700;
  max-width: 690px;
}

.footer-info {
  display: flex;
  gap: 53px;
  margin-top: 17px;
  position: relative;
  left: 0;
}

.footer-info h4 {
  color: var(--Gold-light, #ffeed9);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li {
  margin-bottom: 10px;
  white-space: nowrap;
}
.footer-info li a {
  color: var(--Gold-light, #ffeed9);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}
.footer-info li a:hover {
  opacity: 0.8;
}
.footer-info li img {
  margin-right: 10px;
}
.social-icons {
  display: flex;
  max-width: 200px;
  min-width: 150px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px 5px;
  flex-wrap: wrap;
  position: relative;
  left: -4px;
  top: -1px;
}

.social-icons a {
  display: flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--Wireframe-20, #dde1e6);
}
.footer-certificate {
  margin-top: 22.5px;
  display: flex;
  justify-content: center;
}
.footer-certificate img {
  max-width: 120px;
  max-height: 43px;
  width: 100%;
  margin-right: 10px;
}
.footer-bottom {
  background: var(--Gold-light, #ffeed9);
  color: var(--Gold-main, #b37917);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  padding: 38px 0;
}
.footer-bottom p {
  margin-bottom: 5px;
}
.mc-experts .slider-btn img{
  width: 30px;
}
.mc-experts .slider-btn{
  padding: 13px 12px 13px 14px;
    border: 1px solid #ffe1a8;
}
.mc-equipment-home .main-swiper img{
  height: 332px;
  object-fit: cover;
}
.footer .contact ul li{
    display: flex;
    justify-content: flex-start;
}
.footer .contact ul li img{
    width: 14px;
}
.footer .social-icons img{
  width: 25px;
}
/*Header CSS*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 50px;
  border-bottom: 0.5px solid #b379174f;
  position: relative;
  z-index: 100;
  background: #F8CC6D;
  background: linear-gradient(180deg, rgba(248, 204, 109, 0.2) 0%, rgba(248, 204, 109, 0.05) 50%, rgba(248, 204, 109, 0.02) 100%);
}

.header-logo img {
  height: 44px;
}

.mc_menu_head_main ul,
.side-popup-overlay ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
.side-popup-overlay ul {
  position: relative;
  gap: 0;
  flex-direction: column;
}

.mc_menu_head_main ul > li,
.side-popup-overlay ul > li {
  position: relative;
}

.mc_menu_head_main ul li a {
  color: #343a3f;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  line-height: 2;
  display: inline-block;
  padding: 8px 0;
}
.mc_menu_head_main .menu-item-has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mc_menu_head_main ul.sub-menu li.menu-item-has-children,
.side-popup-overlay li.menu-item-has-children {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc_menu_head_main ul.sub-menu {
  position: absolute;
  width: 15rem !important;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
  border-radius: 10px;
}

.mc_menu_head_main ul.sub-menu li {
  width: 100%;
  padding: 10px 6px;
  border-radius: 10px;
  white-space: nowrap;
  position: relative;
}
.mc_menu_head_main ul.sub-menu li:hover {
  background: #ffefd2;
}
.side-popup-overlay ul li {
  padding: 5px 10px;
  border-radius: 30px;
}

.mc_menu_head_main ul.sub-menu li a {
  color: #343a3f;
  padding: 0;
  font-size: 15px;
}
.mc_menu_head_main ul.sub-menu li:hover a {
  color: #343a3f;
}

.mc_menu_head_main li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.mc_menu_head_main ul.sub-menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  padding: 14px;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: none;
}

.mc_menu_head_main ul.sub-menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.mc_menu_head_main ul li:hover > a {
  color: #b37917;
}
.mc_menu_head_main ul li.active a {
  color: #b37917;
  font-weight: 700;
}

.header-contact a {
  border-radius: 30px;
  background: linear-gradient(90deg, #cb9849 0%, #9e6e00 100%);
  text-transform: uppercase;
  padding: 10px 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}
.bg-menu {
  display: none;
  cursor: pointer;
}
.side-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  max-height: 100vh;
  overflow-y: auto;
}
.side-popup-overlay.force-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.side-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-popup-overlay .side-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 80vw;
  max-width: 400px;
  height: 100%;
  background: #fff;
  padding: 20px 16px;
  overflow-y: auto;
  border-radius: 0 12px 12px 0;
  animation: slideIn 0.3s ease;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.side-popup-overlay.active .side-popup {
  transform: translateX(0);
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.side-popup-overlay .close-popup {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
}

.side-popup-overlay .menu {
  list-style: none;
  padding: 0;
}

.side-popup-overlay .menu > li {
  flex-direction: column;
  align-items: flex-start;
}

.side-popup-overlay .menu li a {
  font-size: 15px;
  font-weight: 700;
  color: #343a3f;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  transition: color 0.2s;
}

.side-popup-overlay .menu li:hover > a {
  color: #b37917;
}
.side-popup-overlay .menu li > a {
  position: relative;
  z-index: 1;
  padding: 8px;
}
.side-popup-overlay .menu li:not(.menu-item-has-children) {
  position: relative;
  overflow: hidden;
}
.side-popup-overlay .menu li:hover::before {
  opacity: 1;
}

.side-popup-overlay .menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff7ec;
  opacity: 0;
  transition: opacity 0.1s;
  z-index: 0;
  border-radius: 10px;
}

.side-popup-overlay .sub-menu {
  width: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
  margin-top: 4px;
}

.side-popup-overlay .menu-item-has-children.open > .sub-menu {
  opacity: 1;
}

.side-popup-overlay .menu-item-has-children.open > .sub-menu,
.side-popup-overlay .sub-menu li.menu-item-has-children {
  display: flex;
  max-height: fit-content !important;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
}

.side-popup-overlay .sub-menu li {
  padding-right: 0;
}
.side-popup-overlay .sub-menu .sub-menu {
  padding-left: 20px;
  margin-top: 2px;
}

.side-popup-overlay .menu li.active > a {
  color: #b37917;
  font-weight: 700;
}

.side-popup-overlay .contact-control {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: space-around;
}

.side-popup-overlay .contact-control button {
  flex: 1;
  padding: 12px;
  background-color: #b37917;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.side-popup-overlay .contact-control {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 40px;
}
.side-popup-overlay .contact-control a {
  width: 50%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, #cb9849 0%, #9e6e00 100%);
  text-transform: uppercase;
  padding: 10px auto;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.side-popup-overlay .contact-control img {
  width: 20px;
  height: 20px;
}
.side-popup-overlay .header-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.side-popup-overlay .header-logo img {
  width: 50%;
}

.menu-item-has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.mc_menu_head_main .menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}
.side-popup-overlay .menu-item-has-children > .arrow-icon {
  position: absolute;
  right: 10px;
  top: 12px;
}
.side-popup-overlay .sub-menu .menu-item-has-children > .arrow-icon {
  right: 0px;
}
.menu-item-has-children > .arrow-icon,
.mc_menu_head_main .sub-menu .menu-item-has-children:hover > .arrow-icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-item-has-children.open > .arrow-icon {
  transform: rotate(180deg);
  background-image: url("../images/arrow-down-active.svg");
}
.mc_menu_head_main .sub-menu .menu-item-has-children > .arrow-icon,
.mc_menu_head_main .sub-menu .menu-item-has-children:hover > .arrow-icon {
  transform: rotate(-90deg);
}

.menu-item-has-children:hover > .arrow-icon {
  background-image: url("../images/arrow-down-active.svg");
}

.mc_menu_head_main .menu-item-has-children:hover > .arrow-icon {
  transform: rotate(180deg);
}
.nameValSave, .phoneValSave{
  font-size: 14px !important;
  color: #ff0000cf !important;
  text-align: center;
  display: none;
  margin-bottom: 0 !important;
}
.phoneValSaveCss{
  font-size: 14px !important;
  color: #ff0000cf !important;
  text-align: center;
  display: none;
  margin-bottom: 0 !important;
}
.pkcp-parent-container img{
  width: auto;
}
/* CSS POPUP BRANCH DISCOUNT */
.mc-form-search-branch-discount{
  display: none;
}
.mc-form-search-branch-discount .mc-sfbd{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 365px;
  z-index: 99;
  background: #fff;
}
.overlay-sbd{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000069;
  z-index: 98;
}
.mc-form-search-branch-discount .img-mh img{
    height: 240px;
    object-fit: cover;
    object-position: top;
}
.mc-close {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 26px;
  height: 26px;
  border: 2px solid transparent;
  border-radius: 40px;
}
.mc-close::after,
.mc-close::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 26px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px;
}
.mc-close::after {
  transform: rotate(-45deg);
}
.mc-form-search-branch-discount .mc-close-pop-css{
    position: absolute;
    right: 6px;
    top: 6px;
    color: #ff0000;
    cursor: pointer;
}
.sfdb-cover{
  padding: 15px;
}
.sfdb-cover .title-form-sfdb{
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    color: #b37917;
}
.sfdb-cover .desc-sfdb{
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}
.sfdb-cover .form-discount-CSS{
  margin-top: 0;
}
.sfdb-cover .mc-input-data input{
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #e9b4498c;
    outline: none;
    border-radius: 5px;
}
.sfdb-cover .mc-input-data{
  margin-bottom: 10px;
}
.sfdb-cover .mc-input-data select{
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #e9b4498c;
    outline: none;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #000000ad;
}
.sfdb-cover .btn-sub-search-branch-discount{
  margin: 0 auto;
  display: block;
}
.wating-up-form{
    font-size: 14px;
    color: red;
    text-align: center;
    margin-bottom: 8px;
    display: none;
}
.bottom-bar {
    display: none;
}
.header-contact-cover{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mc-search{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}
.mc-search::before{
  content:"";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 100%;
  background: #F1D1A9;
}
.mc-search .txt-search{
  margin-left: 10px;
}
.mc-show-search{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: #fff;
  padding: 24px 0;
  display: none;
}
.search-main-cover{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.search-main-cover .icon{
  width: 30px;
  cursor: pointer;
}
.search-main-cover .icon svg{
  width: 100%;
  display: block;
}
.search-main-cover .clse-search{
  width: 30px;
  cursor: pointer;
}
.search-main-cover .inpt{
  flex: 0 0 90%;
  max-width: 90%;
  width: 100%;
}
.search-main-cover .inpt input {
  display: block;
  width: 100%;
  border: 0;
  outline: none;
   font-family: "Manrope";
  font-size: 18px;
}
.search-main-cover .clse-search svg{
  width: 100%;
  display: block;
}
.result-search .title{
  font-size: 24px;
  color: #B37917;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b3791747; 
}
.result-search .list-cover{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.result-search .list-cover .item-card{
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  padding: 0 15px;
}
.overlay-search{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000006e;
  z-index: 99;
  display: none;
}
.result-search .list-cover .item-card img{
  height: 204px;
  object-fit: cover;
}
.result-search .list-cover .no-results-post{
  color: red;
  margin-bottom: 20px;
  padding-left: 15px;
}
.btn-view-more-results{
  display: none;
  margin-top: 10px;
}
.btn-view-more-results a{
    display: block;
    width: 180px;
    text-align: center;
    border: 1px solid #e5c66f;
    padding: 10px 5px;
    border-radius: 30px;
    color: #B37917;
}
.search-pr-cover{
  padding: 50px 0;
}
.search-pr-cover .searcp-page-main-title{
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 700;
}
.search-pr-cover .list-posts{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.search-pr-cover .list-posts .item-card{
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 20px;
}
.search-pr-cover .list-posts .item-card img{
  height: 200px;
  object-fit: cover;
}
.mc-content-post-single table{
    margin-bottom: 15px;
}
.mc-content-post-single tr{
  width: 100%;
}
.mc-content-post-single td{
  padding: 5px;
}