@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes colorBackground {
 0% {
  color: yellow;
 }
 20% {
  
  color: #6bd57e
 }
 40% {
 
  color: red;
 }
 60% {
  
  color: #57cff4
 }
 80% {
  
  color: #0ed4c8
 }
 100% {
 
  color: yellow;
 }
}
@-webkit-keyframes colorBackground {
 0% {
  transform: scale(1);
  color: yellow;
 }
 20% {
  transform: scale(1.05);
  color: #6bd57e;
 }
 40% {
  transform: scale(1.1);
  color: red;
 }
 60% {
  transform: scale(1.05);
  color: #57cff4;
 }
 80% {
  transform: scale(1);
  color: #0ed4c8;
 }
 100% {
  transform: scale(0.95);
  color: yellow;
 }
}
@-moz-keyframes colorBackground {
  0% {
  transform: scale(1);
  color: yellow;
 }
 20% {
  transform: scale(1.05);
  color: #6bd57e;
 }
 40% {
  transform: scale(1.1);
  color: red;
 }
 60% {
  transform: scale(1.05);
  color: #57cff4;
 }
 80% {
  transform: scale(1);
  color: #0ed4c8;
 }
 100% {
  transform: scale(0.95);
  color: #fbcf61;
 }
}


body {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
}

img {
  display: inline-block;
  max-width: 100%;
}

.box-img img {
  object-fit: cover !important;
}

input[type="number"] {
  -moz-appearance: textfield;
  text-align: center;
}

section {
  overflow: hidden;
}

:root {
  --spacing: 100px 0;
}

@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

.animation a {
  animation: colorBackground  10s infinite;
 -webkit-animation: colorBackground  10s infinite;
 -moz-animation: colorBackground  10s infinite;
 -o-animation: colorBackground  10s infinite;
  font-size: 16px !important;
}


.yellow {
  color: #fd8c32;
}

.mobile {
  display: none !important;
}

@media screen and (max-width: 1400px) {
  .mobile {
    display: block !important;
  }
}

.desktop {
  display: block;
}

@media screen and (max-width: 1400px) {
  .desktop {
    display: none;
  }
}

@media screen and (max-width: 996px) {
  [class*="col-"] {
    margin-bottom: 40px;
  }
  [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

.d-none {
  display: none !important;
}

/* @font-face {
  font-family: "Roboto";
  src: url("../libs/Roboto/Roboto-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../libs/Roboto/Roboto-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../libs/Roboto/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../libs/Roboto/Roboto-LightItalic.ttf");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../libs/Roboto/Roboto-Bold.ttf");
  font-weight: 700;
} */

/* @font-face {
  font-family: "Roboto";
  src: url("../libs/svn-font/Roboto-SemiBold.otf");
  font-weight: 600;
} */

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

-webkit-keyframes fadeInDown from {
  opacity: 0;
  -webkit-transform: translatey(-40px);
  -moz-transform: translatey(-40px);
  -o-transform: translatey(-40px);
  transform: translatey(-40px);
}

-webkit-keyframes fadeInDown to {
  opacity: 1;
  -webkit-transform: translatey(0);
  -moz-transform: translatey(0);
  -o-transform: translatey(0);
  transform: translatey(0);
}

@-moz-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translatey(-40px);
    -moz-transform: translatey(-40px);
    -o-transform: translatey(-40px);
    transform: translatey(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
  }
}

.in-down {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

ul {
  padding: 0;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

figure {
  margin: 0;
}

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

.main-title {
  font-size: 36px;
  color: #666;
  line-height: 50.62px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

@media screen and (max-width: 1400px) {
  .main-title {
    font-size: 32px;
  }
}

.main-title::before {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #fd8c32;
  width: 70px;
  content: "";
}

.products-item,
.products-main .products-item {
  position: relative;
  margin-bottom: 72px;
  border: 1px solid #dcdcdc;
  overflow: hidden;
}

.products-item .box-view-content {
  text-align: center;
  padding: 0 10px;
}

.products-item .box-view-content .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  /* identical to box height, or 24px */
  /* Secondary/#444444 */
  padding-top: 12px;
  color: #444444;
  margin-bottom: 12px;
}

.products-item .box-view-content span {
  display: block;
  font-size: 16px;
  line-height: 150%;
  /* identical to box height, or 24px */
  /* Primary/#8D5520 */
  color: #8d5520;
}

.products-item .box-view-content .price {
  font-weight: 700;
  transition: all ease 0.4s;
  padding-bottom: 15px;
}

.products-item .box-img {
  position: relative;
  overflow: hidden;
  height: 305px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .products-item .box-img {
    height: 354px;
  }
}

@media screen and (max-width: 1200px) {
  .products-item .box-img {
    height: 294px;
  }
}

@media screen and (max-width: 996px) {
  .products-item .box-img {
    height: 334px;
  }
}

@media screen and (max-width: 767px) {
  .products-item .box-img {
    height: 244px;
  }
}

@media screen and (max-width: 575px) {
  .products-item .box-img {
    height: 400px;
  }
}

@media screen and (max-width: 440px) {
  .products-item .box-img {
    height: 300px;
  }
}

.products-item .box-img img {
  width: auto;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1) translateX(-50%);
  left: 50%;
  transition: all 500ms ease;
  position: relative;
}

.products-item .box-img::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.4s;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  content: "";
  z-index: 1;
}

.products-item:hover .box-img img {
  transform: scale(1.05) translateX(-50%);
}

.products-item:hover .box-img::before {
  opacity: 1;
}

.products-item:hover .box-hide-item {
  opacity: 1;
}

.products-item:hover .price {
  color: #ff0000;
}

.products-item .box-hide-item {
  position: absolute;
  width: 100%;
  padding: 40px;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  max-height: 500px;
}

@media screen and (max-width: 1400px) {
  .products-item .box-hide-item {
    padding: 15px;
  }
}

.products-item .box-hide-item p,
.products-item .box-hide-item li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8.85px;
  line-height: 21px;
  color: #fff !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.aside .tag a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  /* identical to box height, or 24px */
  background: #fff;
  text-align: center;
  display: inline-block;
  margin-bottom: 15px;
  /* Secondary/#444444 */
  color: #444444;
  padding: 8px 16px;
  border: 1px solid #444444;
  text-transform: uppercase;
  margin-right: 12px;
  background: linear-gradient(to right, #a57038 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

.aside .tag a:last-child {
  margin-right: 0;
}

.aside .tag a:hover {
  background-position: left bottom;
  color: #fff;
}

.aside .tag .gr-tag {
  margin-bottom: 11px;
}

.aside .main-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  /* or 31px */
}

.aside .aside-item {
  background: #ffffff;
  box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding-top: 32px;
  padding-left: 16px;
  padding-bottom: 48px;
  padding-right: 16px;
  margin-bottom: 52px;
}

.aside .aside-item .aside-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aside .aside-item ul {
  padding-left: 24px;
}

@media screen and (max-width: 1200px) {
  .aside .aside-item ul {
    padding-left: 15px;
  }
}

.aside .aside-item ul li {
  list-style: disc;
  margin-bottom: 18px;
}

.aside .aside-item ul li:last-child {
  margin-bottom: 24px;
}

.aside .aside-item ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 24px */
  text-align: center;
  /* Secondary/#666666 */
  color: #666666;
  display: flex;
  justify-content: space-between;
  transition: all ease 0.4s;
}

.aside .aside-item ul li a:hover {
  color: #fd8c32;
}

.aside-banner {
  margin-bottom: 24px;
}

.aside-more {
  margin-bottom: 40px;
}

.aside-more-head {
  background: #a57038;
  padding-left: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.aside-more-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  /* identical to box height, or 17px */
  margin-bottom: 0;
  color: #ffffff !important;
}

.aside-more-item {
  border: 1px solid #666;
  border-top: 0;
  padding: 15px 11px;
}

@media screen and (max-width: 996px) {
  .aside-more-item [class*="col-"] {
    margin-bottom: 0px;
  }
}

.aside-more-item .box-img {
  margin-bottom: 0;
  height: 91px;
}

.aside-more-item .box-img img {
  width: auto !important;
  height: 100%;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
}

.aside-more-item .row {
  align-items: center;
}

.aside-more-item h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  /* or 17px */
  /* Secondary/#666666 */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.aside-more-item h4 a {
  color: #666;
  transition: all ease 0.4s;
}

.aside-more-item h4 a:hover {
  color: #a57038;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb.bread-detail {
  background: #f8f8f8;
}

.breadcrumb.bread-detail ol {
  padding-top: 18.11px;
  margin-bottom: 18.11px;
}

.breadcrumb ol {
  padding: 0;
  display: table;
}

.breadcrumb nav {
  width: 100%;
  padding-bottom: 10px;
}

@media screen and (max-width: 996px) {
  .breadcrumb nav {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
}

.breadcrumb ol {
  display: flex;
  padding-top: 25px;
  margin-bottom: 33.5px;
}

.breadcrumb ol li {
  list-style: none;
  position: relative;
  display: table-cell;
  margin-right: 30px;
}

.breadcrumb ol li:last-child {
  margin-right: 0;
}

.breadcrumb ol li a {
  color: #666;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  line-height: 17px;
  /* identical to box height, or 17px */
}

.breadcrumb ol li:last-child a {
  color: #a57038;
}

.breadcrumb ol li:last-child::before {
  display: none;
}

.breadcrumb ol li::before {
  content: "";
  background-image: url(../images/right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 20px;
  width: 20px;
  line-height: 21px;
  right: -25px;
  top: 4px;
}

#content1,
#content3 {
  display: block;
}

#content2,
#content4,
#content5,
#content6,
#content7,
#content8 {
  display: none;
}

.buttons_added {
  opacity: 1;
  display: inline-block;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
}

.is-form {
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  height: 2.2rem;
  width: 1.9rem;
  padding: 0;
  text-shadow: 1px 1px 1px #fff;
  border: 1px solid #ddd;
}

.is-form:focus,
.input-text:focus {
  outline: none;
}

.is-form.minus {
  border-radius: 4px 0 0 4px;
}

.is-form.plus {
  border-radius: 0 4px 4px 0;
}

.input-qty {
  background-color: #fff;
  height: 2.2rem;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  padding: 0;
  width: 50px;
}

.input-qty::-webkit-outer-spin-button,
.input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.black {
  font-weight: 600 !important;
}

.content,
.content-2 {
  width: 100%;
  overflow: hidden;
  max-height: 5000px;
  transition: all 0.3s ease-in-out;
}

.content table,
.content-2 table {
  width: 100%;
}

.content table tr td,
.content-2 table tr td {
  padding: 10px 15px;
  border: 1px solid;
}

.content-2 {
  padding-top: 52px;
}

#tskt:checked ~ .content,
#review:checked ~ .content-2 {
  max-height: 0;
}

@media screen and (max-width: 996px) {
  .main-title {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 767px) {
  .main-title {
    font-size: 22px !important;
  }
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.lightSlider img {
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.lb-data .lb-close {
  position: absolute;
  top: 0;
  right: 30px;
}

figcaption {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}

figure {
  margin-bottom: 1rem;
}

.custom-select {
  position: relative;
  border-radius: 4px;
  border: 1px solid #666;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #333;
  border-radius: 4px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #2d264b transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #2d264b transparent;
  top: 10px;
}

.select-items div,
.select-selected {
  color: #000;
  padding: 11.33px 16.2px;
  border: 1px #333;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  font-weight: 400;
  background: #fff;
  cursor: pointer;
}

.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 12.92px;
  border-radius: 4px;
  box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.07);
}

.select-items div {
  color: #fd8c32;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #333;
  color: #fff;
}

.magnifier {
  border: none !important;
}

@media screen and (max-width: 996px) {
  .magnifier {
    display: none !important;
  }
}

body {
  color: #333 !important;
}

p,
h1,
h2,
h3,
h4,
h5 {
  color: #333 !important;
}

.navbar {
  padding: 0;
  justify-content: space-around;
  display: flex;
}

.navbar .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1200px) {
  .navbar #main-navigation {
    position: fixed;
    top: 0;
    left: -500px;
    min-width: 330px;
    box-shadow: 0 5px 5px rgba(129, 126, 126, 0.31);
    transition: all 0.3s;
    overflow: hidden;
    overflow-y: hidden;
    z-index: 9999;
    height: 100vh;
    overflow-y: auto;
    background: #161617;
  }
  .navbar #main-navigation.show {
    left: 0;
  }
  .navbar #main-navigation .accordion li.active a {
    background: #fd8c32;
    color: #fff !important;
  }
  .navbar #main-navigation .accordion li a {
    display: block;
    color: #fff !important;
    margin: 0;
    padding: 15px 30px;
    width: 100%;
    border-bottom: 1px solid #fd8c32;
  }
  .navbar #main-navigation .accordion li a:hover {
    background: #fd8c32;
    color: #fff !important;
  }
}

.navbar .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-left: 0;
  margin-right: 0;
}

.navbar .link i {
  margin-left: 3px;
  /* -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important; */
  color: #000;
  /* transition: all ease 0.5s; */
  right: -18px;
}

.navbar .link a {
  margin: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: all ease 0.4s;
  height: 48px;
}

@media screen and (max-width: 1200px) {
  .navbar .link a {
    color: #fff !important;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .link i {
    right: 15px;
    left: auto;
    font-size: 16px;
    position: absolute;
    top: 10px;
    font-size: 18px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: unset !important;
    z-index: 10;
    height: 48px;
    width: 48px;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 44px;
  }
}

.navbar ul {
  gap: 30px;
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .navbar ul {
    display: block;
  }
}

.navbar ul .dropdown {
  /* margin: 0 20px; */
  position: relative;
  transition: all ease 0.3s;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown .sub-menu li a {
    background: #000 !important;
    color: #fff !important;
  }
  .navbar ul .dropdown .sub-menu li a:hover {
    background: #fd8c32 !important;
  }
  .navbar ul .dropdown i {
    color: #fff !important;
  }
}

.navbar ul .dropdown:hover a {
  color: #fd8c32;
}

.navbar ul .dropdown:hover i {
  -webkit-transform: rotate(180deg) !important;
  -ms-transform: rotate(180deg) !important;
  -o-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
  color: #fd8c32;
  transition: all ease 0.5s;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown:hover i {
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    color: #fd8c32;
    transition: all ease 0.5s;
  }
}

.navbar ul .dropdown.active a {
  color: #fd8c32;
}

.navbar ul .dropdown.active i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fd8c32;
  transition: all ease 0.5s;
}

.navbar ul .dropdown:first-child a {
  margin-left: 0;
}

.navbar ul .dropdown:last-child a {
  margin-right: 0;
}

.navbar ul .dropdown.open {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 0;
}

/* .navbar ul .dropdown.open .sub-menu {
    display: block;
} */

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown.open .link a {
    display: block;
    padding: 15px 20px;
  }
}

.navbar ul .dropdown.open i {
  -webkit-transform: rotate(180deg) !important;
  -ms-transform: rotate(180deg) !important;
  -o-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
}

.navbar ul .dropdown:first-child {
  margin-left: 0;
}

.navbar ul .dropdown:last-child {
  margin-right: 0;
}



.navbar ul .dropdown:hover a::before {
  transform: scale(1);
}

.navbar ul .dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100%);
}

.navbar ul .dropdown:hover .sub-menu li .link:hover .sub-right {
  opacity: 1;
  visibility: visible;
  left: 100%;
  top: 100px;
}

.navbar ul .dropdown:hover .sub-menu a {
  color: #666;
}

.navbar ul .dropdown:hover .sub-menu a::before {
  display: none;
}

.navbar ul .dropdown > .sub-menu {
  display: flex;
  position: fixed;
  /* left: 50%; */
  transform: translateX(0%);
  top: calc(100%);
  padding: 15px;
 
  align-items: baseline;
  margin: 0;
  transition: all ease 0.4s;
  gap: 20px;
 
  width: 100%;
  background: #fff;
  flex-wrap: wrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
  transition: all ease 0.1s;
}

.header-bottom.fixed-top .sub-menu {
  top:49px !important;
}


@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu {
    padding: 0;
  }
}

.navbar ul .dropdown > .sub-menu .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-title {
    color: #fff !important;
  }
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu {
    visibility: visible;
    opacity: 1;
    min-width: unset;
  }
  .navbar ul .dropdown > .sub-menu [class*="col-"] {
    margin-bottom: 20px;
  }
}

.navbar ul .dropdown > .sub-menu::before {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  left: 50%;
  transform: translateX(-50%);
  top: -5px;
}
/* 
@media screen and (max-width: 1400px) {
    .navbar ul .dropdown>.sub-menu::before {
        left: 39%;
    }
} */

.navbar ul .dropdown > .sub-menu .sub-menu-min {
  display: block;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-menu-min li {
    margin-bottom: 0;
  }
}

.navbar ul .dropdown > .sub-menu .sub-menu-min a {
  transition: all ease 0.4s;
  font-size: 12px;
  padding-inline: 0;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-menu-min a {
    color: #fff !important;
  }
}

.navbar ul .dropdown > .sub-menu .sub-menu-min a {
  border-bottom: 1px solid #dadada;
}

.navbar ul .dropdown > .sub-menu .sub-menu-min a:hover {
  color: #fd8c32 !important;
  background: #fff !important;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown.open > ul {
    display: block;
    position: unset;
    visibility: visible;
    opacity: 1;
    width: 100% !important;
  }
  .navbar ul .dropdown {
    margin: 0;
    position: inherit;
  }
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-menu-min a:hover {
    color: #fff !important;
    background: #fd8c32 !important;
  }
}

.navbar ul .dropdown > .sub-menu .sub-dropdown {
  width: 18.2% !important;
  min-width: 165px;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-dropdown {
    width: 100% !important;
    margin-bottom: 0;
  }
}

.navbar ul .dropdown > .sub-menu .sub-dropdown .link {
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-dropdown .link {
    border-bottom: 0;
  }
}

.navbar ul .dropdown > .sub-menu .sub-dropdown .link a {
  margin: 0;
  font-weight: 600;
  height: unset;
  text-transform: capitalize;
  display: block ruby;
  padding-inline: 0;
}

.navbar ul .dropdown > .sub-menu .sub-dropdown .link a:hover {
  background: #fff !important;
  color: #fd8c32 !important;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu .sub-dropdown .link a:hover {
    background: #fd8c32 !important;
    color: #fff !important;
  }
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu {
    left: unset;
    transform: none;
  }
}

/* .navbar ul .dropdown > .sub-menu > li {
  margin-right: 15px !important;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu > li {
    margin-right: 0 !important;
  }
}

.navbar ul .dropdown > .sub-menu > li:last-child {
  margin-right: 0 !important;
} */

.navbar ul .dropdown > .sub-menu > li .sub-title {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #666;
  margin-bottom: 0;
  position: relative;
}

.navbar ul .dropdown > .sub-menu > li .sub-menu-min {
  display: block;
  /* min-width: 200px; */
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu > li .sub-menu-min li a {
    background: rgba(0, 0, 0, 0.814) !important;
  }
  .navbar ul .dropdown > .sub-menu > li .sub-menu-min li a:hover {
    background: #fd8c32 !important;
  }
}

.navbar ul .dropdown > .sub-menu > li .sub-menu-min:last-child {
  margin-right: 0;
}

.navbar ul .dropdown > .sub-menu > li a {
  padding: 5px 10px;
  display: block;
  color: #000 !important;
  transition: all ease 0.3s;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu > li a {
    color: #fff;
  }
}

.navbar ul .dropdown > .sub-menu li a:hover {
  color: #fff !important;
  background: #fd8c32;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu {
    box-shadow: none;
    position: inherit;
    display: none;
  }
}

.navbar ul .dropdown > .sub-menu li {
  margin-left: 0;
  margin-right: 0;
  display: block;
  transition: all ease 0.5s;
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu li {
    display: block;
    padding: 0;
  }
}

@media screen and (max-width: 1200px) {
  .navbar ul .dropdown > .sub-menu li:first-child {
    margin-top: 0;
  }
}

.navbar ul .dropdown > .sub-menu li:first-child a {
  margin: 0;
}

.header-cart {
  position: relative;
}

.header-cart .badge {
  position: absolute;
  top: -2px;
  left: 8px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  height: 15px;
  width: 15px;
  text-align: center;
  line-height: 15px;
  padding: 0;
}

.header .mobile {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .header .mobile {
    display: block !important;
  }
}

.header-top {
  padding: 13px 0;
}

@media screen and (max-width: 1200px) {
  .header-top {
    display: none;
  }
}

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

.header-gr-left,
.header-gr-right {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.header-gr-left a,
.header-gr-right a {
  color: #8f8f8f;
}

.header-gr-left .header-hotline {
  margin-right: 17.88px;
}

.header-search {
  margin-right: 20px;
}

.header-search .search-btn {
  border: none;
  background: transparent;
}

.header-search .search-btn:focus {
  outline: none;
}

.header .popup-search {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  transition: transform 0.7s ease;
  display: none;
}

.header .popup-search .popup-content {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

.header .popup-search .close-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  font-weight: 700;
  padding: 0px 8px;
  border-radius: 50%;
  border: 2px #fff solid;
  top: 15px;
  font-size: 15px;
  cursor: pointer;
}

.header .popup-search .form-search {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 600px;
}

.header .popup-search .form-search input {
  background: #fff;
  border: none;
  outline: none;
  height: 60px;
  line-height: 30px;
  font-size: 16px;
  color: #272727;
  padding: 15px 30px;
  width: 100%;
}

.header .popup-search .form-search button {
  position: absolute;
  background: #000;
  border: none;
  height: 60px;
  width: 60px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}

.header .popup-search .form-search button:hover {
  opacity: 0.8;
}

.header-bottom {
  /* padding: 5px 0; */
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.header-bottom.fixed-top {
  background: #fff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  z-index: 9;
}

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

@media screen and (max-width: 1200px) {
  .header-bottom--content .header-logo {
    order: 1;
  }
  .header-bottom--content .header-gr {
    order: 2;
  }
}

.header-category {
  z-index: 9999;
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
}

.header-category .header-top a {
  color: #fff;
}

.header-category .header-top img {
  filter: brightness(0) invert(1);
}

.header-category .header-bottom.fixed-top ul .dropdown a {
  color: #000000 !important;
}

@media screen and (max-width: 1200px) {
  .header-category .header-bottom.fixed-top ul .dropdown a {
    color: #fff !important;
  }
}

.header-category .header-bottom ul .dropdown:hover a,
.header-category .header-bottom ul .dropdown.active a {
  color: #fd8c32 !important;
}

.header-category .header-bottom ul .dropdown .link a {
  color: #fff;
}

.back-to-top {
  position: fixed !important;
  bottom: 50px;
  right: 15px;
  display: none;
  width: 50px;
  height: 50px;
  background: #fff;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  color: #333;
  font-size: 17px;
  border: 1px solid #ddd;
  z-index: 3;
  transition: all ease 0.5s;
}

.back-to-top.active {
  display: block;
}

.back-to-top:hover,
.back-to-top .active {
  background: #fd8c32;
  color: #fff;
  border: 1px solid #fd8c32;
}

.pagination {
  margin-bottom: 0;
}

.pagination li.active a,
.pagination li:hover a {
  background: #a57038;
  border: 1px solid #a57038;
  color: #fff;
}

.pagination li a {
  width: 26px;
  height: 26px;
  display: block;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  position: relative;
  border: 0.433333px solid #a8a8a8;
  border-radius: 3.3913px;
  color: #a8a8a8;
  margin-right: 8px;
  transition: all ease 0.4s;
}

.home-who .wr-home-who {
  min-height: 737px;
  background-image: url(../images/bg-home-who.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 52px;
}

@media screen and (max-width: 440px) {
  .home-who .wr-home-who {
    padding-top: 40px;
  }
}

.home-who .wr-home-who [class^="col-"]:last-child {
  padding-top: 150px;
}

@media screen and (max-width: 996px) {
  .home-who .wr-home-who [class^="col-"]:last-child {
    padding-top: 600px;
  }
}

.home-who .wr-home-who .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  /* Đen */
  color: #666;
}

.home-who .wr-home-who a {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  /* identical to box height, or 20px */
  bottom: 0;
  letter-spacing: 0.02em;
  position: relative;
  /* Secondary/#333333 */
  text-transform: uppercase;
  color: #333333;
}

.home-who .wr-home-who a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  content: "";
  background: #333;
}

.home-who .wr-home-who .box-img {
  position: relative;
}

.home-who .wr-home-who .box-img .bg-1 {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  bottom: 0;
  z-index: 0;
}

.home-who .wr-home-who .box-img .bg-2 {
  position: absolute;
  z-index: 1;
  left: 0;
  z-index: 1;
}

.home-who .wr-home-who .box-img .bg-3 {
  right: 0;
  top: 140px;
  position: absolute;
  z-index: 2;
}

.home-who .wr-home-who .box-img .box-bottom-content {
  background: #fff;
  position: absolute;
  top: 395px;
  z-index: 3;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  padding: 25px 21px;
  box-shadow: 0px 2.88722px 7.69925px rgba(0, 0, 0, 0.08);
  border-radius: 7.69925px;
}

.home-who .wr-home-who .box-img .box-bottom-content .bg-4 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.home-who .wr-home-who .box-img .box-bottom-content p {
  font-weight: 400;
  font-size: 17.3233px;
  line-height: 26px;
  color: #021333;
  margin-bottom: 0;
}

.home-who .wr-home-who .box-img .box-bottom-content .box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend";
}

.home-who .wr-home-who .box-img .box-bottom-content .gra-title,
.home-who .wr-home-who .box-img .box-bottom-content span {
  font-weight: 700;
  font-size: 46.1955px;
  line-height: 58px;
  margin-bottom: 0;
  font-family: "Lexend";
  /* identical to box height */
  letter-spacing: 0.05em;
  background: linear-gradient(
    118.74deg,
    #a47646 40.21%,
    rgba(169, 119, 66, 0.54) 72.2%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 9.62px;
}

.home-who .wr-home-who .box-content {
  padding-left: 67px;
}

@media screen and (max-width: 996px) {
  .home-who .wr-home-who .box-content {
    padding-left: 0;
  }
}

.home-who .wr-home-who .box-content p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}

.home-banner img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  z-index: 1;
}

.home-banner h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140.6%;
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .home-banner h3 {
    margin-bottom: 0;
  }
}

.home-banner .slick-slider {
  margin-bottom: 0;
}

.home-banner .slick-active img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.home-banner .slick-dots {
  bottom: unset;
  top: 45%;
  transform: translateY(-50%);
  padding-left: 30px;
  text-align: left;
  display: block;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .home-banner .slick-dots {
    display: grid;
    padding-right: 20px;
    justify-content: end;
  }
}

.home-banner .slick-dots li {
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 14px;
}

.home-banner .slick-dots li a {
  padding: 5px 8px;
  border: 1px solid transparent;
}

.home-banner .slick-dots .slick-active a {
  border: 1px solid #fff;
}

.home-banner .slick-active .box-fadeup {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
}

.home-banner .slick-active .welcome {
  animation-name: fadeInDown;
  animation-duration: 1s;
  opacity: 1;
}

.home-banner .box-banner-content {
  position: absolute;
  top: 30%;
  width: 100%;
  z-index: 1;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .home-banner .box-banner-content {
    padding-left: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .home-banner .box-banner-content {
    padding-left: 0;
  }
}

@media screen and (max-width: 440px) {
  .home-banner .box-banner-content {
    top: 200px;
    padding-right:20px;
  }
}

.home-banner .box-banner-content .welcome {
  margin-bottom: 10px;
  max-width: 530px;
  word-wrap: break-word;
}

.home-banner .box-banner-content .banner-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 16px;
  max-width: 575px;
  word-wrap: break-word;
}

@media screen and (max-width: 996px) {
  .home-banner .box-banner-content .banner-title {
    font-size: 32px;
    line-height: 48px;
  }
}

@media screen and (max-width: 767px) {
  .home-banner .box-banner-content .banner-title {
    font-size: 28px;
    line-height: 36px;
  }
}

@media screen and (max-width: 575px) {
  .home-banner .box-banner-content .banner-title {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 30px;
  }
}

@media screen and (max-width: 440px) {
  .home-banner .box-banner-content .banner-title {
    font-size: 16px;
    max-width: 330px;
  }
}

.home-banner .box-banner-content .seemore {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  /* identical to box height */
  letter-spacing: 0.05em;
  color: #000000;
  padding: 10px 30px;
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #a57038 50%, white 50%);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

.home-banner .box-banner-content .seemore:hover {
  background-position: left bottom;
  color: #fff;
}

.home-banner .box-banner-content .seemore::before {
  height: 100%;
  width: 2px;
  background: #a57038;
  left: 0;
  content: "";
  position: absolute;
  top: 0;
}

.home-do .wr-home-do {
  padding-top: 128px;
  padding-bottom: 62px;
  background-image: url(../images/bg-home-do.jpg.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-do .main-title {
  color: #fff;
  padding-bottom: 31px;
  margin-bottom: 12px;
  text-align: center;
}

.home-do .main-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.home-do .home-do-slogan {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 0.5rem;
  color: #fff;
}

.home-do .gr-home-do {
  display: flex;
  justify-content: space-between;
}

.home-do .box-home-do {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  padding-top: 35px;
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 17px;
  width: 244px;
  transition: all ease 0.4s;
  min-height: 203.017px;
  cursor: pointer;
}

.home-do .box-home-do img {
  margin-left: auto;
  margin-right: auto;
}

.home-do .box-home-do:hover {
  background: #d5a75c;
  border: 1px solid #d5a75c;
}

.home-do .box-home-do img {
  margin-bottom: 17.02px;
}

.home-do .box-home-do p {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  /* or 18px */
  text-align: center;
  text-transform: capitalize;
  /* Secondary/#FFFFFF */
  margin-bottom: 0;
  color: #ffffff !important;
}

@media screen and (max-width: 1200px) {
  .home-do .home-do-slider {
    margin: 0 -10px;
  }
  .home-do .home-do-slider .slide-item {
    margin: 0 10px;
  }
}

@media screen and (max-width: 1200px) {
  .home-do .home-do-slider .box-home-do {
    width: 100%;
  }
}

.home-intro .wr-home-intro {
  margin-top: 72px;
  margin-bottom: 65px;
}

.home-intro .wr-home-intro .intro-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #a57038;
  margin-bottom: 16px;
}

.home-intro .wr-home-intro ul {
  padding-left: 15px;
}

.home-intro .wr-home-intro ul li {
  list-style: disc;
  font-size: 16px;
  line-height: 150%;
}

.home-intro .wr-home-intro p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #444444;
}

.home-intro .wr-home-intro p a {
  font-weight: 700;
  text-decoration: 1px solid #000000;
  color: #444;
  position: relative;
}

.home-intro .wr-home-intro p a::before {
  position: absolute;
  height: 1px;
  bottom: 0;
  width: 100%;
  content: "";
  background: #000;
}

.home-intro .wr-home-intro .home-intro-item {
  background: #e5e5e5;
  padding: 27px 16px;
  height: 100%;
}

.home-intro .wr-home-intro [class^="col-"] {
  margin-bottom: 10px;
}

.home-intro .wr-home-intro [class^="col-"]:nth-child(14) {
  margin-bottom: 32px;
}

.home-intro .wr-home-intro [class^="col-"]:last-child .intro-title {
  text-align: center;
}

.home-intro .wr-home-intro [class^="col-"]:last-child .box-content {
  background: #f9e5c8;
  border-radius: 27px;
  padding: 24px 108px;
}

@media screen and (max-width: 996px) {
  .home-intro .wr-home-intro [class^="col-"]:last-child .box-content {
    padding: 24px;
  }
}

.home-intro .wr-home-intro [class^="col-"]:last-child .box-content p {
  position: relative;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.home-intro .wr-home-intro [class^="col-"]:last-child .box-content p::before {
  background: #fd8c32;
  height: 1px;
  width: 110px;
  content: "";
  position: absolute;
  bottom: 0;
}

.home-intro
  .wr-home-intro
  [class^="col-"]:last-child
  .box-content
  .box-info
  .title {
  font-size: 16px;
  margin-bottom: 14px;
  color: #666;
}

.home-intro
  .wr-home-intro
  [class^="col-"]:last-child
  .box-content
  .box-info
  ul
  li {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #666;
  font-weight: 400;
}

.home-intro
  .wr-home-intro
  [class^="col-"]:last-child
  .box-content
  .box-info
  ul
  li:last-child {
  font-weight: 700;
}

.home-intro
  .wr-home-intro
  [class^="col-"]:last-child
  .box-content
  .box-info
  ul
  a {
  color: #666;
  font-weight: 700;
}

.home-intro .wr-home-intro .min-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  /* identical to box height, or 20px */
  letter-spacing: 0.02em;
  /* Primary/#FD8C32 */
  color: #fd8c32;
  margin-bottom: 16px;
  padding-left: 30px;
}

.home-intro .wr-home-intro figcaption {
  text-align: center;
  font-style: italic;
  font-weight: 400;
  margin-top: 14px;
}

.home-intro .wr-home-intro .slogan {
  text-align: center;
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.home-intro .wr-home-intro .box-img {
  margin-bottom: 32px;
}

.home-intro .wr-home-intro .box-img img {
  width: 100%;
}

.home-intro .wr-home-intro .home-intro-title {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  /* identical to box height, or 24px */
  /* Secondary/#666666 */
  color: #666666;
}

.home-intro .wr-home-intro .main-title {
  text-align: center;
  margin-bottom: 48px;
}

.home-intro .wr-home-intro .main-title::before {
  width: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.home-intro .wr-home-intro h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  /* or 20px */
  letter-spacing: 0.02em;
  text-transform: uppercase;
  /* Secondary/#333333 */
  margin-bottom: 16px;
  color: #333333;
}

.home-intro .wr-home-intro h5 .yellow {
  color: #a57038;
}

.home-intro .wr-home-intro p {
  color: #444;
  line-height: 27px;
  margin-bottom: 16px;
}

.home-intro .wr-home-intro p strong {
  font-weight: 700;
}

.home-contact {
  padding-top: 40px;
  padding-bottom: 20px;
}

.home-contact .form-home-contact .group-input input,
.home-contact .form-home-contact .group-input textarea {
  width: 100%;
  border: none;
  background: #f8f5f5;
  margin-bottom: 21px;
  font-size: 16px;
  line-height: 16.8px;
  letter-spacing: 0.02em;
  color: #727171;
  padding-left: 24px;
  padding-top: 25px;
  padding-bottom: 28px;
}

.home-contact .form-home-contact .group-input input:focus,
.home-contact .form-home-contact .group-input textarea:focus {
  outline: none;
}

.home-contact .form-home-contact .btn-submit {
  background: #a57038;
  border-radius: 64px;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  padding: 12px 27px;
  text-transform: uppercase;
  border: none;
  transition: all ease 0.4s;
}

.home-contact .form-home-contact .btn-submit:hover {
  opacity: 0.9;
}

.home-contact .form-home-contact .btn-submit img {
  margin-left: 10px;
  border: none;
}

.home-contact .form-home-contact .btn-submit img:focus {
  outline: none;
}

.home-feedback {
  background-image: url(../images/bg-customer.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 45px;
  padding-bottom: 24px;
  background-color: #f5f5f5;
}

.home-feedback .main-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 18px;
  color: #000;
}

.home-feedback .main-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.home-feedback .box-feedback-content {
  background: #ffffff;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.17);
  border-radius: 12px;
  padding-left: 39px;
  padding-top: 56px;
  padding-bottom: 36px;
  padding-right: 32px;
  position: relative;
  z-index: 1;
  margin-top: 42px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  .home-feedback .box-feedback-content {
    padding-top: 110px;
  }
}

.home-feedback .box-feedback-content:hover::before {
  background: #a57038;
}

.home-feedback .box-feedback-content::before {
  content: "";
  bottom: -14px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.11);
  border-radius: 0 0 12px 12px;
  height: 14px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: #fff;
  transition: all ease 0.4s;
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  z-index: 0;
}

.home-feedback .box-feedback-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 19px;
  /* or 136% */
  font-family: "Roboto";
  letter-spacing: 0.02em;
  color: #868686;
  font-weight: 500;
  max-width: 489px;
}

.home-feedback .box-feedback-content .feedback-name {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #222222;
}

.home-feedback .box-feedback-content h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  color: #fd8c32;
}

.home-feedback .box-feedback-content .box-feedback-desc {
  position: relative;
  margin-top: 16px;
}

.home-feedback .box-feedback-content .box-feedback-desc img {
  position: absolute;
  right: 10px;
  bottom: 0;
}

.home-feedback .box-feedback-content .avt {
  position: absolute;
  right: 32px;
  top: -42px;
  z-index: 1;
  height: 148px;
  overflow: hidden;
}

.home-products .main-title {
  text-align: center;
}

.home-products .main-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.home-projects {
  margin-top: 48px;
}

.home-projects-top {
  background-image: url(../images/bg-home-projects.jpg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 32px;
  padding-bottom: 170px;
}

.home-projects-bottom {
  padding-bottom: 160px;
}

@media screen and (max-width: 440px) {
  .home-projects-bottom {
    padding-bottom: 60px;
  }
}

.home-projects-bottom .home-project-slider {
  margin-top: -110px;
}

.home-projects-bottom .home-project-slider .slick-arrow {
  padding: 20px;
  border: 0.766667px solid #a8a8a8;
  border-radius: 6px;
  top: 300px;
}

@media screen and (max-width: 1200px) {
  .home-projects-bottom .home-project-slider .slick-arrow {
    top: 350px;
  }
}

@media screen and (max-width: 996px) {
  .home-projects-bottom .home-project-slider .slick-arrow {
    top: 480px;
  }
}

@media screen and (max-width: 767px) {
  .home-projects-bottom .home-project-slider .slick-arrow {
    top: 350px;
  }
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-prev {
  left: 46%;
  z-index: 2;
}

@media screen and (max-width: 996px) {
  .home-projects-bottom .home-project-slider .slick-arrow.slick-prev {
    left: 40%;
  }
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-prev::before {
  background-image: url(../images/Left-projects-slider.svg);
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-next {
  left: 51%;
  z-index: 2;
}

@media screen and (max-width: 996px) {
  .home-projects-bottom .home-project-slider .slick-arrow.slick-next {
    left: 55%;
  }
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-next::before {
  background-image: url(../images/Right-projects-slider.svg);
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-next,
.home-projects-bottom .home-project-slider .slick-arrow.slick-prev {
  transition: all ease 0.5s;
}

.home-projects-bottom .home-project-slider .slick-arrow.slick-next::before,
.home-projects-bottom .home-project-slider .slick-arrow.slick-prev::before {
  z-index: 9;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 50%;
  background-position: center;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 50%;
  height: 36px;
  width: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  opacity: 1;
}

.home-projects-bottom .home-project-slider .box-projects-item {
  text-align: center;
  margin: 0 10px;
}

.home-projects-bottom .home-project-slider .box-projects-item h2 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 21px;
  text-align: center;
  margin-top: 16px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.home-projects-bottom .home-project-slider .box-projects-item p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  margin-bottom: 0;
  color: #fff !important;
}

.home-projects-bottom .home-project-slider .box-projects-item img {
  width: 100%;
}

.home-projects-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-projects-menu ul {
  display: flex;
}

.home-projects-menu ul li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  position: relative;
  padding-bottom: 10px;
  /* identical to box height */
}

.home-projects-menu ul li:hover .sub-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
  display: block;
}

.home-projects-menu ul li .sub-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  margin: 0;
  width: auto;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  min-width: 230px;
  background: #7f89a1;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.home-projects-menu ul li .sub-menu li {
  padding-bottom: 0;
}

@media screen and (max-width: 996px) {
  .home-projects-menu ul li .sub-menu li {
    display: block;
  }
}

.home-projects-menu ul li .sub-menu a {
  margin: 0;
  padding: 15px;
  display: block;
  transition: all ease 0.4s;
}

.home-projects-menu ul li .sub-menu a:hover {
  background: #fff;
  color: #fd8c32;
}

.home-projects-menu ul li:first-child {
  margin-left: 0;
}

.home-projects-menu ul li:last-child {
  margin-right: 0;
  display: none;
}

@media screen and (max-width: 996px) {
  .home-projects-menu ul li {
    display: none;
  }
  .home-projects-menu ul li:last-child {
    display: block;
  }
}

.home-projects-menu ul li:hover a,
.home-projects-menu ul li.active a {
  color: #fff;
}

.home-projects-menu ul li a {
  color: #676868;
  transition: all ease 0.4s;
  text-transform: uppercase;
  margin: 0 8px;
}

.home-projects-menu .main-title {
  color: #fff;
}

.home-special {
  margin-bottom: 80px;
}

.home-special .box-title {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.home-special .bg-title {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.home-special .main-title {
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 440px) {
  .home-special .main-title {
    font-size: 18px !important;
  }
}

.home-special .main-title::before {
  display: none;
}

.home-special .container-fluid {
  margin: 0;
  padding: 0;
}

.home-special .box-wr-special {
  min-height: 730px;
  position: relative;
}

.home-special .box-wr-special::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  content: "";
}

.home-special [class*="wr-home-special-"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  content: "";
  z-index: 0;
}

.home-special [class*="wr-home-special-"].active {
  visibility: visible;
  opacity: 1;
}

.home-special .box-home-special .row {
  margin: 0;
  min-height: 730px;
}

.home-special .box-home-special [class^="col-"] {
  padding: 0;
  position: relative;
  z-index: 2;
}

.home-special .box-home-special [class^="col-"]:last-child::before {
  display: none;
}

.home-special .box-home-special [class^="col-"]::before {
  height: 100%;
  width: 1px;
  background: #fff;
  position: absolute;
  content: "";
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .home-special .box-home-special [class^="col-"]::before {
    display: none;
  }
}

.home-special .box-home-special [class^="col-"] .box-special-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  cursor: pointer;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content:hover
  .box-special-item::after {
  transform: scaleY(1);
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content:hover
  .box-hide {
  visibility: visible;
  opacity: 1;
  height: auto;
  width: auto;
  transition: all ease 0.4s;
}

.home-special .box-home-special [class^="col-"] .box-special-content .box-hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1 linear all ease 0.4s;
  height: 0;
  width: 0;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content
  .box-special-item {
  position: relative;
  z-index: 0;
  padding-top: 113px;
  padding-left: 47px;
  padding-right: 47px;
  padding-bottom: 38px;
  width: 100%;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content
  .box-special-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom center;
  background: #3c3531;
  z-index: -1;
  transition: transform 0.3s;
}

.home-special .box-home-special [class^="col-"] .box-special-content span {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  /* identical to box height */
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #e8e6e6;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content
  .special-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 31px;
}

.home-special .box-home-special [class^="col-"] .box-special-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 21px;
  color: #ffffff !important;
}

.home-special .box-home-special [class^="col-"] .box-special-content .seemore {
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.05em;
  color: #000000;
  padding: 9px 30px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #a57038 50%, white 50%);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content
  .seemore:hover {
  background-position: left bottom;
  color: #fff;
}

.home-special
  .box-home-special
  [class^="col-"]
  .box-special-content
  .seemore::before {
  height: 100%;
  width: 2px;
  background: #a57038;
  left: 0;
  content: "";
  position: absolute;
  top: 0;
}

.banner-intro img {
  width: 100%;
}

.intro-main {
  background: #fcf2e9;
  position: relative;
}

.intro-main .menu-intro {
  width: 100%;
}

.intro-main .menu-intro.sticky {
  position: fixed;
  top: 50px !important;
  z-index: 3;
  background: #fcf2e9;
}

@media screen and (max-width: 996px) {
  .intro-main .menu-intro {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.intro-main .menu-intro ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.intro-main .menu-intro ul li {
  display: table-cell;
}

.intro-main .menu-intro ul li:active a,
.intro-main .menu-intro ul li.active a {
  background: #a57038;
  color: #fff;
}

.intro-main .menu-intro ul li a {
  padding: 16.5px 18px;
  display: block;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: 700;
  color: #666666;
  font-family: "Roboto";
  white-space: nowrap;
}

.intro-main .menu-intro ul li a:hover,
.intro-main .menu-intro ul li a.active {
  background: #a57038;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .intro-main .menu-intro ul li {
    font-size: 12px;
  }
}

.intro-desc .main-title {
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
}

.intro-desc .main-title::before {
  transform: translateX(-50%);
  left: 50%;
}

.intro-desc .gioi-thieu .row {
  align-items: center;
}

.intro-desc .gioi-thieu .gioi-thieu-content {
  background: #f5f5f5;
  padding-top: 30px;
  padding-bottom: 41px;
  padding-left: 41px;
  padding-right: 41px;
}

@media screen and (max-width: 575px) {
  .intro-desc .gioi-thieu .gioi-thieu-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.intro-desc .gioi-thieu .gioi-thieu-content p,
.intro-desc .gioi-thieu .gioi-thieu-content .slogan {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  /* or 27px */
  /* Primary/#A57038 */
  color: #a57038;
}

.intro-desc .gioi-thieu .gioi-thieu-content .slogan {
  font-weight: 700;
}

.intro-desc .gioi-thieu .gioi-thieu-content .main-title {
  font-weight: 400;
  text-transform: uppercase;
}

.intro-desc .su-menh .box-img {
  height: 100%;
}

.intro-desc .su-menh .box-img img {
  width: 100%;
  height: 100%;
}

.intro-desc .su-menh .main-title {
  text-align: center;
  font-weight: 400;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.intro-desc .su-menh .main-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.intro-desc .su-menh h2::before {
  display: none;
}

.intro-desc .su-menh .container-fluid {
  margin: 0;
  padding: 0;
}

.intro-desc .su-menh .container-fluid [class^="col-"] {
  padding: 0;
}

.intro-desc .su-menh .container-fluid [class^="col-"]:first-child,
.intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(3) {
  background: #f9e5c8;
  padding-top: 89px;
  padding-bottom: 89px;
  padding-left: 72px;
  padding-right: 40px;
}

@media screen and (max-width: 575px) {
  .intro-desc .su-menh .container-fluid [class^="col-"]:first-child,
  .intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(3) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.intro-desc .su-menh .container-fluid [class^="col-"]:first-child p,
.intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(3) p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  /* or 24px */
  color: #000000;
  margin-bottom: 16px;
}

.intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(3) {
  order: 2;
  background: #f9e5c8;
}

@media screen and (max-width: 996px) {
  .intro-desc .su-menh .container-fluid [class^="col-"]:first-child {
    padding-top: 40px;
    padding-bottom: 0;
    order: -1;
    margin-bottom: 0;
  }
  .intro-desc
    .su-menh
    .container-fluid
    [class^="col-"]:first-child
    .box-content {
    padding-top: 0;
  }
  .intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(3) {
    order: 0;
    padding-top: 0;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  .intro-desc
    .su-menh
    .container-fluid
    [class^="col-"]:nth-child(3)
    .box-content {
    padding-top: 0;
  }
  .intro-desc .su-menh .container-fluid [class^="col-"]:last-child {
    display: none;
  }
  .intro-desc .su-menh .container-fluid [class^="col-"]:nth-child(2) {
    order: 1;
  }
}

.intro-desc .su-menh .row {
  margin-left: 0;
  margin-right: 0;
}

.intro-desc .su-menh .row .box-content {
  padding-top: 100px;
}

.intro-desc .gtcl {
  margin-top: 72px;
  position: relative;
}

.intro-desc .gtcl .box-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.intro-desc .gtcl .box-gtcl {
  background: #f5f5f5;
  padding: 52px;
  z-index: 0;
}

@media screen and (max-width: 575px) {
  .intro-desc .gtcl .box-gtcl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.intro-desc .gtcl .box-gtcl .main-title {
  text-align: left;
}

.intro-desc .gtcl .box-gtcl .main-title::before {
  left: 0;
  transform: translateX(0);
}

.intro-desc .hsnl {
  padding-top: 40px;
  padding-bottom: 59px;
}

.intro-desc .hsnl .box-hsnl {
  background: #f9e5c8;
}

.intro-desc .hsnl .box-hsnl .box-img img {
  width: 100%;
}

.intro-desc .hsnl .box-hsnl .box-content {
  padding-left: 110px;
}

@media screen and (max-width: 996px) {
  .intro-desc .hsnl .box-hsnl .box-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 575px) {
  .intro-desc .hsnl .box-hsnl .box-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.intro-desc .hsnl .main-title {
  margin-bottom: 28px;
  color: #fd8c32;
  text-align: left;
}

.intro-desc .hsnl .main-title::before {
  display: none;
}

.intro-desc .hsnl .row {
  align-items: center;
}

.intro-desc .hsnl-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 140.6%;
  /* identical to box height, or 51px */
  /* Primary/#FD8C32 */
  color: #fd8c32;
  text-transform: uppercase;
  margin-bottom: 27.58px;
}

.intro-desc .hsnl p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  /* or  27px */
  color: #000000;
  max-width: 530px;
  margin-bottom: 40px;
}

@media screen and (max-width: 996px) {
  .intro-desc .hsnl p {
    max-width: 100%;
  }
}

.intro-desc .hsnl .btn-down {
  /* Secondary/#333333 */
  padding: 15.0307px 28.9052px;
  border: 1.15621px solid #333333;
  border-radius: 6.93725px;
  background: linear-gradient(to right, #fff 50%, #f9e5c8 50%);
  background-size: auto;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  text-transform: capitalize;
  transition: all ease 0.4s;
  font-size: 18px;
  color: #333;
  display: block;
  max-width: 223px;
  text-align: center;
  margin-bottom: 36px;
}

.intro-desc .hsnl .btn-down:hover {
  background-position: left bottom;
}

.intro-desc .hsnl .btn-down img {
  margin-left: 18px;
}

.intro-desc .cccl {
  padding-top: 80px;
  margin-bottom: 30px;
}

.intro-desc .cccl .main-title {
  margin-bottom: 58px;
}

.intro-desc .cccl .gr-cccl {
  display: flex;
  justify-content: space-between;
}

.intro-desc .wr-bg {
  padding-top: 60px;
  background-image: url(../images/bg-intro.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 79px;
}

.intro-desc .brand .main-title::before {
  display: none;
  margin-bottom: 26px;
}

.intro-desc .brand .box-brand {
  background: #f9e5c8;
  border-radius: 27px;
  padding-top: 40px;
  padding-left: 51px;
  padding-right: 51px;
  padding-bottom: 37px;
}

@media screen and (max-width: 575px) {
  .intro-desc .brand .box-brand {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.intro-desc .brand .box-brand .bold {
  font-weight: 500;
}

.intro-desc .brand .box-brand .brand-slogan {
  text-align: center;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
}

.intro-desc .brand .box-brand .brand-slogan .bold {
  font-weight: 500;
}

.intro-desc .htpp {
  margin-top: 40px;
}

@media screen and (max-width: 575px) {
  .intro-desc .htpp {
    padding-bottom: 0;
  }
}

.intro-desc .htpp-item {
  padding: 57px 0;
}

@media screen and (max-width: 996px) {
  .intro-desc .htpp-item {
    padding: 20px 40px;
  }
}

@media screen and (max-width: 575px) {
  .intro-desc .htpp-item {
    padding: 20px;
  }
}

.intro-desc .htpp-item:nth-child(2n) {
  background: #f9f0f0;
}

.intro-desc .htpp-item .box-img {
  text-align: center;
}

.intro-desc .htpp-item .box-img figcaption {
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */
  /* Secondary/#444444 */
  margin-top: 16px;
  color: #444444;
  text-transform: uppercase;
}

.intro-desc .htpp-item .box-img img {
  text-align: center;
}

.intro-desc .htpp-item .row {
  align-items: center;
}

.intro-desc .htpp-item .row ul li {
  margin-bottom: 27px;
  font-size: 16px;
  line-height: 20px;
  color: #444444;
}

.intro-desc .htpp-item .row ul li a {
  color: #444444;
}

.intro-desc .htpp-item .row ul li img {
  margin-right: 20px;
}

.intro-desc .htpp-logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}

.intro-desc .htpp-content {
  padding: 45px 0;
  background: #f9f0f0;
}

.intro-desc .htpp-content p {
  text-align: center;
  max-width: 888px;
  margin: 0 auto;
}

.intro-desc .htpp .company {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 27px;
  letter-spacing: 0.03em;
  padding-bottom: 16px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  margin-bottom: 32px;
}

@media screen and (max-width: 575px) {
  .intro-desc .htpp .company {
    font-size: 18px;
  }
}

.intro-desc .htpp .company::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background: #fd8c32;
  bottom: 0;
}

.intro-desc .brand {
  background: #fff;
  padding-top: 0px;
  padding-bottom: 40px;
}

.intro-desc .csvc .wr-csvc {
  background-image: url(../images/bg-csvc.png.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 72px 0;
}

.intro-desc .csvc .wr-csvc p {
  max-width: 860px;
  color: #fff !important;
  margin: 0 auto;
}

.intro-desc .csvc .main-title {
  color: #fff !important;
}

@media screen and (max-width: 1400px) {
  .products-main .products-item .box-img {
    height: 260px;
  }
}

@media screen and (max-width: 1200px) {
  .products-main .products-item .box-img {
    height: 334px;
  }
}

.products {
  margin-bottom: 72px;
  /* padding-top: 46.79px; */
}

.products .secondary-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  /* or 24px */
  padding-left: 2rem;
  color: #000000;
  margin-bottom: 32px;
}

.products .products-top-content {
  margin-bottom: 52px;
}

.products .products-top-content .row .left .box-desc {
  top: 70%;
}

.products .products-top-content .row .left [class^="col-"]:first-child,
.products .products-top-content .row .right [class^="col-"]:first-child {
  margin-bottom: 10px;
}

.products .products-top-content .row .left .box-img:hover a,
.products .products-top-content .row .right .box-img:hover a {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.products .products-top-content .row .left .box-img:hover img,
.products .products-top-content .row .right .box-img:hover img {
  transform: scale(1.15) translateX(-50%);
  transition: all ease 0.5s;
}

@media screen and (max-width: 996px) {
  .products .products-top-content .row .left .box-img,
  .products .products-top-content .row .right .box-img {
    height: 233px;
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .products .products-top-content .row .left .box-img,
  .products .products-top-content .row .right .box-img {
    height: 172px;
    width: 100%;
  }
}

.products .products-top-content .row .left .box-img img,
.products .products-top-content .row .right .box-img img {
  width: auto;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%) scale(1);
}

.products .products-top-content .row .left .box-img a,
.products .products-top-content .row .right .box-img a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 53, 49, 0.5);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease,
    -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}

.products .products-top-content .box-img {
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
  border-radius: 12px;
}

.products .products-top-content .box-img img {
  height: 100%;
  width: 100%;
}

.products .products-top-content .box-img .box-desc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.products .products-top-content .box-img .box-desc .title a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #fcf2e9;
  margin-bottom: 0;
  visibility: visible !important;
  background: none !important;
  opacity: 1 !important;
  text-transform: uppercase;
}

.banner-category {
  background-image: url(../images/banner-category.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 1;
}

.banner-category .box-banner-content .third-title {
  text-align: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  /* identical to box height, or 34px */
  margin-bottom: 25.5px;
  color: #ffffff !important;
  text-transform: uppercase;
}

.banner-category .box-banner-content #user-nav-tabs {
  border-bottom: 0;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  .banner-category .box-banner-content #user-nav-tabs li {
    margin-bottom: 10px;
  }
}

.banner-category .box-banner-content #user-nav-tabs li.active a {
  background: #fd8c32;
  border: 1px solid #fd8c32;
}

.banner-category .box-banner-content #user-nav-tabs li a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  /* identical to box height, or 17px */
  color: #ffffff;
  padding: 6px 27.5px;
  margin: 5px 9px;
  border: 1px solid #fff;
  border-radius: 4px;
  display: block;
}

@media screen and (max-width: 996px) {
  .banner-category .box-banner-content #user-nav-tabs li a {
    margin-bottom: 10px;
  }
  .banner-category .box-banner-content #user-nav-tabs li a:first-child {
    margin-left: 0;
  }
}

.banner-category .box-banner-content .breadcrumb ol {
  padding-left: 0;
  justify-content: center;
  padding-top: 0;
  width: 100%;
  margin-bottom: 25.5px;
}

.banner-category .box-banner-content .breadcrumb ol li:last-child a {
  color: #fd8c32;
}

.banner-category .box-banner-content .breadcrumb ol li::before {
  filter: brightness(0) invert(1);
}

.banner-category .box-banner-content .breadcrumb ol li a {
  color: #fff;
}

.products-category-item {
  margin-top: 52px;
  margin-bottom: 72px;
}

@media screen and (max-width: 1400px) {
  .products-category-item .products-item .box-img {
    height: 250px;
  }
}

@media screen and (max-width: 1200px) {
  .products-category-item .products-item .box-img {
    height: 200px;
  }
}

.products-detail {
  margin-top: 50px;
}

.products-detail .gr-cmt {
  margin-top: 40px;
}

.products-detail .gr-cmt .cmt-content {
  margin-bottom: 38px;
}

.products-detail .gr-cmt .cmt-content strong {
  display: block;
}

.products-detail .gr-cmt .cmt-content p {
  line-height: 21px;
}

.products-detail .gr-cmt .cmt-content .time {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  /* identical to box height */
  margin-bottom: 8.5px;
  color: #8f8f8f;
}

.products-detail .gr-cmt .cmt-content p {
  margin-bottom: 8.5px;
}

.products-detail .gr-cmt .cmt-content .talk a {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */
  color: #8f8f8f;
}

.products-detail .gr-cmt .cmt-content .talk a img {
  margin-right: 8px;
}

.products-detail .gr-cmt label {
  width: 100%;
  cursor: pointer;
}

.products-detail .gr-cmt .button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 700;
  padding: 22.68px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.products-detail-main .gr-btn {
  margin-top: 48px;
  display: flex;
  align-items: center;
}

.products-detail-main .gr-btn .cart-btn,
.products-detail-main .gr-btn .buy-btn {
  font-weight: 600;
  width: 50%;
  margin-right: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 15px;
  color: #fff;
  padding: 12px 20px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px #a57038 solid;
  background: linear-gradient(to right, #a57038 50%, white 50%);
  color: #a57038;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

@media screen and (max-width: 575px) {
  .products-detail-main .gr-btn .cart-btn,
  .products-detail-main .gr-btn .buy-btn {
    font-size: 12px;
  }
}

.products-detail-main .gr-btn .cart-btn:hover,
.products-detail-main .gr-btn .buy-btn:hover {
  background-position: left bottom;
  color: #fff;
}

.products-detail-main .gr-btn .buy-btn {
  background: linear-gradient(to right, #a57038 50%, #ff0000 50%);
  color: #fff;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  border: 1px solid #ff0000;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

.products-detail-main .gr-btn .buy-btn:hover {
  background-position: left bottom;
  color: #fff;
  border: 1px solid #a57038;
}

.products-detail-main .contact-btn {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  /* identical to box height, or 27px */
  /* Primary/#FD8C32 */
  color: #fd8c32;
  margin-top: 40px;
  text-align: center;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #fd8c32;
  background: #fff;
  border-radius: 6px;
  transition: all ease 0.4s;
}

.products-detail-main .contact-btn img {
  margin-right: 16px;
}

.products-detail-main .contact-btn:hover {
  background: #fd8c32;
  color: #fff;
}

.products-detail-main .nt {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  display: block;
  /* identical to box height */
  color: #8f8f8f;
  margin-bottom: 16px;
}

.products-detail-main .products-detail-title {
  font-size: 28px;
  line-height: 120%;
  /* identical to box height, or 34px */
  font-weight: 700;
  text-transform: uppercase;
  /* Secondary/#666666 */
  color: #666666;
  margin-bottom: 18px;
}

.products-detail-main .ms {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  /* identical to box height */
  color: #000000;
}

.products-detail-main .table-responsive {
  margin-top: 25px;
}

.products-detail-main table {
  width: 100%;
}

.products-detail-main table tr:first-child {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.products-detail-main table tr:first-child td {
  padding: 8px 0;
  color: #a57038;
  font-weight: 700;
  font-size: 24px;
}

.products-detail-main table tr:first-child td .sale-off {
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 32px;
}

.products-detail-main table tr td {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #000000;
  padding: 7px 0;
  padding-right: 10px;
  width: 1px;
}

.products-detail-main table tr td .form-select {
  font-size: 14px;
  cursor: pointer;
}

.products-detail-main table tr ul {
  margin-bottom: 0;
}

.products-detail-main table tr ul li {
  display: inline-block;
}

.products-detail-main table tr input[type="radio"][id^="cb"] {
  display: none;
}

.products-detail-main table tr label {
  border: 1px solid #fff;
  padding: 2px;
  display: block;
  position: relative;
  margin: 2px;
  cursor: pointer;
}

.products-detail-main table tr label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.products-detail-main table tr label img {
  height: 35px;
  width: 35px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.products-detail-main table tr :checked + label {
  border-color: #ddd;
}

.products-detail-main table tr :checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

.products-detail-main table tr :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
  position: relative;
}

.brand {
  background: #f5f5f5;
  padding: 42px 30px;
}

@media screen and (max-width: 996px) {
  .brand {
    padding: 40px 20px;
  }
}

.brand h1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 140.6%;
  /* identical to box height, or 51px */
  /* Đen */
  color: #000000;
  margin-bottom: 12px;
}

.brand h2 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140.6%;
  /* or 22px */
  margin-bottom: 24px;
  color: #000000;
}

.brand p {
  margin-bottom: 8px;
}

.brand .box-img {
  text-align: center;
}

.brand a {
  color: #15d5ff;
  font-weight: 700;
}

.products-more {
  margin-top: 52px;
}

.products-more .main-title {
  font-size: 28px;
  margin-bottom: 32px;
}

.popup-cart {
  width: 300px;
  position: fixed;
  display: none;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.7s ease;
}

.popup-cart .popup-content {
  position: relative;
  z-index: 999;
  height: 100%;
  width: 100%;
  text-align: center;
  color: #fff;
}

.popup-cart .popup-content .box-main-content {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
  transform: translateX(-50%) translateY(-50%);
  height: 130px;
}

.popup-cart .popup-content .box-icon img {
  width: 48px;
  margin-bottom: 10px;
}

.cmt-main {
  padding-bottom: 80px;
}

.cmt-main .cmt-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  /* identical to box height, or 27px */
  color: #000000;
}

.cmt-main input {
  width: 100%;
  border: none;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  /* identical to box height */
  padding: 10px 0;
  /* Secondary/#666666 */
  border-bottom: 1px solid #666;
  color: #666666;
  margin-bottom: 32px;
}

.cmt-main input:focus {
  outline: none;
}

.cmt-main input.mxn {
  border: 1px solid #666 !important;
  padding: 10px 15px;
}

.cmt-main .submit {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  /* identical to box height */
  border: 1px solid #fd8c32;
  /* Secondary/#FFFFFF */
  transition: all ease 0.4s;
  color: #ffffff;
  padding: 15px 51px;
  background: #fd8c32;
}

.cmt-main .submit:hover {
  background: #fff;
  color: #fd8c32;
}

.cmt-main .submit:focus {
  outline: none;
}

.box-projects {
  margin-top: 52px;
  margin-bottom: 80px;
}

.box-projects .pagination {
  justify-content: center;
}

.box-projects-desc {
  position: absolute;
  bottom: 75px;
  right: 15px;
  text-align: right;
  opacity: 1;
  transform: translateY(0%);
  transition: all 700ms ease;
  z-index: 2;
  max-width: 274px;
  word-wrap: break-word;
}

@media screen and (max-width: 996px) {
  .box-projects-desc {
    max-width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .box-projects-desc {
    max-width: 300px;
  }
}

@media screen and (max-width: 440px) {
  .box-projects-desc {
    max-width: 230px;
  }
}

.box-projects-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: all 700ms ease;
  transition-delay: 0s;
  z-index: 2;
}

.box-projects-icon a {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
}

.box-projects-content {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.box-projects-item {
  margin-bottom: 31px;
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .box-projects-item {
    height: 188px;
  }
}

@media screen and (max-width: 1200px) {
  .box-projects-item {
    height: 241px;
  }
}

@media screen and (max-width: 996px) {
  .box-projects-item {
    height: 177px;
  }
}

@media screen and (max-width: 767px) {
  .box-projects-item {
    height: 272px;
  }
}

@media screen and (max-width: 575px) {
  .box-projects-item {
    height: 289px;
  }
}

@media screen and (max-width: 440px) {
  .box-projects-item {
    height: 100%;
  }
}

.box-projects-item .box-img {
  position: relative;
  height: 100%;
}

.box-projects-item .box-img a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.box-projects-item img {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: scale(1);
  left: 50%;
  transform: scale(1) translateX(-50%);
  transition: all 500ms ease;
}

.box-projects-item:hover img {
  transform: scale(1.05) translateX(-50%);
}

.box-projects-item:hover::before {
  height: 100%;
  transition-delay: 500ms;
}

.box-projects-item:hover::after {
  width: 50%;
  transition-delay: 500ms;
}

.box-projects-item:hover .box-projects-content .box-img a {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  visibility: visible;
  opacity: 1;
}

.box-projects-item:hover .box-projects-icon {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.box-projects-item:hover .box-projects-desc {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.box-projects-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 0;
  left: 60px;
  background-color: #a47c68;
  content: "";
  width: 2px;
  transition: all 500ms ease;
  z-index: 2;
}

.box-projects-item::after {
  position: absolute;
  left: 0;
  bottom: 58px;
  background-color: #a47c68;
  content: "";
  height: 2px;
  width: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.box-projects-item h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  margin-top: 18px;
  margin-bottom: 12px;
}

@media screen and (max-width: 575px) {
  .box-projects-item h3 {
    font-size: 16px;
  }
}

.box-projects-item h3 a {
  color: #fff;
}

.box-projects-item p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 17px;
  color: #fff !important;
  text-transform: capitalize;
  margin-bottom: 0;
}

.projects-detail-item {
  margin-top: 52px;
}

.projects-detail-item .projects-detail-top {
  position: relative;
  display: block;
}

.projects-detail-item .projects-detail-top .box-bg {
  position: relative;
  display: block;
}

.projects-detail-item .projects-detail-top .box-bg img {
  width: 100%;
  position: relative;
}

.projects-detail-item .projects-detail-top .box-detail-top-desc {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 60px;
  margin-top: -70px;
}

@media screen and (max-width: 575px) {
  .projects-detail-item .projects-detail-top .box-detail-top-desc {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.projects-detail-item .projects-detail-top .box-detail-top-desc::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: var(--ambed-base, #a47c68);
  content: "";
  z-index: 1;
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--ambed-white, #ffffff);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 46px 60px 44px;
  border-top-right-radius: 48px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}

@media screen and (max-width: 996px) {
  .projects-detail-item .projects-detail-top .box-detail-top-desc ul {
    display: block;
  }
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li {
  position: relative;
  display: block;
  width: 20%;
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li p {
  min-height: 60px;
}

@media screen and (max-width: 996px) {
  .projects-detail-item .projects-detail-top .box-detail-top-desc ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .projects-detail-item
    .projects-detail-top
    .box-detail-top-desc
    ul
    li::before {
    display: none;
  }
  .projects-detail-item .projects-detail-top .box-detail-top-desc ul li h3 {
    margin-bottom: 0 !important;
  }
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li .social {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
}

.projects-detail-item
  .projects-detail-top
  .box-detail-top-desc
  ul
  li
  .social
  a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--ambed-black, #3c3531);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
}

.projects-detail-item
  .projects-detail-top
  .box-detail-top-desc
  ul
  li
  .social
  a:hover {
  color: var(--ambed-base, #a47c68);
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  content: "";
  width: 1px;
  background-color: var(--ambed-bdr-color, #e2ddda);
  transform: rotate(10deg);
}

.projects-detail-item
  .projects-detail-top
  .box-detail-top-desc
  ul
  li:last-child::before {
  display: none;
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li h3 {
  line-height: 26px;
  font-size: 16px;
  color: var(--ambed-base, #a47c68);
}

.projects-detail-item .projects-detail-top .box-detail-top-desc ul li p {
  font-weight: 500;
  color: var(--ambed-black, #3c3531);
  line-height: 30px;
  font-size: 16px;
  margin-bottom: 0;
}

.projects-detail-item .projects-detail-bottom {
  margin-top: 50px;
}

.projects-detail-item .projects-detail-bottom .row {
  margin-left: -5px;
  margin-right: -5px;
}

.projects-detail-item .projects-detail-bottom .row [class^="col-"] {
  padding: 0 5px;
  padding-bottom: 5px;
  overflow: hidden;
}

@media screen and (max-width: 996px) {
  .projects-detail-item .projects-detail-bottom .row [class^="col-"] {
    margin-bottom: 0;
  }
}

.projects-detail-item .projects-detail-bottom .row .box-img {
  overflow: hidden;
  height: 250px;
}

@media screen and (max-width: 1200px) {
  .projects-detail-item .projects-detail-bottom .row .box-img {
    height: 220px;
  }
}

.projects-detail-item .projects-detail-bottom .row img {
  height: 100%;
  width: auto;
  -webkit-transform: scale(1);
  left: 50%;
  transform: scale(1) translateX(-50%);
  transition: all 500ms ease;
  position: relative;
}

.projects-detail-item .projects-detail-bottom .row img:hover {
  transform: scale(1.05) translateX(-50%);
}

.contact-item {
  margin-top: 42px;
  margin-bottom: 72px;
}

.contact-item .slogan {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  /* or 24px */
  text-align: center;
  /* Secondary/#444444 */
  color: #444444;
  max-width: 967px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 33px;
}

.contact-item .contact-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  max-width: 755px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
  /* or 34px */
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  /* Secondary/#666666 */
  color: #666666;
}

.contact-item .contact-title::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 87px;
  background: #fd8c32;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.contact-item .contact-top {
  margin-bottom: 65px;
}

.contact-item .contact-top .icon {
  margin-bottom: 16px;
}

@media screen and (max-width: 996px) {
  .contact-item .contact-top [class*="col-"] {
    text-align: center;
  }
}

.contact-item .contact-top .contact-title-min {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  /* identical to box height, or 24px */
  /* Secondary/#666666 */
  color: #666666;
  margin-bottom: 12px;
}

.contact-item .contact-top p,
.contact-item .contact-top a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  /* or 27px */
  /* Secondary/#444444 */
  color: #444444;
  margin-bottom: 0;
}

.contact-item .contact-top a {
  display: block;
}

.contact-item .form-contact {
  background: #ffffff;
  box-shadow: 0px 3.67123px 3.67123px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding-top: 43px;
  padding-bottom: 52px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 575px) {
  .contact-item .form-contact {
    padding: 20px;
  }
}

.contact-item .form-contact .form-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 22.0274px;
  line-height: 23px;
  /* Primary/#A57038 */
  color: #a57038;
  margin-bottom: 22px;
}

.contact-item .form-contact label {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 12.8493px;
  line-height: 13px;
  color: #000000;
  margin-bottom: 12px;
}

.contact-item .form-contact input,
.contact-item .form-contact textarea {
  border: 0.917808px solid #bcbfcc;
  border-radius: 4px;
  font-size: 13px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  margin-bottom: 16.52px;
}

.contact-item .form-contact input:focus,
.contact-item .form-contact textarea:focus {
  border: 0.917808px solid #a57038;
  outline: 0.917808px solid #a57038;
}

.contact-item .form-contact .submit-btn {
  background: #a57038;
  border-radius: 5px;
  display: block;
  width: 100%;
  color: #fff;
  transition: all ease 0.4s;
  border: none;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16.5205px;
  line-height: 17px;
  padding-top: 10px;
  padding-bottom: 12px;
}

.contact-item .form-contact .submit-btn:hover {
  opacity: 0.8;
}

.contact-item .form-contact .submit-btn:focus {
  outline: none;
}

.blog {
  padding-top: 46.79px;
  padding-bottom: 60px;
}

.blog-item-left .box-img {
  height: 265px;
  width: 100% !important;
}

.blog-item-left .box-img img {
  height: 100%;
  width: auto !important;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #a57038;
  margin-bottom: 32px;
  padding-bottom: 8px;
}

.blog-head .blog-btn {
  padding: 8px 16px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  /* identical to box height, or 29px */
  /* Secondary/#FFFFFF */
  color: #ffffff;
  background: #a57038;
  transition: all ease 0.4s;
  border: 1px solid #a57038;
}

.blog-head .blog-btn:hover {
  background: #fff;
  color: #a57038;
}

.blog-head .seemore {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  /* identical to box height, or 29px */
  /* Secondary/#666666 */
  color: #666666;
}

.blog .box-img img {
  width: 100%;
}

.blog-item-left .blog-content .blog-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* or 22px */
  /* Secondary/#333333 */
}

.blog-item-left .blog-content .blog-title a {
  color: #333333;
  transition: all ease 0.4s;
}

.blog-item-left .blog-content .blog-title a:hover {
  color: #a57038;
}

.blog-item-left .blog-content p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  color: #666666 !important;
  line-height: 1.5;
}

.blog-item-right {
  margin-bottom: 20px;
}

@media screen and (max-width: 996px) {
  .blog-item-right [class*="col-"] {
    margin-bottom: 0px;
  }
}

.blog-item-right .row {
  align-items: center;
}

.blog-item-right .blog-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.blog-item-right .blog-title a {
  /* or 22px */
  /* Secondary/#333333 */
  color: #333333;
  transition: all ease 0.4s;
}

.blog-item-right .blog-title a:hover {
  color: #a57038;
}

.blog-item-right .box-img {
  height: 125px;
  width: 100%;
  margin-bottom: 0;
}

.blog-item-right .box-img img {
  width: auto !important;
  height: 100%;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
}

.blog-main-item {
  margin-bottom: 40px;
}

.blog-detail {
  overflow: unset;
  padding-top: 46.79px;
}

.blog-detail-content h1,
.projects-detail-item .box-project-content h1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  /* or 38px */
  /* Secondary/#333333 */
  color: #333333;
  margin-bottom: 12px;
}

.blog-detail-content .box-time,
.projects-detail-item .box-project-content .box-time {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-detail-content .box-time span,
.projects-detail-item .box-project-content .box-time span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  /* or 19px */
  /* Secondary/#666666 */
  color: #666666;
}

.blog-detail-content p,
.projects-detail-item .box-project-content p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  /* or 21px */
  /* Secondary/#333333 */
  color: #333333;
  margin-bottom: 12.54px;
}

.blog-detail-content .box-img,
.projects-detail-item .box-project-content .box-img {
  text-align: center;
}

.blog-detail-content h2,
.projects-detail-item .box-project-content h2 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  /* or 31px */
  /* Secondary/#333333 */
  color: #333333;
  margin-bottom: 8pxpx;
}

.blog-detail-content h3,
.projects-detail-item .box-project-content h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  /* identical to box height, or 29px */
  /* Secondary/#333333 */
  color: #333333;
  margin-left: 30px;
  margin-bottom: 6px;
}

.blog-detail-content h4,
.projects-detail-item .box-project-content h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  /* or 23px */
  /* Secondary/#333333 */
  color: #333333;
  margin-bottom: 6px;
  margin-left: 30px;
}

.blog-detail-content ul,
.projects-detail-item .box-project-content ul {
  padding-left: 30px;
}
.blog-detail-content ul li,
.projects-detail-item .box-project-content ul li {
  list-style-type: disc;
}
.blog-detail .box-share {
  /* margin-left: 30px;
  max-width: 710px; */
  border-top: 1px dashed #444;
  display: flex;
  align-items: center;
  padding-top: 24px;
  margin-top: 32.5px;
}

.blog-detail .box-share ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.blog-detail .box-share ul li {
  margin-right: 24px;
  list-style: none;
}

.blog-detail .box-share ul li:last-child {
  margin-right: 0;
}

.box-form {
  border: 1px solid #666666;
  margin-top: 32.5px;
}

.box-form-head {
  background: #fff;
  border-top: 4px solid #fd8c32;
  padding-top: 16.7px;
  padding-bottom: 16.7px;
  padding-left: 32.5px;
}

.box-form-head .form-head-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  /* identical to box height, or 22px */
  letter-spacing: 0.02em;
  /* Secondary/#333333 */
  color: #333333;
}

.box-form-content {
  padding: 25.12px 32.5px;
}

.box-form-content input {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #666666;
  border-radius: 4px;
  background: #fff;
  padding: 11.33px 16.2px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.box-form-content input::placeholder {
  color: #000;
}

.box-form-content input:focus {
  outline: none;
}

.box-form-content textarea {
  height: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 11.33px 16.2px;
  min-height: 212px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.box-form-content textarea::placeholder {
  color: #000;
}

.box-form-content textarea:focus {
  outline: none;
}

.box-form .box-btn {
  text-align: right;
  background: #fff;
  padding-top: 8.33px;
  padding-bottom: 30.24px;
  padding-right: 32.15px;
}

.box-form .box-btn button {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  /* or 19px */
  letter-spacing: 0.02em;
  /* Secondary/#FFFFFF */
  color: #ffffff;
  padding: 16px 22px;
  transition: all ease 0.4s;
  background: #fd8c32;
  border: 1px solid #fd8c32;
  text-transform: uppercase;
}

.box-form .box-btn button:hover {
  background: #fff;
  color: #fd8c32;
}

.related {
  padding-top: 56.5px;
  padding-bottom: 70px;
}

.related-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  /* identical to box height, or 34px */
  /* Secondary/#666666 */
  color: #666666;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 32.5px;
}

.related-title::before {
  content: "";
  position: absolute;
  width: 87px;
  height: 2px;
  background: #fd8c32;
  bottom: 0;
}

.blog-category .blog-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
}

.blog-category .blog-item .box-img {
  margin-bottom: 0;
}

.blog-category .blog-item .blog-content h4 {
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 700;
}

.blog-category .blog-item .blog-content h4 a {
  color: #333;
  transition: all ease 0.4s;
}

.blog-category .blog-item .blog-content h4 a:hover {
  color: #fd8c32;
}

.blog-category .blog-item .blog-content .box-time {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.blog-category .blog-item .blog-content .box-time span {
  font-size: 14px;
}

.blog-category .blog-item .blog-content .box-time span img {
  width: 16px;
}

.blog-category .blog-item .blog-content p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 0;
}

.cart,
.payment,
.success {
  background: #f0f0f0;
  padding-top: 52px;
  padding-bottom: 120px;
}

.cart .form-cart,
.payment .form-cart,
.success .form-cart {
  background: #ffffff;
  padding-left: 45px;
  padding-top: 44px;
  padding-right: 45px;
  padding-bottom: 52px;
}

@media screen and (max-width: 440px) {
  .cart .form-cart,
  .payment .form-cart,
  .success .form-cart {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.cart .form-cart-item,
.payment .form-cart-item,
.success .form-cart-item {
  border-top: 2px solid #a57038;
  padding-top: 24px;
}

.cart .form-cart-title,
.payment .form-cart-title,
.success .form-cart-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  color: #a57038;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.cart .form-cart .submit-btn,
.payment .form-cart .submit-btn,
.success .form-cart .submit-btn {
  display: block;
  text-align: center;
  background: #a57038;
  color: #fff;
  transition: all ease 0.4s;
  width: 100%;
  border: 1px solid #a57038;
  text-transform: uppercase;
  font-weight: 14px;
  font-weight: 600;
  padding: 15px 0;
  margin-top: 26px;
}

.cart .form-cart .submit-btn:hover,
.payment .form-cart .submit-btn:hover,
.success .form-cart .submit-btn:hover {
  background: #fff;
  color: #a57038;
}

.cart .form-cart .submit-btn:focus,
.payment .form-cart .submit-btn:focus,
.success .form-cart .submit-btn:focus {
  outline: none;
}

.cart .form-cart .gr-input input,
.payment .form-cart .gr-input input,
.success .form-cart .gr-input input {
  width: 100%;
  border: 0;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  /* GRAY */
  color: #8f8f8f;
}

.cart .form-cart .gr-input input:focus,
.payment .form-cart .gr-input input:focus,
.success .form-cart .gr-input input:focus {
  outline: none;
}

.cart .form-cart ul,
.payment .form-cart ul,
.success .form-cart ul {
  margin-bottom: 52px;
}

.cart .form-cart ul li,
.payment .form-cart ul li,
.success .form-cart ul li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding: 16px 0;
}

.cart .form-cart ul li:nth-child(2),
.payment .form-cart ul li:nth-child(2),
.success .form-cart ul li:nth-child(2) {
  padding-bottom: 0;
}

.cart .form-cart ul li:first-child,
.payment .form-cart ul li:first-child,
.success .form-cart ul li:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.cart .form-cart ul li:last-child,
.payment .form-cart ul li:last-child,
.success .form-cart ul li:last-child {
  padding: 0;
  font-weight: 400;
}

.cart .back,
.payment .back,
.success .back {
  padding: 20.5px 0;
}

@media screen and (max-width: 996px) {
  .cart .back,
  .payment .back,
  .success .back {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .cart .back,
  .payment .back,
  .success .back {
    text-align: center;
  }
}

.cart .back a,
.payment .back a,
.success .back a {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  color: #000000;
  transition: all ease 0.4s;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid #000;
  margin-top: 5.37px;
}

.cart .back a img,
.payment .back a img,
.success .back a img {
  margin-right: 8px;
  transition: all ease 0.4s;
}

@media screen and (max-width: 575px) {
  .cart .back a,
  .payment .back a,
  .success .back a {
    display: block;
    text-align: center;
  }
}

.cart .back a:hover,
.payment .back a:hover,
.success .back a:hover {
  background: #a57038;
  color: #fff;
  border: 1px solid #a57038;
}

.cart .back a:hover img,
.payment .back a:hover img,
.success .back a:hover img {
  filter: brightness(0) invert(1);
}

.cart .remove,
.payment .remove,
.success .remove {
  text-align: right;
}

.cart .remove .remove-btn,
.payment .remove .remove-btn,
.success .remove .remove-btn {
  border: 0;
  background: transparent;
}

.cart .remove .remove-btn:focus,
.payment .remove .remove-btn:focus,
.success .remove .remove-btn:focus {
  outline: none;
}

.cart .cart-table tbody tr:first-child td,
.payment .cart-table tbody tr:first-child td,
.success .cart-table tbody tr:first-child td {
  color: #8f8f8f;
}

.cart .cart-table tbody tr:last-child,
.payment .cart-table tbody tr:last-child,
.success .cart-table tbody tr:last-child {
  font-weight: 600;
}

.cart .cart-table tr td,
.payment .cart-table tr td,
.success .cart-table tr td {
  font-size: 14px;
  padding: 10px 0;
  padding-right: 10px;
}

.cart .cart-table tr th h4,
.payment .cart-table tr th h4,
.success .cart-table tr th h4 {
  font-weight: 700;
  font-size: 14px;
}

.cart-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  color: #000000;
  margin-bottom: 27px;
}

.cart-item {
  padding-top: 25.28px;
  padding-right: 20px;
  padding-bottom: 28.28px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.cart-item img {
  width: 100%;
}

@media screen and (max-width: 996px) {
  .cart-item {
    padding-right: 0;
  }
}

.cart-item:last-child {
  border-top: 0;
}

.popup-final {
  width: 330px;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.7s ease;
}

@media screen and (max-width: 996px) {
  .popup-final .back {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .popup-final .back {
    display: unset;
    width: auto;
  }
}

.popup-final .popup-content {
  position: relative;
  z-index: 999;
  height: 100%;
  width: 100%;
  text-align: center;
  color: #333;
  font-size: 14px;
}

.popup-final .popup-content .box-main-content {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 10px;
  transform: translateX(-50%) translateY(-50%);
  height: 250px;
}

.popup-final .popup-content .box-icon img {
  margin-bottom: 10px;
}

.policy .policy-content {
  background: #f2f2f2;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media screen and (max-width: 440px) {
  .policy .policy-content {
    padding: 40px 0;
  }
}

.policy .policy-content .policy-main-content {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.21);
}

@media screen and (max-width: 440px) {
  .policy .policy-content .policy-main-content {
    padding: 20px;
  }
}

.policy .policy-content .policy-main-content .image-center {
  text-align: center;
}

.policy .policy-content .policy-main-content h3 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.payment-group #paymentCod,
.payment-group #paymentBank,
.payment-group #paymentQR {
  display: none;
}

.payment-group #cod:checked ~ #paymentCod {
  display: block;
}

.payment-group #bank:checked ~ #paymentBank {
  display: block;
}

.payment-group #qr:checked ~ #paymentQR {
  display: block;
}

.payment input[type="radio"],
.success input[type="radio"] {
  display: none;
}

.payment input[type="radio"] + label[for]::before,
.success input[type="radio"] + label[for]::before {
  content: "";
  border: 1px solid #000;
  width: 36px;
  height: 36px;
  position: absolute;
  left: -68.5px;
  top: 0;
  background: #fff;
  border-radius: 50%;
  line-height: 36px;
}

.payment input[type="radio"] + label[for],
.success input[type="radio"] + label[for] {
  position: relative;
  line-height: 36px;
  margin-left: 68.5px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  /* Secondary/#333333 */
  color: #333333;
}

.payment input[type="radio"] + label[for]::after,
.success input[type="radio"] + label[for]::after {
  height: 30.5px;
  width: 30.5px;
  top: 2.5px;
  left: -65.5px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background: #fd8c32;
  display: none;
}

.payment input[type="radio"]:checked + label[for]::after,
.success input[type="radio"]:checked + label[for]::after {
  display: block;
}

.payment input[type="radio"]:checked + label[for]::before,
.success input[type="radio"]:checked + label[for]::before {
  border: 1px solid #fd8c32;
}

.payment-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  padding-bottom: 12px;
  color: #d11a20;
  position: relative;
  margin-bottom: 25px;
}

.payment-title::before {
  width: 110px;
  height: 1px;
  background: #d11a20;
  position: absolute;
  content: "";
  bottom: 0;
}

.payment-group {
  margin-bottom: 33px;
}

.payment-desc {
  padding-left: 134px;
  margin-top: 10.67px;
}

@media screen and (max-width: 767px) {
  .payment-desc {
    padding-left: 0;
  }
}

.payment-desc p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.payment-desc img {
  margin-bottom: 24.47px;
  margin-top: 25px;
}

.payment-desc h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  padding-left: 25px;
  /* identical to box height */
  margin-bottom: 16.53px;
  /* Primary/#A57038 */
  color: #a57038;
  position: relative;
}

.payment-desc h3::before {
  content: ".";
  position: absolute;
  left: 12px;
  top: -3px;
}

.payment .table-responsive table,
.success .table-responsive table {
  width: 100%;
}

.payment .table-responsive tr td,
.success .table-responsive tr td {
  padding-bottom: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 19px;
  /* identical to box height */
  /* Secondary/#333333 */
  color: #333333;
}

.payment .table-responsive tr button,
.success .table-responsive tr button {
  color: #00b2ff;
  border: none;
  background: transparent;
}

.payment .table-responsive tr span,
.success .table-responsive tr span {
  font-weight: 600;
  margin-right: 24px;
}

.payment .form-cart ul,
.success .form-cart ul {
  margin-bottom: 0;
}

.payment .form-cart ul li,
.success .form-cart ul li {
  padding: 16px 0 !important;
}

.payment .form-cart ul li:first-child,
.success .form-cart ul li:first-child {
  border: 0;
}

.payment .form-cart ul li:last-child,
.success .form-cart ul li:last-child {
  font-weight: 600;
}

.payment .form-cart ul.normal li:last-child,
.success .form-cart ul.normal li:last-child {
  font-weight: 400;
  padding-top: 0;
  padding-bottom: 45px;
}

.payment .form-cart ul.list-info,
.success .form-cart ul.list-info {
  padding-left: 15px;
}

.payment .form-cart ul.list-info li,
.success .form-cart ul.list-info li {
  font-weight: 400;
  position: relative;
  display: block;
}

.payment .form-cart ul.list-info li::before,
.success .form-cart ul.list-info li::before {
  content: ".";
  position: absolute;
  left: -15px;
  top: 12px;
}

.success-item {
  background: #ffffff;
  box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.21);
  margin-bottom: 42px;
}

.success-content {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 45px;
  padding-top: 24px;
}

@media screen and (max-width: 1200px) {
  .success-content {
    padding-left: 32px;
    padding-bottom: 32px;
  }
}

.success-content .payment-desc {
  padding-left: 0;
}

.success-content h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
  /* Secondary/#333333 */
  color: #333333;
}

.success-content .list-info {
  padding-left: 15px;
}

.success-content .list-info li {
  margin-bottom: 18px;
  line-height: 33px;
  list-style: disc;
}

.success-content .list-info .red {
  color: #ff0000;
  font-weight: 700;
}

.success-content p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  /* Secondary/#333333 */
  color: #333333;
}

.success-content .yellow {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  /* Primary/#A57038 */
  color: #a57038;
}

.success-content .yellow a {
  color: #a57038;
}

.success-head {
  text-align: center;
  background: #f0fff8;
  padding: 32px 0;
}

.success-head h2 {
  display: inline-block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  margin-left: 21px;
  color: #289255;
}

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

.advise {
  background-image: url(../images/bg-advise.png.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 95.52px;
  padding-bottom: 151.53px;
}

.advise-item {
  background-image: url(../images/bg-advise-item.png.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.advise-content {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .advise-content {
    padding-top: 100px;
  }
}

.advise-content img {
  position: absolute;
  bottom: 40px;
  right: 50px;
}

@media screen and (max-width: 1200px) {
  .advise-content img {
    width: 80%;
  }
}

.advise-form {
  padding-top: 48px;
  padding-left: 49.5px;
  padding-right: 49.5px;
  padding-bottom: 48px;
  background: #e5e5e5;
}

.advise-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.02em;
  /* Primary/#FD8C32 */
  color: #fd8c32 !important;
}

.advise-slogan {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  /* or 119% */
  text-align: center;
  letter-spacing: 0.02em;
  /* Secondary/#666666 */
  color: #666666;
  margin-bottom: 24.52px;
}

.advise-slogan a {
  color: #333;
  font-weight: 600;
  transition: all ease 0.4s;
}

.advise-slogan a:hover {
  color: #fd8c32;
}

.advise form .box-form-content {
  margin-left: 41px;
  margin-right: 41px;
}

@media screen and (max-width: 1200px) {
  .advise form .box-form-content {
    margin: 0;
  }
}

.advise form .gr-input {
  width: 100%;
  margin-bottom: 16px;
}

.advise form .gr-input input,
.advise form .gr-input textarea {
  width: 100%;
  font-size: 12.93px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  padding: 16.52px 17.36px;
  background: rgba(251, 252, 253, 0.94);
  border-radius: 7.18367px !important;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.5);
  box-shadow: unset;
  border: 0;
}

.advise form .gr-input input:focus,
.advise form .gr-input textarea:focus {
  outline: none;
}

.advise form .gr-input textarea {
  min-height: 152px;
}

.advise form .gr-input .custom-select {
  border: 0;
  border-radius: 7.18367px;
  color: rgba(0, 0, 0, 0.5);
}

.advise form .gr-input .custom-select .select-items {
  font-size: 12.93px;
}

.advise form .gr-input .custom-select .select-selected {
  font-size: 12.93px;
  border-radius: 7.18367px;
  background: rgba(251, 252, 253, 0.94);
  color: rgba(0, 0, 0, 0.5);
}

.advise .box-btn .send-btn {
  background: #fd8c32;
  border-radius: 7.18px;
  text-align: center;
  width: 100%;
  padding: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.02em;
  /* Secondary/#FFFFFF */
  color: #ffffff;
  transition: all ease 0.4s;
  border: 1px solid #fd8c32;
  margin-top: 16px;
}

.advise .box-btn .send-btn img {
  margin-left: 8px;
  transition: all ease 0.4s;
}

.advise .box-btn .send-btn:hover {
  color: #000;
  background: #fff;
}

.advise .box-btn .send-btn:hover img {
  filter: brightness(1) invert(1);
}

.footer .footer-top {
  padding-top: 61px;
  padding-bottom: 48px;
  background-image: url(../images/bg-footer-top.png.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.footer .footer-top .footer-logo {
  text-align: center;
}

.footer .footer-top a {
  color: #fff;
}

.footer .footer-top .footer-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.footer .footer-top .footer-min-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer .row [class^="col-"]:first-child .name-company {
  font-size: 18px;
  text-align: center;
  margin-top: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: #fff !important;
}

.footer .row [class^="col-"]:first-child ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}

.footer .row [class^="col-"]:first-child ul li img {
  margin-right: 19px;
}

.footer .row [class^="col-"]:first-child ul li .gr-phone {
  display: flex;
}

.footer .row [class^="col-"]:first-child ul li .gr-phone .gr-number {
  margin-left: 4px;
}

.footer .row [class^="col-"]:first-child ul li .gr-phone span {
  display: block;
}

.footer .row [class^="col-"]:nth-child(2) ul {
  padding-left: 30px;
}

.footer .row [class^="col-"]:nth-child(2) ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.footer .row [class^="col-"]:nth-child(3) ul li {
  margin-bottom: 16px;
}

.footer .row [class^="col-"]:nth-child(4) .gr-social {
  margin-bottom: 35px;
  display: flex;
  gap: 15px;
}

/* .footer .row [class^="col-"]:nth-child(4) .gr-social img {
  margin-right: 24px;
} */

/* @media screen and (max-width: 1400px) {
  .footer .row [class^="col-"]:nth-child(4) .gr-social img {
    margin-right: 10px;
  }
} */

.footer .footer-bottom {
  background: #a57038;
  padding: 5px 0;
}

.footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 996px) {
  .footer .footer-bottom-content {
    display: block;
  }
}

.footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 12px;
  color: #fff !important;
}

.footer .footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.footer .footer-bottom strong {
  font-weight: 700;
}

.blog-detail-main tbody,
.blog-detail-main  td, 
.blog-detail-main  tfoot ,
.blog-detail-main  th,
.blog-detail-main  thead, 
.blog-detail-main  tr {
  border: 1px solid #000 !important;
  padding: 5px;
}



@media (max-width:1200px) {
  .blog-detail-main table {
    width: 100% !important;
    table-layout: fixed;
  }
  .blog-detail-main table tr td{
    width: unset !important;
  }
}


/* #fanback .wr-fanback {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */

/* #MorganAndMen {
  background: white;
  width: 620px;
  height: 470px;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  margin: 0 !important;
  -webkit-box-shadow: inset 0 0 50px 0 #939393;
  -moz-box-shadow: inset 0 0 50px 0 #939393;
  box-shadow: inset 0 0 50px 0 #939393;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transform: translateX(-50%) translateY(-50%) !important;
}

@media screen and (max-width: 575px) {
  #MorganAndMen {
    width: 300px;
    height: 250px;
  }
  #MorganAndMen .popup_content {
    width: 300px !important;
    height: 250px !important;
  }
  #MorganAndMen .popup_content img {
    width: 300px !important;
    height: 250px !important;
  }
} */