@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
        url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TenorSans';
    src: url('../fonts/TenorSans.woff2') format('woff2'),
        url('../fonts/TenorSans.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color: #007E62;
    --yellow-color: #FFDB63;
    --green-bright: #00FF9F;
    --default-color-text: #473D2E;
}
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html,body{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'OpenSans-Regular';
    font-size: 15px;
    color: var(--default-color-text);
}
body{
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
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: 1400px;
    margin: 0 auto;
}
.mc_slider_banner .banner-mobile{
    display: none;
}
.mc_slider_banner .slick-prev, .mc_slider_banner .slick-next{
    display: none !important;
}
.mc_slider_banner .slick-dots{
    bottom: 25px;
}
.mc_slider_banner .slick-dots li.slick-active{
    width: 29px;
    height: 12px;
    background: #E4BC80;
    border-radius: 12px;
}
.mc_slider_banner .slick-dots li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
}
.mc_slider_banner .slick-dots li button:before{
    display: none;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  position: relative;
  z-index: 100;
}

.header-logo img {
  height: 90px;
  width: 90px;
}
.header-logo.mc-logo-mg-pop img{
  height: auto;
}
.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;
  font-family: 'OpenSans-Bold';
}
.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: 17rem !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;
  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-family: 'OpenSans-Bold';
}

.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;
}
.burger-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;
  color: #343a3f;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  transition: color 0.2s;
  font-family: 'OpenSans-Bold';
}

.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: 60%;
  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;
background-position: center 62%;
}

.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);
}
.sub-header{
    padding: 12px 0;
    background: #fffde0;
}
.sub-header .row-sub-head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.sub-header .left-cover .item{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.sub-header .left-cover .item img{
    width: 18px;
}
.sub-header .left-cover .item .txt{
    padding-left: 6px;
    font-size: 14px;
    font-family: 'OpenSans-Light';
    color: #473D2E;
}
.sub-header .right .right-item{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.sub-header .right .right-item img{
    width: 18px;
}
.sub-header .right, .sub-header .left{
    flex: 0 0 50%;
    max-width: 49%;
    width: 100%;
}
.sub-header .right .right-item a{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 30px;
    font-size: 14px;
    color: #473D2E;
    font-family: 'OpenSans-Light';
}
.sub-header .right .right-item a img{
    margin-right: 6px;
}
.mc_slider_banner .slider-banner-top .banner-desktop{
    height: 700px;
    object-fit: cover;
}
.home-cover-1 {
  background-image: url("../images/background-1.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-cover-2 {
  background-image: url("../images/background-1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}
.mc-service-home{
  padding: 120px 0;
}
.mc-service-home .title{
   font-family: 'PlayfairDisplay-Regular';
   font-size: 76px;
   color: #C28934;
   margin-bottom: 10px;
   text-align: center;
}
.mc-service-home .sub-title{
   font-size: 20px;
   color: #878787;
   margin-bottom: 20px;
   text-align: center;
}
.mc-service-home .contain .kol{
  max-width: 1200px;
  margin: 0 auto;
}
.mc-service-home .contain{
  position: relative;
}
.mc-service-home .contain .item-service{
  position: absolute;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px 9px 8px 8px;
  background: #F2E5DC;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
  width: 377px;
}
.mc-service-home .contain .item-service .thumb{
  flex: 0 0 40%;
  max-width: 40%;
  width: 100%;
}
.mc-service-home .contain .item-service .thumb img{
  height: 146px;
  object-fit: cover;
  border-radius: 8px 0px 0px 8px;
}
.mc-service-home .contain .item-service .name-service{
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  font-size: 20px;
  color: #473D2E;
}
.mc-service-home .contain .item-service-1{
  left: 0;
  top: 14%;
}
.mc-service-home .contain .item-service-2{
  right: 0;
  top: 14%;
}
.mc-service-home .contain .item-service-3{
  top: 42%;
  left: 50px;
}
.mc-service-home .contain .item-service-4{
  top: 42%;
  right: 50px;
}
.mc_intro .intro-contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}
.mc_intro .intro-contain .left{
  flex: 0 0 50%;
  max-width: 46%;
  width: 100%;
}
.mc_intro .intro-contain .right{
  flex: 0 0 50%;
  max-width: 48%;
  width: 100%;
}
.mc_intro .intro-contain .left .sub-title{
  color: #878787;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.mc_intro .intro-contain .left .title{
  color: #C28934;
  font-family: 'PlayfairDisplay-Regular';
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mc_intro .intro-contain .left .content{
  color: #473D2E;
  font-family: 'OpenSans-Light';
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 60px;
}
.mc_intro .intro-contain .left .list-tc .item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mc_intro .intro-contain .left .list-tc .item .icon{
  flex: 0 0 16%;
  max-width: 16%;
  width: 100%;
}
.mc_intro .intro-contain .left .list-tc .item .icon img{
  width: 72px;
}
.mc_intro .intro-contain .left .list-tc .item .content-item{
  flex: 0 0 84%;
  max-width: 84%;
  width: 100%;
}
.mc_intro .intro-contain .left .list-tc .item .tt{
  font-family: 'PlayfairDisplay-Regular';
  font-size: 22px;
  margin-bottom: 12px;
  color: #000;
}
.mc_intro .intro-contain .left .list-tc .item .desc{
  font-size: 16px;
  font-family: 'OpenSans-Light';
  line-height: 25px;
}
.mc_intro .number-tt{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mc_intro .number-tt .item{
  max-width: 24%;
}
.mc_intro .number-tt .item .num{
  color: #C28934;
  text-align: center;
  font-family: 'TenorSans';
  font-size: 68px;
  margin-bottom: 6px;
}
.mc_intro .number-tt .item .txt{
    color: #C28934;
    text-align: center;
    font-size: 20px;
}
.mc_intro{
  padding-bottom: 120px;
}
.mc_images .mc_images_contain .sub-title{
  color: #878787;
  text-align: center;
  font-size: 20px;
  margin-bottom: 8px;
}
.mc_images .mc_images_contain .title{
  color: #C28934;
  text-align: center;
  font-size: 54px;
  font-family: 'PlayfairDisplay-Regular';
  max-width: 818px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.mc_images .list-images .item{
  margin: 0 45px;
  border-radius: 20px;
}
.mc_images .list-images .item img{
  height: 620px;
  object-fit: cover;
  border-radius: 20px;
}
.mc_images .slick-prev, .mc_images .slick-next{
  display: none !important;
}
.mc_images{
  padding-bottom: 200px;
  position: relative;
}
.mc_images .bg-image{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.mc_images .mc_images_contain{
  position: relative;
  z-index: 2;
}
.mc_images .slick-dots{
    bottom: -40px;
}
.mc_images .slick-dots li.slick-active{
    width: 29px;
    height: 12px;
    background: #E4BC80;
    border-radius: 12px;
}
.mc_images .slick-dots li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
}
.mc_images .slick-dots li button:before{
    display: none;
}
.mc_customers .sub-title{
  color: #878787;
  text-align: center;
  font-size: 20px;
  margin-bottom: 8px;
}
.mc_customers .title{
  color: #C28934;
  text-align: center;
  font-size: 54px;
  font-family: 'PlayfairDisplay-Regular';
  max-width: 818px;
  margin: 0 auto;
  margin-bottom: 160px;
}
.mc_customers .customer-cover{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.mc_customers .customer-cover .left{
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  padding-right: 80px;
}
.mc_customers .customer-cover .right{
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}
.mc_customers .customer-cover .right img{
  max-width: 420px;
  margin: 0 auto;
}
.mc_customers .left-slider .item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(92deg, #BD9963 -13.26%, #F8CE8F 117.54%);
  box-shadow: 4px 2px 4px 0px rgba(0, 0, 0, 0.20);
  margin-bottom: 32px;
  padding: 18px 20px;
}
.mc_customers .left-slider .item .avatar{
  flex: 0 0 18%;
  max-width: 18%;
  width: 100%;
}
.mc_customers .left-slider .item .avatar img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}
.mc_customers .left-slider .item .right-cus-talk{
  flex: 0 0 82%;
  max-width: 82%;
  width: 100%;
}
.mc_customers .left-slider .item .right-cus-talk .name-and-rating{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.mc_customers .left-slider .item .right-cus-talk .cs-talk{
  color: #FFF;
  font-size: 16px;
}
.mc_customers .left-slider .item .right-cus-talk .name-and-rating .name{
  color: #FFF;
  font-size: 16px;
  font-family: 'OpenSans-Bold';
  margin-right: 8px;
}
.mc_customers .left-slider .item .right-cus-talk .name-and-rating .rating{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.mc_customers .left-slider .item .right-cus-talk .name-and-rating .rating img{
  width: 12px;
  margin-right: 4px;
}

.mc_customers .left-slider .slick-prev,
.mc_customers .left-slider .slick-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  z-index: 10;
  cursor: pointer;
}
.mc_customers .left-slider .slick-next{
  right: unset;
  top: unset;
}
.mc_customers .left-slider .slick-prev {
  top: -70px;
}

.mc_customers .left-slider .slick-next {
  bottom: -40px;
}
.mc_customers .left-slider .slick-prev:before, .mc_customers .left-slider .slick-next:before{
  display: none !important;
}
.mc_customers .left-slider .slick-prev img, .mc_customers .left-slider .slick-next img{
  width: 45px;
}
.mc_customers{
  padding-bottom: 160px;
}
.mc-video .img-video img{
  height: 780px;
  object-fit: cover;
}
.mc-video .mc-video-contain{
  position: relative;
  cursor: pointer;
}
.mc-video .mc-video-contain .overlay-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000007a;
  z-index: 2;
}

.mc-video .mc-video-contain .icon-play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:126px;
  height: 126px;
  z-index: 3;
}
.mc-video video{
  height: 780px;
  width: 100%;
}
.mc-form{
  padding: 160px 0;
}
.mc-form .sub-title{
  color: #878787;
  text-align: center;
  font-size: 20px;
  margin-bottom: 8px;
}
.mc-form .title{
  color: #C28934;
  text-align: center;
  font-size: 54px;
  font-family: 'PlayfairDisplay-Regular';
  margin: 0 auto;
  margin-bottom: 120px;
}
.mc-form .form-contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.mc-form .form-contain .left{
  flex: 0 0 50%;
  max-width: 48%;
  width: 100%;
}
.mc-form .form-contain .right{
  flex: 0 0 50%;
  max-width: 48%;
  width: 100%;
}
.mc-form .form-contain .right .title-form{
    color: #C28934;
    text-align: center;
    font-size: 40px;
    font-family: 'PlayfairDisplay-Regular';
    margin-bottom: 50px;
    text-transform: uppercase;
}
.mc-form .form-contain .inp-st input{
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  outline: none;
  font-size: 16px;
  border: 1px solid #ffcc40;
}
.mc-form .form-contain .inp-st{
  margin-bottom: 20px;
}
.mc-form .button-form button{
    width: 200px;
    display: block;
    margin: 0 auto;
    background: #C28934;
    color: #fff;
    font-size: 25px;
    padding: 10px;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
}
.mc-form .button-form button:hover{
  opacity: 0.7;
}
.mc-form .button-form{
  margin-top: 55px;
}
.mc_news .sub-title{
    color: #878787;
    text-align: center;
    font-size: 20px;
    margin-bottom: 8px;
}
.mc_news .title{
    color: #C28934;
    text-align: center;
    font-size: 54px;
    font-family: 'PlayfairDisplay-Regular';
    margin: 0 auto;
    margin-bottom: 80px;
}
.mc_news{
  padding-bottom: 160px;
}
.list-post-news .item{
    margin: 0 15px;
}
.list-post-news{
  margin: 0 -15px;
}
.list-post-news .item .thumb img{
  height: 255px;
  object-fit: cover;
  border-radius: 15px;
}
.list-post-news .item .thumb{
  margin-bottom: 15px;
  display: block;
}
.list-post-news .cate-post-and-date{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.list-post-news .cate-post-and-date .cat-name{
  padding: 5px 10px;
  background: #C28934;
  color: #fff;
  border-radius: 20px;
  display: block;
  width: max-content;
  margin-right: 10px;
  font-size: 14px;
}
.list-post-news .title-post{
  font-size: 22px;
  font-family: 'OpenSans-Bold';
}
.mc_news .slick-prev, .mc_news .slick-next{
    display: none !important;
}
.mc_news .slick-dots{
    bottom: -55px;
}
.mc_news .slick-dots li.slick-active{
    width: 29px;
    height: 12px;
    background: #E4BC80;
    border-radius: 12px;
}
.mc_news .slick-dots li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
}
.mc_news .slick-dots li button:before{
    display: none;
}
.mc_footer .mc_footer_contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.mc_footer .mc_footer_contain .logo-and-social{
  flex: 0 0 35%;
  max-width: 33%;
  width: 100%;
}
.mc_footer .mc_footer_contain .item-list-footer{
  flex: 0 0 20%;
  max-width: 18%;
  width: 100%;
  padding-right: 20px;
}
.mc_footer .mc_footer_contain .info-footer{
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  padding-left: 30px;
}
.mc_footer .mc_footer_contain .logo-and-social img{
  width: 162px;
  margin-bottom: 40px;
}
.mc_footer .mc_footer_contain .logo-and-social .social-footer{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.mc_footer .mc_footer_contain .logo-and-social .social-footer a{
  width: 48px;
  display: block;
  margin-right: 10px;
}
.mc_footer .mc_footer_contain .logo-and-social .social-footer img{
  width: 100%;
}
.mc_footer{
  padding-top: 100px;
  border-top: 1px solid #80808021;
}
.mc_footer .item-list-footer h3{
  font-size: 24px;
  font-family: 'OpenSans-Bold';
  margin-bottom: 20px;
}
.mc_footer .item-list-footer li{
  margin-bottom: 15px;
}
.mc_footer .item-list-footer a{
  font-size: 18px;
  font-family: 'OpenSans-Light';
}
.mc_footer .item-list-footer a:hover{
  color: #c28934;
  text-decoration: underline;
}
.mc_footer .mc_footer_contain .info-footer .address{
  font-size: 18px;
  font-family: 'OpenSans-Light';
  margin-bottom: 25px;
}
.mc_footer .mc_footer_contain .info-footer .phone{
  font-size: 18px;
  font-family: 'OpenSans-Light';
  margin-bottom: 25px;
}
.mc_footer .mc_footer_contain .info-footer .email{
  font-size: 18px;
  font-family: 'OpenSans-Light';
}
.sub-footer{
  text-align: center;
  font-size: 18px;
  font-family: 'OpenSans-Light';
  padding-bottom: 35px;
}
.mc_intro_abus .list-tc .item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mc_intro_abus .list-tc .item .icon{
  flex: 0 0 22%;
  max-width: 22%;
  width: 100%;
}
.mc_intro_abus .list-tc .item .icon img{
  width: 72px;
}
.mc_intro_abus .list-tc .item .content-item{
  flex: 0 0 78%;
  max-width: 78%;
  width: 100%;
}
.mc_intro_abus .list-tc .item .tt{
  font-family: 'PlayfairDisplay-Regular';
  font-size: 22px;
  margin-bottom: 12px;
  color: #000;
}
.mc_intro_abus .list-tc .item .desc{
  font-size: 16px;
  font-family: 'OpenSans-Light';
  line-height: 25px;
}
.mc_intro_abus .list-tc{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.mc_intro_abus .list-tc .item-cover{
  flex: 0 0 33.33%;
  max-width: 32%;
  width: 100%;
}
.mc_intro_abus{
  padding-top: 120px;
}
.abu-st-main .mc-form{
  padding-top: 0;
}
.mc-list-page{
  padding: 120px 0;
}
.mc-list-page .title-list{
    font-family: 'PlayfairDisplay-Regular';
    font-size: 76px;
    color: #C28934;
    margin-bottom: 10px;
    text-align: center;
}
.mc-list-page .sub-title-list{
  font-size: 20px;
  color: #878787;
  margin-bottom: 50px;
  text-align: center;
}
.mc-list-page .list .list-post-news{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.mc-list-page .list .list-post-news .item{
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 0 15px;
  margin: 0 !important;
  margin-bottom: 30px !important;
}
.mc-pagination .screen-reader-text {
    display: none;
}
.mc-pagination .nav-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.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;
}
.info-maps .info-maps-cover{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.info-maps .info-maps-cover .left{
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
}
.info-maps .info-maps-cover .right{
  flex: 0 0 40%;
  max-width: 40%;
  width: 100%;
}
.info-maps{
  padding-top: 160px;
}
.info-maps .info-maps-cover .left .img-mh img{
  height: 800px;
  object-fit: cover;
  object-position: top left;
}
.info-maps .info-maps-cover .left .left-cover{
  position: relative;
}
.info-maps .info-maps-cover .left .left-cover .left-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  height: 80%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(30px);
  padding: 40px;
}
.info-maps-cover .left .left-cover .left-content .title-left{
  color: #FFF;
  font-family: 'OpenSans-Bold';
  font-size: 32px;
  margin-bottom: 30px;
}
.info-maps-cover .left .left-cover .left-content .desc-left{
  color: #FFF;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 30px;
}
.info-maps-cover .left .left-cover .left-content .info-left .item{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.info-maps-cover .left .left-cover .left-content .info-left .item img{
  width: 24px;
}
.info-maps-cover .left .left-cover .left-content .info-content{
  padding-left: 20px;
}
.info-maps-cover .left .left-cover .left-content .title-content-info{
  font-size: 20px;
  color: #fff;
  font-family: 'OpenSans-Bold';
  margin-bottom: 14px;
}
.info-maps-cover .left .left-cover .left-content .detail{
  color: #fff;
  font-size: 16px;
}
.info-maps-cover .left .left-cover .left-content .detail p{
  margin-bottom: 5px;
}
.info-maps-cover .right iframe{
  display: block;
  height: 100%;
  width: 100%;
}
.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;
  text-align: justify;
}
.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;
}
.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;
}
.mcp-page .mc-form{
  padding: 80px 0 160px 0;
}
.mc-ovex-hid{
  overflow-x: hidden;
}
.mc-ovey-hid{
  overflow-y: hidden;
}
.nameValSave, .phoneValSave{
  color: red;
  margin-top: 5px;
  display: none;
}
.watting{
  margin-top: 5px;
  text-align: center;
  color: red;
  display: none;
}
.mc-fixed-header.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 2px 3px #fffde0;
}
.mc-fixed-header.active .sub-header{
  display: none;
}
.mc-cover-header-main{
  background-color: #fff;
}
.img-customer-contain .title{
  font-family: 'PlayfairDisplay-Regular';
  font-size: 45px;
  color: #C28934;
  margin-bottom: 30px;
  text-align: center;
}
.img-customer-contain{
  padding-top: 88px;
}
.img-customer-contain .tabs-cover {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.img-customer-contain .tab-service {
    margin: 0 15px;
    padding: 10px 15px;
    font-size: 18px;
    color: #C28934;
    margin-bottom: 30px;
    font-family: 'OpenSans-Bold';
    border: 1px solid #C28934;
    background: #fff;
    cursor: pointer;
    transition: 0.3s all;
}
.img-customer-contain .tab-service:hover{
  background: #C28934;
  color: #fff;
  transition: 0.3s all;
}
.img-customer-contain .desc-item{
    font-size: 20px;
    color: #878787;
    margin-bottom: 40px;
    text-align: center;
}
.img-customer-contain .tab-service.active {
  background: #C28934;
  color: #fff;
}
.img-customer-contain .mc-tab-content {
  display: none;
}
.img-customer-contain .mc-tab-content.active {
  display: block;
}
.img-customer-contain .img-list .img-cs-and-content{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.img-customer-contain .img-list .img-cs-and-content .item-chilr{
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.img-customer-contain .img-list .img-cs-and-content .item-chilr img{
    height: 250px;
    object-fit: cover;
    border: 4px solid #ffd595;
}
.img-customer-contain .img-list .img-cs-and-content .item-chilr .name-cs{
  margin: 15px 0 6px 0;
  text-align: center;
  font-family: 'PlayfairDisplay-Regular';
  font-size: 20px;
  color: #C28934;
}
.img-customer-contain .img-list .img-cs-and-content .item-chilr .des-cs{
    text-align: center;
    padding: 0 14px;
    font-family: 'OpenSans-Bold';
}
.action-btn-mobile{
  display: none;
}
.action-btn-mobile{
  background-image: url("../images/bg-action.png");
  background-size: 102% 90px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.action-btn-mobile .list-action{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 15px;
}
.action-btn-mobile .list-action .icon{
  text-align: center;
}
.action-btn-mobile .list-action .item-action{
  display: block;
  min-width: 50px;
  outline: none;
  background: transparent;
  border: 0;
}
.action-btn-mobile .list-action .item-action.item-call{
  margin-right: 50px;
}
.action-btn-mobile .list-action .item-action.item-ac-address{
  margin-left: 50px;
}
.action-btn-mobile .list-action .icon svg{
  width: 19px;
  height: 22px;
  object-fit: cover;
  fill: #c28934;
}
.action-btn-mobile .list-action .icon.icon-zalo .st0 {
    fill: #fdfefe;
}
.action-btn-mobile .list-action .icon.icon-zalo .st1 {
    fill: #0180c7;
}
.action-btn-mobile .list-action .icon.icon-zalo .st2 {
    fill: #0172b1;
}
.action-btn-mobile .list-action .icon.icon-zalo .st3 {
    fill: none;
    stroke: #0180c7;
    stroke-width: 2;
    stroke-miterlimit: 10;
}
.action-btn-mobile .list-action .txt{
  font-size: 13px;
  font-family: 'OpenSans-Bold';
  margin-top: 4px;
  color: #c28934;
  text-align: center;
}
.action-btn-mobile .call-center .icon svg{
  width: 20px;
  fill: #fff;
}
.action-btn-mobile .call-center{
  position: fixed;
  z-index: 100;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.action-btn-mobile .call-center .icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c28934;
  margin: 0 auto;
  margin-bottom: 12px;
}
.action-btn-mobile .call-center .txt{
    text-align: center;
    padding: 2px 4px;
    font-size: 13px;
    background: #c28934;
    color: #fff;
    font-family: 'OpenSans-Bold';
    border-radius: 5px;
}