/*--------- Abstracts variable ---------- */ 
:root {
  --Black: #000000;
  --White: #ffffff;
  --body-text: #1d2023;
  --Text-3: #eeeeee;
  --Primary: #2a91de;
  --Secondary: #f8c32c;
  --Border: rgb(13, 64, 28, 0.15);
  --Bg: #f3f4f9;
  --Bg-2: rgb(4, 18, 8, 0.4);
}

/*---------- Reset css styles ----------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, strong, b, dl, dt, dd, ol, ul, li, article, aside, footer, header, menu, nav {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}
article, aside, details, footer, header, menu, nav, section {
  display: block;
}
html {
  margin-right: 0 !important;
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: var(--White);
  line-height: 1;
  padding: 0 !important;
  font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", "HanHei SC", "Helvetica Neue", "Open Sans", "Hiragino Sans GB", 微软雅黑, STHeiti, "WenQuanYi Micro Hei", Arial, SimSun, sans-serif;
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Màu nền */
}
body::-webkit-scrollbar-thumb {
  background-color: var(--Secondary); /* Màu thanh cuộn */
  border-radius: 6px; /* Bo góc cho thanh cuộn */
}
body.no-scroll {
  overflow: hidden;
}
ol, ul {
  list-style: none;
}
a img {
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
}
/* General
-------------------------------------------------------------- */
body, button, input, select, textarea {
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
strong, b {
  font-weight: bold;
}
/* Elements
-------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
hr {
  margin-bottom: 20px;
  border: dashed 1px #ccc;
}
/* Placeholder color */ ::-webkit-input-placeholder {
  color: #171412;
}
::-moz-placeholder {
  color: #171412;
  opacity: 1;
}
/* Since FF19 lowers the opacity of the placeholder by default */ :-ms-input-placeholder {
  color: #171412;
}
/* Typography
-------------------------------------------------------------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--body-text);
  margin: 0;
  text-rendering: optimizeLegibility;
}
h1, .h1 {
  font-size: 90px;
  line-height: 100px;
}
h2, .h2 {
  font-size: 40px;
  line-height: 55px;
}
h3, .h3 {
  font-size: 30px;
  line-height: 40px;
}
h4, .h4 {
  font-size: 23px;
  line-height: 33px;
}
h5, .h5 {
  font-size: 20px;
  line-height: 30px;
}
h6, .h6 {
  font-size: 16px;
  line-height: 28px;
}
/* link style
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--body-text);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--Primary);
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.hover-text-primary:hover {
  color: var(--Primary) !important;
}
a.hover-text-secondary:hover {
  color: var(--Secondary) !important;
}
a.text-white {
  color: var(--White);
}
.img-hover:hover  img {
  transform: scale(1.05);
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1320px;
  max-width: 100%;
}
.tf-container .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.tf-container .row > * {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
/* Extra classes
-------------------------------------------------------------- */
#wrapper {
  width: 100vw;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed !important;
}
.position-unset {
  position: unset !important;
}
.z-5 {
  z-index: 5;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-42 {
  margin-bottom: 42px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.lt-sp-01 {
  letter-spacing: 0.1px;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-auto::-webkit-scrollbar {
  height: 2px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
  background: var(--Border);
  border-radius: 999px;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-auto::-webkit-scrollbar {
  width: 2px;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
  background: var(--Border);
  border-radius: 999px;
}
.justify-center {
  justify-content: center;
}
.item-center {
  align-items: center;
}
.swiper-slide {
  height: auto;
}
.swiper-slide > * {
  height: 100%;
}
.pt-0 {
  padding-top: 0px;
}
.text-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Giới hạn số dòng là 4 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrap-reverse {
  flex-wrap: wrap-reverse;
}
.overflow-hidden {
  overflow: hidden;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 10;
}
.text-left {
  text-align: left;
}
/*------------ Components ---------------- */
/*------------ header ---------------- */
.header .fixed-header.style-absolute {
  position: fixed;
  z-index: 299;
  top: -1px;
  left: 0;
  transform: translateY(-100%);
  transition: 0.6s cubic-bezier(0.43, 0.46, 0.64, 0.66) !important;
  width: 100%;
  background-color: var(--White);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 3px 100px rgba(2, 21, 78, 0.09);
}
.header .fixed-header.style-absolute.visible {
  pointer-events: all;
  transform: translateY(0%);
  opacity: 1;
  backdrop-filter: blur(10px);
}
.header .fixed-header.style-absolute.style-2 {
  z-index: 9999;
}
.header .fixed-header.style-absolute.style-2 .nav-list .item > a {
  line-height: 80px !important;
  color: var(--body-text) !important;
}
.header .fixed-header.style-absolute .nav-list .item a {
  line-height: 80px;
}
.header .fixed-header .header-item.children {
  bottom: -20px;
  width: 100%;
}
.header .fixed-header .header-item.children img {
  width: 100%;
}
.header.has-item-bot {
  position: relative;
  margin-bottom: -10px;
}
.header.has-item-bot .header-item {
  position: absolute;
  bottom: -5px;
  width: 100%;
  z-index: 3;
}
.header.has-item-bot .header-item img {
  width: 100%;
}
.header .header-inner {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-inner .header-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-inner .header-left .logo-site {
  padding-right: 108px;
  padding-top: 6px;
}
.header .header-inner .header-left .logo-site img {
  max-width: 108px;
}
.header .header-inner .nav-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
.header .header-inner .nav-list .item {
  position: relative;
}
.header .header-inner .nav-list .item.current-menu a{
    color: var(--Primary)
}
.header .header-inner .nav-list .item a {
  font-weight: 500;
  line-height: 120px;
  display: block;
  font-size: 18px;
}
.header .header-inner .nav-list .item:hover .sub-nav {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(500px) rotateY(0);
  -khtml-transform: perspective(500px) rotateY(0);
  -moz-transform: perspective(500px) rotateY(0);
  -ms-transform: perspective(500px) rotateY(0);
  -o-transform: perspective(500px) rotateY(0);
  transform: perspective(500px) rotateY(0);
}
.header .header-inner .nav-list .item.current-menu::before {
  top: 50%;
  transform: translateY(-50%);
  visibility: visible;
  opacity: 1;
}
.header .header-inner .nav-list .item .sub-nav {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  min-width: 200px;
  transform: translateY(20px);
  z-index: 50;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 0px 10px 20px;
  transform-origin: -50% 0%;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -khtml-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -moz-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -ms-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -o-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
  -webkit-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
  -khtml-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
  -moz-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
  -ms-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
  -o-transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
  transition: all 0.25s cubic-bezier(0, 0, 0.76, 1);
}
.header .header-inner .nav-list .item .sub-nav li.current-item a {
  color: var(--Secondary);
}
.header .header-inner .nav-list .item .sub-nav li.current-item a span::before {
  width: 100%;
}
.header .header-inner .nav-list .item .sub-nav li a {
  display: inline-block;
  line-height: 40px;
  font-size: 15px;
  color: var(--body-text);
  width: 100%;
}
.header .header-inner .nav-list .item .sub-nav li a span {
  position: relative;
}
.header .header-inner .nav-list .item .sub-nav li a:hover {
  color: var(--Primary);
}
.header .header-inner .nav-list .item .sub-nav li a:hover span::before {
  left: 0;
  right: auto;
  width: 100%;
}
.header .header-inner .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
  padding-right: 12px;
}
.header .header-inner .header-right .icon-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header .header-inner .header-right .icon-wrap .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--Border);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-inner .header-right .icon-wrap .icon i {
  color: var(--Primary);
}
.header .header-inner .header-right .icon-wrap .icon:hover {
  background-color: var(--Bg-1);
  border-color: var(--Bg-1);
}
.mobile-button {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.mobile-button span {
  position: absolute;
  width: 80%;
  height: 3px;
  left: 0;
  top: 12px;
  background-color: var(--Primary);
}
.mobile-button::before {
  content: "";
  position: absolute;
  top: 5px;
  height: 3px;
  width: 100%;
  left: 0;
  background-color: var(--Primary);
}
.mobile-button::after {
  content: "";
  position: absolute;
  bottom: 4px;
  height: 3px;
  width: 100%;
  left: 0;
  background-color: var(--Primary);
}
.mobile-nav-wrap {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav-wrap.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-wrap.active .inner-mobile-nav {
  left: 0 !important;
}
.mobile-nav-wrap .group-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-wrap .group-icon .site-nav-icon {
  padding: 0 15px;
  line-height: 35px;
  border: 1px solid #f2f2f2;
  gap: 8px;
  background-color: #f2f2f2;
  color: var(--main);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.mobile-nav-wrap .group-icon .site-nav-icon i {
  font-size: 14px;
}
.mobile-nav-wrap .overlay-mobile-nav {
  z-index: 300;
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.mobile-nav-wrap .inner-mobile-nav {
  z-index: 300;
  position: fixed;
  padding: 15px;
  z-index: 1001;
  height: 100%;
  width: 320px;
  background-color: var(--White);
  left: -320px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.mobile-nav-wrap .inner-mobile-nav .logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.mobile-nav-wrap .inner-mobile-nav .logo img {
  max-width: 120px;
}
.mobile-nav-wrap .inner-mobile-nav .logo .mobile-nav-close {
  top: 20px;
  right: 20px;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--White);
}
.mobile-nav-wrap .inner-mobile-nav .logo .mobile-nav-close:hover {
  color: var(--Secondary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile {
  padding-bottom: 10px;
  padding-top: 10px;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile a {
  font-weight: 500;
  color: var(--Black);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile.active .item-menu-mobile {
  color: var(--Secondary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile.active i {
  transform: rotate(-180deg);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .item-menu-mobile {
  justify-content: space-between;
  display: flex;
  margin-bottom: 15px;
  position: relative;
  transition-timing-function: linear;
  font-size: 18px;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .item-menu-mobile:hover {
  color: var(--Primary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .item-menu-mobile:hover i {
  color: var(--Primary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .item-menu-mobile.current {
  color: var(--Primary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .item-menu-mobile i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 22px;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile {
  display: none;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item a {
  padding-left: 15px;
  display: block;
  line-height: 40px;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item a::before {
  content: "\e90e";
  position: relative;
  top: 2px;
  left: -10px;
  font-family: "icomoon";
  color: var(--Secondary);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item a:hover {
  color: var(--Secondary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item a:hover::before {
  left: -5px;
  visibility: visible;
  opacity: 1;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item.current a {
  color: var(--Secondary);
}
.mobile-nav-wrap .inner-mobile-nav .mobile-main-nav #menu-mobile-menu .menu-item-has-children-mobile .sub-menu-mobile .menu-item.current a::before {
  left: -5px;
  visibility: visible;
  opacity: 1;
}
.mobile-nav-wrap .inner-mobile-nav .infor-list {
  margin-bottom: 30px;
}
.mobile-nav-wrap .inner-mobile-nav .infor-list li a {
  color: var(--White);
}
.mobile-nav-wrap .inner-mobile-nav .infor-list li:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-nav-wrap .inner-mobile-nav .infor-list li h5 {
  font-size: 16px;
  line-height: 22px;
  color: var(--White);
  text-transform: uppercase;
}
.mobile-nav-wrap .inner-mobile-nav .infor-list li p {
  font-size: 14px;
  line-height: 20px;
  color: var(--White);
}
/*------------ footer ---------------- */
.footer {
  background-color: #222;
  padding-top: 123px;
  margin-top: 20px;
  position: relative;
}
.footer .footer-inner {
  margin-bottom: 43px;
  position: relative;
  z-index: 5;
}
.footer .footer-inner .footer-inner-wrap.open .footer-title-mobile::before {
  opacity: 0;
}
.footer .footer-inner .footer-inner-wrap.open .footer-title-mobile::after {
  transform: translate(0%, -50%) rotate(180deg);
}
.footer .footer-inner .footer-inner-wrap .footer-title-mobile {
  display: none;
  position: relative;
  cursor: pointer;
}
.footer .footer-inner .footer-inner-wrap .footer-title-mobile::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: var(--White);
  transition: 0.25s ease-in-out;
}
.footer .footer-inner .footer-inner-wrap .footer-title-mobile::before {
  position: absolute;
  content: "";
  right: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 12px;
  background-color: var(--White);
  transition: 0.25s ease-in-out;
}
.footer .footer-inner .footer-inner-wrap .footer-title {
  color: var(--White);
  font-weight: 600;
  margin-bottom: 31px;
}
.footer .footer-inner .footer-inner-wrap .footer-title.mb-23 {
  margin-bottom: 23px;
}
.footer .footer-inner .footer-inner-wrap .footer-title.mb-28 {
  margin-bottom: 28px;
}
.footer .footer-inner .footer-inner-wrap .contact-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .footer-inner .footer-inner-wrap .contact-list li:not(:last-child) {
  margin-bottom: 14px;
}
.footer .footer-inner .footer-inner-wrap .contact-list li i {
  color: var(--Secondary);
    font-size:20px;
}
.footer .footer-inner .footer-inner-wrap .contact-list li p {
  color: var(--White);
  letter-spacing: 0.1px;
}
.footer .footer-inner .footer-inner-wrap .contact-list li p.address {
  letter-spacing: 0.2px;
}
.footer .footer-inner .footer-inner-wrap .link-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-inner .footer-inner-wrap .link-list li {
  position: relative;
  overflow: hidden;
}
.footer .footer-inner .footer-inner-wrap .link-list li a {
  display: inline-flex;
  color: var(--White);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  font-size: 16px;
  overflow: hidden;
}
.footer .footer-inner .footer-inner-wrap .link-list li a:hover {
  padding-left: 22px;
  color: var(--Secondary);
}
.footer .footer-inner .footer-inner-wrap .link-list li a:hover svg {
  left: 0px;
  visibility: visible;
  opacity: 1;
}
.footer .footer-inner .footer-inner-wrap .link-list li a:hover svg path {
  fill: var(--Secondary);
}
.footer .footer-inner .footer-inner-wrap .link-list li svg {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
  opacity: 0;
}
.footer .footer-inner .footer-inner-wrap .link-list li svg path {
  fill: var(--White);
}
.footer .footer-inner .footer-inner-wrap .footer-code {}
.footer .footer-inner .footer-inner-wrap .footer-code img {
  border-radius: 12px;
  max-width: 144px
}
.footer .footer-inner .footer-inner-wrap .footer-code p {
  margin-top: 10px;
  text-align: center;
  max-width: 144px
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 29px;
  padding-bottom: 29px;
  position: relative;
  z-index: 5;
  gap: 20px;
  text-align: center;
}
.footer .footer-bottom .no-copy {
  color: var(--White);
  text-align: center;
}
.footer .footer-bottom .no-copy a {
  position: relative;
  color: var(--Secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .footer-bottom .no-copy a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.footer .footer-bottom .no-copy a:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  background-color: var(--Secondary);
  height: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*------------ button ---------------- */
.tf-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background-color: var(--Primary);
  color: var(--White);
  padding: 6px 5px 6px 35px;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  width: max-content;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
}
.tf-btn.gap-30 {
  gap: 30px;
}
.tf-btn .icon {
  width: 43px;
  height: 43px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.tf-btn .icon i {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
  font-size: 23px;
}
.tf-btn .icon::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 0%;
  height: 100%;
  z-index: 0;
  background-color: var(--Primary);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.tf-btn:hover {
  background-color: transparent;
}
.tf-btn:hover .text-style {
  color: var(--Primary);
  transform: translateX(5px);
}
.tf-btn:hover::after {
  transform: scale(30);
}
.tf-btn .text-style {
  color: var(--White);
  transform: translateX(0px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-btn .text-style.cl-primary {
  color: var(--Primary);
}
.tf-btn.scale-40:hover::after {
  transform: scale(40);
}
.tf-btn.scale-50:hover {
  transition-delay: 0.1s;
}
.tf-btn.scale-50:hover::after {
  transform: scale(50);
}
.tf-btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  right: 14px;
  top: 17px;
  border-radius: 28px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  background-color: var(--Secondary);
  transform: scale(1);
}
.tf-btn.full {
  width: 100%;
  justify-content: space-between;
}
.tf-btn.bg-white {
  background-color: var(--White);
  color: var(--body-text);
}
.tf-btn.gap-35 {
  gap: 35px;
}
.tf-btn-read {
  display: block;
  padding-bottom: 10px;
  position: relative;
  color: var(--Primary);
  width: max-content;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.tf-btn-read:hover {
  color: var(--Secondary);
}
.tf-btn-read:hover::after {
  width: 0%;
  left: auto;
  right: 0;
}
.tf-btn-read::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  height: 2px;
  width: 100%;
  background-color: var(--Secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-btn-read.text-white {
  color: var(--White);
}
/*------------ slider ---------------- */
.page-title-home-1 {
  position: relative;
}
.page-title-home-1 .swiper-slide-active .slide-home-1 .content .fade-item-1 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.2s;
}
.page-title-home-1 .swiper-slide-active .slide-home-1 .content .fade-item-2 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}
.page-title-home-1 .swiper-slide-active .slide-home-1 .content .fade-item-3 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}
.page-title-home-1 .swiper-slide-active .slide-home-1 .content .fade-item-4 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
.page-title-home-1 .swiper-slide-active .slide-home-1 .content .fade-item-5 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.6s;
}
.page-title-home-1 .btn-slide-home-1 {
  position: absolute;
  z-index: 3;
}
.page-title-home-1 .btn-slide-home-1:hover svg path {
  fill: #f8c32c;
}
.page-title-home-1 .btn-slide-home-1.btn-next {
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: rgba(0, 0, 0, .2);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 48px;
  transition: .3s;
}
.page-title-home-1 .btn-slide-home-1.btn-next:hover {
  background: rgba(0, 0, 0, .6);
}
.page-title-home-1 .btn-slide-home-1.btn-prev:hover {
  background: rgba(0, 0, 0, .6);
}
.page-title-home-1 .btn-slide-home-1.btn-prev {
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: rgba(0, 0, 0, .2);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 48px;
  transition: .3s;
}
.page-title-home-1 .img-item-1 {
  position: absolute;
  z-index: 3;
  top: -25px;
  width: 100%;
}
.page-title-home-1 .img-item-1 img {
  width: 100%;
  height: 60px;
}


.page-title {
  padding: 111px 0px 50px;
  position: relative;
  z-index: 0;
  background-image: url("../image/blog-full-w.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.page-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--Bg-2);
}
.page-title .rellax {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.page-title .rellax img {
  min-height: 800px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.page-title .content-wrap {
    position: relative;
    z-index: 1;
}
.page-title .content .sub-title {
    color: var(--Secondary);
    font-size: 23px;
    margin-bottom: 9px;
}
.page-title .content .title {
    text-transform: uppercase;
    color: var(--White);
    margin-bottom: 2px;
    font-size: 60px;
    font-weight: bold
}
.page-title .content .breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
  gap: 7px;
}
.page-title .content .breadcrumb i {
  color: var(--White);
  font-size: 24px;
  position: relative;
  top: -2px;
}
.page-title .content .breadcrumb a {
  color: var(--White);
  font-family: "GlitterySnowfall", sans-serif;
  font-size: 20px;
}
.page-title .content .breadcrumb a:hover {
  color: var(--Secondary);
}
.page-title .content .breadcrumb a:last-child {
  cursor: default;
}
.page-title .content .icon-img {
    margin-bottom: 87px;
}




.slide-home-1 {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-home-1 .image {
  width: 100%;
}
.slide-home-1 .image img {
  width: 100%;
  height: 673px;
  object-fit: cover;
}
.slide-home-1 .content-wrap {
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  padding: 121px 0px 100px 0px;
}
.slide-home-1 .content-wrap .content {
  max-width: 1290px;
  margin: 0px auto;
}
.slide-home-1 .content-wrap .content .sub-title {
  font-size: 23px;
  color: var(--Secondary);
  margin-bottom: 16px;
}
.slide-home-1 .content-wrap .content .title {
  color: var(--White);
  font-size: 60px;
  font-weight: bold;
}
.slide-home-1 .content-wrap .content .img-item {
  margin-bottom: 25px;
}
.slide-home-1 .content-wrap .content .text {
    color: var(--Text-3);
  margin-bottom: 43px;
  letter-spacing: 1px;
}
.slide-home-1 .content-wrap .content .tf-btn {
  gap: 33px;
}
.slide-home-1::after {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--Bg-2);
}
.slider-home-1 .swiper-slide-active .content .fade-item-2 {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}
.slider-home-1 .swiper-slide-active .content .fade-item-3 {
  width: 100%;
  transition-delay: 0.5s;
}
.slider-home-1 .swiper-slide-active .content .access-trainsition {
  transition-delay: 0.6s;
  clip-path: inset(0 0 0 0);
}
.slider-home-1 .swiper-slide-active .content .sub-title .tf-fade-right-visible {
  transition-delay: 0.2s;
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}
.slider-home-1 .swiper-slide-active .content .fade-item-4 {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.6s;
}
.slider-home-1 .swiper-slide-active .content .fade-item-5 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.7s;
}
.slider-blog-post .article-blog-item .image {
  border-radius: 20px;
  overflow: hidden;
}
/* CSS change effect slide--- */
.slider-home-1 .swiper-slide {
  transition: transform 0.8s ease-in, opacity 0.8s ease-in;
  transform-origin: center;
  opacity: 0;
}
.s-shopping .card-product {
  width: 100%;
  border-radius: 20px;
  /*  border: 1px solid var(--Border-11);*/
  padding: 28px 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--White);
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-product:hover {
  transform: translateY(-5px)
}
.card-product .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  height: 100%;
}
.card-product .image img {
  max-width: 194px;
  width: 100%;
}
.card-product .name-product {
  color: var(--body-text);
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}
.card-product .pricing-star {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.card-product .product-btn-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.card-product .product-btn-list .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border: 1px solid var(--Border);
  border-radius: 50%;
}
.card-product .product-btn-list .icon i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
}
.card-product .product-btn-list .icon:hover {
  background-color: var(--Primary);
  border-color: var(--Primary);
}
.card-product .product-btn-list .icon:hover i {
  color: var(--White);
}
.card-product.style-2 {
  max-width: 270px;
  width: 100%;
  padding: 30px 25px;
  justify-content: flex-end;
}
.card-product.style-2.mw-unset {
  max-width: unset;
}
.card-product.style-2.type-2 {
  padding: 30px 25px 49px 25px;
}
.card-product.style-2.type-2 .image {
  margin-bottom: 52px;
    overflow: hidden;
}
.card-product.style-2.type-2 .image img {
  max-width: 100%;
    transition: .3s;
}
.card-product.style-2.type-2 .name-product {
  font-size: 20px;
}
.card-product.style-2.type-2 .name-product:hover{
    color:var(--Primary);
}
.card-product.style-2.type-2 .price-wrap {
  gap: 18px;
}
.card-product.style-2.type-2 .price-wrap span {
  font-size: 20px;
}
.card-product.style-2.type-2 .price-wrap span.price-1{
    color:rgba(0,0,0,.35);
    text-decoration: line-through;
    margin-left: 10px
}
.card-product.style-2.type-2 .price-wrap span.price-2{
  
}
.card-product.style-2 .image {
  height: unset;
}
.card-product.style-2 .name-product {
  font-size: 16px;
}
.card-product.style-2 .price-wrap span {
  font-size: 16px;
      font-weight: bold;
}

.page-shop-product .card-product{
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.page-shop-product .card-product:hover {
    box-shadow: 0px 25px 32.2px 2.8px rgba(0, 0, 0, 0.06);
    border-color: var(--White);
}
.card-product .name-product:hover{
    color: var(--Primary);
}

.tf-page-pagination{
    margin-top:50px;
}

.tf-page-pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.tf-page-pagination ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.1);
}

.tf-page-pagination ul li a.active,
.tf-page-pagination ul li a:hover {
  color: var(--White);
  background-color: var(--Primary);
}



.s-product-detail {
  position: relative;
  z-index: 9;
}
.s-product-detail .content {
  padding: 10px 0px;
}
.s-product-detail .tf-product-media-main {
  margin-bottom: 17px;
  border-radius: 20px;
  border: 1px solid var(--Border);
  overflow: hidden;
  max-width: 550px;
  width: 100%;
  max-height: 535px;
  margin-left: 0px;
}
.s-product-detail .tf-product-media-main .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-product-detail .tf-product-media-thumbs {
  max-width: 550px;
  width: 100%;
  margin: 0px;
}
.s-product-detail .tf-product-media-thumbs .image {
  border-radius: 20px;
  border: 1px solid var(--Border);
  overflow: hidden;
}
.s-product-detail .tf-product-media-thumbs .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-product-detail .content-inner {
  margin-top: 35px;
}
.s-product-detail .content-inner .title {
  margin-bottom: 12px;
}
.s-product-detail .content-inner .wg-rating {
  gap: 1px;
}
.s-product-detail .content-inner .wg-rating i {
  font-size: 12px;
}
.s-product-detail .content-inner .rating-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.s-product-detail .content-inner .price-wrap {
  margin-bottom: 27px;
  gap: 16px;
    font-size: 20px;
    font-weight: 600;
}
.s-product-detail .content-inner .sub {
  margin-bottom: 28px;
    margin-top:20px;
}
.s-product-detail .content-inner .cate{
     margin-bottom: 30px;
}
.s-product-detail .content-inner .cate ul{
    display:flex;
    align-items: center;
    flex-wrap: wrap
}
.s-product-detail .content-inner .cate ul li:first-child{
    margin-left:0px;
}
.s-product-detail .content-inner .cate ul li{
    font-size:16px;
    width: auto;
    padding: 15px 20px;
    border-radius: 100px;
    background: #f3f4f9;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: .3s;
}
.s-product-detail .content-inner .cate ul li:hover{
    color:#fff;
    background: var(--Primary);
}
.s-product-detail .content-inner .more-infor {
  margin-bottom: 28px;
      color: rgba(0,0,0,.4);
}
.s-product-detail .content-inner .more-infor li:not(:last-child) {
  margin-bottom: 10px;
}
.s-product-detail .content-inner .more-infor li p {
  letter-spacing: 0.3px;
}
.s-product-detail .content-inner .more-infor li p a {
  color: rgba(0,0,0,.4);
}
.s-product-detail .content-inner .more-infor li p a:hover {
  color: rgba(0,0,0,1);
}

.s-tab {
    padding-top: 64px;
    position: relative;
    z-index: 1;
}
.wg-tabs.style-2 {
    margin-top: 29px;
/*    padding: 0px 130px 72px;*/
}
.wg-tabs .menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
    margin-bottom: 35px;
    white-space: nowrap;
}
  .wg-tabs.style-2 .menu-tab {
    background-color: transparent;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .wg-tabs.style-2 .menu-tab .item a {
    padding: 15px;
  }

.wg-tabs .menu-tab .item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wg-tabs.style-2 .menu-tab .item.active a {
    background-color: var(--Primary);
    color: var(--White);
}
.wg-tabs.style-2 .menu-tab .item a {
    font-size: 16px;
    background-color: #F3F4F9;
    color: var(--Primary);
    border-radius: 27.5px;
    padding: 20px 56px 20px 52px;
}
.wg-tabs .menu-tab .item.active a {
    color: rgba(0,0,0,.4);
}

.wg-tabs .menu-tab .item a {
    padding-bottom: 15px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    font-family: "Work Sans", sans-serif;
    display: block;
}
.widget-content-inner {
    margin-top:40px;
}
.widget-content-inner .singleImage{
        position: relative;
    width: 100%;
    overflow: hidden;
}
.widget-content-inner img{
    height: auto !important;
    width: 100% !important;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    min-height: 1px;
}

/*------------ zoom ---------------- */
.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 50;
}
.tf-zoom-main .drift-zoom-pane {
  border-radius: 20px;
  top: 0;
  left: 0;
  height: 520px;
  max-width: 520px;
  width: 100%;
  background: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px rgba(127, 127, 127, 0.0196078431), 0 5px 18px rgba(127, 127, 127, 0.2);
  z-index: 3;
}

.drift-bounding-box.drift-open {
  background: rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
  z-index: 5000;
}

.drift-zoom-pane {
  z-index: 5000;
}

.section-image-zoom .other-image-zoom {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-image-zoom.zoom-active .other-image-zoom {
  opacity: 0.3;
}




.progress-wrap {
  position: fixed;
  bottom: 40px;
  right: 40px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--Secondary);
  border: 1.2px solid rgba(134, 134, 134, 0.12);
}
.progress-wrap.b-100 {
  bottom: 100px;
}
.progress-wrap:hover {
  box-shadow: 0 8px 16px rgba(13, 64, 28, 0.5);
  background: var(--Primary);
}
.progress-wrap::after {
  position: absolute;
  content: "\e9c6";
  font-family: "icomoon";
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: var(--White);
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  animation: iconBounce 2s linear 0s infinite;
}
.progress-wrap::after:active {
  animation: goTopToBottom 0.6s forwards;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--body-text);
  stroke-width: 4;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
/*------------ sections ---------------- */
.main-content.pb-0 {
  padding-bottom: 0px;
}
.main-content.pt-0 {
  padding-top: 0px;
}
.main-content.pt-90 {
  padding-top: 90px;
}
.main-content.pb-90 {
  padding-bottom: 90px;
}
.main-content.page-index {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: -23px;
}
.main-content.mb--20 {
  margin-bottom: -20px;
}
.heading-section {
  margin-bottom: 30px;
}
.heading-section .sub-title {
  font-size: 23px;
  line-height: 26px;
  margin-bottom: 16px;
}
.heading-section .sub-title.fs-35 {
  font-size: 35px;
}
.heading-section .title {
  font-size: 45px;
  line-height: 55px;
  color: var(--body-text);
  font-weight: 700;
}
.heading-section .title.mb-21 {
  margin-bottom: 21px;
}
.heading-section .img-item .mb-25 {
  margin-bottom: 25px;
}
.heading-section.has-text .title {
  margin-bottom: 15px;
}
.heading-section.has-text .title.mb-24 {
  margin-bottom: 24px;
}
.heading-section.has-text .title.mb-18 {
  margin-bottom: 18px;
}
.heading-section.has-text .text {
  color: var(--body-text);
  margin-bottom: 26px;
  letter-spacing: 0.1px;
}
.heading-section.style-2 {
  margin-bottom: 26px;
}
.heading-section.style-2.mb-43 {
  margin-bottom: 43px;
}
.heading-section.style-2 .img-item {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.heading-section.style-2 .img-item .item {
  margin-right: 19px;
}
.heading-section.style-2 .img-item .item.mr-16 {
  margin-right: 16px;
}
.heading-section.style-2 .img-item .item.mr-25 {
  margin-right: 25px;
}
.heading-section.style-2 .img-item .sub-title {
  margin-bottom: 0px;
}
.has-img-item {
  position: relative;
  margin-top: 30px;
}
.has-img-item .tf-container {
  padding-top: 30px;
}
.s-why-us {
  padding-top: 80px;
}
.s-why-us .main-section {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.s-why-us .main-section .image {
  display: flex;
}
.s-why-us .main-section .video-wrap {
  flex: 1
}
.s-why-us .main-section .video-wrap img {
  max-width: 550px;
  height: 100%;
}
.s-why-us .main-section .video-wrap .box-video {
  position: absolute;
  top: -26px;
  left: -37px;
  background-color: var(--Secondary);
  padding: 44px 34px;
  border-radius: 20px;
}
.s-why-us .main-section .video-wrap .box-video a {
  position: relative;
  background-color: var(--Bg-6);
}
.s-why-us .main-section .video-wrap .box-video a i {
  color: var(--White);
}
.s-why-us .main-section .video-wrap .box-video::after {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 9px;
  right: 9px;
  border-radius: 20px;
  border: 1px dashed var(--Border-7);
}
.s-why-us .main-section .content-section {
  max-width: 660px;
  width: 100%;
}
.s-why-us .main-section .content-section .img-item {
  margin-bottom: 17px;
}
.s-why-us .main-section .content-section .heading-section {
  margin-bottom: 25px;
}
.s-why-us .main-section .content-section .text {
  margin-bottom: 43px;
}


.s-welcome-to {
  position: relative;
  z-index: 1;
}
.s-welcome-to .text-wrap {
  padding: 10px 0px 0px 0px;
}
.s-welcome-to .text-wrap .text-1 {
  margin-bottom: 15px;
}
.s-welcome-to .text-wrap h3{
    font-weight:bold;
    margin: 20px 0px;
}
.s-welcome-to .text-wrap .text-2 {
  margin-top: 15px;
}


.s-contact-us .contact-list {
  border-radius: 20px;
  padding: 0px 50px 50px 0px;
  position: relative;
  z-index: 1;
  gap: 23px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.s-contact-us .contact-list::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 19px;
  bottom: 19px;
  left: 19px;
  border-radius: 15px;
  border: 1px dashed var(--Border-7);
  z-index: 0;
}
.s-contact-us .contact-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 29px;
}
.s-contact-us .contact-list li .icon {
  width: 56px;
  height: 56px;
 
}
.s-contact-us .contact-list li .icon.style-circle{
    border-radius: 50%;
     background-color: var(--Primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.s-contact-us .contact-list li .icon i {
  color: var(--White);
  font-size: 20px;
}
.s-contact-us .contact-list li .infor {
  gap: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.s-contact-us .contact-list li p {
  color: var(--Bg-6);
  font-size: 16px;
}
.s-contact-us .contact-list li p.title {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.s-contact-us .map-section{
    width:100%;
    border-radius: 24px;
    height: 400px;
    overflow: hidden
}
.s-contact-us .map-section img{
    width:100%;
    height: 100%;
        object-fit: cover;
}

.tf-sidebar {
    margin-bottom:30px;
}
.tf-sidebar .sidebar-item {
  border-radius: 20px;
  overflow: hidden;
}
.tf-sidebar .sidebar-item .sb-title {
  font-weight: 600;
  display: block;
  color: var(--White);
  background-color:var(--Primary);
  padding: 14px 35px 16px 35px;
}
.tf-sidebar .sidebar-item .sb-content {
  padding: 38px 35px;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid rgba(0,0,0,0.1);
}
.tf-sidebar .sidebar-item .sb-content .category-list li:not(:first-child) a {
  padding-top: 20px;
}
.tf-sidebar .sidebar-item .sb-content .category-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tf-sidebar .sidebar-item .sb-content .category-list li:not(:last-child) a {
  padding-bottom: 20px;
}
.tf-sidebar .sidebar-item .sb-content .category-list li a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}
.tf-sidebar .sidebar-item .sb-content .category-list li a::before {
  position: absolute;
  left: -5px;
  content: "\e926";
  font-family: "icomoon";
  color: --var(--Primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.tf-sidebar .sidebar-item .sb-content .category-list li a:hover,.tf-sidebar .sidebar-item .sb-content .category-list li a.select {
  padding-left: 20px;
  color: var(--Primary)
}

.tf-sidebar .sidebar-item .sb-content .category-list li a:hover::before,.tf-sidebar .sidebar-item .sb-content .category-list li a.select::before {
  left: 0px;
  transition-delay: 0.2s;
  visibility: visible;
  opacity: 1;
}


.grid-layout-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-layout-3.gap-30-20 {
  gap: 30px 20px;
}







.s-shopping {
  background-color: var(--Bg);
  margin-top: -20px;
  padding: 108px 0px 121px 0px;
  position: relative;
  margin-top: 120px
}
.s-shopping .btn-slide-wrap .btn-slider-shopping {
  position: absolute;
  z-index: 2;
}
.s-shopping .btn-slide-wrap .btn-slider-shopping.btn-next:hover, .s-shopping .btn-slide-wrap .btn-slider-shopping.btn-prev:hover {
  background: rgba(0, 0, 0, .6);
}
.s-shopping .btn-slide-wrap .btn-slider-shopping.btn-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: rgba(0, 0, 0, .2);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 48px;
  transition: .3s;
  right: 0
}
.s-shopping .btn-slide-wrap .btn-slider-shopping.btn-prev {
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: rgba(0, 0, 0, .2);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 48px;
  transition: .3s;
  left: 0
}
.s-shopping .content-section {
  padding-top: 30px;
  position: relative;
}
.s-shopping .content-section .title {
  margin-bottom: 27px;
}
.s-shopping .content-section .text {
  margin-bottom: 42px;
}
.s-shopping .content-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
}
.s-shopping .content-wrap .heading-section {
  max-width: 575px;
  width: 100%;
}
.s-shopping .content-wrap .s-slider {
  width: 100%;
}
.s-shopping .s-img-item {
  position: absolute;
}
.s-shopping .s-img-item.item-1 {
  bottom: -30px;
  width: 100%;
  z-index: 1;
}
.s-shopping .s-img-item.item-1 img {
  width: 100%;
}
.s-shopping .s-img-item.item-2 {
  bottom: 0px;
  right: 0px;
  z-index: 0;
}
#loading {
  background-color: var(--White);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
  right: 0px;
  z-index: 999999;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading #loading-center .loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader .icon {
  position: absolute;
  bottom: 16px;
}
#loading #loading-center .loader-container .wrap-loader .icon img {
  max-width: 50px;
}
#loading #loading-center .loader-container .loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: tf-spin 1s linear infinite;
}
/*-------------- Responsive ----------------- */
@media (min-width: 768px) and (max-width: 1439px) {
  .tf-collapse-content {
    display: flex !important;
    flex-direction: column;
  }
}
@media (max-width: 1600px) {
  .s-shopping .btn-slider-shopping {
    display: none;
  }
  .s-shopping .content-section {
    width: 37%;
  }
  .s-shopping .content-wrap .s-slider {
    width: 63%;
    max-width: unset;
  }
  .s-why-choose .image-wrap {
    height: 100%;
  }
  .s-why-choose .image-wrap .image {
    height: 100%;
  }
  .s-why-choose .image-wrap .image img {
    height: 100%;
    object-fit: cover;
  }
  .s-why-choose .notice {
    top: 20px;
    left: 20px;
  }
  .s-why-choose .s-img-item.item-1 {
    max-width: 200px;
  }
  .page-title-home-1 .btn-slide-home-1.btn-prev {
    right: 70px;
    left: unset;
    top: 55%;
  }
  .slide-home-1 .content-wrap {
    padding: 121px 20px 100px 20px;
  }
  .slide-home-1 .content-wrap br {
    display: block !important;
  }
  .header .header-inner {
    gap: 20px;
  }
  .header .header-inner .header-left .logo-site {
    padding-top: 0px;
    padding-right: 60px;
  }
  .header .header-inner .header-left .nav-list {
    gap: 34px;
  }
}
@media (max-width: 1440px) {
  .header .header-inner .header-left .nav-list {
    gap: 25px;
  }
  .header .header-inner .header-left .nav-list .item::before {
    left: -17px !important;
    font-size: 20px !important;
  }
  .header .header-inner .header-right {
    padding-right: 0px;
    gap: 20px;
  }
  .header .header-inner .header-right .tf-btn {
    gap: 20px;
    padding: 6px 5px 6px 28px;
  }
  .header .header-inner .header-right .icon-wrap {
    gap: 5px;
  }
  .page-title .img-item img {
    width: 100%;
    height: 50px;
    max-width: 1920px;
    object-fit: cover;
  }
    .wg-shop-content .card-product.style-2 {
    max-width: unset;
}
}
@media (max-width: 1300px) {
  .s-why-us .box-video {
    top: 10px !important;
    left: 10px !important;
  }
}
@media (max-width: 1200px) {
  .s-shopping .content-section {
    width: 100%;
  }
  .s-shopping .content-section .title br:first-child {
    display: block;
  }
  .s-shopping .content-section .heading-section {
    width: 100%;
    max-width: unset;
  }
  .s-shopping .content-wrap {
    flex-wrap: wrap;
  }
  .s-shopping .content-wrap .s-slider {
    width: 100%;
  }
  .s-why-us .main-section .content-section {
    padding-top: 30px;
  }
  .s-why-us .bot {
    margin-top: -100px;
    margin-left: 20px;
  }
  .footer .footer-inner .footer-inner-wrap .footer-title {
    margin-bottom: 20px !important;
  }
  .footer .footer-inner .footer-inner-wrap .contact-list li {
    gap: 8px;
  }
  .footer .footer-inner .footer-inner-wrap .contact-list li p {
    line-height: 20px;
  }
  .header-wrap {
    padding: 0px 15px;
    top: 15px;
  }
  .header {
    padding: 15px 0px;
  }
  .header .logo-site {
    padding-right: 0px !important;
  }
  .header .main-nav {
    display: none;
  }
  .header .mobile-button {
    display: block;
  }
  .header .fixed-header {
    padding: 15px 0px 0px;
  }
}
@media (max-width: 1024px) {
  .footer .footer-bottom {
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .s-shopping {
    padding: 70px 0px 70px 0px;
  }
    .wg-shop-content .grid-layout-3 {
    gap: 15px;
}
    .wg-shop-content .card-product.style-2 {
    padding: 15px;
}
  .s-why-us {
    padding-top: 35px;
  }
  .s-why-us .main-section .content-section {
    padding-top: 10px;
    width: 50%;
    max-width: unset;
  }
  .s-why-us .main-section .image {
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
  }
  .s-why-us .main-section .video-wrap img {
    max-width: unset;
  }
  .heading-section {
    margin-bottom: 15px !important;
  }
  .heading-section .img-item {
    margin-bottom: 5px !important;
  }
  .heading-section .sub-title {
    margin-bottom: 0px;
  }
  .heading-section.has-text .title {
    margin-bottom: 0px;
  }
  .heading-section.has-text .text {
    margin-bottom: 15px;
  }
  .header .header-item img {
    height: 25px;
    object-fit: cover;
    object-position: bottom;
  }
  .page-title-home-1 .btn-slide-home-1 {
    right: 20px !important;
  }
  .page-title-home-1 .btn-slide-home-1.btn-next, .page-title-home-1 .btn-slide-home-1.btn-prev {
    transform: translateY(150px);
  }
  .page-title-home-1 .slide-home-1 .image img {
    height: 550px;
  }
  .page-title-home-1 .slide-home-1 .content-wrap {
    padding: 65px 15px;
  }
  .footer {
    padding-top: 100px;
  }
  .footer .footer-inner {
    margin-bottom: 10px;
  }
  .footer .footer-inner .footer-inner-wrap {
    margin-bottom: 30px;
  }
  .main-content {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
    .slide-home-1 .content-wrap .content .title,.page-title .content .title{
        font-size:40px;
        line-height: 1.4;
    }
  .footer .footer-inner .footer-inner-wrap {
    margin-bottom: 20px;
  }
  .footer .footer-inner .footer-inner-wrap .tf-collapse-content {
    display: none;
  }
  .footer .footer-inner .footer-inner-wrap .tf-collapse-content li:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer .footer-inner .footer-inner-wrap .footer-title.footer-title-mobile {
    margin-bottom: 0px !important;
    padding-bottom: 10px;
  }
  .footer .footer-title-desktop {
    display: none !important;
  }
  .footer .footer-title-mobile {
    display: block !important;
    font-size: 20px !important;
  }
  .s-why-us .main-section {
    flex-wrap: wrap;
  }
  .s-why-us .main-section .image {
    width: 100%;
  }
  .s-why-us .main-section .image .video-wrap {
    width: 100%;
  }
  .s-why-us .main-section .image img {
    width: 100%;
/*    height: 500px;*/
  }
  .s-why-us .main-section .content-section {
    width: 100%;
    padding-top: 0px;
  }
  .s-why-us .main-section .content-section .heading-section {
    margin-bottom: 10px;
  }
  .s-why-us .main-section .content-section .img-item {
    margin-bottom: 0px;
  }
  .s-why-us .main-section .content-section .text {
    margin-bottom: 15px;
  }
  .s-why-us .bot .benefit-list li {
    padding: 15px 20px !important;
  }
  .page-title-home-1 .slide-home-1 .image img {
    height: 500px;
  }
  .page-title-home-1 .slide-home-1 br {
    display: none !important;
  }
  .page-title-home-1 .slide-home-1 .sub-title {
    margin-bottom: 0px !important;
  }
  .page-title-home-1 .slide-home-1 .img-item {
    margin-bottom: 10px !important;
  }
  .page-title-home-1 .slide-home-1 .text {
    margin-bottom: 20px !important;
  }
  .footer .footer-inner .footer-inner-wrap .footer-title {
    margin-bottom: 15px !important;
  }
  .main-content {
    padding: 80px 0px;
  }
  .page-title .content .icon-img {
    margin-bottom: 50px;
  }
    
    
    
}
@media (max-width: 650px) {
  .header .header-inner .header-right {
    gap: 15px;
  }
  .header .header-inner .header-right .icon-wrap {
    display: none;
  }
}
@media (max-width: 550px) {
  .page-title-home-1 .slide-home-1 .content-wrap {
    padding: 35px 15px;
  }
  .page-title-home-1 .slide-home-1 .content-wrap .content .sub-title,.page-title .content .sub-title {
    font-size: 20px;
  }
  .page-title-home-1 .slide-home-1 .content-wrap .content .text {
    font-size: 14px;
    line-height: 20px;
  }
  .page-title-home-1 .btn-slide-home-1 img {
    max-width: 60px;
  }
    .s-contact-us .contact-list{
        
    }
.grid-layout-3 {
    grid-template-columns: repeat(1, 1fr);
}
}
@media (max-width: 500px) {
  .header-right .tf-btn {
    display: none;
  }
}
@media (max-width: 450px) {
  .slider-home-1 .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .heading-section .title {
    font-size: 40px;
    line-height: 50px;
  }
  .btn-slide-home-1 {
    display: none;
  }
}