/* ---------------------------------------------------------
    * Name: 
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

    * section

    * dashboard

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
  --Black: #000000;
  --White: #ffffff;
  --Body-text: #687f94;
  --Primary-color: #231f20;
  --Secondary-color: #f44860;
  --Border: rgba(255, 255, 255, 0.1);
  --Text-1: #bfd3e5;
  --Text-2: #8798a8;
  --Text-3: #687f94;
  --Border: #e8e9f0;
  --color-1: #f5ab24;
  --color-2: #0d1c87;
  --color-3: #d32b42;
  --color-4: #d38f13;
  --Bg-main: #fef9ec;
  --Bg-main-2: #231f20;
  --Bg-1: #d8f4d3;
  --Bg-2: #bbe2f2;
  --Bg-3: #fad0d6;
  --Bg-4: #faeebf;
  --Bg-5: #e3dafb;
  --Bg-6: #f7dcb9;
  --Bg-7: #f8f6ee;
}

/*---------- Reset css styles ----------- */
/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

html {
  margin-right: 0 !important;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*: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;
}
body::-webkit-scrollbar {
  width: 0px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: none;
}

a img {
  border: 0;
}

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

select {
  max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
v input,
select,
textarea {
  font-family: "CerebriSans", sans-serif;
  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;
}

p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
}

strong,
b,
cite {
  font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
  font-style: italic;
}

abbr,
acronym {
  border-bottom: 1px dotted #e0e0e0;
  cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

address {
  font-style: italic;
  margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
  margin: 20px 0;
  padding: 4px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  overflow-x: auto;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  border-radius: 0;
  height: auto;
}

svg,
svg path {
  -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;
}

/* 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;
}

/* List */
ul,
ol {
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

li {
  list-style: none;
}

ul li,
ol li {
  padding: 0;
}

dl,
dd {
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

del,
.disable {
  text-decoration: line-through;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Table */
table,
th,
td {
  border: 1px solid #343444;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 30px;
  table-layout: fixed;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

th {
  border-width: 0 1px 1px 0;
  font-weight: bold;
}

td {
  border-width: 0 1px 1px 0;
}

th,
td {
  padding: 8px 12px;
}

/* Media */
embed,
object,
video {
  margin-bottom: 20px;
  max-width: 100%;
  vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
  margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
  line-height: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  line-height: inherit;
  margin: 0;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
}

input[type=checkbox] {
  display: inline;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  vertical-align: sub;
  /* Addresses excess padding in IE8/9 */
}

input[type=search] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type=search]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type=search] {
  outline: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* 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 {
  font-family: "Souvenir", sans-serif;
  margin: 0;
  text-rendering: optimizeLegibility;
  color: var(--Primary-color);
}

h1,
.h1 {
  font-size: 60px;
  line-height: 70px;
}

h2,
.h2 {
  font-size: 35px;
  line-height: 45px;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 40px;
}

h4,
.h4 {
  font-size: 23px;
  line-height: 32px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 30px;
}

h6,
.h6 {
  font-size: 17px;
  line-height: 26px;
}

.text-1 {
  font-size: 50px;
  line-height: 60px;
}

.text-2 {
  font-size: 40px;
  line-height: 50px;
}

.text-3 {
  font-size: 14px;
  line-height: 22px;
}

.fs-13 {
  font-size: 13px;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.font-souvenir {
  font-family: "Souvenir", sans-serif;
}

/* link style
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--Primary-color);
  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(--Secondary-color);
  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;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  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;
}
.tf-container.w-full {
  width: 100%;
}
.tf-container.w-1649 {
  width: 1649px;
}
.tf-container.w-1386 {
  width: 1386px;
}
.tf-container.w-1300 {
  width: 1300px;
}
.tf-container.w-1400 {
  width: 1400px;
}
.tf-container.w-1254 {
  width: 1254px;
}

/* Extra classes
-------------------------------------------------------------- */
#wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}

.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;
}

.justify-start {
  justify-content: start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.items-center {
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.font-cerebri {
  font-family: "CerebriSans", sans-serif !important;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.line-clamp-4 {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.px-30 {
  padding: 0 30px !important;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.gap-10 {
  gap: 10px;
}

.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-auto::-webkit-scrollbar {
  height: 3px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
  background: var(--Border);
  border-radius: 999px;
}

.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-auto::-webkit-scrollbar {
  width: 3px;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
  background: var(--Border);
  border-radius: 999px;
}

.bg-main {
  background-color: var(--Bg-main-2);
}

.bg-1 {
  background-color: var(--Bg-1);
}

.bg-2 {
  background-color: var(--Bg-2);
}

.bg-3 {
  background-color: var(--Bg-3);
}

.bg-4 {
  background-color: var(--Bg-4);
}

.bg-5 {
  background-color: var(--Bg-5);
}

.bg-6 {
  background-color: var(--Bg-6);
}

.text-color-main {
  color: var(--Primary-color);
}

/*------------ Components ---------------- */
/*------------ header ---------------- */
.tf-top-bar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 21px;
  padding-bottom: 24px;
}
.tf-top-bar .icon svg {
  width: 24px;
  height: 24px;
}
.tf-top-bar .icon.left {
  margin-right: 19px;
}
.tf-top-bar .icon.right {
  margin-left: 19px;
}
.tf-top-bar p {
  text-align: center;
  letter-spacing: 0.1px;
  color: #182267;
}

#header-main {
  position: relative;
}
#header-main::after {
  position: absolute;
  content: "";
  background-image: url(../images/header/header.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 195px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -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-main .wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
}
#header-main .header-inner-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 23px 0 62px;
  background-color: var(--Bg-main);
  border-radius: 999px;
  max-width: 1454px;
  margin: 0 auto;
}
#header-main .main-menu {
  flex-grow: 1;
}
#header-main .header-logo {
    max-width: 210px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 20px;
    padding: 10px;
}
#header-main .mobile-button {
  font-size: 30px;
  color: var(--Primary-color);
  margin-right: 15px;
}
#header-main .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 22px;
}
#header-main .header-right .header-cart {
  position: relative;
  margin-right: 29px;
}
#header-main .header-right .header-cart i {
  font-size: 20px;
  line-height: 100px;
  color: var(--Bg-main-2);
}
#header-main .header-right .header-cart > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background-color: var(--Secondary-color);
  color: var(--White);
  font-size: 13px;
  top: 30px;
  right: -21px;
}
#header-main .header-right .header-welcome {
  position: relative;
}
#header-main .header-right .btn-open-welcome {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: var(--Bg-main-2);
  border-radius: 999px;
  font-size: 34px;
  color: var(--White);
  cursor: pointer;
}

.header-cart {
  position: relative;
  cursor: pointer;
}
.header-cart::after {
  content: "";
  height: 100%;
  width: 59px;
  top: 0;
  left: -20px;
  display: block;
  position: absolute;
}
.header-cart .show-cart {
  color: var(--White);
  position: relative;
}
.header-cart:hover .show-cart {
  color: var(--Primary);
}
.header-cart:hover .bag-box {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}
.header-cart .bag-box {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(195, 162, 124, 0.2);
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  margin-top: 30px;
  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;
}
.header-cart::before {
  position: absolute;
  content: "";
  top: 26px;
  left: -27px;
  width: 1px;
  height: 49px;
  background-color: rgba(255, 255, 255, 0.12);
}

.navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 44px;
}
.navigation > li {
  cursor: pointer;
  position: relative;
  font-size: 17px;
  line-height: 100px;
  font-weight: 500;
  font-family: "CerebriSans", sans-serif;
}
.navigation > li.current-menu::before {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}
.navigation > li.current-menu::after {
  opacity: 1;
  visibility: visible;
  top: 26px;
}
.navigation > li.has-child {
  padding-right: 14px;
}
.navigation > li.has-child > a::after {
  content: "\e926";
  font-size: 10px;
  font-family: "icomoon";
  color: var(--Primary-color);
  -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;
  right: -14px;
  position: absolute;
}
.navigation > li > a {
  position: relative;
  color: var(--Primary-color);
  letter-spacing: 0.3px;
}
.navigation > li::after {
  content: "";
  position: absolute;
  background-image: url(../images/item/cream-up.png);
  background-size: 100%;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  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;
}
.navigation > li::before {
  content: "";
  position: absolute;
  background-image: url(../images/item/cream-down.png);
  background-size: 100%;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  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;
}
.navigation > li:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}
.navigation > li:hover::after {
  opacity: 1;
  visibility: visible;
  top: 26px;
}
.navigation > li .sub-menu {
  position: absolute;
  background: #fff;
  min-width: 220px;
  left: 0%;
  z-index: 5;
  top: 100%;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgba(195, 162, 124, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  -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;
}
.navigation > li .sub-menu .current a {
  color: var(--Secondary-color);
}
.navigation > li .sub-menu li a {
  padding: 10px 20px;
  display: block;
  width: 100%;
  line-height: 28px;
  font-weight: 500;
  color: var(--Primary-color);
}
.navigation > li .sub-menu li a:hover {
  color: var(--Secondary-color);
}
.navigation > li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #d3cece;
}
.navigation > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header.is-fixed .header-inner {
  position: fixed !important;
  left: 0;
  top: -100%;
  width: 100%;
  z-index: 9999999999;
  background-color: var(--Bg-main);
  opacity: 1;
  visibility: visible;
  -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;
  box-shadow: 0px 7px 36.8px 3.2px rgba(0, 0, 0, 0.1);
}
.header.is-fixed.is-small .header-inner {
  top: -1px;
  opacity: 1;
  visibility: visible;
}

.mobile-button {
  display: none;
}

.mobile-nav-wrap .overlay-mobile-nav {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 9999;
  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 .inner-mobile-nav {
  width: 320px;
  height: 100%;
  top: 0;
  left: -340px;
  position: fixed;
  background-color: var(--Bg-main);
  z-index: 999999;
  overflow-y: auto;
  -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 .overlay-mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-wrap.active .inner-mobile-nav {
  left: 0;
}

.mobile-nav-wrap .inner-mobile-nav::-webkit-scrollbar {
  width: 0px;
}

.inner-mobile-nav {
  padding: 15px;
  position: relative;
}
.inner-mobile-nav .top-nav-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-mobile-nav .top-nav-mobile #mobile-logo_header {
  width: 150px;
}
.inner-mobile-nav .top-nav-mobile .mobile-nav-close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: var(--Primary-color);
  border-radius: 50%;
  color: var(--White);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-mobile-nav #menu-mobile-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0px;
}
.inner-mobile-nav #menu-mobile-menu > li {
  position: relative;
  border-bottom: 1px solid var(--Border);
  padding: 15px 0px;
  cursor: pointer;
}
.inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile {
  display: none;
  text-align: start;
  overflow: hidden;
}
.inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile li {
  padding-left: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--Border);
  cursor: pointer;
}
.inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile li a {
  font-family: "Souvenir", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.inner-mobile-nav #menu-mobile-menu li a {
  font-family: "Souvenir", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--Primary-color);
}
.inner-mobile-nav #menu-mobile-menu li.menu-item-has-children-mobile > a::after {
  content: "\e944";
  position: absolute;
  font-family: "icomoon";
  font-weight: 300;
  position: absolute;
  font-size: 20px;
  right: 0;
  top: 17px;
  line-height: 16px;
  -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;
}
.inner-mobile-nav #menu-mobile-menu li.active a::after {
  transform: rotate(-180deg);
}

#menu-mobile-menu > li .sub-menu-mobile li:last-child,
#menu-mobile-menu > li:last-child {
  border: none;
}

#menu-mobile-menu li.current-menu-item > a,
#menu-mobile-menu li a:hover,
#menu-mobile-menu li.current-item a {
  color: var(--Secondary-color);
}

/*------------ footer ---------------- */
#footer {
  background-color: var(--Primary-color);
}
#footer .footer-top .wrapper {
/*
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
*/
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  flex-wrap: wrap;
  gap: 20px;
}
#footer .footer-top .info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 34px;
}
#footer .footer-top .info a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--White);
  letter-spacing: 1.3px;
  font-weight: 700;
}
#footer .footer-top .info a .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  height: 50px;
  width: 50px;
  border-radius: 999px;
  margin-right: 16px;
  font-size: 22px;
  -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-top .info a .icon-arrow {
  margin-left: 3px;
}
#footer .footer-top .info a:hover .icon {
  background-color: var(--Secondary-color);
}
#footer .footer-body {
  padding-top: 69px;
  padding-bottom: 65px;
}
#footer .footer-body .footer-menu-list .title {
  color: var(--White);
  margin-bottom: 19px;
  letter-spacing: 1.1px;
}
#footer .footer-body .footer-menu-list .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
#footer .footer-body .footer-menu-list .list li {
  color: var(--Text-1);
  line-height: 26px;
}
#footer .footer-body .footer-menu-list .list li span {
  line-height: 25px;
  font-weight: 500;
  color: var(--White);
}
#footer .footer-body .footer-menu-list .list li a {
  color: var(--Text-1);
  line-height: 25px;
  font-weight: 500;
  position: relative;
  -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-body .footer-menu-list .list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--White);
  left: 1px;
  bottom: 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;
}
#footer .footer-body .footer-menu-list .list li:hover a {
  color: var(--White);
}
#footer .footer-body .footer-menu-list .list li:hover a::after {
  width: 100%;
}
#footer .footer-body .footer-menu-list.newsletter p {
  margin-bottom: 23px;
  color: var(--Text-1);
  letter-spacing: 0.4px;
}
#footer .footer-body .footer-menu-list.contact .list li {
  position: relative;
  padding-left: 10px;
}
#footer .footer-body .footer-menu-list.contact .list li::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--White);
  left: -3px;
  top: 10px;
  border-radius: 50%;
}
#footer .footer-body .form-send-email {
  margin-bottom: 26px;
}
#footer .footer-body .form-send-email input {
  color: var(--Primary-color);
  padding-left: 15px;
}
#footer .footer-body .form-send-email input::placeholder {
  color: var(--Primary-color);
}
#footer .footer-body .form-send-email .button-submit {
  right: 27px;
}
#footer .footer-body .form-send-email .button-submit i {
  font-size: 18px;
  color: var(--Secondary-color);
}
#footer .footer-bottom {
  background-color: #000000;
}
#footer .footer-bottom .wrapper {
/*
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
*/
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 20px;
  position: relative;
  z-index: 5;
}
#footer .footer-bottom p {
  color: var(--White);
  letter-spacing: 0.4px;
  text-align: center;
}
#footer .footer-bottom .content-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 25px;
}
#footer .footer-bottom .content-right li a {
  color: var(--White);
  letter-spacing: 0.3px;
}
#footer .footer-bottom .content-right li:hover a {
  color: var(--Secondary-color);
}

/*------------ tabs ---------------- */
.widget-tabs .widget-menu-tab:not(.tab-filter) {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  gap: 44px;
  padding-top: 26px;
  margin-bottom: 69px;
}
.widget-tabs .widget-menu-tab:not(.tab-filter) .item-title {
  font-size: 20px;
  line-height: 28px;
  color: var(--Primary-color);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  font-family: "Souvenir", sans-serif;
  -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;
  letter-spacing: -0.1px;
}
.widget-tabs .widget-menu-tab:not(.tab-filter) .item-title::after {
  content: "\e966";
  font-family: "icomoon";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(26deg);
  font-size: 22px;
  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;
  color: var(--Secondary-color);
}
.widget-tabs .widget-menu-tab:not(.tab-filter) .item-title.active, .widget-tabs .widget-menu-tab:not(.tab-filter) .item-title:hover {
  color: var(--Secondary-color);
}
.widget-tabs .widget-menu-tab:not(.tab-filter) .item-title.active::after, .widget-tabs .widget-menu-tab:not(.tab-filter) .item-title:hover::after {
  visibility: visible;
  opacity: 1;
}
.widget-tabs .widget-menu-tab.tab-filter .item-title {
  position: relative;
  cursor: pointer;
}
.widget-tabs .widget-menu-tab.tab-filter .item-title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--White);
  -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;
  bottom: -9px;
  left: 1px;
}
.widget-tabs .widget-menu-tab.tab-filter .item-title.active::after, .widget-tabs .widget-menu-tab.tab-filter .item-title:hover::after {
  width: 100%;
}
.widget-tabs.style-2 .widget-menu-tab {
  padding-bottom: 22px;
  gap: 51px;
  border-bottom: 1px solid var(--Border);
  justify-content: start;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
  padding-top: 0px;
}
.widget-tabs.style-2 .widget-menu-tab .item-title {
  position: relative;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: -0.6px;
}
.widget-tabs.style-2 .widget-menu-tab .item-title::after {
  display: none;
}
.widget-tabs.style-2 .widget-menu-tab .item-title::before {
  position: absolute;
  content: "";
  bottom: -22px;
  left: auto;
  right: 0;
  width: 0;
  height: 3px;
  background-color: var(--Secondary-color);
  -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;
}
.widget-tabs.style-2 .widget-menu-tab .item-title.active, .widget-tabs.style-2 .widget-menu-tab .item-title:hover {
  color: var(--Secondary-color);
}
.widget-tabs.style-2 .widget-menu-tab .item-title.active::before, .widget-tabs.style-2 .widget-menu-tab .item-title:hover::before {
  width: 100%;
  left: 0;
}
.widget-tabs.style-3 .widget-menu-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  gap: 21px;
}
.widget-tabs.style-3 .widget-menu-tab .item-title span {
  font-size: 17px;
  line-height: 28px;
  color: var(--Primary-color);
  font-weight: 600;
  position: relative;
  z-index: 1;
  -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;
  letter-spacing: -0.3px;
}
.widget-tabs.style-3 .widget-menu-tab .item-title::after {
  left: -3px;
  top: 0px;
  transform: unset;
  font-size: 15px;
}
.widget-tabs.style-3 .widget-menu-tab .item-title.active span, .widget-tabs.style-3 .widget-menu-tab .item-title:hover span {
  color: var(--Secondary-color);
  margin-left: 20px;
}
.widget-tabs.style-3 .widget-menu-tab .item-title.active::after, .widget-tabs.style-3 .widget-menu-tab .item-title:hover::after {
  visibility: visible;
  opacity: 1;
}

/*------------ button ---------------- */
.tf-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  color: var(--White) !important;
  transform: translate3d(0, 4px, 0);
  z-index: 5;
  max-width: max-content;
  background-color: var(--color-3);
  cursor: pointer;
}
.tf-btn span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Secondary-color);
  background-color: var(--Secondary-color);
  padding: 0px 35px;
  height: 50px;
  border-radius: 999px;
  transform: translate3d(0, -5px, 0);
  z-index: -1;
  letter-spacing: 1.3px;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.tf-btn span i {
  font-size: 20px;
}
.tf-btn.bg-2 {
  background-color: var(--color-4);
}
.tf-btn.bg-2 span {
  background-color: var(--color-1);
}
.tf-btn:hover span {
  transform: translate3d(0, 0, 0);
}

.tf-btn-default {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--White) !important;
  -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-default:hover i {
  animation: 0.3s link linear;
}

@keyframes link {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(20px);
    opacity: 0;
  }
  50% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------ range slider ---------------- */
/*------------ form ---------------- */
form {
  position: relative;
  z-index: 30;
}
form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  height: 50px;
  padding: 10px 23px 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  background-color: var(--White);
  border: 1px solid var(--White);
  border-radius: 25px;
  color: var(--Primary-color);
  overflow: hidden;
  margin-bottom: 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;
}
form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  color: var(--Primary-color);
}
form textarea:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus {
  border: 1px solid var(--Secondary-color);
  box-shadow: 4px 4px 10px -5px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 4px 4px 10px -5px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 4px 4px 10px -5px rgba(0, 0, 0, 0.49);
}
form .cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px 21px;
  width: 100%;
}
form .cols.cols-two > * {
  width: 50%;
}
form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 213px;
}

fieldset {
  margin-bottom: 0px;
  width: 100%;
}
fieldset textarea.tf-input,
fieldset input.tf-input {
  -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;
  border: 1px solid var(--Border);
}
fieldset textarea.tf-input:focus,
fieldset input.tf-input:focus {
  border: 1px solid var(--Secondary-color);
}

.form-send-email fieldset input {
  padding-right: 90px;
  padding-left: 23px;
  font-size: 13px;
  line-height: 29px;
}
.form-send-email fieldset input::placeholder {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
}
.form-send-email fieldset input:focus {
  border: 1px solid var(--Secondary-color);
}
.form-send-email .button-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.form-send-email .button-submit button {
  color: var(--White);
  cursor: pointer;
}

.form-send-message fieldset input {
  padding-right: 90px;
  padding-left: 23px;
  font-size: 15px;
  line-height: 29px;
}
.form-send-message fieldset input::placeholder {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  color: var(--Black);
}
.form-send-message fieldset input:focus {
  border: 1px solid var(--Secondary-color);
}
.form-send-message fieldset textarea {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  color: var(--Black);
}
.form-send-message fieldset textarea::placeholder {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  color: var(--Black);
}
.form-send-message .button-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.form-send-message .button-submit button {
  color: var(--White);
  cursor: pointer;
}

/*------------ slider ---------------- */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.page-title-home .button {
  border-radius: 999px;
  color: var(--White);
  background-color: var(--color-1);
  -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;
  height: 51px;
  width: 51px;
  transform: scale(1.3);
}
.page-title-home .button.swiper-button-disabled {
  height: 51px;
  width: 51px;
  transform: unset;
  background-color: var(--Secondary-color);
}
.page-title-home .button:hover {
  background-color: var(--color-1);
}
.page-title-home .swiper-button-prev {
  left: calc(3% + 5px);
  top: calc(64% + 9px);
}
.page-title-home .swiper-button-prev::after {
  display: none;
}
.page-title-home .swiper-button-next {
  left: calc(3% + 6px);
  top: calc(55% + 5px);
}
.page-title-home .swiper-button-next::after {
  display: none;
}

.style-btn-slide .button {
  border-radius: 999px;
  color: var(--White);
  background-color: var(--Secondary-color);
  -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;
  height: 51px;
  width: 51px;
  transform: scale(1.3);
  top: 50%;
}
.style-btn-slide .button.swiper-button-disabled {
  height: 51px;
  width: 51px;
  transform: unset;
  background-color: var(--Bg-main-2);
}
.style-btn-slide .button:hover {
  background-color: var(--Bg-main-2);
}
.style-btn-slide .swiper-button-prev {
  left: -80px;
}
.style-btn-slide .swiper-button-prev::after {
  display: none;
}
.style-btn-slide .swiper-button-next {
  right: -80px;
}
.style-btn-slide .swiper-button-next::after {
  display: none;
}

.section-our-product .swiper-slide {
  width: auto;
}

.slide-effect-fade .swiper-slide .fade-item {
  transform: translateY(100px);
  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;
}
.slide-effect-fade .swiper-slide.swiper-slide-active .fade-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
    top: 50px;
}
.slide-effect-fade .swiper-slide.swiper-slide-active .fade-item.fade-item1 {
  transition-delay: 0.2s;
}
.slide-effect-fade .swiper-slide.swiper-slide-active .fade-item.fade-item2 {
  transition-delay: 0.4s;
}
.slide-effect-fade .swiper-slide.swiper-slide-active .fade-item.fade-item3 {
  transition-delay: 0.6s;
}
.slide-effect-fade .swiper-slide.swiper-slide-active .fade-item.fade-item4 {
  transition-delay: 0.8s;
}

/*------------ off canvas ---------------- */
/*------------ product ---------------- */
/*------------ blog ---------------- */
.article-blog-item .image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
    margin-left: 15px;
}
.article-blog-item .image-wrap img {
  object-fit: cover;
}
.article-blog-item .content {
  text-align: center;
  padding: 0 20px;
}
.article-blog-item .content .meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 0px 30px;
}
.article-blog-item .content .meta li {
  color: var(--Body-text);
  font-size: 15px;
  line-height: 35px;
}
.article-blog-item .content .meta li:not(:first-child) {
  position: relative;
}
.article-blog-item .content .meta li:not(:first-child)::after {
  content: "\e966";
  position: absolute;
  font-size: 15px;
  font-family: "icomoon";
  color: var(--Secondary-color);
  left: -22px;
}
.article-blog-item .content .title {
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 31px;
}
.article-blog-item .content .text {
  margin-bottom: 27px;
  letter-spacing: -0.4px;
}
.article-blog-item .content .tf-btn-default {
  letter-spacing: 1.3px;
  justify-content: center;
  gap: 3px;
  color: var(--Primary-color) !important;
}
.article-blog-item .content .tf-btn-default i {
  font-size: 20px;
  color: var(--Secondary-color);
}
.article-blog-item .date-time {
  position: absolute;
  top: 29px;
  left: 19px;
  width: max-content;
  background-color: #d38f13;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  transform: translateY(-6px);
}
.article-blog-item .date-time .content {
  padding: 18px 16px 11px 14px;
  background-color: #f5ab24;
  border-radius: 10px;
  transform: translateY(-5px);
  width: 78px;
}
.article-blog-item .date-time .content .entry-day {
  font-size: 35px;
  line-height: 37px;
  font-family: "Souvenir", sans-serif;
  color: var(--White);
  font-weight: 500;
}
.article-blog-item .date-time .content .entry-month {
  font-size: 13px;
  color: var(--White);
}

.hover-img .image-wrap {
  overflow: hidden;
}
.hover-img .image-wrap img {
  object-fit: cover;
  -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}
.hover-img:hover .image-wrap img {
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2);
}

/*------------ testimonial ---------------- */
.testimonial-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-item .description {
  padding: 37px 42px 34px;
  background-color: var(--White);
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  -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;
  flex-grow: 1;
}
.testimonial-item .description p {
  font-size: 17px;
  line-height: 30px;
}
.testimonial-item .description span {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 26px solid var(--White);
  bottom: -13px;
  left: 6px;
  transform: rotate(-40deg);
}
.testimonial-item .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  margin-left: 22px;
}
.testimonial-item .author::after {
  content: "\e91e";
  position: absolute;
  font-size: 17px;
  color: var(--Secondary-color);
  font-family: "icomoon";
  left: 87px;
  top: -23px;
  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;
}
.testimonial-item .avatar {
  width: 69px;
  height: 69px;
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.testimonial-item .avatar img {
  object-fit: cover;
}
.testimonial-item .content h5 {
  font-weight: 600;
  letter-spacing: -0.7px;
}
.testimonial-item:hover .description {
  transform: translateY(-20px);
  box-shadow: 0px 7px 36.8px 3.2px rgba(0, 0, 0, 0.1);
}
.testimonial-item:hover .author::after {
  opacity: 1;
  visibility: visible;
}

/*------------ accordion ---------------- */
.tf-accordion .accordion-item:not(:last-child) {
  margin-bottom: 14px;
}
.tf-accordion .accordion-header {
  border-radius: 30px;
}
.tf-accordion .accordion-header .title {
  padding: 17px 0 18px 40px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.7px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tf-accordion .accordion-header .title i {
  font-size: 17px;
  margin-right: 45px;
  -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-accordion .accordion-header .title:not(.collapsed) {
  color: var(--White);
}
.tf-accordion .accordion-header .title:not(.collapsed) i {
  transform: rotate(-180deg);
}
.tf-accordion .body-text {
  padding: 30px 63px 31px 41px;
}

/*------------ shop ---------------- */
.product-item .image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 26px;
}
.product-item .image-wrap img {
  object-fit: cover;
  -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;
}
.product-item .wrap-icons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  gap: 12px;
  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;
}
.product-item .wrap-icons .icon a {
  height: 50px;
  width: 50px;
  background-color: var(--Primary-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White);
  border-radius: 999px;
  font-size: 17px;
}
.product-item .wrap-icons .icon a:hover {
  background-color: var(--Secondary-color);
}
.product-item .content {
  text-align: center;
}
.product-item .content .title {
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: -0.5px;
}
.product-item .content p {
  padding: 0 68px;
  margin-bottom: 24px;
}
.product-item .content .price {
  font-size: 17px;
  font-weight: 600;
  font-family: "Souvenir", sans-serif;
  color: var(--Secondary-color);
}
.product-item .content .price span {
  text-decoration: line-through;
}
.product-item:hover .image-wrap img {
  -webkit-filter: blur(5px);
}
.product-item:hover .wrap-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product-item.style-2 .image-wrap {
  margin-bottom: 28px;
}
.product-item.style-2 .content .title {
  margin-bottom: 16px;
}
.product-item.style-2 .content p {
  margin-bottom: 22px;
  padding: 0;
}
.product-item.sale, .product-item.new {
  position: relative;
}
.product-item.sale::after, .product-item.new::after {
  position: absolute;
  content: "SALE!";
  height: 60px;
  width: 60px;
  background-color: var(--Secondary-color);
  color: var(--White);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  top: 16px;
  right: 21px;
  border-radius: 999px;
}
.product-item.new::after {
  content: "NEW!";
}

.rating {
  font-size: 18px;
  line-height: 25px;
  color: var(--color-1);
}
.rating i {
  font-size: 18px;
  margin: 0 -2px;
}

.shop-detail .tf-product-media-main {
  padding-bottom: 30px;
  border-radius: 25px;
}
.shop-detail .tf-product-media-thumbs .item {
  border-radius: 20px;
  overflow: hidden;
}
.shop-detail .content-inner {
  padding-top: 30px;
  padding-left: 25px;
}
.shop-detail .product-content {
  padding-bottom: 21px;
  margin-bottom: 23px;
  border-bottom: 1px solid var(--Border);
}
.shop-detail .product-content .product-title {
  font-weight: 600;
  letter-spacing: -1.1px;
  margin-bottom: 10px;
}
.shop-detail .product-content .product-price {
  color: var(--Secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.9px;
}
.shop-detail .sort-description {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--Border);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.shop-detail .title {
  font-family: "Souvenir", sans-serif;
  font-weight: 700;
  color: var(--Primary-color);
  margin-bottom: 25px;
  letter-spacing: -0.7px;
}
.shop-detail .add-wishlist {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--Border);
  margin-bottom: 23px;
}
.shop-detail .add-wishlist a {
  font-weight: 700;
  color: var(--Primary-color);
}
.shop-detail .add-wishlist a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--Secondary-color);
}
.shop-detail .more-infor {
  padding-bottom: 23px;
  margin-bottom: 27px;
  border-bottom: 1px solid var(--Border);
}
.shop-detail .more-infor ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--Primary-color);
  margin-bottom: -1px;
}
.shop-detail .more-infor ul li span {
  color: var(--Body-text);
}
.shop-detail .more-infor ul li a {
  color: var(--Body-text);
}
.shop-detail .more-infor ul li a:hover {
  color: var(--Secondary-color);
}
.shop-detail .share {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-detail .share h4 {
  color: var(--Primary-color);
  font-weight: 600;
}
.shop-detail .share .tf-social-icon li {
  border-color: var(--Text-top-bar);
  height: 35px;
  width: 35px;
}
.shop-detail .share .tf-social-icon li i {
  font-size: 12px;
  color: var(--text);
}
.shop-detail .share .tf-social-icon li:hover i {
  color: var(--White);
}

/*------------ map ---------------- */
.map-box {
  width: 100%;
  height: 533px;
  overflow: hidden;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
#map .marker {
  background-image: url(../images/item/marker.png);
  background-size: cover;
  width: 35px;
  height: 50px;
  cursor: pointer;
}

.mapboxgl-ctrl-attrib a,
.mapboxgl-ctrl-attrib.mapboxgl-compact,
a.mapboxgl-ctrl-logo {
  display: none !important;
}

/*------------ animation ---------------- */
@keyframes ring {
  0% {
    transform: rotate(0) translateX(0);
  }
  25% {
    transform: rotate(-20deg) translateX(0.2em);
  }
  50% {
    transform: rotate(20deg) translateX(-0.2em);
  }
  75% {
    transform: rotate(-10deg) translateX(0.1em);
  }
  100% {
    transform: rotate(10deg) translateX(-0.1em);
  }
}
@keyframes ripple {
  0% {
    width: 90px;
    height: 90px;
    opacity: 1;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}
@keyframes ripple-1 {
  0% {
    width: 90px;
    height: 90px;
    opacity: 1;
  }
  100% {
    width: 170px;
    height: 170px;
    opacity: 0;
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes effect-arrow {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes preload {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 2px 0 #f44860;
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 0 2px 0 #f44860;
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 2px 0 #f44860;
  }
}
/*------------ zoom ---------------- */
.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 50;
}
.tf-zoom-main .drift-zoom-pane {
  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;
}

.pswp__bg {
  background: var(--white);
}

.pswp__icn {
  fill: rgb(34, 34, 34);
  color: var(--white);
}
.pswp__icn .pswp__icn-shadow {
  stroke: var(--white);
  stroke-width: 1px;
  fill: none;
}

.pswp__counter {
  color: #222;
  text-shadow: 1px 1px 3px #ffffff;
}

.tf-model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}
.tf-model-viewer model-viewer {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.tf-model-viewer model-viewer.disabled {
  pointer-events: none;
}
.tf-model-viewer.active model-viewer {
  pointer-events: all;
}
.tf-model-viewer.active .wrap-btn-viewer {
  display: none;
}

/*------------ widgets ---------------- */
.wg-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wg-pagination li a {
  width: 49px;
  height: 49px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  background-color: var(--Primary-color);
  color: var(--White);
  -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-pagination li:hover a {
  background-color: var(--Secondary-color);
}
.wg-pagination li.active a {
  background-color: var(--Secondary-color);
}

.tf-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.tf-social li a {
  color: var(--White);
  font-size: 16px;
}
.tf-social li:hover a {
  color: var(--Secondary-color);
}
.tf-social.style-2 {
  gap: 0;
}
.tf-social.style-2 li a {
  height: 42px;
  width: 42px;
  border-radius: 999px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Primary-color);
}
.tf-social.style-2 li:hover a {
  background-color: var(--Secondary-color);
  color: var(--White);
}

.wg-block-quote {
  background-color: #f8f6ee;
  border-radius: 20px;
  padding: 41px 62px 43px;
  position: relative;
  margin-bottom: 34px;
  margin-top: 34px;
  font-style: unset;
}
.wg-block-quote p {
  letter-spacing: -0.1px;
  color: var(--Primary-color);
  line-height: 28px;
  font-weight: 500;
}
.wg-block-quote h6 {
  margin-top: 19px;
  letter-spacing: 1px;
  position: relative;
}
.wg-block-quote h6::after {
  position: absolute;
  content: "\e91e";
  color: var(--Secondary-color);
  font-family: "icomoon";
  font-size: 31px;
  right: 10px;
  top: -4px;
}

.widget-video {
  position: relative;
  overflow: hidden;
  margin-bottom: 45px;
  cursor: pointer;
}
.widget-video .popup-youtube {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background-color: var(--White);
  color: var(--Black);
  visibility: hidden;
  z-index: 2;
  opacity: 0;
}
.widget-video .popup-youtube i {
  transform: translateX(2px);
  font-size: 23px;
  -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;
}
.widget-video .wave {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: ripple 1s infinite;
}
.widget-video .wave-1 {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  animation: ripple-1 1s infinite;
}
.widget-video:hover .popup-youtube {
  visibility: visible;
  opacity: 1;
}
.widget-video:hover .popup-youtube i {
  color: var(--Secondary-color);
}

.cart-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  gap: 22px;
  margin-bottom: 27px;
}
.cart-item .wrap-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 82px;
  overflow: hidden;
  background-color: var(--White);
}
.cart-item .wrap-image img {
  object-fit: cover;
}
.cart-item .content {
  flex-grow: 1;
  padding-top: 16px;
}
.cart-item .content .price {
  margin-bottom: 2px;
  color: var(--Secondary-color);
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Souvenir", sans-serif;
}
.cart-item .content .name {
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1px;
}
.cart-item .content .close-button {
  position: absolute;
  top: 0;
  right: -3px;
  font-weight: 600;
  font-size: 11px;
  color: var(--text);
  cursor: pointer;
}
.cart-item:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid #e5dccf;
}

.wg-welcome {
  background-color: var(--White);
  position: absolute;
  z-index: 10;
  width: 441px;
  top: 106px;
  left: 24%;
  transform: translateX(-50%);
  cursor: default;
  opacity: 0;
  visibility: hidden;
  padding: 64px 50px 56px 50px;
  box-shadow: 0px 8px 27px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  margin-top: 30px;
  -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-welcome.active {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}
.wg-welcome .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.wg-welcome .inner .btn-close-welcome {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--White);
  background-color: var(--Bg-main-2);
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 16px;
}
.wg-welcome .inner .title {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 22px;
}
.wg-welcome .inner .text {
  margin-bottom: 17px;
}
.wg-welcome .inner .icon {
  font-size: 22px;
  color: var(--Secondary-color);
  margin-bottom: 5px;
}
.wg-welcome .inner .contact {
  margin-bottom: 15px;
}
.wg-welcome .inner .contact .number-call {
  font-size: 24px;
  line-height: 47px;
  color: var(--Primary-color);
  font-weight: 700;
  font-family: "Souvenir", sans-serif;
}
.wg-welcome .inner .contact .address,
.wg-welcome .inner .contact .email {
  line-height: 30px;
  color: var(--Text-3);
  font-weight: 600;
}
.wg-welcome .inner .sort-line {
  width: 24%;
  height: 1px;
  background-color: var(--Primary);
  margin-bottom: 24px;
}
.wg-welcome .inner .schedule {
  margin-bottom: 40px;
  margin-top: 10px;
}
.wg-welcome .inner .schedule p {
  color: var(--Text-3);
  font-weight: 600;
  line-height: 30px;
}
.wg-welcome .inner .social li a {
  color: var(--Primary-color);
}

.box-item {
  position: relative;
  border-radius: 20px;
  padding: 40px 0 34px;
  text-align: center;
  margin-bottom: 30px;
}
.box-item .image-wrap {
  margin-bottom: 22px;
}
.box-item .image-wrap img {
  object-fit: cover;
}
.box-item .content h4 {
  font-weight: 600;
  letter-spacing: -1.1px;
  margin-bottom: 1px;
}
.box-item.style-2 {
  margin-top: 30px;
  margin-bottom: 0;
}
.box-item.style-2 .image-wrap {
  margin-top: -65px;
}
.box-item.spacing-1 .image-wrap {
  margin-top: -94px;
  margin-bottom: 5px;
}
.box-item.spacing-2 .image-wrap {
  margin-top: -68px;
  margin-bottom: 18px;
}
.box-item.spacing-3 .image-wrap {
  margin-top: -76px;
  margin-bottom: 32px;
}
.box-item.spacing-4 .image-wrap {
  margin-top: -97px;
  margin-bottom: 17px;
}
.box-item.spacing-5 .image-wrap {
  margin-top: -90px;
}
.box-item.spacing-6 .image-wrap {
  margin-bottom: 11px;
}
.box-item.spacing-7 .image-wrap {
  margin-top: -79px;
  margin-bottom: 16px;
}

.wrap-icon-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 110px;
}
.wrap-icon-box .icons-box:not(:last-child) {
  position: relative;
}
.wrap-icon-box .icons-box:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border: 1px dashed var(--Border);
  right: -55px;
  top: 0;
}
.wrap-icon-box .icons-box:not(:last-child)::before {
  position: absolute;
  content: "\e966";
  font-family: "icomoon";
  color: var(--Secondary-color);
  top: 50%;
  right: -64px;
  transform: translateY(-65%);
  z-index: 1;
  background-color: var(--Bg-7);
  padding: 5px 0;
  font-size: 20px;
}

.icons-box {
  text-align: center;
  padding: 0 15px;
}
.icons-box .icon {
  margin-bottom: 26px;
}
.icons-box .icon i {
  font-size: 49px;
  color: var(--Primary-color);
}
.icons-box .title {
  margin-bottom: 16px;
  font-weight: 600;
}
.icons-box.style-2 {
  border-radius: 20px;
  padding: 53px 15px 45px;
}
.icons-box.style-2 .icon {
  margin-bottom: 23px;
}
.icons-box.style-2 .title {
  letter-spacing: -0.7px;
}

.wg-quote .icon {
  font-size: 33px;
  color: var(--Secondary-color);
  margin-bottom: 27px;
}
.wg-quote .description {
  font-size: 17px;
  font-weight: 600;
  line-height: 32px;
  color: var(--Primary-color);
  margin-bottom: 30px;
}
.wg-quote .bot {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 55px;
}
.wg-quote .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wg-quote .author .avatar {
  flex: none;
  height: 94px;
  width: 94px;
  border-radius: 999px;
  border: 2.5px solid var(--Secondary-color);
  overflow: hidden;
}
.wg-quote .author .content h5 {
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 2px;
}
.wg-quote .signature-item {
  width: 121px;
}

.wrap-wg-quote {
  max-width: 470px;
  overflow: hidden;
}

.wg-service-item {
/*  display: -webkit-box;*/
/*  display: -moz-box;*/
/*
  display: -ms-flexbox;
  display: -webkit-flex;
*/
/*  display: flex;*/
  align-items: center;
  gap: 19px;
}
.wg-service-item .icon {
  font-size: 55px;
  color: var(--Secondary-color);
}
.wg-service-item .content .title {
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--White);
  letter-spacing: -0.8px;
}

.box-info {
  background-color: var(--color-2);
  border-radius: 20px;
}
.box-info .wrap-content {
  background-color: var(--Bg-main-2);
  border-radius: 20px;
  padding: 41px 30px 47px 35px;
  transform: translatey(-7px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  height: 100%;
}
.box-info .content .title {
  color: var(--White);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.6px;
}
.box-info .content p {
  font-size: 17px;
  line-height: 28px;
  color: var(--White);
  letter-spacing: 0.1px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
}
.box-info .content .tf-btn-default {
  margin-top: 35px;
  letter-spacing: 1.1px;
}
.box-info .content .tf-btn-default i {
  font-size: 20px;
}
.box-info .icon {
  background-image: url(../images/item/box-info.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 109px;
  height: 101px;
  position: absolute;
  top: 29px;
  right: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.box-info .icon svg {
  transition: all 0.8s ease-in-out;
  width: 42px;
}
.box-info.bg-2 {
  background-color: var(--color-3);
}
.box-info.bg-2 .wrap-content {
  background-color: var(--Secondary-color);
}
.box-info.bg-3 {
  background-color: var(--color-4);
}
.box-info.bg-3 .wrap-content {
  background-color: var(--color-1);
}
.box-info:hover .wrap-content {
  transform: translateY(0);
}
.box-info:hover .icon svg {
  transform: rotateY(360deg);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}
.portfolio-item .image-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.portfolio-item .image-wrap img {
  width: 100%;
  object-fit: cover;
}
.portfolio-item .content {
  position: absolute;
  padding: 24px 85px 27px;
  text-align: center;
  max-width: max-content;
  border-radius: 20px;
  background-color: var(--Primary-color);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -124px;
  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;
}
.portfolio-item .content .title {
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 2px;
}
.portfolio-item .content .title a {
  color: var(--White);
}
.portfolio-item .content .title a:hover {
  color: var(--Secondary-color);
}
.portfolio-item:hover .content {
  bottom: 25px;
  visibility: visible;
  opacity: 1;
}

.wrap-quantity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 21px;
  margin-bottom: 30px;
}
.wrap-quantity .wg-quantity {
  position: relative;
}
.wrap-quantity .wg-quantity input {
  width: 66px;
  height: 50px;
  background-color: var(--Primary-color);
  border: none;
  box-shadow: none;
  color: var(--White);
  padding-left: 19px;
  border-radius: 4px;
}
.wrap-quantity .wg-quantity .btn-quantity {
  font-size: 15px;
  color: var(--White);
  cursor: pointer;
  position: absolute;
}
.wrap-quantity .wg-quantity .minus-btn {
  bottom: 11px;
  right: 8px;
}
.wrap-quantity .wg-quantity .plus-btn {
  top: 10px;
  right: 8px;
}
.wrap-quantity .tf-btn {
  padding: 0;
}
.wrap-quantity .tf-btn span {
  padding: 0 30px;
  gap: 10px;
}

.box-team {
  text-align: center;
  padding-top: 43px;
}
.box-team .icon {
  background-image: url(../images/item/box-team.png);
  width: 109px;
  height: 101px;
  margin: 0 auto 25px;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-team .icon i {
  font-size: 46px;
  position: absolute;
  color: var(--White);
}
.box-team .title {
  font-weight: 700;
  color: var(--Primary-color);
  font-family: "Souvenir", sans-serif;
  margin-bottom: 26px;
  letter-spacing: 1px;
}
.box-team p {
  margin-bottom: 21px;
  padding: 0 24px;
  letter-spacing: 0.1px;
}
.box-team .sub {
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.6px;
}
.box-team .tf-btn {
  margin: 0 auto;
}
.box-team .tf-btn span {
  padding: 0 32px;
}

.box-history-item {
  padding: 70px 32px 29px;
  background-color: var(--Primary-color);
  border-radius: 30px;
  position: relative;
}
.box-history-item .content {
  text-align: center;
  border-bottom: 20px;
  padding: 0 50px;
}
.box-history-item .content .title {
  color: var(--White);
  font-weight: 700;
  margin-bottom: 27px;
  letter-spacing: 0.7px;
}
.box-history-item .content p {
  margin-bottom: 45px;
}
.box-history-item .content .tf-btn {
  margin: 0 auto;
  margin-bottom: 50px;
}
.box-history-item .content .tf-btn span {
  padding: 0 30px;
}
.box-history-item .image-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.box-history-item .cycle-item {
  top: -59px;
  left: -82px;
}

.cycle-item {
  width: 155px;
  height: 155px;
  border-radius: 999px;
  background-color: var(--Secondary-color);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 9.2px 0.8px rgba(0, 0, 0, 0.27);
  position: absolute;
}
.cycle-item .h2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 600;
  color: var(--White);
  z-index: 1;
  width: 155px;
  height: 155px;
  background-color: var(--Secondary-color);
  border-radius: 50%;
  transform: rotate(345deg) translate3d(-1px, -5px, 0);
}

.list-check li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 30px;
  color: var(--Primary-color);
  gap: 11px;
}
.list-check li i {
  font-size: 17px;
  color: var(--Secondary-color);
}

.history-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--White);
  box-shadow: 0px 9px 32.2px 2.8px rgba(0, 0, 0, 0.05);
}
.history-box:not(:last-child) {
  margin-bottom: 27px;
}
.history-box .content {
  text-align: center;
  padding: 92px 94px;
}
.history-box .content .year {
  font-weight: 600;
  color: var(--Secondary-color);
  margin-bottom: 18px;
}
.history-box .content .title {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 42px;
  letter-spacing: 0.6px;
}
.history-box .content .paragraph {
  margin-bottom: 15px;
}
.history-box .content .signature-item {
  width: 92px;
  margin: 30px auto 0;
}
.history-box.spacing-2 {
  margin-bottom: 24px;
}
.history-box.spacing-2 .content {
  padding: 86px 94px;
}
.history-box.spacing-3 .content {
  padding: 61px 94px;
}
.history-box .image-wrap {
  height: 100%;
}
.history-box .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.history-box .list-check li {
  justify-content: center;
  text-align: start;
  letter-spacing: 0.4px;
}

.team-menber-item {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.team-menber-item .info-wrap {
  padding: 51px 15px 44px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.team-menber-item .image-wrap {
  max-width: 236px;
  margin: 0 auto 32px;
  overflow: hidden;
}
.team-menber-item .image-wrap img {
  border-radius: 999px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  object-fit: cover;
}
.team-menber-item .info {
  text-align: center;
}
.team-menber-item .info .name {
  font-weight: 600;
  letter-spacing: -0.7px;
  margin-bottom: 2px;
}
.team-menber-item .info p {
  color: var(--Primary-color);
  letter-spacing: 0.4px;
}
.team-menber-item .content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  padding: 67px 54px 75px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.team-menber-item .content .info {
  margin-bottom: 22px;
}
.team-menber-item .content .desc {
  margin-bottom: 27px;
  line-height: 26px;
}
.team-menber-item .tf-social {
  justify-content: center;
}
.team-menber-item:hover .info-wrap {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.team-menber-item:hover .info-wrap .image-wrap img {
  scale: 0;
  transform: rotate(-45deg);
}
.team-menber-item:hover .content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
  visibility: visible;
}

.wg-brand img {
  height: 59px;
  -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-404 {
  background-image: url(../images/section/404.jpg);
  background-size: cover;
  min-height: 100vh;
}
.wg-404 .content {
  padding: 208px 0;
  text-align: center;
}
.wg-404 .content .title {
  margin-bottom: 56px;
  position: relative;
}
.wg-404 .content .title::before {
  position: absolute;
  content: "4";
  font-family: "Souvenir", sans-serif;
  font-weight: 700;
  top: 14px;
  left: 48%;
  transform: translateX(-330px);
  font-size: 250px;
  color: var(--Primary-color);
}
.wg-404 .content .title::after {
  position: absolute;
  content: "4";
  font-family: "Souvenir", sans-serif;
  top: 14px;
  right: calc(48% + 7px);
  font-weight: 700;
  transform: translateX(338px);
  font-size: 250px;
  color: var(--Primary-color);
}
.wg-404 .content .sub-title {
  font-size: 50px;
  font-weight: 700;
  font-family: "Souvenir", sans-serif;
  color: var(--Primary-color);
  margin-bottom: 17px;
  letter-spacing: 1px;
}
.wg-404 .content p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 41px;
  letter-spacing: 0.1px;
}
.wg-404 .content .tf-btn {
  margin: 0 auto;
}
.wg-404 .content .tf-btn:hover {
  color: var(--White);
}

.box-career {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--Primary-color);
  box-shadow: 0px 9px 32.2px 2.8px rgba(0, 0, 0, 0.05);
}
.box-career .content {
  text-align: center;
  border-bottom: 20px;
  padding: 109px 91px 71px;
}
.box-career .content .title {
  color: var(--White);
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 21px;
  letter-spacing: 0.7px;
}
.box-career .content p {
  margin-bottom: 43px;
}
.box-career .content .tf-btn {
  margin: 0 auto;
}
.box-career .image-warp img {
  height: 100%;
  object-fit: cover;
}
.box-career.spacing-2 .content {
  padding: 124px 91px 71px;
}
.box-career.spacing-2 .content p {
  margin-bottom: 0;
}

.tf-shop-control {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 51px 28px 54px;
  flex-wrap: wrap;
  gap: 10px;
}
.tf-shop-control .tf-btn {
  max-width: 100%;
  width: 232px;
}
.tf-shop-control .tf-btn span {
  width: 100%;
}
.tf-shop-control p {
  font-size: 17px;
}
.tf-shop-control .tf-dropdown-sort {
  cursor: pointer;
}
.tf-shop-control .tf-dropdown-sort .btn-select {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: var(--text);
  justify-content: space-between;
}
.tf-shop-control .tf-dropdown-sort .btn-select span {
  padding: 0px 32px;
}
.tf-shop-control .tf-dropdown-sort .select-item {
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--Primary-color);
  padding: 0 20px;
  line-height: 30px;
  width: 100%;
  border-left: 2px solid var(--White);
  margin-right: 5px;
  background-color: var(--Bg-7);
  -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-shop-control .tf-dropdown-sort .select-item::before {
  height: 100%;
  content: "";
  width: 6px;
  position: absolute;
  z-index: 2;
  left: 2px;
  top: 0;
  background-color: var(--Bg-7);
}
.tf-shop-control .tf-dropdown-sort .select-item.active, .tf-shop-control .tf-dropdown-sort .select-item:hover {
  background-color: var(--Border);
  border-left: 3px solid var(--Secondary-color);
}
.tf-shop-control .tf-dropdown-sort .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--Bg-7);
}

.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 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--White);
  border: 1.2px solid rgba(134, 134, 134, 0.12);
}
.progress-wrap::after {
  position: absolute;
  content: "\e923";
  font-family: "icomoon";
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: var(--Black);
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.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(--Black);
  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;
}

.tf-source-tab .tf-filter-item {
  animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.effec-icon .icon i,
.effec-icon .icon svg {
  transition: all 0.8s ease-in-out;
}
.effec-icon:hover .icon i,
.effec-icon:hover .icon svg {
  transform: rotateY(360deg);
}

.effect-scroll {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

/*------------ sections ---------------- */
.tf-spacing-1 {
  padding-top: 0;
  padding-bottom: 72px;
}

.tf-spacing-2 {
  padding-top: 170px;
  padding-bottom: 135px;
}

.tf-spacing-3 {
  padding-top: 99px;
  padding-bottom: 0px;
}

.tf-spacing-4 {
  padding-top: 164px;
  padding-bottom: 138px;
}

.tf-spacing-5 {
  padding-top: 169px;
  padding-bottom: 136px;
}

.tf-spacing-6 {
  padding-top: 173px;
  padding-bottom: 132px;
}

.tf-spacing-7 {
  padding-top: 130px;
  padding-bottom: 134px;
}

.tf-spacing-8 {
  padding-top: 82px;
  padding-bottom: 139px;
}

.tf-spacing-9 {
  padding-top: 123px;
  padding-bottom: 145px;
}

.tf-spacing-10 {
  padding-top: 170px;
  padding-bottom: 138px;
}

.tf-spacing-11 {
  padding-top: 137px;
  padding-bottom: 132px;
}

.tf-spacing-12 {
  padding-top: 70px;
  padding-bottom: 164px;
}

.tf-spacing-13 {
  padding-top: 173px;
  padding-bottom: 141px;
}

.tf-spacing-14 {
  padding-top: 106px;
  padding-bottom: 80px;
}

.tf-spacing-15 {
  padding-top: 173px;
}

.tf-spacing-16 {
  padding-top: 135px;
  padding-bottom: 135px;
}

.tf-spacing-17 {
  padding-top: 174px;
  padding-bottom: 115px;
}

/*main-content
-----------------------------------------------------------------*/
.main-content {
  padding-top: 135px;
  padding-bottom: 134px;
}
.main-content.home-page {
  padding-top: 0px !important;
  padding-bottom: 0 !important;
}
.main-content.page-blog-single {
  padding-bottom: 137px;
}
.main-content.page-history {
  background-color: var(--Bg-7);
  background-image: url(../images/item/history-page.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 200px;
}
.main-content.page-about {
  padding-top: 124px;
}
.main-content.page-portfolio {
  padding-top: 102px;
  padding-bottom: 109px;
}
.main-content.page-shop-detail {
  padding-bottom: 132px;
}
.main-content.page-contact {
  padding-top: 141px;
  padding-bottom: 0 !important;
}
.main-content.page-our-team {
  padding-top: 0 !important;
  padding-bottom: 136px;
}
.main-content.page-career {
  padding-top: 174px;
  padding-bottom: 0 !important;
}
.main-content.page-faq {
  padding-bottom: 137px;
}

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

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

.heading-section {
  text-align: center;
  position: relative;
}
.heading-section .title {
  font-weight: 700;
  color: var(--Primary-color);
  font-family: "Souvenir", sans-serif;
  margin-bottom: 11px;
  letter-spacing: 1px;
    margin-bottom: 90px;
}
.heading-section p {
  color: var(--Text-3);
  font-weight: 500;
}
.heading-section .item-top {
  position: absolute;
  max-width: 33px;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.heading-section .item-bot {
  position: absolute;
  max-width: 22px;
  bottom: -43px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@keyframes opacityhide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Page-title
-----------------------------------------------------------------*/
.page-title .wrap-page-title {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
}
.page-title .left {
  background-color: var(--Primary-color);
  padding: 313px 30px 40px 295px;
  position: relative;
}
.page-title .left .item {
  position: absolute;
  left: -33px;
  bottom: -46px;
  transform: rotate(10deg);
}
.page-title .left::after {
  position: absolute;
  content: "";
  background-image: url(../images/item/item-page-title.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  width: 54px;
  right: -31px;
  top: 0;
}
.page-title .left .content {
  margin-bottom: 126px;
  position: relative;
  z-index: 2;
}
.page-title .left .content .title {
  font-weight: 700;
  color: var(--White);
  margin-bottom: 17px;
}
.page-title .left .content p {
  color: var(--Text-1);
  letter-spacing: 0.1px;
}
.page-title .breadcrumbs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 2;
}
.page-title .breadcrumbs a {
  color: var(--Text-2);
}
.page-title .breadcrumbs a:hover {
  color: var(--Secondary-color);
}
.page-title .breadcrumbs li {
  color: var(--Text-2);
  line-height: 26px;
  position: relative;
}
.page-title .breadcrumbs li:not(:first-child)::after {
  content: "\e966";
  position: absolute;
  font-size: 14px;
  font-family: "icomoon";
  left: -23px;
}
.page-title .breadcrumbs li:last-child {
  color: var(--White);
}
.page-title .breadcrumbs li:last-child::after {
  color: var(--White);
}
.page-title .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title.home-page-title .wrap-page-title {
  position: relative;
}
.page-title.home-page-title .wrap-page-title .item-cream {
  left: 50%;
  bottom: 0;
  bottom: -30%;
  transform: translateX(-50%);
  position: absolute;
}
.page-title.home-page-title .wrap-page-title .item-cream.cream-1 {
  bottom: -22%;
}
.page-title.home-page-title .left {
  padding: 287px 30px 135px 293px;
}
.page-title.home-page-title .left::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/item/item-home-page.png);
}
.page-title.home-page-title .left .content {
  position: relative;
  margin-bottom: -20px;
}
.page-title.home-page-title .left .content .title {
  margin-bottom: 21px;
}
.page-title.home-page-title .left .content .item-arrow {
  position: relative;
  left: 285px;
  bottom: -94px;
}
.page-title.home-page-title .left .tf-btn span {
  padding: 0px 31px;
}
.page-title.page-history {
  overflow: unset;
  position: relative;
}
.page-title.page-history .cycle-item {
  left: 46%;
  bottom: -75px;
  animation: rotate360 7s infinite linear;
}
.page-title.page-history .cycle-item .h2 {
  transform: rotate(-14deg) translate3d(0px, 0px, 0);
}

/* section-subcribe 
-----------------------------------------------------------------*/
.section-subcribe {
  background-image: url(../images/section/section-subcribe.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 64px 70px 48px;
  border-radius: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-subcribe .wrap-content {
  max-width: 544px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 29px;
}
.section-subcribe .wrap-content .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  width: 81px;
  background: var(--Bg-main-2);
  border-radius: 999px;
  flex: none;
  font-size: 37px;
  color: var(--White);
  transform: rotate(327deg);
}
.section-subcribe .wrap-content .icon i {
  animation: ring 0.6s infinite;
}
.section-subcribe .wrap-content .content .title {
  color: var(--White);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 35px;
  letter-spacing: 0.6px;
}
.section-subcribe .wrap-content .content p {
  color: var(--White);
}
.section-subcribe .form-send-email fieldset {
  width: 435px;
}
.section-subcribe .form-send-email .button-submit button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 999px;
  background-color: var(--Secondary-color);
}
.section-subcribe .form-send-email .button-submit i {
  font-size: 20px;
  color: var(--Primary);
}

/* section-blog-grid
-----------------------------------------------------------------*/
.section-blog-grid .grid-layout-3 {
  gap: 68px 30px;
  margin-bottom: 69px;
}

/* section-blog-single
-----------------------------------------------------------------*/
.section-blog-single .meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  padding: 10px 0;
  gap: 15px 32px;
  background-color: var(--Secondary-color);
  flex-wrap: wrap;
  max-width: 510px;
  width: 100%;
  border-radius: 999px;
}
.section-blog-single .meta li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
}
.section-blog-single .meta li p {
  color: var(--White);
}
.section-blog-single .meta li p a {
  color: var(--White);
}
.section-blog-single .meta li p a:hover {
  color: var(--Primary-color);
}
.section-blog-single .meta li:not(:first-child) {
  position: relative;
}
.section-blog-single .meta li:not(:first-child)::after {
  content: "\e966";
  position: absolute;
  font-size: 15px;
  font-family: "icomoon";
  color: var(--White);
  left: -25px;
}
.section-blog-single .title-main {
  margin-bottom: 36px;
  text-align: center;
  font-weight: 700;
  color: var(--Primary-color);
}
.section-blog-single .main-post {
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 43px;
}
.section-blog-single h4 {
  margin-bottom: 13px;
  letter-spacing: -0.7px;
  color: var(--Primary-color);
}
.section-blog-single h4.style-2 {
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-blog-single .widget-video {
  margin-bottom: 41px;
}
.section-blog-single .widget-video img {
  border-radius: 20px;
}
.section-blog-single .paragraph {
  margin-bottom: 23px;
  letter-spacing: -0.2px;
}
.section-blog-single .paragraph.spacing-1 {
  margin-bottom: 15px;
}
.section-blog-single .paragraph.spacing-2 {
  letter-spacing: 0.1px;
  margin-bottom: 33px;
}
.section-blog-single .paragraph.spacing-3 {
  margin-bottom: 41px;
}
.section-blog-single .bot {
  padding: 17px 36px 17px;
  margin-bottom: 66px;
  border-radius: 999px;
  background-color: var(--Primary-color);
  gap: 20px;
}
.section-blog-single .bot span {
  font-size: 17px;
  color: var(--White);
  font-weight: 500;
  font-family: "Souvenir", sans-serif;
  letter-spacing: 0.9px;
}
.section-blog-single .bot .tags i {
  font-size: 14px;
  color: var(--Primary);
}
.section-blog-single .bot .tags a {
  letter-spacing: 0.6px;
  color: var(--White);
}
.section-blog-single .bot .tags a:hover {
  color: var(--Secondary-color);
}
.section-blog-single .bot .wg-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 3px;
}
.section-blog-single .bot .wg-social a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  color: var(--White);
  border-radius: 999px;
  -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: 13px;
}
.section-blog-single .bot .wg-social a:hover, .section-blog-single .bot .wg-social a.active {
  background-color: var(--Secondary-color);
}
.section-blog-single .comment {
  padding-bottom: 37px;
  border-bottom: 1px solid var(--Border);
  margin-bottom: 65px;
}
.section-blog-single .comment .title {
  margin-bottom: 30px;
  color: var(--Primary-color);
  letter-spacing: 0.5px;
}
.section-blog-single .comment .wg-commnent .wrap-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-blog-single .comment .wg-commnent .wrap-author .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 21px;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .image {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid #c3a27c;
  overflow: hidden;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .image img {
  height: 100%;
  object-fit: cover;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .content .name {
  letter-spacing: 0.8px;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .content .name a {
  color: var(--Primary-color);
  font-weight: 600;
  letter-spacing: -0.5px;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .content .name:hover a {
  color: var(--Secondary-color);
}
.section-blog-single .comment .wg-commnent .wrap-author .author .content .time {
  letter-spacing: -0.8px;
}
.section-blog-single .comment .wg-commnent .wrap-author .author .content .decs {
  letter-spacing: 0.1px;
}
.section-blog-single .comment .wg-commnent .wrap-author .tf-btn {
  text-transform: none;
  gap: 3px;
  padding: 10px 19px 10px 18px;
  color: var(--White);
  font-size: 13px;
  font-weight: 400;
  border-radius: 5px;
}
.section-blog-single .comment .wg-commnent .wrap-author .tf-btn:hover {
  background-color: var(--Primary-color);
}
.section-blog-single .box-send .title {
  margin-bottom: 27px;
  color: var(--Primary-color);
  letter-spacing: 0.9px;
}
.section-blog-single .box-send p {
  margin-bottom: 26px;
  letter-spacing: 0.2px;
  color: var(--Primary-color);
}
.section-blog-single .box-send .form-add-review .cols {
  margin-bottom: 24px;
}
.section-blog-single .box-send .form-add-review .tf-btn {
  margin: 51px auto 0;
}
.section-blog-single .box-send .form-add-review .tf-btn span {
  padding: 0 30px;
}

/*section-deliver
----------------------------------------------------------------*/
.section-deliver {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.section-deliver .image-wrap img {
/*
  width: 100%;
  height: 100%;
*/
/*  object-fit: cover;*/
}
.section-deliver > .content {
  padding: 124px 30px 135px 84px;
  background-image: url(../images/section/section-service.jpg);
  background-size: cover;
}
.section-deliver > .content > p {
  max-width: 660px;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.section-deliver > .content > .title {
  font-weight: 700;
  color: var(--White);
  font-family: "Souvenir", sans-serif;
  margin-bottom: 24px;
  letter-spacing: 0.9px;
}
.section-deliver .wrap-service {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 45px;
  margin-bottom: 47px;
}
.section-deliver .wrap-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 19px;
}
.section-deliver .wrap-button .btn-left span {
  padding: 0 31px;
}
.section-deliver .wrap-button .btn-right span {
  padding: 0 31px;
}

/*section-info
------------------------------------------------------------------*/
.section-info .grid-layout-3 {
  gap: 30px;
}

/*section-portfolio
------------------------------------------------------------------*/
.section-portfolio {
  padding-bottom: 29px;
}
.section-portfolio .grid-layout-4 {
  gap: 29px;
  padding: 0 15px;
}
.section-portfolio .grid-layout-3 {
  gap: 29px 30px;
  margin-bottom: 76px;
}
.section-portfolio.page-portfolio .portfolio-item .content {
  padding: 24px 49px 27px;
}
.section-portfolio.page-portfolio .portfolio-item:hover .content {
  bottom: 23px;
}
.section-portfolio.page-portfolio .tf-btn {
  margin: 0 auto;
}
.section-portfolio .showmore-item .fl-item {
  display: none;
}
.section-portfolio .showmore-item1 .fl-item1 {
  display: none;
}
.section-portfolio .showmore-item2 .fl-item2 {
  display: none;
}
.section-portfolio .showmore-item3 .fl-item3 {
  display: none;
}
.section-portfolio .showmore-item4 .fl-item4 {
  display: none;
}
.section-portfolio .showmore-item5 .fl-item5 {
  display: none;
}
.section-portfolio .showmore-item6 .fl-item6 {
  display: none;
}

/*section-our-team
------------------------------------------------------------------------*/
.section-our-team .image-wrap {
  border-radius: 30px;
  overflow: hidden;
  margin-left: auto;
  max-width: 500px;
}

/*section-our-team
------------------------------------------------------------------------*/
.section-history {
  background-color: var(--Bg-7);
  padding: 172px 0 135px;
  position: relative;
}
.section-history .bg-section-history {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
}
.section-history .bg-section-history img {
  width: 100%;
  height: 509px;
  object-fit: cover;
}
.section-history .item-history {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.section-history .item-history img {
  width: 100%;
  object-fit: cover;
}
.section-history .wrap-wg-quote {
  margin-left: 69px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 20px;
}

/*section-history
------------------------------------------------------------------------*/
.history-main .heading-section {
  margin-bottom: 114px;
}

/*section-list-item
------------------------------------------------------------------------*/
.section-list-team .heading-section {
  margin-bottom: 117px;
}
.section-list-team .grid-layout-3 {
  gap: 27px 30px;
}

/*section-founder
------------------------------------------------------------------------*/
.section-founder {
  background-color: var(--Bg-7);
  background-image: url(../images/section/section-founder-item.png);
  background-size: cover;
}
.section-founder .wrap-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 71px;
}
.section-founder .image-wrap {
  max-width: 497px;
  flex: none;
}
.section-founder .content {
  padding-top: 19px;
}
.section-founder .content .title {
  font-weight: 600;
  color: var(--Primary-color);
  letter-spacing: -1.2px;
  margin-bottom: 3px;
}
.section-founder .content .year {
  font-size: 20px;
  color: var(--Text-3);
  line-height: 40px;
  letter-spacing: 0.4px;
  margin-bottom: 21px;
}
.section-founder .content .quote {
  font-size: 20px;
  line-height: 35px;
  color: var(--Primary-color);
  margin-bottom: 18px;
  position: relative;
  font-weight: 600;
  letter-spacing: -0.6px;
}
.section-founder .content .quote::after {
  content: "\e91e";
  color: var(--Secondary-color);
  font-size: 33px;
  position: absolute;
  font-family: "icomoon";
  top: -47px;
  right: -17px;
}
.section-founder .content .desc {
  margin-bottom: 44px;
  letter-spacing: 0.2px;
}

/*section-category-product
------------------------------------------------------------------------*/
.section-category-product {
  background-color: var(--Bg-7);
  position: relative;
}
.section-category-product .heading-section {
  margin-bottom: 116px;
  position: relative;
  z-index: 1;
}
.section-category-product .grid-layout-4 {
  gap: 71px 30px;
  position: relative;
  z-index: 1;
}
.section-category-product::after {
  position: absolute;
  content: "";
  background-image: url(../images/item/section-category-produc.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*section-post
------------------------------------------------------------------------*/
.section-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.section-post .left {
  max-width: 675px;
  flex-grow: 0;
  width: 100%;
}
.section-post .left img {
  height: 100%;
  object-fit: cover;
}
.section-post .center {
  background-color: var(--Primary-color);
  width: 100%;
}
.section-post .center .content {
  padding: 110px 97px 113px;
}
.section-post .center .title {
  color: var(--White);
  font-weight: 700;
  margin-bottom: 27px;
  letter-spacing: 1.1px;
}
.section-post .center p {
  margin-bottom: 46px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.section-post .right {
  text-align: center;
  max-width: 475px;
  width: 100%;
  background-image: url(../images/section/section-subcribe.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section-post .right .content {
  padding: 66px 65px 70px;
}
.section-post .right .content h4 {
  margin-bottom: 38px;
  font-weight: 700;
  color: var(--White);
  letter-spacing: 0.5px;
  line-height: 35px;
}
.section-post .right .content .tf-btn-default {
  justify-content: center;
}
.section-post .right .content .tf-btn-default span {
  letter-spacing: 1px;
}
.section-post .right .content .tf-btn-default i {
  font-size: 19px;
}
.section-post .right .cycle-item {
  top: 54px;
  left: -60px;
}

/*section-post
------------------------------------------------------------------------*/
.section-box-icon {
  position: relative;
}
.section-box-icon::after {
  content: "";
  position: absolute;
/*  background-image: url(../images/section/section-icon-box.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
/*  height: 575px;*/
  top: 0;
  left: 0;
}
.section-box-icon .wrap-icon-box {
  position: relative;
  z-index: 1;
}
.section-box-icon.page-about::after {
  display: none;
}
.section-box-icon.page-about .wrap-icon-box {
  margin-bottom: 70px;
}
.section-box-icon.page-about .wrap-icon-box .icons-box::before {
  background-color: var(--White);
}
.section-box-icon.page-about .tf-btn {
  margin: 0 auto;
}

/*section-video
------------------------------------------------------------------------*/
.section-video .widget-video {
  max-width: 1737px;
  height: 544px;
  margin: 0 auto;
  background-image: url(../images/section/section-video.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
.section-video .widget-video .popup-youtube {
  opacity: 1;
  visibility: visible;
  height: 116px;
  width: 116px;
}
.section-video .widget-video .popup-youtube i {
  font-size: 38px;
}

/*section-top-seller
------------------------------------------------------------------------*/
.section-top-seller .heading-section {
  margin-bottom: 114px;
}
.section-top-seller .tf-btn {
  margin: 69px auto 0;
}
.section-top-seller.style-btn-slide .button {
  top: calc(56% + 6px);
}
.section-top-seller.style-btn-slide .swiper-button-next {
  right: -90px;
}
.section-top-seller.style-btn-slide .swiper-button-prev {
  left: -98px;
}

/*section-news
------------------------------------------------------------------------*/
.section-news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.section-news .left {
  position: relative;
}
.section-news .left::after {
  position: absolute;
  content: "";
  background: rgba(9, 7, 0, 0.79);
  background: linear-gradient(90deg, rgba(9, 7, 0, 0.79) 0%, rgba(14, 1, 1, 0.1) 80%);
  background: -webkit-linear-gradient(90deg, rgba(9, 7, 0, 0.79) 0%, rgba(14, 1, 1, 0.1) 80%);
  background: -moz-linear-gradient(90deg, rgba(9, 7, 0, 0.79) 0%, rgba(14, 1, 1, 0.1) 80%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section-news .left .image-wrap {
  height: 100%;
}
.section-news .left .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.section-news .left .content {
  position: absolute;
  bottom: 69px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  width: 100%;
  padding: 0 86px;
  flex-wrap: wrap;
  gap: 30px;
}
.section-news .left .content .title {
  margin-bottom: 12px;
  letter-spacing: 0.9px;
}
.section-news .left .content .btn-redirect {
  margin-top: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--White);
  background-color: var(--color-1);
  -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;
  height: 100px;
  width: 100px;
  font-size: 22px;
  margin-bottom: 7px;
}
.section-news .left .content .btn-redirect:hover {
  background-color: var(--Primary-color);
  transform: scale(1.3);
}
.section-news .right .wrap-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.section-news .right .wrap-content.style-2 .content {
  background-image: url(../images/section/section-top-seller-3.1.jpg);
}
.section-news .right .image-wrap {
  height: 100%;
}
.section-news .right .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-news .right .content {
  background-image: url(../images/section/section-top-seller-2.1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px 46px 15px 54px;
}
.section-news .right .content span {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.section-news .right .content h3 {
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.section-news .title a {
  color: var(--White);
}
.section-news .title:hover a {
  color: var(--color-4);
}

/*section-testimonials
------------------------------------------------------------------------*/
.section-testimonial {
  background-color: var(--Bg-7);
  background-image: url(../images/section/section-testimonials.png);
  background-size: cover;
  padding-top: 169px;
  padding-bottom: 136px;
}
.section-testimonial .heading-section {
  margin-bottom: 116px;
}
.section-testimonial .heading-section a {
  position: relative;
  font-weight: 600;
}
.section-testimonial .heading-section a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #9697ac;
  bottom: 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;
}
.section-testimonial .heading-section a:hover::before {
  background-color: var(--Secondary-color);
}
.section-testimonial .swiper-container.has-boxshadow {
  padding: 43px 30px 0 30px;
  margin: -43px -30px 0 -30px;
}
.section-testimonial .swiper-slide {
  height: auto;
}
.section-testimonial.style-btn-slide .button {
  top: calc(69% + 4px);
}
.section-testimonial.style-btn-slide .swiper-button-next {
  right: -89px;
}
.section-testimonial.style-btn-slide .swiper-button-prev {
  left: -98px;
}
.section-testimonial.page-about {
  padding-top: 170px;
  padding-bottom: 138px;
}

/*section-lastest-news
------------------------------------------------------------------------*/
.section-lastest-news .heading-section {
  margin-bottom: 115px;
}
.section-lastest-news.style-btn-slide .button {
  top: calc(62% + 4px);
}
.section-lastest-news.style-btn-slide .swiper-button-next {
  right: -89px;
}
.section-lastest-news.style-btn-slide .swiper-button-prev {
  left: -98px;
}

/*section-welcome
------------------------------------------------------------------------*/
.section-welcome {
  position: relative;
}
.section-welcome .title {
  color: var(--Primary-color);
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.9px;
}
.section-welcome P {
  text-align: center;
  padding: 0 28px;
  letter-spacing: 0.1px;
}
.section-welcome P.desc-1 {
  margin-bottom: 17px;
}
.section-welcome .item {
  position: absolute;
}
.section-welcome .item.cream-1 {
  top: 75px;
  left: calc(12% + 14px);
}
.section-welcome .item.cream-2 {
  top: 75px;
  right: calc(11% + 8px);
}

/*section-related-product
------------------------------------------------------------------------*/
.section-related-product .heading-section {
  margin-bottom: 118px;
}
.section-related-product.style-btn-slide .button {
  top: calc(66% + 8px);
}
.section-related-product.style-btn-slide .swiper-button-next {
  right: -89px;
}
.section-related-product.style-btn-slide .swiper-button-prev {
  left: -98px;
}

/*section-drop-line
------------------------------------------------------------------------*/
.section-drop-line {
  position: relative;
}
.section-drop-line .heading-section {
  margin-bottom: 115px;
}
.section-drop-line .form-send-message .cols {
  margin-bottom: 23px;
}
.section-drop-line .form-send-message .tf-btn {
  margin: 51px auto 0;
}
.section-drop-line .item {
  position: absolute;
}
.section-drop-line .cream-1 {
  left: -73px;
  top: 103px;
  transform: rotate(17deg);
}
.section-drop-line .cream-2 {
  top: 113px;
  right: -91px;
/*  transform: rotate(-15deg) rotateY(180deg);*/
}

/*section-our-mission
------------------------------------------------------------------------*/
.section-our-mission .heading-section {
  margin-bottom: 116px;
}
.section-our-mission .heading-section .title {
  margin-bottom: 15px;
}
.section-our-mission .grid-layout-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 28px;
}
.section-our-mission .icons-box .content {
  padding: 0 73px;
}
.section-our-mission .grid-layout-3 {
  gap: 30px;
}
.section-our-mission .grid-layout-3 .icons-box {
  padding: 53px 15px 21px;
}
.section-our-mission .grid-layout-3 .icons-box .content {
  padding: 0 54px;
}

/*section-box-career
------------------------------------------------------------------------*/
.section-box-career .wrap-box-career {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

/*section-benefits
------------------------------------------------------------------------*/
.section-benefits .heading-section {
  margin-bottom: 117px;
}
.section-benefits .heading-section title {
  margin-bottom: 16px;
}
.section-benefits .wrap-icon-box .icons-box::before {
  background-color: var(--White) !important;
}
.section-benefits .wrap-icon-box .icons-box .icon {
  margin-bottom: 33px;
}

/*section-join 
------------------------------------------------------------------------*/
.section-join {
  padding: 122px 0 138px;
  background-image: url(../images/section/section-join.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
}
.section-join::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(3, 5, 21, 0.451);
  top: 0;
  left: 0;
}
.section-join .content {
  position: relative;
  z-index: 1;
}
.section-join .content h1 {
  text-align: center;
  margin-bottom: 40px;
}
.section-join .content .tf-btn {
  margin: 0 auto;
}

/*section-commitment 
------------------------------------------------------------------------*/
.section-commitment {
  background-image: url(../images/section/section-commitment.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 75px 0;
}
.section-commitment .content {
  border-radius: 30px;
  padding: 67px 83px 72px;
  background-color: var(--Bg-7);
  max-width: 569px;
  margin-left: 377px;
  text-align: center;
}
.section-commitment .content .title {
  margin-bottom: 26px;
  letter-spacing: 0.7px;
}
.section-commitment .content p {
  letter-spacing: 0.1px;
}

/*section-faq
------------------------------------------------------------------------*/
.section-faq .widget-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 110px;
}
.section-faq .widget-tabs .left .title {
  margin-top: -10px;
  letter-spacing: 0.8px;
  margin-bottom: 31px;
}
.section-faq .widget-tabs .widget-menu-tab {
  margin-bottom: 0;
}
.section-faq .widget-tabs .widget-menu-tab .title {
  letter-spacing: 0.8px;
  margin-bottom: 9px;
}
.section-faq .widget-content-tab {
  flex-grow: 1;
}

/*section-our-product
------------------------------------------------------------------------*/
.section-our-product .swiper-container {
  padding: 34px 126px;
  background-image: url(../images/section/section-subcribe.jpg);
  border-radius: 50px;
}
.section-our-product .widget-content-tab {
  padding: 0 28px;
}
.section-our-product .grid-layout-3 {
  gap: 74px 30px;
}
.section-our-product .style-btn-slide .button {
  top: 48px;
}
.section-our-product .style-btn-slide .swiper-button-next {
  right: -63px;
}
.section-our-product .style-btn-slide .swiper-button-prev {
  left: -72px;
}

.portfolio-wrap {
  display: flex;
  flex-wrap: wrap;
}

#loading {
  background-color: var(--Bg-7);
  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;
}
#loading #loading-center .loader-container .loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/*-------------- Responsive ----------------- */
@media (min-width: 1700px) {
  .section-deliver > .content {
    padding-right: 135px;
  }
}
@media (max-width: 1750px) {
  .wg-welcome {
    left: unset;
    transform: unset;
    right: 0;
  }
  .portfolio-item .content {
    padding: 24px 20px 27px;
  }
}
@media (max-width: 1550px) {
  .page-title.home-page-title .left {
    padding-bottom: 259px;
  }
  .page-title br {
    display: none;
  }
  .page-title .wrap-page-title {
    grid-template-columns: 1.7fr 1.06fr;
  }
  .page-title .wrap-page-title .left {
    padding-left: 30px;
    padding-bottom: 124px;
  }
  .page-title-home .swiper-button-prev {
    left: 30px;
    top: unset;
    bottom: 170px;
  }
  .page-title-home .swiper-button-next {
    left: 100px;
    bottom: 170px;
    top: unset;
  }
}
@media (max-width: 1440px) {
  #header-main .main-menu {
    padding-right: 15px;
  }
  .section-welcome .item.cream-1 {
    left: 40px;
  }
  .section-welcome .item.cream-2 {
    right: 40px;
  }
  .section-post .center .content {
    padding: 110px 40px 113px;
  }
  .section-post .right .content {
    padding: 66px 40px 70px;
  }
  .box-info .icon {
    width: 91px;
    height: 80px;
    top: 13px;
  }
  .section-news .left .content {
    bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .box-history-item .cycle-item {
    top: -83px;
    left: -9px;
  }
}
@media (max-width: 1300px) {
  .section-deliver > .content {
    padding-left: 50px;
  }
  .section-deliver .wrap-service {
    flex-wrap: wrap;
  }
  .section-deliver .wrap-button {
    flex-wrap: wrap;
  }
}
@media (max-width: 1260px) {
  #header-main .header-inner-wrap {
    padding-left: 30px;
  }
  #header-main .header-logo {
    margin-right: 15px;
  }
}
@media (max-width: 1200px) {
  .history-box .content {
    padding: 40px 15px !important;
  }
  .section-post .center .conmtent {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-post .right .content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-news .left .content {
    padding: 0 40px;
  }
  .section-news .right .content {
    padding: 20px;
  }
  .section-post .left {
    display: none;
  }
  .box-career .content {
    padding: 70px 15px !important;
  }
}
@media (max-width: 1120px) {
  .box-history-item .content {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  #header-main .navigation {
    gap: 20px;
  }
  #header-main .header-right {
    gap: 10px;
  }
  .box-info .wrap-content {
    padding: 41px 15px 47px;
  }
}
@media (max-width: 1024px) {
  .section-our-product .swiper-container {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  br {
    display: none;
  }
  .grid-layout-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  #header-main .main-menu {
    display: none;
  }
  .mobile-button {
    display: block;
  }
  #footer .footer-menu-list {
    margin-bottom: 30px;
  }
  #footer .footer-body {
    padding-bottom: 34px;
  }
  .page-title .left {
    padding-top: 275px;
  }
  .page-title .left .content {
    margin-bottom: 50px;
  }
  .page-title .left .content .title {
    font-size: 55px;
    line-height: 65px;
  }
  .page-title.home-page-title .wrap-page-title .item-cream {
    display: none;
  }
  .page-title.home-page-title .wrap-page-title .left .item-arrow {
    display: none;
  }
  .page-title.home-page-title .wrap-page-title .tf-btn span {
    padding: 0px 25px;
  }
  .section-subcribe {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-subcribe .wrap-content {
    margin-bottom: 30px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .section-subcribe .form-send-email {
    width: 100%;
  }
  .section-subcribe .form-send-email fieldset {
    width: 100%;
  }
  .section-blog-grid .grid-layout-3 {
    gap: 30px 30px;
  }
  .wrap-icon-box {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 30px 0;
  }
  .wrap-icon-box .icons-box:not(:nth-child(odd))::after, .wrap-icon-box .icons-box:not(:nth-child(odd))::before {
    display: none;
  }
  .wrap-icon-box .icons-box::after {
    right: 0 !important;
  }
  .wrap-icon-box .icons-box::before {
    right: -10px !important;
  }
  .section-deliver {
    flex-wrap: wrap;
  }
  .section-deliver > .content {
    padding: 40px;
  }
  .section-history .wrap-wg-quote {
    margin-left: 0;
  }
  .section-post .center .content {
    padding: 40px 20px;
  }
  .section-post .center .title {
    font-size: 40px;
    line-height: 50px;
  }
  .section-post .right .content {
    padding: 40px 20px;
  }
  .section-post .right .cycle-item {
    top: 14px;
    left: -23px;
  }
  .section-welcome p {
    padding: 0;
  }
  .section-welcome .item {
    display: none;
  }
  .section-drop-line .item {
    display: none;
  }
  .section-founder .wrap-content {
    gap: 30px;
  }
  .section-founder .image-wrap {
    max-width: 360px;
  }
  .section-our-mission .icons-box .content {
    padding: 0 !important;
  }
  .section-our-mission .grid-layout-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-commitment {
    background-attachment: unset;
  }
  .section-commitment .content {
    margin: 0 auto;
    padding: 67px 15px 72px;
  }
  .tf-accordion .accordion-header .title i {
    margin-right: 20px;
  }
  .section-faq .widget-tabs {
    gap: 50px;
  }
  .section-info .grid-layout-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .box-info .icon {
    display: none;
  }
  .tf-shop-control {
    padding: 30px 0;
  }
  .section-our-product .widget-content-tab {
    padding: 0;
  }
  .section-portfolio .grid-layout-4 {
    padding: 0;
  }
  .section-news .left .content .title {
    font-size: 40px;
    line-height: 50px;
  }
  .section-news .left .content .btn-redirect {
    height: 70px;
    width: 70px;
  }
  .section-news .right .content .title {
    font-size: 25px;
    line-height: 35px;
  }
  .section-box-icon::after {
    background-color: var(--Bg-7);
    height: 100%;
    background-image: unset;
  }
  .box-team {
    padding: 0;
  }
  .box-team .icon {
    margin-bottom: 0;
  }
  .box-team .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .box-team p {
    padding: 0;
  }
  .box-team .sub {
    margin-bottom: 25px;
  }
  .section-founder .content .quote::after {
    right: 0;
  }
  .section-founder .content .year {
    margin-bottom: 0;
  }
  .section-founder .content .quote {
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 27px;
  }
  .section-founder .content .desc {
    margin-bottom: 20px;
  }
  .wg-block-quote {
    padding: 30px 15px;
  }
  .map-box {
    height: 60vh;
  }
  .section-join {
    background-attachment: unset;
  }
  .section-join .content {
    padding: 0 15px;
  }
}
@media (max-width: 935px) {
  #footer .footer-top .wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
    justify-content: center;
  }
  #footer .footer-top .info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 815px) {
  #footer .footer-bottom .wrapper {
    justify-content: center;
  }
  #footer .footer-bottom .content-right {
    flex-wrap: wrap;
  }
}
@media (max-width: 787px) {
  .widget-tabs .widget-menu-tab:not(.tab-filter) {
    justify-content: unset;
    padding-bottom: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 45px !important;
    line-height: 50px !important;
  }
  h2 {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  h3 {
    font-size: 25px !important;
    line-height: 35px !important;
  }
  .text-1 {
    font-size: 35px !important;
    line-height: 45px !important;
  }
  .main-content {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .main-content.home-page {
    padding: 0 !important;
  }
  .tf-spacing-1 {
    padding-bottom: 40px;
  }
  .tf-top-bar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .tf-spacing-1,
  .tf-spacing-2,
  .tf-spacing-3,
  .tf-spacing-4,
  .tf-spacing-5,
  .tf-spacing-6,
  .tf-spacing-7,
  .tf-spacing-8,
  .tf-spacing-9,
  .tf-spacing-10,
  .tf-spacing-11,
  .tf-spacing-12,
  .tf-spacing-13,
  .tf-spacing-14,
  .tf-spacing-15,
  .tf-spacing-16,
  .tf-spacing-17 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .heading-section {
    margin-top: 13px !important;
    margin-bottom: 50px !important;
  }
  .heading-section .title {
    margin-bottom: 0;
  }
  .heading-section .item-top {
    top: -14px;
  }
  .heading-section .item-bot {
    bottom: -32px;
  }
  #header-main .header-inner-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  #footer .footer-body {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .page-title .wrap-page-title .left {
    padding-top: 195px;
    padding-left: 15px;
    padding-bottom: 70px;
  }
  .page-title.page-history .cycle-item {
    left: 71%;
    bottom: -58px;
  }
  .page-title.home-page-title .left {
    padding-top: 195px;
    padding-bottom: 155px;
  }
  .page-title.home-page-title .left .content {
    margin-bottom: 30px;
  }
  .page-title-home .swiper-button-prev {
    left: 30px;
    top: unset;
    bottom: 70px;
  }
  .page-title-home .swiper-button-next {
   left: 60px;
        bottom: 30px;
    top: unset;
  }
  .cycle-item {
    height: 100px;
    width: 100px;
  }
  .cycle-item .h2 {
    height: 100px;
    width: 100px;
    font-size: 19px;
    line-height: 25px;
  }
  .article-blog-item .image-wrap {
    margin-bottom: 10px;
  }
  .article-blog-item .content .meta,
  .article-blog-item .content .title {
    margin-bottom: 0px;
  }
  .article-blog-item .content .text {
    margin-bottom: 10px;
  }
  .section-subcribe {
    padding: 30px;
  }
  .section-blog-single .comment {
    margin-bottom: 40px;
  }
  .section-deliver {
    grid-template-columns: 1fr;
  }
  .section-deliver > .content {
    padding: 70px 15px 70px;
  }
  .section-history .wrap-wg-quote {
    margin-left: 0;
    margin-top: 15px;
    max-width: 100%;
  }
  .history-box .content .year {
    margin-bottom: 4px;
  }
  .history-box .content .title,
  .history-box .content .paragraph {
    margin-bottom: 15px;
  }
  .section-post {
    flex-wrap: wrap;
  }
  .section-post .left {
    max-width: 100%;
  }
  .section-post .left img {
    width: 100%;
  }
  .section-post .center .content {
    padding: 70px 20px;
  }
  .section-post .center .title {
    font-size: 40px;
    line-height: 50px;
  }
  .section-post .right {
    max-width: 100%;
  }
  .section-post .right img {
    width: 100%;
  }
  .section-post .right .content {
    padding: 70px 15px;
  }
  .section-post .right .cycle-item {
    left: 15px;
    top: 15px;
    height: 110px;
    width: 110px;
  }
  .section-post .right .cycle-item .h2 {
    height: 110px;
    width: 110px;
    font-size: 25px;
    line-height: 35px;
  }
  .section-news {
    grid-template-columns: 1fr;
  }
  .section-news .left .content .btn-redirect {
    height: 70px;
    width: 70px;
    font-size: 18px;
  }
  .section-news .right .content {
    padding: 30px 15px;
  }
  .section-news .right .content span {
    margin-bottom: 8px;
  }
  .section-news .right .content h3 {
    margin-bottom: 4px;
  }
  .section-welcome .title {
    margin-bottom: 5px;
  }
  .section-welcome p.desc-1 {
    margin-bottom: 7px;
  }
  .section-history {
    padding: 70px 0 70px;
  }
  .section-history .wg-quote .bot {
    justify-content: space-between;
  }
  .section-history .item-history img {
    height: 547px;
    object-fit: cover;
  }
  .box-history-item {
    padding: 40px 15px 29px;
  }
  .box-history-item .content {
    padding: 0;
  }
  .box-history-item .content .title {
    margin-bottom: 10px;
  }
  .box-history-item .content p {
    margin-bottom: 23px;
  }
  .box-history-item .cycle-item {
    top: -62px;
    left: -8px;
  }
  .section-our-team .image-wrap {
    max-width: 100%;
  }
  .box-team {
    padding-top: 0;
    margin-bottom: 70px;
  }
  .box-team .icon {
    margin-bottom: 10px;
  }
  .box-team .title {
    margin-bottom: 11px;
  }
  .box-team .sub {
    margin-bottom: 20px;
  }
  .section-drop-line .form-send-message .cols {
    flex-wrap: wrap;
  }
  .section-founder .image-wrap {
    max-width: 270px;
  }
  .section-founder .content .title {
    font-size: 30px;
    line-height: 40px;
  }
  .section-founder .content .year {
    margin-bottom: 12px;
  }
  .section-founder .content .quote {
    margin-bottom: 10px;
  }
  .section-founder .content .desc {
    margin-bottom: 22px;
  }
  .section-our-mission .grid-layout-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .tf-accordion .body-text {
    padding: 15px 0 10px 20px;
  }
  .section-info .grid-layout-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .section-info .box-info .icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    bottom: 25px;
    top: unset;
  }
  .section-our-product .grid-layout-3 {
    gap: 30px;
  }
  .section-top-seller .tf-btn {
    margin-top: 30px;
  }
  .section-video .widget-video .popup-youtube {
    height: 100px;
    width: 100px;
  }
  .section-testimonial {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-testimonial.page-about {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-category-product {
    padding-top: 70px;
  }
  .section-box-icon.page-about .wrap-icon-box {
    margin-bottom: 30px;
  }
  .section-deliver > .content > p {
    margin-bottom: 30px;
  }
  .section-deliver > .content .wrap-service {
    gap: 30px;
  }
  .section-portfolio {
    padding-bottom: 70px;
  }
  .section-portfolio.page-portfolio {
    padding-bottom: 0;
  }
  .section-portfolio.page-portfolio .grid-layout-3 {
    margin-bottom: 30px;
  }
  .section-join {
    padding: 70px 15px;
  }
  .history-box .content {
    padding: 70px 15px !important;
  }
}
@media (max-width: 700px) {
  .wg-404 .content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .wg-404 .content .title::before {
    transform: translateX(-215px);
    top: 0;
    font-size: 165px;
  }
  .wg-404 .content .title img {
    width: 170px;
  }
  .wg-404 .content .title::after {
    transform: translateX(215px);
    top: 0;
    font-size: 165px;
  }
  .section-founder .wrap-content {
    flex-wrap: wrap;
  }
  .section-founder .content {
    padding-top: 0;
  }
  .section-founder .image-wrap {
    max-width: 100%;
  }
}
@media (max-width: 680px) {
  #footer .footer-top .wrapper {
    justify-content: start;
  }
  #footer .footer-top .info {
    justify-content: start;
  }
  #footer .footer-top .info li {
    width: 100%;
  }
}
@media (max-width: 630px) {
  #header-main .header-right .tf-btn {
    display: none;
  }
  #header-main .header-inner-wrap {
    justify-content: space-between;
  }
  #header-main .header-logo {
    max-width: 227px;
    margin-right: 25px;
    justify-content: space-between;
  }
  #header-main .header-logo a {
    margin-left: auto;
  }
  #header-main .header-right {
    flex-grow: unset;
    gap: 0;
  }
  #header-main .header-right .header-cart {
    margin-right: 33px;
  }
  #header-main .header-right .header-welcome .btn-open-welcome {
    height: 45px;
    width: 45px;
  }
  .section-faq .widget-tabs {
    flex-wrap: wrap;
    gap: 30px;
  }
  .section-faq .widget-tabs .widget-menu-tab {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 627px) {
  .section-blog-single .bot {
    justify-content: center !important;
    margin-bottom: 30px;
  }
  .section-commitment .content {
    margin: 0 15px;
  }
}
@media (max-width: 575px) {
  .shop-detail .content-inner {
    padding: 30px 0 0;
  }
  .shop-detail .product-content .product-title {
    margin-bottom: 4px;
  }
  .shop-detail .product-content .product-price {
    margin-bottom: 6px;
  }
  .shop-detail .title {
    margin-bottom: 14px;
  }
  .shop-detail .wrap-quantity {
    margin-bottom: 22px;
  }
}
@media (max-width: 550px) {
  .grid-layout-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-layout-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-title .wrap-page-title {
    grid-template-columns: 1fr;
  }
  .page-title .wrap-page-title .left {
    padding-left: 15px;
    padding-top: 215px;
    padding-right: 15px;
  }
  .page-title .wrap-page-title .content {
    margin-bottom: 15px;
  }
  .page-title .breadcrumbs {
    gap: 30px;
  }
  .page-title .breadcrumbs li::after {
    left: -22px !important;
  }
  .page-title .image-wrap {
    display: none;
  }
  .wg-welcome {
    width: 300px;
    padding: 74px 15px 20px 15px;
  }
  .header-cart .bag-box {
    right: -80px;
  }
  .wrap-icon-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wrap-icon-box .icons-box {
    width: 100%;
  }
  .wrap-icon-box .icons-box::after, .wrap-icon-box .icons-box::before {
    display: none;
  }
  .history-box {
    grid-template-columns: 1fr;
  }
  .section-news {
    grid-template-columns: 1fr;
  }
  .section-news .left .content {
    padding: 0 15px;
    bottom: 15px;
    gap: 10px;
  }
  .section-news .left .content .title {
    margin-bottom: 4px;
  }
  .section-news .left .content .btn-redirect {
    height: 50px;
    width: 50px;
    font-size: 15px;
  }
  .section-news .right .content span {
    margin-bottom: 8px;
  }
  .section-news .right .content h3 {
    margin-bottom: 4px;
  }
  .section-post {
    flex-wrap: wrap;
  }
  .section-post .left {
    max-width: 100%;
  }
  .section-post .left img {
    width: 100%;
  }
  .section-post .center .content {
    padding: 70px 15px 70px;
  }
  .section-post .center .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .section-post .center p {
    margin-bottom: 25px;
  }
  .section-post .right {
    max-width: 100%;
  }
  .section-post .right img {
    width: 100%;
  }
  .section-post .right .content {
    padding: 30px 20px 70px;
  }
  .box-item {
    margin: 0 !important;
  }
  .wg-404 .content .title {
    margin-bottom: 20px;
  }
  .wg-404 .content .title::before {
    transform: translateX(-160px);
    top: 0;
    font-size: 140px;
  }
  .wg-404 .content .title img {
    width: 135px;
  }
  .wg-404 .content .title::after {
    transform: translateX(160px);
    top: 0;
    font-size: 140px;
  }
  .wg-404 .content .sub-title {
    font-size: 40px;
  }
  .section-our-mission .grid-layout-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .box-career {
    grid-template-columns: repeat(1, 1fr);
  }
  .icons-box .icon {
    margin-bottom: 14px;
  }
  .icons-box .title {
    margin-bottom: 10px;
  }
}
@media (max-width: 512px) {
  .section-news .right .wrap-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-news .right .content {
    padding: 70px 15px;
  }
  .section-deliver .wrap-button .tf-btn {
    max-width: 100%;
    width: 100%;
  }
  .section-deliver .wrap-button .tf-btn span {
    width: 100%;
  }
}
@media (max-width: 442px) {
  #footer .footer-top .wrapper {
    justify-content: start;
  }
  #footer .footer-top .info {
    justify-content: start;
  }
}
@media (max-width: 425px) {
  .section-news .right .wrap-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-news .right .content {
    padding: 47px 15px;
  }
  #header-main .header-right {
    gap: 0px;
  }
  #header-main .header-logo {
    gap: 10px;
  }
}

































.rrc p{
    
    color: #e0e0e0;
}






.header-logo img{
    
    margin-left: -18px;
    width: 200px;
    
}

















/*# sourceMappingURL=styles.css.map */
