:root {
  --text-color: #333;
  --body-color: #fff;
}

.p1-5 {
  padding: 1.5rem !important;
}

.p2 {
  padding: 2rem !important;
}

.pt2 {
  padding-top: 2rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mr1 {
  margin-right: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-0-5 {
  gap: 0.5rem !important;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-1-5 {
  gap: 1.5rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.center {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.bg-light {
  background: #fafafa;
}

.bg-black {
  background: #333 !important;
}

.infomation {
  padding: 0.5rem;
  background: #ffc91a;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  font-display: auto;
}

body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

a {
  text-decoration: none;
}

h3 {
  margin-bottom: 2rem;
}

ul {
  margin-bottom: 2rem;
  padding-left: 1.3rem;
}

h1, h2, h3, h4, h5, h6 {
  display: inline;
  font-size: 1rem;
  font-weight: normal;
  line-height: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: inherit;
  display: inline-block;
}

.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

.h2 {
  font-size: 2rem;
  /* 28px */
  font-size: calc(1.25rem + 1.25vw);
}

.h3 {
  font-size: 1.75rem;
  /* 24.5px */
  font-size: calc(1rem + 1vw);
}

.h4 {
  font-size: 1.5rem;
  /* 21px */
  font-size: calc(0.85rem + 1vw);
}

.h5 {
  font-size: 1.25rem;
  /* 17.5px */
  font-size: calc(0.65rem + 1vw);
}

.h6 {
  font-size: 1rem;
  /* 14px */
  font-size: calc(0.5rem + 1vw);
}

.title {
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  line-height: normal;
}
.title .h1, .title .h2, .title .h3, .title .h4, .title .h5, .title .h6 {
  color: inherit;
}

h1 strong {
  display: block;
  font-weight: bold;
  font-size: 42px;
}

.info {
  max-width: 620px;
  margin: 0 auto 5rem auto;
  text-align: center;
  padding: 1rem;
}
.info h2 {
  font-size: calc(1.3rem + 0.6vw);
}

header {
  display: flex;
  height: 60px;
  background: #333333;
}
header nav {
  height: 60px;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .dropdown-menu {
  border: none;
  background: #2b2b2b;
}
header .dropdown-menu a {
  color: #f5f5f7;
  opacity: 0.75;
}
header .dropdown-menu a:hover {
  opacity: 1;
}
header .dropdown-open > a {
  background: #2b2b2b;
}

.logo,
.logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.logo a {
  color: #fff;
}

.logo img {
  height: 25px;
}

.nav {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 100%;
}
.nav > li {
  height: 100%;
}
.nav > li > a {
  height: 100%;
  padding: 0 0.75rem;
  color: #f5f5f7;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.nav.open {
  display: flex;
}

.zalo, .facebook {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 15;
}
.zalo img, .facebook img {
  display: block;
  transition: transform 0.25s;
}
.zalo:hover img, .facebook:hover img {
  transform: scale(0.95);
}

.zalo {
  border-radius: 60px;
}

.facebook {
  bottom: 20px;
}

footer {
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  color: #fff;
  background: #333333;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
  grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

.gap-xs {
  gap: 0.5rem;
}

.gap-sm {
  gap: 1rem;
}

.gap-df {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2rem;
}

.flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
  width: calc(100% + 1.5rem);
}
.flex > [class*=flex-] {
  padding: 0 0.75rem;
}

.flex-auto {
  gap: 1.5rem;
  flex: 0 1 auto;
  margin: 0;
  width: 100%;
}
.flex-auto > .flex-item {
  padding: 0;
  flex-basis: 0;
  flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -ms-flex-preferred-size: 0;
}

.flex-auto-right {
  margin-right: auto;
}

.flex-auto-left {
  margin-left: auto;
}

.flex-item {
  width: 100%;
  padding: 0 0.75rem;
}

.flex-1 > .flex-item {
  width: 8.3333333333%;
}

.flex-2 > .flex-item {
  width: 16.6666666667%;
}

.flex-3 > .flex-item {
  width: 25%;
}

.flex-4 > .flex-item {
  width: 33.3333333333%;
}

.flex-5 > .flex-item {
  width: 41.6666666667%;
}

.flex-6 > .flex-item {
  width: 50%;
}

.flex-7 > .flex-item {
  width: 58.3333333333%;
}

.flex-8 > .flex-item {
  width: 66.6666666667%;
}

.flex-9 > .flex-item {
  width: 75%;
}

.flex-10 > .flex-item {
  width: 83.3333333333%;
}

.flex-11 > .flex-item {
  width: 91.6666666667%;
}

.flex-12 > .flex-item {
  width: 100%;
}

.flex > .flex-1 {
  width: 8.3333333333%;
}
.flex > .flex-2 {
  width: 16.6666666667%;
}
.flex > .flex-3 {
  width: 25%;
}
.flex > .flex-4 {
  width: 33.3333333333%;
}
.flex > .flex-5 {
  width: 41.6666666667%;
}
.flex > .flex-6 {
  width: 50%;
}
.flex > .flex-7 {
  width: 58.3333333333%;
}
.flex > .flex-8 {
  width: 66.6666666667%;
}
.flex > .flex-9 {
  width: 75%;
}
.flex > .flex-10 {
  width: 83.3333333333%;
}
.flex > .flex-11 {
  width: 91.6666666667%;
}
.flex > .flex-12 {
  width: 100%;
}

@media (max-width: 859px) {
  .flex {
    flex-direction: column;
  }
  .flex > [class*=flex-] {
    width: 100%;
  }
}
@media (max-width: 567px) {
  .flex {
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
  }
  .flex > [class*=flex-] {
    padding: 0 0.5rem;
  }
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container.sm {
  max-width: 860px;
}

.section-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
  min-height: 300px;
}
.section-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-contact .title {
  justify-content: center;
}
.section-contact.bg-black {
  color: #fff;
}

.page-head {
  background: #fafafa;
  padding: 2rem 1rem;
}
.page-head h1 {
  font-size: calc(1rem + 1vw);
}

.btn {
  padding: 0 1rem;
  height: 39px;
  line-height: 39px;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: normal;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  transition: transform 0.25s;
}
.btn:active {
  background: none;
}
.btn:hover {
  opacity: 1;
}
.btn-xs {
  padding: 0 0.5rem;
  font-size: 0.85rem;
  height: 20px;
  line-height: 20px;
}
.btn-sm {
  padding: 0 0.5rem;
  font-size: 0.95rem;
  height: 24px;
  line-height: 24px;
}
.btn-lg {
  font-size: 1rem;
  height: 46px;
  line-height: 44px;
}
.btn-primary {
  color: #fff;
  background-color: #36b37e;
}
.btn-secondary {
  color: #fff;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
.btn-default {
  color: #333;
  line-height: 37px;
  background: none;
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.btn-toggle {
  display: none;
  padding: 0;
  align-items: center;
  border: 0;
}
.btn-toggle .icons {
  top: 2px;
  position: relative;
}

.grid-box {
  padding: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.grid-box a {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.grid-box a:hover {
  background: #fafafa;
}
.grid-box strong {
  margin: 0.25rem 0;
}

.icons {
  height: 24px;
  width: 24px;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-arrow {
  height: 12px;
  width: 12px;
  background: url("../img/icons/arrow-down.svg") no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  filter: invert(1);
}

.icon-menu {
  height: 24px;
  width: 24px;
  background: url("../img/icons/icon-menu.svg") no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  filter: invert(1);
}

picture, .picture {
  display: flex;
  background: #fafafa;
  overflow: hidden;
  position: relative;
}
picture:hover img, .picture:hover img {
  transform: scale(1.05);
}
picture a, .picture a {
  height: 100%;
  width: 100%;
  display: inherit;
}
picture img, .picture img {
  width: 100%;
  height: auto;
  min-height: 100%;
  transition: transform 0.25s;
}
picture .btn-group, .picture .btn-group {
  z-index: 1;
}
picture .btn-group .btn, .picture .btn-group .btn {
  width: 150px;
  display: inline-block;
}
picture .btn, .picture .btn {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.75);
}
picture:hover .btn-group, .picture:hover .btn-group {
  opacity: 1;
}
picture:hover .btn:hover, .picture:hover .btn:hover {
  opacity: 0.95;
}
picture .caption, .picture .caption {
  padding: 1rem;
  color: #fff;
  bottom: 0;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
picture .caption .price, .picture .caption .price {
  font-size: 1.5rem;
}
picture .caption .old-price, .picture .caption .old-price {
  font-size: 1.3rem;
}
picture .caption .group, .picture .caption .group {
  justify-content: flex-end;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  /* height: 100vh; */
  position: relative;
  background: linear-gradient(to top, #333, #8b8b8b);
}

.banner-left {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  width: 55%;
  min-width: 55%;
  flex-direction: column;
  position: relative;
  z-index: 3;
  padding-left: 8.3333333333%;
}
.banner-left .price {
  color: #fff;
}
.banner-left .old-price {
  margin-right: 1rem;
  font-size: 75%;
  text-decoration: line-through;
}
.banner-left .label {
  padding: 0.15rem 0.35rem;
  font-size: 40%;
  display: inline;
}

.banner-left h1 {
  font-size: calc(1.375rem + 1.5vw);
  margin-bottom: 2rem;
}

.banner-left h2 {
  font-size: calc(1.275rem + 1.3vw);
  margin-bottom: 2rem;
}

.banner-left small {
  font-size: 75%;
}

.banner-left .btn {
  margin-bottom: 1rem;
}

.banner-right {
  padding: 1rem;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.banner-right picture {
  background: none;
  height: auto;
}
.banner-right picture:hover img {
  transform: scale(1);
}

/* .bg-shape {
  background: url("./img/hero-bg-shape-1.svg") no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: auto;
  left: 0;
  bottom: 0;
} */
.banner-bottom {
  width: 100%;
  margin-top: -260px;
  position: relative;
  z-index: 2;
}
.banner-bottom img {
  display: inherit;
  max-width: 100%;
}

.banner-img-xs {
  right: 70%;
  bottom: 45px;
  position: absolute;
  width: 180px;
}

.banner-info .title {
  max-width: 720px;
  margin: 3.5rem auto;
  text-align: center;
  padding: 1.5rem;
}

@media (max-width: 859px) {
  .banner-left h1,
.banner-left h2 {
    margin-bottom: 1rem;
  }
}
.label {
  font-size: 12px;
  font-weight: normal;
  border-radius: 4px;
  padding: 0 0.25rem;
  height: 18px;
  line-height: 19px;
  display: inline-block;
  color: #fff;
}
.label > span {
  margin-right: 3px;
}
.label-red {
  background: #dd3333;
}

.products {
  padding: 0 1.5rem;
  list-style-type: none;
}
.products li {
  list-style-type: none;
}
.products picture {
  border-radius: 2rem;
}
.products picture {
  height: 23vw;
}

.product-info ul {
  line-height: 1.4rem;
}
.product-info ul strong {
  min-width: 120px;
  display: inline-block;
}
.product-info li {
  margin-bottom: 1rem;
}
.product-info h3 {
  font-size: calc(1rem + 1vw);
  display: block;
  margin: 2rem 0 1.5rem 0;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.product-info img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 860px) {
  .product-info h3 {
    margin: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .product-info ul {
    margin: 0 1.5rem;
  }
}

.caption {
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.caption .price {
  font-size: 1.2rem;
  font-weight: bold;
}
.caption .old-price {
  font-size: 1rem;
  text-decoration: line-through;
}
.caption .group {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.caption h3 {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.caption .btn-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.caption .btn-group .btn {
  width: 50%;
}

.dropdown {
  position: relative;
  overflow: hidden;
}
.dropdown::after {
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  display: none;
  opacity: 0;
}
.dropdown a,
.dropdown .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  height: inherit;
  position: relative;
  z-index: 12;
}
.dropdown > .btn-link {
  padding: 0;
}
.dropdown .icon-arrow {
  position: relative;
  margin-left: 5px;
}

.dropdown-menu {
  opacity: 0;
  z-index: -1;
  display: none;
  left: 0;
  top: 60px;
  position: absolute;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  padding: 0.75rem;
  transition: opacity 0.25s;
  -webkit-transition: none;
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  border: 1px solid #ddd;
  border-top-color: #eee;
  min-width: 200px;
}
.dropdown-menu > li {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.dropdown-menu a,
.dropdown-menu .btn {
  justify-content: flex-start;
}
.dropdown-menu a {
  font-size: 0.85rem;
  min-height: 24px;
  font-weight: normal;
}
.dropdown-menu .active {
  color: #36b37e;
}
.dropdown-menu .active .f {
  color: #36b37e;
  font-size: 0.9rem;
  margin-right: 0.75rem;
  display: inline-block;
  background-color: transparent;
  overflow: initial;
  top: -2px;
  position: relative;
}
.dropdown-menu.right {
  left: auto;
  right: 0;
}
.dropdown-menu.right::after {
  display: none;
}

.dropdown-open {
  overflow: initial;
}
.dropdown-open .icon-arrow {
  position: relative;
  transform: rotate(180deg);
}
.dropdown-open::after {
  opacity: 1;
  display: flex;
  z-index: 11;
}
.dropdown-open .f-ic_arw_down1 {
  top: 0;
  transform: rotate(180deg);
}
.dropdown-open .dropdown-menu {
  opacity: 1;
  display: flex;
}
.dropdown-open .dropdown-menu {
  z-index: 13;
}

@media (max-width: 1279px) {
  .banner-left,
.banner-right {
    padding: 1rem;
    width: 45%;
  }

  .banner-right {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .responsive.grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }

  .products picture {
    height: auto;
  }

  .btn-toggle {
    display: flex;
    margin-right: 8px;
  }

  header, header nav {
    height: auto;
    min-height: 60px;
  }
  header .nav {
    margin-bottom: 1rem;
  }
  header .logo {
    height: 60px;
    margin-right: auto;
  }
  header .dropdown a,
header .dropdown .btn {
    justify-content: space-between;
  }
  header .dropdown-open > a {
    border-radius: 4px 4px 0 0;
  }
  header .dropdown-open .dropdown-menu {
    top: 0;
    position: relative;
    box-shadow: none;
    margin: 0;
    border-top: 1px solid #252525;
  }
  header .dropdown-open .dropdown-menu a {
    color: #fff;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav a {
    border-radius: 4px;
  }
  .nav > li {
    width: 100%;
  }
  .nav > li > a {
    padding: 0.75rem;
    background: #2b2b2b;
  }
}
@media (max-width: 860px) {
  .banner-bottom {
    margin-top: -160px;
  }

  .banner-img-xs {
    width: 120px;
  }

  .responsive.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 735px) {
  .banner-left {
    width: 100%;
  }

  .banner-right {
    display: none;
  }

  .banner-bottom {
    margin-top: 0;
  }

  .banner-img-xs {
    display: none;
  }

  .responsive.grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 568px) {
  .responsive.grid {
    grid-template-columns: 1fr;
  }

  .grid-box {
    grid-template-columns: 1fr;
  }

  .banner-info .title {
    margin: 0 auto;
  }
}