@font-face {
  font-family: "montserrat";
  src: url("font/Montserrat/Montserrat-Regular.ttf")format("TrueType");
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: "montserrat";
  src: url("font/Montserrat/Montserrat-Bold.ttf")format("TrueType");
  font-weight: 700;
  font-display: swap
}

@font-face {
  font-family: "montserrat";
  src: url("font/Montserrat/Montserrat-Italic.ttf")format("TrueType");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}

:root {
  --yellow: #f0a414;
  --black: rgb(55 65 81);
}

html,
body {
  font-family: montserrat !important;
  font-size: 16px !important;
  scroll-behavior: smooth !important;
}

body {
  font-weight: 400;
  font-size: 16px;
  color: #777;
  line-height: 1.5;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

/* sup { top:.5em!important; } */
body.no-scroll {
  overflow: hidden;
}

body .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: translateX(-100%);
  cursor: pointer;
  transition: all 0.3s;
}

body .overlay.active {
  transform: translateX(0%);
  transition: all 0.3s;
}

.layout-about,
.box-layout,
.box-total .header-box.menu-pc .container,
.content-footer .container,
.main-content .boundary,
.box-cate .box-bottom,
.box-cate .page-title {
  width: 96%;
  max-width: 1520px !important;
  margin: 0 auto;
}

.container,
.container-md,
.container-sm {
  max-width: unset !important;
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.main-content .single-post {
  padding: 60px 40px 60px 40px;
}


.menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.breadcrumb .breadcrumb {
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumb li {
  color: #DDD;
}

.breadcrumb li a {
  color: inherit;
  font-size: .8em;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: var(--yellow);
}

.page-title {
  color: #f46c31;
  font-size: 1.7em;
  text-align: left;
  font-family: 'Hanzel';
}

.box-total {
  height: auto;
  position: relative;
}

.box-total:before {
  content: "";
  padding-top: 150%;
  display: block;
  width: 100%;
}

.box-total:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgb(23, 24, 27) 2%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.box-total .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.box-total .banner .square-image:before {
  padding-top: 150%;
}

.box-total.small:before,
.box-total.small:after {
  padding-top: 80px;
}

.box-total .hide-mobile {
  width: 320px;
  height: 100%;
  background-color: var(--black);
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.4s;
  z-index: 999999999;
  position: fixed;
  left: 0;
  top: 0;
}

.box-total .hide-mobile.active {
  transform: translateX(0%);
}

.box-total .header-box {
  transition: all .5s;
}

@keyframes stuckMoveDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.box-total .header-box.fixed-top {
  background-color: rgba(0, 0, 0, .9);
  -webkit-animation: stuckMoveDown .6s;
  animation: stuckMoveDown .6s;
}

.box-total .header-box.fixed-top #header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-total .header-box.fixed-top #header .header-main #logo a .header-logo {
  width: 100%;
  max-width: 100px;
}

.box-total .header-box.fixed-top #header .header-main .menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.box-total .header-box.fixed-top #header .header-main .menu ul li {
  position: relative;
}

.box-total .header-box.fixed-top #header .header-main .menu ul li a {
  display: block;
  padding: 15px 18px;
  text-decoration: none;
  transition: 0.3s;
}

.box-total .header-box.fixed-top #header .header-main .menu ul li a:hover {
  color: var(--yellow);
}

.box-total .header-box.menu-mobile {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.box-total .header-box.fixed-top {
  position: fixed !important;
}

.box-total .header-box #header .open-menu {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: none;
  outline: none;
  background-color: var(--yellow);
  position: absolute;
  left: 20px;
  border-radius: 5px;
}

.box-total .header-box #header .open-menu img {
  margin-top: -7px;
}

.box-total .header-box #header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.box-total .header-box #header .header-main #logo a .header-logo {
  height: 100%;
  width: auto;
  max-height: 80px;
}

.box-total .header-box #header .header-main .menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.box-total .header-box #header .header-main .menu ul li {
  position: relative;
}

.box-total .header-box #header .header-main .menu ul li a {
  display: block;
  padding: 10px 18px;
  color: rgb(209 213 219);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.box-total .header-box #header .header-main .menu ul li a.active,
.box-total .header-box #header .header-main .menu ul li a:hover {
  background-color: var(--black);
  color: #FFF;
  border-radius: 5px;
}

.box-total .header-box #header .header-main .menu ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--yellow);
  list-style: none;
  display: none;
  min-width: 180px;
  padding: 0;
}

.box-total .header-box #header .header-main .menu ul li .submenu li {
  width: 100%;
}

.box-total .header-box #header .header-main .menu ul li .submenu li a {
  padding: 10px 20px;
  display: block;
  color: white;
}

.box-total .header-box #header .header-main .menu ul li .submenu li a:hover {
  background-color: #f0ac2d;
}

.box-total .header-box #header .header-main .menu ul li:hover>.submenu {
  display: block;
}

.box-total .select-city {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.box-total .select-city .title-home {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  margin: auto;
  text-align: center;
}

.box-total .select-city .title-home span {
  display: block;
  font-size: .5em;
  font-weight: normal;
}

.box-total .select-city form.form-city {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
}

.box-total .select-city form.form-city .form-group {
  display: flex;
  flex-direction: column;
  width: 20%;
}

.box-total .select-city form.form-city .form-group label {
  font-weight: bold;
  margin-top: 10px;
}

.box-total .select-city form.form-city .form-group select {
  padding: 0 20px;
  border: 1px solid #ccc;
  height: 3em;
  width: 100%;
  color: var(--black);
}

.box-total .select-city form.form-city .form-group select option {
  color: var(--black);
}

.box-total .select-city form.form-city input.input-search {
  padding: 0 20px;
  outline: none;
  border: 1px solid #ccc;
  height: 3em;
  width: 20%;
  margin-top: auto;
}

.box-total .select-city form.form-city input.input-search::-moz-placeholder {}

.box-total .select-city form.form-city input.input-search::placeholder {}

.box-total .select-city form.form-city button.button-search {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  width: 20%;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
  height: 3em;
}

.box-total .select-city form.form-city button.button-search:hover {
  background-color: #ed2939;
}

.menu-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-start;
  padding: 50px 15px 0;
}

.menu-overlay .close-menu {
  background-color: transparent;
  width: 25px;
  height: 25px;
  position: fixed;
  top: 10px;
  right: 10px;
}

.menu-overlay .menu-container .search-bar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

.menu-overlay .menu-container .search-bar input {
  width: 100%;
  padding: 10px;
  border: 0;
}

.menu-overlay .menu-container .search-bar .search-button {
  background: none;
  border: none;
  cursor: pointer;
  height: 44px;
  width: 44px;
  background-color: var(--yellow);
}

.menu-overlay .menu-container .menu-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.menu-overlay .menu-container .menu-list li {
  padding: 10px 0;
  border-bottom: 1px solid #4d4b4b;
  cursor: pointer;
  color: #f1f1f1;
}

.menu-overlay .menu-container .menu-list li a {
  color: inherit;
  text-decoration: none;
}

.menu-overlay .menu-container .menu-list li .down {
  margin-bottom: 5px;
}

.menu-overlay .menu-container .menu-list li .submenu li {
  border: none;
  list-style: none;
}

.menu-overlay .menu-container .menu-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.menu-overlay .menu-container .menu-buttons .sign-up {
  background: var(--yellow);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.menu-overlay .menu-container .menu-buttons .join {
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.items .card .card-body .card-title {
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
}

.news .items .card .card-body .card-title {
  font-size: 1em;
}

.footer {
  background: #222;
  color: white;
  position: relative;
  background-size: cover;
}

.footer .content-footer {
  background-color: rgba(0, 0, 0, 0.797);
  height: 100%;
  font-family: 'montserrat' !important;
}

.footer .content-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.footer .content-footer .footer-column {
  padding: 30px 0;
}

.footer .content-footer .footer-column h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.footer .content-footer .footer-column p {
  line-height: 1.6;
  color: #f1f1f1;
  text-align: justify;
}

.footer .content-footer .footer-column ul {
  list-style: none;
  padding: 0;
}

.footer .content-footer .footer-column ul li {
  border-bottom: 1px solid #2b2b2b;
  padding: 10px;
}

.footer .content-footer .footer-column ul li:last-child {
  border: none;
}

.footer .content-footer .footer-column ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 0.3s;
}

.footer .content-footer .footer-column ul li a:hover {
  color: var(--yellow);
}

.footer .content-footer .footer-column .footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer .content-footer .footer-column .fb-page iframe {
  border-radius: 5px;
  width: 100%;
}

.footer .footer-hotline {
  white-space: nowrap;
}

.footer .footer-hotline a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

.layout-about {
  margin-top: 40px;
  margin-bottom: 40px;
}

.layout-about .image-about div img {
  width: 100%;
  max-width: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.layout-about .conten-about h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.layout-about .conten-about p {
  color: #fff;
}

.layout-about .conten-about a.btn-about {
  background-color: var(--yellow);
  font-weight: bold;
  margin-top: 20px;
  font-size: 15px;
  border-radius: 5px;
}

.layout-about .conten-about a.btn-about:hover {
  background-color: #f1f1f1;
  transition: all 0.3s ease;
}

.box-layout .items .image {
  position: relative;
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.box-layout.box-product .items .image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.box-layout .items .image:before {
  content: "";
  padding-top: 52.333%;
  display: block;
  width: 100%;
}

.box-layout .items .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-layout.box-product .items .image .card-img-top,
.box-layout.box-product .items .image.two-image .card-img-bottom {
  transition: all .3s;
  opacity: 1;
}

.box-layout.box-product .items .image.two-image .card-img-bottom {
  opacity: 0;
}

.box-layout.box-product .items .image.two-image:hover .card-img-top {
  opacity: 0;
}

.box-layout.box-product .items .image.two-image:hover .card-img-bottom {
  opacity: 1;
}

.box-layout.box-product .items .image span {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--yellow);
  color: #FFF;
  z-index: 2;
  font-size: 1em;
  padding: 3px 10px;
  border-radius: 5px;
}

.box-layout.box-product .items .card {
  position: relative;
  height: calc(100% - 20px);
  border-radius: 10px;
  overflow: hidden;
}

.box-layout.box-product .items .card .card-body a {
  text-decoration: none;
}

.box-layout.box-product .items .card .card-body {
  display: flex;
  flex-direction: column;
}

.box-layout.box-product .items .card .card-body .card-title a {
  color: var(--yellow);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box-layout.box-product .items .card .card-body .card-title a:hover {
  color: #f1f1f1;
  transition: all 0.3s ease;
}

.box-layout.box-product .items .card .card-body .card-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.box-layout.box-product .items .card .card-body .card-text {
  text-align: left;
  gap: 5px;
  margin-top: auto;
}

.box-layout.box-product .items .card .card-body .card-text img {
  margin-top: 5px;
}

.box-layout.box-product .items .card .card-body .card-text .card-text-detail,
.product-list .item-product .card .card-body .card-text .card-text-detail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  gap: 20px;
  margin-top: 10px;
}

.box-layout.box-product .items .card .card-body .card-text .card-text-detail i,
.product-list .item-product .card .card-body .card-text .card-text-detail i {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.box-layout.box-product .items .card .card-tem {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  width: 180px;
  text-align: center;
  border-radius: 20px;
  padding: 5px 15px;
  position: absolute;
  top: 10px;
  left: 10px;
  display: none;
}

.box-layout.box-product .items .card .card-tem a {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.card-text-detail>span {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}

.card-text-detail .detail-des {
  font-size: .8em;
}

.card-text-detail .detail-des span {
  display: block;
}

.box-layout .header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-layout .header-layout .title-big {
  font-size: 32px;
  color: #fff;
  margin: 20px 0;
}

.box-layout .header-layout .view-all {
  text-decoration: none;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-layout .header-layout .view-all:hover {
  color: var(--yellow);
  transition: all 0.3s ease;
}

.items .image {
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease-in-out;
}

.items .image .card-img-top {
  transition: transform 0.4s ease-in-out;
  border-radius: 0;
}

.items .card {
  background-color: #111;
}

.news .items .card {
  background: transparent;
}

.news .items .card .card-body {
  text-align: left;
  padding: 10px 0;
}

.items .card .card-body a {
  text-decoration: none;
}

.items .card .card-body a .card-title {
  font-weight: bold;
  color: #f1f1f1;
  margin: 0;
}

.items .card .card-body a .card-title:hover {
  color: var(--yellow);
  transition: all 0.3s ease;
}

.items .card .card-body .card-time {
  color: #f1f1f1;
  font-size: 12px;
  margin: 10px 0;
}

.items .card .card-body .card-text {
  color: #f1f1f1;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

#page-contact .box-total {
  background-image: none;
  padding: 0;
}

#page-contact .box-total .header-box {
  background-color: #f1f1f1;
}

#page-contact .box-total .header-box #header .header-main .menu ul li a {
  color: #555;
}

#page-contact .box-total .header-box #header .header-main .menu ul li a.active,
#page-contact .box-total .header-box #header .header-main .menu ul li a:hover {
  color: var(--yellow);
}

#page-contact .box-total .header-box #header .header-main .menu ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--yellow);
  list-style: none;
  display: none;
  min-width: 180px;
  padding: 0;
}

#page-contact .box-total .header-box #header .header-main .menu ul li .submenu li {
  width: 100%;
}

#page-contact .box-total .header-box #header .header-main .menu ul li .submenu li a {
  padding: 10px 20px;
  display: block;
  color: white;
}

#page-contact .box-total .header-box #header .header-main .menu ul li .submenu li a:hover {
  background-color: #f0ac2d;
}

#page-contact .box-total .header-box #header .header-main .menu ul li:hover>.submenu {
  display: block;
}

#page-contact .box-total .box-banner {
  width: 100%;
  height: 250px;
  background-size: cover;
}

#page-contact .box-total .box-banner .content-banner {
  background-color: rgba(0, 0, 0, 0.497);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#page-contact .box-total .box-banner .content-banner .title-page {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}

#page-contact .box-total .box-banner .content-banner .breadcumb {
  color: #fff;
}

#page-contact .contact-container .contact-right {
  background: #f46a2c;
  padding: 40px 20px;
  border-radius: 5px;
}

#page-contact .box-total .box-banner .content-banner .breadcumb a {
  color: #fff;
  margin: 10px;
  text-decoration: none;
}

#page-contact .contact-container .title-contact {
  font-size: 28px;
  font-weight: bold;
  color: #f1f1f1;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

#page-contact .contact-container .contact-info {
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#page-contact .contact-container .contact-info p img {
  margin-right: 7px;
}

#page-contact .contact-container .contact-form .btn-contact {
  padding: 8px 25px;
  border-radius: 0;
  background-color: #ffec00;
  color: #f46c31;
  border-radius: 5px;
}

#page-contact .contact-container .contact-form input {
  padding: 12px 15px;
}

#page-contact .contact-container .contact-form input::placeholder {
  font-style: italic;
}

#page-contact .contact-container .map-container {
  margin-top: 30px;
  margin-bottom: 60px;
}

.box-cate {
  padding-bottom: 60px;
}

.box-cate .box-top {
  margin: 40px 0;
}

.box-cate .box-top .top-layout .breadcrumb p {
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate .box-top .top-layout .breadcrumb p a {
  text-decoration: none;
  color: #dad9d9;
}

.box-cate .box-top .top-layout .sort-options {
  display: none !important;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.box-cate .box-top .top-layout .sort-options label {
  color: #f1f1f1;
  margin-top: 6px;
}

.box-cate .box-top .top-layout .sort-options select {
  padding: 5px;
  width: 50%;
  outline: none;
}

.box-cate .box-bottom .item-product {
  margin-top: 0;
  margin-bottom: 10px;
}

.box-cate .box-bottom .item-product .card {
  position: relative;
  background-color: #111;
  height: 100%;
  margin: 0;
}

.box-cate .box-bottom .item-product .card .card-body {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.main-content .single-post .mc-content {
  color: #333;
  box-shadow: 0 0 2px #666;
  padding: 25px;
  border-radius: 5px;
}

.box-cate .box-bottom .item-product .card .card-body a {
  text-decoration: none;
}

.box-cate .box-bottom .item-product .card .card-body a .card-title {
  color: var(--yellow);
}

.box-cate .box-bottom .item-product .card .card-body a .card-title:hover {
  color: #f1f1f1;
  transition: all 0.3s ease;
}

.box-cate .box-bottom .item-product .card .card-body .card-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f1f1f11;
  margin-top: auto;
}

.box-cate .box-bottom .item-product .card .card-body .card-text {
  display: flex !important;
  color: #f1f1f1;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.box-cate .box-bottom .item-product .card .card-tem {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  width: 180px;
  text-align: center;
  border-radius: 20px;
  padding: 5px 15px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.box-cate .box-bottom .item-product .card .card-tem a {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.box-cate .box-bottom .card-sidebar {
  padding: 20px;
  background-color: #111;
}

.box-cate .box-bottom .card-sidebar .title-search {
  font-size: 20px;
  color: #f1f1f1;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  width: -moz-fit-content;
  width: fit-content;
}

.box-cate .box-bottom .card-sidebar form.form-city {
  width: 100%;
  margin: auto;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.box-cate .box-bottom .card-sidebar form.form-city .form-group {
  display: flex;
  flex-direction: column;
}

.box-cate .box-bottom .card-sidebar form.form-city .form-group label {
  font-weight: bold;
  margin-top: 10px;
}

.box-cate .box-bottom .card-sidebar form.form-city .form-group select {
  padding: 0 20px;
  border: 1px solid #ccc;
  height: 2.6em;
  width: 100%;
  color: var(--black);
  outline: none;
}

.box-cate .box-bottom .card-sidebar form.form-city .form-group select option {
  color: var(--black);
}

.box-cate .box-bottom .card-sidebar form.form-city input.input-search {
  padding: 0 20px;
  outline: none;
  border: 1px solid #ccc;
  height: 2.6em;
  margin-top: auto;
  width: 100%;
  outline: none;
}

.box-cate .box-bottom .card-sidebar form.form-city input.input-search::-moz-placeholder {}

.box-cate .box-bottom .card-sidebar form.form-city input.input-search::placeholder {}

.box-cate .box-bottom .card-sidebar form.form-city button.button-search {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
  height: 2.6em;
}

.box-cate .box-bottom .card-sidebar form.form-city button.button-search:hover {
  background-color: #ed2939;
}

.box-cate .box-bottom .card-post {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #f46c31;
}

.box-cate .box-bottom .card-post .card-header {
  font-size: 1.7em;
  color: #f46c31;
  background-color: #fff;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #f46c31;
  width: -moz-fit-content;
  width: fit-content;
}

.box-cate .box-bottom .card-post .list-group {
  margin-top: 20px;
  gap: 15px;
}

.box-cate .box-bottom .card-post .list-group .item {
  padding-right: 10px;
  padding-left: 10px;
}

.box-cate .box-bottom .card-post .list-group .item.item-img {
  margin-top: 8px;
  position: relative;
}

.box-cate .box-bottom .card-post .list-group .item.item-img:before {
  content: "";
  padding-top: 52.333%;
  display: block;
  width: 100%;
  height: auto;
}

.box-cate .box-bottom .card-post .list-group .item.item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.box-cate .box-bottom .card-post .list-group .item.title {
  padding: 0;
  margin-top: 5px;
}

.box-cate .box-bottom .card-post .list-group .item.title a {
  color: #222;
  font-size: 16px;
  text-decoration: none;
}

.box-cate.single-product .box-top {
  margin: 0;
}

.box-cate.single-product .slider-container .slider-video div.item-video {
  position: relative;
}

/* .box-cate.single-product .slider-container .slider-video div.item-video:after { position:absolute; background-color:#DDD; content:""; width:100%; height:100%; } */
.box-cate.single-product .slider-container .slider-video div.item-video::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  padding-top: 52.333%;
}

.box-cate.single-product .slider-container .slider-video div.item-video iframe {
  pointer-events: none;
}

.box-cate.single-product .slider-container .title-product {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--yellow);
}

.box-cate.single-product .slider-container .slider-img-for .slick-track>div,
.box-cate.single-product .slider-container .slider-nav .slick-track>div,
.box-cate.single-product .slider-container .slider-video .slick-track>div {
  margin: 5px;
  cursor: pointer;
}

.box-cate.single-product .slider-container .slider-nav .slick-track {
  float: left;
}

.box-cate.single-product .slider-container .slider-nav,
.box-cate.single-product .slider-container .slider-img-nav {
  cursor: grabbing;
}

.box-cate.single-product .slider-container .slider-nav div,
.box-cate.single-product .slider-container .slider-img-nav div {
  margin: 10px 0;
}

.box-cate.single-product .slider-container .slider-img-nav div.slick-center img {
  opacity: 1;
}

.box-cate.single-product .slider-container .slider-nav div img {
  opacity: 0.5;
}

.box-cate.single-product .slider-container .slider-nav div.slick-current img {
  opacity: 1;
}

.box-cate.single-product .slider-container .slick-arrow::before {
  display: none;
}

.box-cate.single-product .slider-title {
  color: var(--yellow);
  font-size: 1.2em;
  text-align: left;
  font-weight: bold;
}

.box-cate.single-product .info-product {
  background-color: #111;
  padding: 20px 10px 20px 30px;
}

.box-cate.single-product .info-product .bg-left {
  border: 1px solid rgb(116, 114, 114);
  padding: 10px;
  border-radius: 0;
}

.box-cate.single-product .info-product .bg-left p {
  color: #f1f1f1;
}

.box-cate.single-product .info-product .bg-left p img {
  width: 14px;
  height: 13px;
  margin-right: 5px;
}

.box-cate.single-product .info-product .bg-left p.price {
  font-size: 24px;
  font-weight: bold;
  color: var(--yellow);
}

.box-cate.single-product .info-product .bg-left .button-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
}

.box-cate.single-product .info-product .bg-left .button-contact a.btn-success {
  background-color: var(--yellow);
}

.box-cate.single-product .info-product .bg-left .button-contact a.btn-danger {
  background-color: #326199;
}

.box-cate.single-product .info-product .bg-left .button-contact a img {
  width: 16px;
  height: 16px;
}

.box-cate.single-product .deription-product {
  background-color: #111;
  margin-top: 15px;
  padding: 20px;
}

.box-cate.single-product .deription-product .deription-h3 {
  font-weight: bold;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 20px;
  border-top: 2px solid var(--yellow);
  width: -moz-fit-content;
  width: fit-content;
}

.box-cate.single-product .deription-product .deription-bottom .calculator-container {
  background: #111;
  padding: 20px;
  border-radius: 8px;
}

.box-cate.single-product .deription-product .deription-bottom .title {
  font-weight: bold;
  font-size: 24px;
  color: #f1f1f1;
}

.box-cate.single-product .deription-product .deription-bottom .title .highlight {
  color: var(--yellow);
  font-weight: bold;
  font-size: 24px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section label {
  color: #f1f1f1;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form .input-left {
  width: 100%;
  padding-right: 20px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form .input-right {
  display: flex;
  align-items: center;
  background-color: white;
  width: 110px;
  height: 2.2em;
  padding: 5px;
  margin-top: auto;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form .input-right .input {
  width: 50%;
  border: none;
  outline: none;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form .input-right select {
  outline: none;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form .input-right .value {
  color: #3a3939;
  margin-left: auto;
  font-size: 13px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form.pay {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .input-form.pay input {
  margin-top: 5px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .action-btn {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  font-weight: bold;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .form-range {
  margin-bottom: 5px;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .action-btn {
  background-color: black;
  color: white;
}

.box-cate.single-product .deription-product .deription-bottom .input-section .action-btn:hover {
  background-color: black;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .title {
  font-size: 18px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .result-box {
  background: #111;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .result-box .text-center {
  border: 1px solid #fff;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .result-box .text-price p {
  font-size: 14px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .result-box .text-price p span {
  font-size: 14px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .total-price strong {
  font-size: 14px;
  color: #fff;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .total-price span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .download-btn {
  background-color: var(--yellow);
  margin-top: 20px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .download-btn:hover {
  background-color: var(--yellow);
}

.box-cate.single-product .deription-product .deription-bottom .result-section .guide-link {
  color: #4e8edb;
  text-decoration: none;
  font-size: 14px;
}

.box-cate.single-product .deription-product .deription-bottom .result-section .guide-link:hover {
  text-decoration: underline;
}

.box-cate.single-product .content-single .post-related .items .image {
  overflow: hidden;
}

.box-cate.single-product .content-single .post-related .items .image .card-img-top {
  transition: transform 0.4s ease-in-out;
}

.box-cate.single-product .content-single .post-related .items .image .card-img-top:hover {
  transform: scale(1.2);
}

.box-cate.single-product .content-single .post-related .items .card {
  position: relative;
  background-color: #111;
}

.box-cate.single-product .content-single .post-related .items .card .card-body a {
  text-decoration: none;
}

.box-cate.single-product .content-single .post-related .items .card .card-body a .card-title {
  color: var(--yellow);
}

.box-cate.single-product .content-single .post-related .items .card .card-body a .card-title:hover {
  color: #f1f1f1;
  transition: all 0.3s ease;
}

.box-cate.single-product .content-single .post-related .items .card .card-body .card-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f1f1f1;
}

.box-cate.single-product .content-single .post-related .items .card .card-body .card-time img {
  width: 16px;
  height: 16px;
}

.box-cate.single-product .content-single .post-related .items .card .card-body .card-text {
  display: flex;
  gap: 5px;
  color: #f1f1f1;
  text-align: left;
}

.box-cate.single-product .content-single .post-related .items .card .card-body .card-text img {
  width: 16px;
  height: 16px;
}

.box-cate.single-product .content-single .post-related .items .card .card-tem {
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  width: 180px;
  text-align: center;
  border-radius: 20px;
  padding: 5px 15px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.box-cate.single-product .content-single .post-related .items .card .card-tem a {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.box-cate.news .news-item {
  display: flex;
  align-items: start;
  padding: 20px 0;
  max-width: unset;
}

.box-cate.news .news-item .news-title {
  font-size: 18px;
  font-weight: bold;
  color: #f46c31;
  margin: 0;
  margin-bottom: 5px;
}

.box-cate.news .news-item .news-description {
  font-size: 15px;
  color: #f1f1f1;
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.box-cate.news .news-item .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.box-cate.news .news-item .news-image:before {
  content: '';
  display: block;
  padding-top: 52.333%;
  width: 100%;
  height: auto;
}

.box-cate.news .news-item .news-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.box-cate.news .news-item .news-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-image: -webkit-linear-gradient(35deg, #fd6035 0, var(--yellow) 100%);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.box-cate.news .news-item .col-md-7 {
  text-align: left;
}

.box-cate.news .news-item a {
  color: inherit;
  text-decoration: none;
  color: #222;
}

.box-cate.news .news-description ul {
  padding: 0;
}

.box-cate.news .news-description li {
  color: #222;
  list-style: none;
  padding: 0;
}

.box-cate.single-news .content-single h1 {
  font-size: 22px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single h2 {
  font-size: 20px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single h3 {
  font-size: 18px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single h5 {
  font-size: 14px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single h6 {
  font-size: 12px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .content-single p,
.box-cate.single-news .content-single a,
.box-cate.single-news .content-single span {
  color: #f1f1f1;
}

.box-cate.single-news .content-single img {
  width: 100%;
  height: auto;
}

.box-cate.single-news .post-related .title-related {
  font-size: 18px;
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .post-related .card {
  background-color: #111;
  border-radius: 5px;
}

.box-cate.single-news .post-related .card .card-body a {
  text-decoration: none;
}

.box-cate.single-news .post-related .card .card-body .card-title a {
  font-weight: bold;
  color: #f1f1f1;
}

.box-cate.single-news .post-related .card .card-body .card-text {
  font-size: 14px;
  color: #f1f1f1;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  text-align: center;
}

.content-footer p {
  margin: 0;
}

.box-cate .box-bottom,
.box-cate .page-title {
  margin: 0 auto;
}

.box-cate .box-bottom .card-post .list-group .item.title a {
  display: -webikit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.messenger-container {
  position: fixed;
  bottom: 60px;
  right: 10px;
  width: 58px;
  height: 58px;
  display: inline-block;
  z-index: 100;
}

.messenger-container img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.support-icons {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 9999;
  width: auto;
  height: auto;
  text-align: right;
  line-height: 40px;
  overflow: hidden;
}

.support-icons.messenger {
  bottom: 180px;
}

.support-icons a span {
  display: inline-block;
  background-color: #FFF;
  color: #000;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 1.5em;
  margin-right: 5px;
  box-shadow: 0 0 2px #666;
}

.support-icons [class^="icon-"] {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #FFF;
  color: #000;
  border-radius: 100%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 5px;
  transition: all 1s;
  font-size: 1.5em;
  margin-right: 5px;
}

.support-icons [class^="icon-"]:hover {
  background-color: var(--yellow);
  color: #FFF;
}

.support-icons .icon-phone {
  background-color: orange;
  color: #FFF;
}

.support-icons div.si-container a i {
  display: none;
}

.support-icons div.si-container {
  height: 0;
  width: auto;
  overflow: hidden;
  transition: height 1s;
}

.support-icons div.si-container a {
  font-size: 1.2em;
}

.support-icons.active div.si-container {
  height: 45px;
  /* height:90px; */
}

.support-icons.active div.si-container.rows-2 {
  height: 90px;
}

.support-icons.active div.si-container.rows-3 {
  height: 135px;
}

.support-icons.active>a span {
  display: none;
}

.support-icons.active div.si-container a:hover span {
  background-color: orange;
  color: #FFF;
}

.support-icons.active .icon-support {
  transform: rotate(45deg);
}

.main-content .single-post .mc-title {
  color: #f46c31;
  font-family: 'Hanzel';
  font-size: 1.7rem !important;
}

@media (max-width: 1200px) {
  .box-total {
    background-size: 140%;
  }
}

@media (max-width: 992px) {
  .box-total {
    background-size: auto;
  }

  .box-total .header-box.menu-mobile {
    display: block;
  }

  .box-total .header-box.menu-mobile #logo {
    margin: auto;
    height: 80px;
  }

  .box-total .header-box.menu-pc {
    display: none !important;
  }

  .box-total .select-city form.form-city {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .box-total .select-city form.form-city .form-group {
    width: 100%;
  }

  .box-total .select-city form.form-city input.input-search {
    width: 100%;
  }

  .box-total .select-city form.form-city button.button-search {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .box-total .select-city {}

  .box-total .select-city .title-home {
    font-size: 2em;
  }

  .layout-about .conten-about {
    margin-top: 25px;
  }

  #page-contact .contact-container .contact-form {
    margin-top: 20px;
  }

  .box-cate.news .news-item .news-title {
    margin-top: 15px;
  }

  .box-cate .box-bottom .card-post .list-group .item.title {
    margin-top: 15px;
  }

  .box-cate .box-top .top-layout .sort-options {
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 20px;
  }

  .box-cate.single-news .post-related {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .slider-nav .slick-next {
    right: 0;
  }

  .slider-nav .slick-prev {
    left: 6px;
  }

  .box-total .select-city {}

  .box-total .select-city .title-home {
    font-size: 2em;
  }

  .box-layout .header-layout .title-big {
    font-size: 24px;
  }

  .box-layout.box-product .items .card .card-tem {
    width: 130px;
    padding: 0 10px;
    display: none !important;
  }

  .box-layout.box-product .items .card .card-tem a {
    font-size: 11px;
  }

  .box-layout.box-product .items .card .card-body .card-time,
  .box-layout.box-product .items .card .card-body .card-text {
    font-size: 13px;
  }

  .items .card .card-body .card-text {
    font-size: 14px;
  }

  .box-cate.single-product .content-single .post-related .items .card .card-tem {
    width: 130px;
    padding: 0 10px;
  }

  .box-cate.single-product .content-single .post-related .items .card .card-tem a {
    font-size: 11px;
  }

  .box-cate.single-product .content-single .post-related .items .card .card-body a .card-title {
    font-size: 14px;
  }

  .box-cate.single-product .content-single .post-related .items .card .card-body .card-time,
  .box-cate.single-product .content-single .post-related .items .card .card-body .card-text {
    font-size: 13px;
  }

  .box-cate.single-product .deription-product .deription-bottom .title {
    font-size: 18px;
  }

  .box-cate.single-product .deription-product .deription-bottom .title .highlight {
    font-size: 18px;
  }

  .box-product .row .col-6,
  .news .row .col-6 {
    width: 100%;
  }
}

@media (min-width:576px) {

  .box-total:before,
  .box-total .banner .square-image:before {
    padding-top: 50%;
  }
  .news-update .news-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer .content-footer .footer-column:nth-child(odd) {
    padding-right: 10px;
  }

  .footer .content-footer .footer-column:nth-child(even) {
    padding-left: 30px;
  }
}

@media (max-width:576px) {
  .main-content .single-post {
    padding: 15px 20px 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
  }
}


@media (min-width:768px) {
  .breadcrumb .breadcrumb {
    padding: 0;
  }

  .footer-bottom{
    padding: 0 10px;
  }
  
  .footer-bottom .item-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  .page-title {
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
  }

  .box-cate .box-bottom .card-post .card-header {
    font-size: 1.2em;
    text-align: left;
  }

  .box-total:after {
    background-image: linear-gradient(rgb(23, 24, 27) 2%, transparent 35%);
  }

  .box-total .header-box.menu-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .box-total .select-city .title-home {
    font-size: 3.5em;
  }

  .box-total .select-city .title-home span {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .box-total .header-box #header .header-main .menu ul li {
    padding: 0 5px;
  }

  .layout-about .conten-about {
    text-align: justify;
  }

  .product-list .card-body {
    font-size: .8em;
  }

  .product-list .card-body .card-title,
  .items .card .card-body .card-title {
    font-size: 1em !important;
    line-height: 1.3em;
  }

  .box-layout.box-product .items .card .card-body .card-text .card-text-detail,
  .product-list .item-product .card .card-body .card-text .card-text-detail {
    font-size: .9em;
  }

  .box-cate .box-bottom .card-post .list-group .item.title {
    font-size: .8em;
    line-height: 1.5em;
  }

  .news .row .items:nth-child(4) {
    display: none !important;
  }

  .card-text-detail {
    display: block !important;
  }

  .card-text-detail>span {
    display: inline-block !important;
    width: 32%;
    margin-right: 1%;
  }

  .card-text-detail>span:nth-child(3) {
    margin-right: 0;
  }

  .card-text-detail>span {
    vertical-align: top;
    width: 30%;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .card-text-detail>span:nth-child(4),
  .card-text-detail>span:first-child {
    width: 40%;
  }

  .box-product .card-text {
    display: block !important;
  }

  .card-text-detail .detail-des {
    display: inline-block;
    vertical-align: middle;
  }

  .card-text-detail .detail-des span {
    display: inline-block;
  }

  .card-text-detail>span:nth-child(4) span span,
  .card-text-detail>span:first-child span span {
    display: block;
  }

  .card-text-detail .detail-des span:after {
    content: ":";
  }

}

@media (min-width:996px) {
  .page-title {
    max-width: unset;
  }
  .news-update .news-grid{
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .product-list .card-body {
    font-size: 1em;
  }

  .box-cate .box-bottom .card-post .list-group .item.title a {
    display: -webkit-box;
    text-align: left;
    padding-left: 10px;
    box-sizing: border-box;
  }

  .product-list .card-body .card-title,
  .items .card .card-body .card-title {
    font-size: 1.3em !important;
    line-height: 1.5em;
  }

  .news .items .card .card-body .card-title {
    font-size: 1.1em !important;
  }

  .news .row .items:nth-child(4) {
    display: table-cell !important;
  }

  .layout-about .row {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .layout-about .row [class^='col-'] {
    width: auto !important;
    max-width: 40%;
  }

  .footer .content-footer .footer-column:nth-child(odd),
  .footer .content-footer .footer-column:nth-child(even),
  .footer .content-footer .footer-column {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width:1200px) {
  .main-content .single-post .mc-title {
    font-size: 2.3rem;
  }

  .box-total .select-city .title-home span {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .card-text-detail>span {
    width: 16% !important;
  }

  .card-text-detail>span:nth-child(4),
  .card-text-detail>span:first-child {
    width: 25% !important;
    letter-spacing: -0.7px;
    padding-right: 5px;
  }

  .card-text-detail>span:last-child {
    display: none;
  }

  .card-text-detail>span:nth-child(4) span span,
  .card-text-detail>span:first-child span span {
    display: inline-block;
  }

  .box-layout.box-product .items .image span {
    font-size: 1.2em;
  }

  .layout-about .row [class^='col-']:first-child {
    padding-right: 40px;
  }
#page-contact{
  padding-top: 20px;
}
  .box-cate {
    padding-bottom: 60px;
    padding: 60px 45px 60px 45px;
  }

  .box-cate .top-layout {
    padding: 0 40px;
  }

  .breadcrumb li {
    font-size: 16px;
    color: #222;
  }

  .breadcrumb li a {
    font-size: 16px;
    color: #222;
  }

  .breadcrumb li a::first-letter {
    text-transform: uppercase;
  }

  /* .layout-about .image-about div img { margin-right:-50px; } */
}

@media (min-width:1500px) {

  .card-text-detail>span:nth-child(4),
  .card-text-detail>span:first-child {
    letter-spacing: .5px;
  }
}