@import url("iconfont.css");
@import url("swiper.css");
@import url("message.css");
@import url("toastr.min.css");
@import url("language.css");
:root {
  --color: #dc1786;
  --color1: #fb853e;
  --hovercolor: #222222;
  --fontcolor: #0c171a;
  --titlecolor: #0c171a;
  --introcolor: #555555;
  --headercolor: #ffffff;
  --footercolor: #a3a7a8;
  --bgcolor: linear-gradient(-90deg, var(--color1, var(--color)), var(--color));
  --prosaspectratio: 1/1;
  --newssaspectratio: 3/2;
  --hometitlefont: 42px;
  --fontsize12: 12px;
  --fontsize13: 13px;
  --fontsize14: 14px;
  --fontsize15: 15px;
  --fontsize16: 16px;
  --fontsize17: 17px;
  --fontsize18: 18px;
  --fontsize20: 20px;
  --fontsize22: 22px;
  --fontsize24: 24px;
  --fontsize26: 26px;
  --fontsize28: 28px;
  --fontsize30: 30px;
  --fontsize32: 32px;
  --fontsize34: 34px;
  --fontsize36: 36px;
  --fontsize38: 38px;
  --fontsize40: 40px;
  --fontsize48: 48px;
  --fontbold3: 300;
  --fontbold4: 400;
  --fontbold5: 500;
  --fontbold6: 600;
  --fontbold7: 700;
  --fontbold8: 800;
  --fontbold9: 900;
  --borderradius: 5px;
  --fontfamily:
    "Raleway", "Open Sans", "Roboto", "Poppins", "Oswald", "Noto Sans",
    "Montserrat", sans-serif;
}
@media (max-width: 1440px) {
  :root {
    --hometitlefont: 34px;
  }
}
@media (max-width: 1280px) {
  :root {
    --hometitlefont: 30px;
  }
}
@media (max-width: 1024px) {
  :root {
    --hometitlefont: 26px;
  }
}
@media (max-width: 768px) {
  :root {
    --hometitlefont: 24px;
  }
}
*,
body,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
html,
li,
p,
table,
td,
th,
ul {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
fieldset,
img {
  border: 0;
}
:focus {
  outline: 0;
}
address,
cite,
code,
ctoolion,
dfn,
em,
optgroup,
th,
var {
  font-style: normal;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
button,
input,
optgroup,
option,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}
code,
kbd,
samp,
tt {
  font-size: 100%;
}
body {
  line-height: 1.5;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ctoolion,
th {
  text-align: left;
}
sub,
sup {
  font-size: 100%;
  vertical-align: baseline;
}
:link,
:visited,
ins {
  text-decoration: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
body {
  font-family: var(--fontfamily);
  margin: 0 auto;
  font-size: var(--fontsize16);
  line-height: 1.8;
  background: #ffffff;
  color: var(--fontcolor);
  padding-top: 130px;
  overflow-x: hidden;
}
@media (min-width: 1025px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 0;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--bgcolor);
    border-radius: 2px;
    transition: all 0.1s linear;
  }
}
img.lazy {
  display: inline-block;
  opacity: 0;
}
img.lazy,
img.tst {
  transition:
    opacity 0.6s,
    transform 0.3s ease;
}
img.loaded {
  opacity: 1;
}
img:not([src]) {
  visibility: hidden;
  position: absolute;
}
.lazy-load {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border: 2px solid #000000;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  animation: circle infinite 1s linear;
}
@keyframes circle {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.lazy-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.lazy-wrap::after {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.lazy-wrap.lazy-loaded .lazy-load {
  -webkit-animation: none;
  animation: none;
  display: none;
}
.lazy-wrap.lazy-loaded::after {
  padding-bottom: 0px;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  transition: all 0.1s linear;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.1s linear;
}
li,
ol,
ul {
  list-style: none;
}
iframe,
video {
  max-width: 100%;
  outline: 0;
  border: none;
  vertical-align: bottom;
  height: auto;
  min-height: 240px;
}
@media (max-width: 768px) {
  iframe,
  video {
    width: 100%;
  }
}
.hidden {
  overflow: hidden;
}
.l-wrap {
  width: 100%;
  max-width: 1740px;
  padding: 0px 70px;
  margin: 0px auto;
}
.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.home-icon {
  background: var(--color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 30px;
  height: 3px;
  display: flex;
}
.home-title {
  font-size: var(--hometitlefont);
  font-weight: var(--fontbold5);
  color: var(--fontcolor);
  text-align: center;
  text-transform: capitalize;
  line-height: 1.4;
  position: relative;
  padding-bottom: 20px;
}
.home-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--bgcolor);
  border-radius: 3px;
}
.home-des {
  font-size: var(--fontsize16);
  color: var(--introcolor);
  text-align: center;
  max-width: 1000px;
  margin: 10px auto 0px;
}
.home-des a {
  font-weight: var(--fontbold5);
  background: var(--bgcolor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-des a:hover {
  border-bottom: 1px solid var(--color);
}
.home-more {
  min-width: 180px;
  padding: 0px 15px;
  height: 50px;
  border-radius: 24px;
  background: var(--bgcolor);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
  font-size: var(--fontsize16);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home-more.line em {
  padding-left: 10px;
}
.home-more.line em::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #ffffff;
}
.home-more em {
  margin-left: 10px;
  transition: all 0.1s linear;
  position: relative;
}
.home-more:hover {
  opacity: 0.9;
}
header {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999;
  transition: all 0.1s linear;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.05);
}
.head-top {
  height: 40px;
  transition: all 0.1s linear;
  position: relative;
  color: var(--headercolor);
  background: var(--hovercolor);
}
.head-top .l-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-left {
  display: flex;
  align-items: center;
}
.head-left .item {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-right: 20px;
}
.head-left .item em {
  margin-right: 5px;
}
.head-left .item a {
  transition: none;
}
.head-left .item:hover {
  color: var(--color);
}
.head-top .head-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.head-top .head-share {
  margin-right: 10px;
}
.head-top .head-share ul {
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 0.1s linear;
}
.head-info {
  height: 90px;
  transition: all 0.1s linear;
  background: #ffffff;
}
header.is-active .head-info {
  height: 80px;
}
.head-info .l-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-logo {
  margin-right: 40px;
}
.head-info .m-menu {
  display: none;
}
.head-logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.head-logo a img {
  width: auto;
  max-height: 65px;
}
.head-logo .himg {
  display: block;
}
.head-logo .fimg {
  display: none;
}
.head-left-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.head-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.head-nav .nav-ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0px;
}
.head-nav .nav-ul > li {
  height: 100%;
  position: relative;
}
.head-nav .nav-ul > li > a {
  position: relative;
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
  text-transform: capitalize;
  padding: 0px 15px;
  margin-right: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}
.head-nav .nav-ul > li > a em {
  margin-left: 5px;
  font-size: var(--fontsize12);
  font-weight: var(--fontbold6);
}
.head-nav .nav-ul > li:hover > a,
.head-nav .nav-ul > li > a.inmenu_1 {
  color: var(--color);
}
.head-nav .nav-ul > li:hover > a::after,
.head-nav .nav-ul > li > a.inmenu_1::after {
  width: 60%;
}
@media (min-width: 1024px) {
  .head-nav .nav-ul > li a.inmenu_1:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
  }
}

.head-nav .nav-ul > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  background: #ffffff;
  min-width: 200px;
  margin: 0px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.head-nav .nav-ul > li > ul::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 4px;
  background: var(--bgcolor);
}
.head-nav .nav-ul > li > ul li {
  position: relative;
}
.head-nav .nav-ul > li > ul li:hover > a {
  color: var(--color);
  text-decoration: underline;
}
.head-nav .nav-ul > li > ul li:hover > em {
  color: var(--color);
}
.head-nav .nav-ul > li > ul a {
  padding: 0px 20px;
  height: 45px;
  line-height: 45px;
  color: var(--fontcolor);
  padding-right: 30px;
  text-align: left;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--fontsize16);
}
.head-nav .nav-ul > li > ul a + em {
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.2s linear;
  transform: translateY(-50%) rotate(-90deg);
}
.head-nav .nav-ul > li > ul li:hover em {
  transform: translateY(-50%) rotate(0);
}
.head-nav .nav-ul > li > ul ul {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #ffffff;
  min-width: 220px;
  margin: 0px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}
.head-nav .nav-ul ul {
  list-style: none;
  padding: 0px;
}
.search-input {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#searchtype {
  width: 85px;
  height: 24px;
  margin-left: 6px;
  position: absolute;
  left: 0px;
  font-size: 12px;
  border: none;
  border-radius: 5px;
}
.search-input input {
  width: 250px;
  height: 42px;
  background: #ffffff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  outline: 0;
  transition: all 0.1s linear;
  padding: 0px 10px;
  padding-left: 112px;
  padding-right: 44px;
  border: 1px solid #ffffff;
  font-size: 14px;
}
.search-input input::placeholder {
  color: #999999;
}
.search-input input:focus {
  border-color: var(--color);
}
.search-input button {
  width: 40px;
  height: 40px;
  padding: 0 8px 0 0;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: 0 0;
  outline: 0;
  transition: all 0.1s linear;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.search-input button em {
  font-size: var(--fontsize22);
  color: #000000;
  font-weight: var(--fontbold5);
}
@media (min-width: 1025px) {
  header .search-box {
    height: 46px;
    margin-left: 28px;
    display: block;
  }
  header .search-input {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) max-content;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(23, 31, 44, 0.08);
  }
  header #searchtype,
  header .search-input input,
  header .search-input button {
    position: static;
    width: auto;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  header #searchtype {
    min-width: 0;
    padding: 0 34px 0 14px;
    color: #555555;
    font-size: 13px;
    line-height: 46px;
    background-color: #ffffff;
    border-right: 1px solid #eeeeee;
    outline: 0;
    cursor: pointer;
  }
  header .search-input input {
    min-width: 0;
    padding: 0 14px;
    color: #1f2c3d;
    font-size: 14px;
    background: #ffffff;
  }
  header .search-input input:focus {
    border: 0;
  }
  header .search-input button {
    right: auto;
    top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
  }
  header .search-input button em {
    color: #ffffff;
    font-size: 20px;
  }
  header.is-active .search-box {
    height: 44px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1640px) {
  header #searchtype {
    display: none;
  }
}

@media (min-width: 1025px) {
  .nav-ul > li:hover .submenu {
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-ul > li .submenu {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .nav-ul > li .submenu li:hover ul {
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-ul > li .submenu li ul {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
}
header.is-active .head-top {
  height: 0;
  opacity: 0;
}
footer {
  background: var(--hovercolor);
  color: var(--footercolor);
  position: relative;
}
footer a {
  transition: all 0.1s linear;
}
footer a:hover {
  color: var(--color);
  text-decoration: underline;
}
.foot-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3% 0;
}
.foot-title {
  font-weight: var(--fontbold5);
  font-size: var(--fontsize26);
  color: #ffffff;
}
.foot-newsletter {
  color: #ffffff;
}
.foot-newsletter .foot-submit {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.foot-newsletter .foot-submit input {
  flex: 1;
  border-radius: 30px;
  outline: 0;
  border: none;
  background: #ffffff;
  color: var(--fontcolor);
  margin-right: 10px;
  transition: all 0.15s linear;
  padding: 0px 20px;
}
.foot-newsletter .foot-submit input::placeholder {
  color: var(--introcolor);
}
.foot-newsletter .foot-submit button {
  min-width: 200px;
  height: 56px;
  background: var(--bgcolor);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  font-size: var(--fontsize16);
  color: #ffffff;
  outline: 0;
  border: none;
  cursor: pointer;
  transition: all 0.1s linear;
  white-space: nowrap;
}
.foot-newsletter .foot-submit button:hover {
  opacity: 0.9;
}
.foot-content {
  flex: 1;
  padding-right: 6%;
}
.foot-link {
  margin-top: 20px;
  width: 400px;
}
.foot-link ul li {
  background: #262626;
  border-radius: 10px;
  border: 1px solid #3b3b3b;
  margin-bottom: 20px;
  padding: 30px;
}
.foot-link ul li:last-child {
  margin-bottom: 0px;
}
.foot-link ul li .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  font-size: var(--fontsize20);
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.foot-link ul li .top em {
  font-size: var(--fontsize24);
  margin-right: 5px;
}
.foot-link ul li .bottom a {
  color: #ffffff;
}
.foot-inner {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.foot-inner .foot-item {
  width: 30%;
}
.foot-inner .foot-cate {
  width: 25%;
}
.foot-inner .foot-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.foot-inner .foot-list li {
  width: 100%;
  padding-bottom: 5px;
}
.foot-inner .foot-list li a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.foot-nav .foot-list li {
  width: 50%;
}
.foot-logo {
  display: flex;
  margin-bottom: 20px;
}
.foot-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100px;
}
.foot-share ul {
  margin-top: 2em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
}
.foot-share ul li {
  margin-bottom: 10px;
}
.foot-share ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #333333;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.foot-share ul li a.fb {
  background: #3b5998;
}
.foot-share ul li a.tw {
  background: #55acee;
}
.foot-share ul li a.lk {
  background: #007ab6;
}
.foot-share ul li a.you {
  background: red;
}
.foot-share ul li a.tik {
  background: #111;
}
.foot-share ul li a:hover {
  background: #ffffff;
  color: var(--color);
}
.foot-bot {
  margin-top: 20px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .copyright a {
  margin-left: 5px;
  color: #ffffff;
}
.rfixed {
  position: fixed;
  bottom: calc(150px + constant(safe-area-inset-bottom));
  bottom: calc(150px + env(safe-area-inset-bottom));
  right: 50px;
  z-index: 99;
}
.compare-panel {
  width: 280px;
  background: #ffffff;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0px;
  box-shadow: -1px -1px 3px #ccc;
  display: none;
  transition: bottom 0.2s;
}
.compare-t {
  background-color: var(--color);
  font-size: var(--fontsize14);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}
.compare-close {
  position: relative;
  width: 24px;
  height: 24px;
  background: 0 0;
  cursor: pointer;
  border: none;
}
.compare-close::after,
.compare-close::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  border-radius: 2px;
}
.compare-close::before {
  transform: rotate(45deg);
  left: 4px;
}
.compare-close::after {
  transform: rotate(-45deg);
  right: 4px;
}
.compare-tit {
  text-align: center;
  flex: 1;
  line-height: 1.5;
}
.compare-checked {
  color: #ffffff;
  margin: 0 4px;
}
#productChache_list {
  padding: 0px 10px;
  height: 220px;
  overflow-y: auto;
}
#productChache_list::-webkit-scrollbar {
  width: 4px;
}
#productChache_list::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
#productChache_list::-webkit-scrollbar-thumb {
  border-radius: var(--borderradius);
  background-color: rgba(0, 0, 0, 0.15);
}
.selected-item {
  position: relative;
  border-bottom: 1px solid #efefef;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.item-clear {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
  border: none;
}
.item-clear::after,
.item-clear::before {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  top: 50%;
  margin-top: -1px;
}
.item-clear::before {
  transform: rotate(45deg);
  left: 3px;
}
.item-clear::after {
  transform: rotate(-45deg);
  left: 3px;
}
.item-content {
  flex: 1;
  display: flex;
  align-items: center;
}
.item-img {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-img img {
  max-width: 100%;
  max-height: 100%;
}
.item-c {
  width: calc(100% - 50px);
  padding: 0px 10px;
  font-size: var(--fontsize12);
}
.item-title {
  max-height: 34px;
  word-break: break-word;
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  color: var(--fontcolor);
}
.item-price {
  color: var(--color);
}
.compare-b {
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}
.compare-b * {
  display: block;
  width: 80px;
  text-align: center;
  font-size: var(--fontsize12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
  border-radius: 2px;
  padding: 0 2px;
}
.clear-all {
  color: var(--fontcolor);
  background-color: #ededed;
  cursor: pointer;
  border: none;
}
.compare-inquire,
.compare-inquire:hover {
  color: #ffffff;
  background-color: var(--color);
}
.compare-b .orderNow {
  margin: 0px;
  background: #f66f08;
  color: #ffffff;
  line-height: 30px;
  padding: 0 2px;
  border: none;
  border-radius: 2px;
  font-size: var(--fontsize12);
  cursor: pointer;
  display: block;
  width: 80px;
}
.rfixed-sc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  background: var(--bgcolor);
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  display: none;
}
.rfixed-sc em {
  font-size: 20px;
}
.rfixed-scnum {
  position: absolute;
  right: 2px;
  top: -3px;
  width: 16px;
  height: 16px;
  background: #d4322c;
  border-radius: 50%;
  text-align: center;
  font-size: var(--fontsize12);
  color: #ffffff;
  transform: scale(0.9);
  line-height: 16px;
}
@media (max-width: 768px) {
  .compare-panel {
    width: 100%;
    bottom: 55px;
  }
  .rfixed-scnum {
    right: 26px;
  }
}
.head-lang {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.lang {
  z-index: 99999;
  text-align: left;
  position: relative;
}
.lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  cursor: pointer;
  font-size: var(--fontsize16);
  user-select: none;
  white-space: nowrap;
}
.lang-icon img {
  width: 28px;
}
.lang-icon span {
  position: relative;
  padding-right: 18px;
  margin-left: 6px;
  font-size: var(--fontsize15);
  color: #ffffff;
}
.lang-icon span::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 12px;
  width: 8px;
  height: 1px;
  background: #ffffff;
  transform: rotate(50deg);
}
.lang-icon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 12px;
  width: 8px;
  height: 1px;
  background: #ffffff;
  transform: rotate(-50deg);
}
.lang-drop {
  position: absolute;
  top: calc(100% + 26px);
  right: 50%;
  transform: translateX(50%);
  background: #ffffff;
  border: 1px solid #ebeef5;
  border-radius: var(--borderradius);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s,
    top 0.3s;
}
.lang-drop.lang-flex {
  transform: translateX(20%);
}
.lang-drop.active {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 7px);
}
.lang-arrow {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-top: 1px solid #ebeef5;
  border-left: 1px solid #ebeef5;
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  top: -6px;
  left: 50%;
}
.lang-drop.lang-flex .lang-arrow {
  left: 79%;
}
.lang-wrap {
  list-style: none;
  width: 140px;
  padding: 8px 0;
  box-sizing: border-box;
}
.lang-flex .lang-wrap {
  width: 340px;
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
}
.lang-wrap li {
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
.lang-flex .lang-wrap li {
  width: 33.3333%;
}
.lang-wrap li.lang-active,
.lang-wrap li:hover {
  background-color: #eeeeee;
}
.lang-wrap li a {
  display: block;
  color: var(--fontcolor);
  font-size: var(--fontsize12);
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.lang-wrap li img {
  display: inline-block;
  width: 24px;
  height: 16px;
  vertical-align: -0.25em;
  margin-right: 4px;
}
@media (max-width: 1024px) {
  .head-lang::before {
    display: none;
  }
  .lang {
    transition: all 0.2s linear;
  }
  .lang-icon {
    min-width: inherit;
    background: 0 0;
  }
  .lang-icon span {
    display: none;
  }
  .lang-drop {
    display: none;
  }
  .lang-drop.lang-flex {
    position: fixed;
    width: 95%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .lang-drop.lang-flex .lang-arrow {
    left: 84%;
  }
  .lang-drop.lang-flex .lang-wrap {
    width: 100%;
  }
  .lang-drop.active {
    display: block;
    top: calc(100% + 3px);
  }
}
.gotop {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fontbold6);
}
.gotop.active {
  opacity: 1;
  visibility: inherit;
  overflow: inherit;
  transform: translateY(0);
}
.gotop em,
.gotop i {
  transform: rotate(180deg);
  color: var(--fontcolor);
}
.gotop:hover {
  background: #c1c1c1;
}
.bottom-btn {
  display: none;
}
@media (max-width: 1440px) {
  .head-nav .nav-ul > li > a {
    margin: 0px;
    padding: 0px 10px;
  }
  .l-wrap {
    padding: 0px 15px;
  }
}
@media (max-width: 1024px) {
  .head-share ul a em,
  .head-share ul a i {
    font: size 18px;
  }
  body {
    padding-top: 0;
  }
  header .head-top {
    display: none;
  }
  header {
    background: #ffffff !important;
    position: relative;
  }
  .head-logo .himg {
    display: none;
  }
  .head-logo .fimg {
    display: block;
  }
  header .head-info {
    height: 70px !important;
  }
  .head-nav {
    position: fixed;
    top: 70px;
    right: 0px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    padding-bottom: 100px;
    overflow-y: auto;
    display: none;
  }
  .head-nav .nav-ul {
    width: 100%;
    flex-direction: column;
    height: auto;
    flex: 1;
  }
  .head-nav .nav-ul > li {
    height: auto;
    width: 100%;
  }
  .head-nav .nav-ul > li.cur {
    background: #fafafa;
  }
  .head-nav .nav-ul > li.cur .icon-arrow-down {
    transform: rotate(0);
  }
  .head-nav .nav-ul > li .icon-arrow-down {
    position: absolute;
    right: 10px;
    top: 2px;
    font-weight: var(--fontbold3);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s linear;
    transform: rotate(-90deg);
    font-size: 20px;
  }
  .head-nav .nav-ul > li > a {
    height: auto;
    padding: 10px 20px;
    margin: 0px;
    justify-content: flex-start;
    color: var(--fontcolor);
  }
  #liinquiry {
    padding: 10px 20px;
  }
  #liinquiry a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    color: #ffffff !important;
    border-radius: 30px;
    background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
    box-shadow: 0 10px 24px rgba(220, 23, 134, 0.2);
    font-weight: 700;
  }
  .head-nav .nav-ul > li:hover > a {
    background: 0 0;
    color: inherit !important;
  }
  .head-nav .nav-ul > li#liinquiry:hover > a {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
  }
  .head-nav .nav-ul > li > ul {
    position: static;
    box-shadow: none;
    max-width: 100%;
    background: #fafafa;
    display: none;
    padding: 0px 30px;
  }
  .head-nav .nav-ul > li > ul a {
    color: var(--fontcolor);
    font-size: var(--fontsize16);
    display: inline-block;
    line-height: inherit;
    height: auto;
    padding: 10px 0px;
  }
  .head-nav .nav-ul > li:hover > a::before,
  .head-nav .nav-ul > li > a.inmenu_1::before {
    display: none;
  }
  .head-nav .nav-ul > li > ul li:hover > a,
  .head-nav .nav-ul > li > ul li:hover > em {
    background: 0 0;
    color: inherit;
  }
  .head-nav .nav-ul > li > ul .icon-arrow-down {
    display: none;
  }
  .head-nav .nav-ul > li > ul ul {
    position: static;
    display: block;
    background: 0 0;
    box-shadow: none;
    padding: 0px 20px;
  }
  .head-share ul {
    display: flex;
    flex-wrap: wrap;
  }
  .head-share ul a em {
    font-size: 16px;
  }
  .search-box {
    padding: 0px 10px;
  }
  .search-input {
    opacity: 1;
    transform: none;
    visibility: inherit;
    width: 100%;
    box-shadow: none;
    background: #ffffff;
  }
  .search-input button {
    right: 10px;
  }
  .search-input input {
    flex: 1;
    border: 1px solid #eeeeee;
    height: 48px;
  }
  .search-input input:focus {
    border-color: var(--color);
  }
  .head-lang {
    margin-left: auto;
    margin-right: 20px;
  }
  .head-info .m-menu {
    display: block;
    position: relative;
    width: 26px;
    height: 40px;
    cursor: pointer;
    margin-right: 5px;
  }
  .m-menu span {
    position: absolute;
    background: #111111;
    height: 2px;
    width: 100%;
    border-radius: var(--borderradius);
    left: 0px;
    transition: all 0.2s linear;
  }
  .m-menu span:first-child {
    top: 25%;
  }
  .m-menu span:nth-child(2) {
    top: 48%;
  }
  .m-menu span:nth-child(3) {
    top: 73%;
  }
  .m-menu.act span {
    top: 48%;
  }
  .m-menu.act span:first-child {
    transform: rotate(45deg);
  }
  .m-menu.act span:nth-child(2) {
    width: 0;
  }
  .m-menu.act span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .home-more {
    min-width: 160px;
    height: 45px;
  }
  .head-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    color: var(--fontcolor);
    font-size: var(--fontsize18);
    border-top: 1px solid #eeeeee;
  }
  .head-left .item:nth-child(n + 2) {
    margin-top: 1em;
  }
  .head-left .item {
    margin-right: 0 !important;
  }
  .head-left .item em {
    color: var(--color);
  }
  .foot-main {
    flex-direction: column;
    padding: 30px 0px;
  }
  .foot-content {
    width: 100%;
    padding: 0px;
  }
  .foot-link {
    width: 100%;
  }
  .foot-link ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .foot-link ul li {
    margin: 0px;
    width: 32%;
    padding: 20px;
  }
  .foot-inner .foot-cate {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .foot-newsletter .foot-submit button {
    height: 45px;
    min-width: 150px;
  }
  .foot-share ul {
    margin-top: 1em;
  }
  .foot-inner {
    flex-direction: column;
    padding-top: 20px;
    margin-top: 30px;
  }
  .foot-inner .foot-item {
    width: 100% !important;
    margin-bottom: 1em;
  }
  .foot-inner .foot-item:last-child {
    margin-bottom: 0px;
  }
  .foot-inner .foot-list li {
    width: 50%;
  }
  .foot-link ul {
    flex-direction: column;
  }
  .foot-link ul li {
    width: 100%;
    margin-bottom: 1em;
  }
  .rfixed {
    display: none;
  }
  header .head-info {
    height: 60px !important;
  }
  .head-logo a img {
    max-height: 45px;
  }
  .head-nav {
    top: 59px;
    height: calc(100vh - 59px);
  }
  .home-more {
    min-width: 160px;
    height: 45px;
  }
  .icon-videoplay {
    width: 30px;
    height: 30px;
  }
  .home-more {
    height: 45px;
    min-width: 160px;
  }
  footer {
    margin-bottom: calc(55px + constant(safe-area-inset-bottom));
    margin-bottom: calc(55px + env(safe-area-inset-bottom));
  }
  .bottom-btn {
    background: #fbfbfb;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.2s linear;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    opacity: 1;
  }
  .bottom-btn.bottom-btn-hide {
    transform: translateY(0) !important;
    opacity: 1;
  }
  .bottom-btn.bottom-btn-keep {
    transform: translateY(0) !important;
    opacity: 1;
  }
  .bottom-btn.bottom-btn-menu {
    transform: translateY(60px) !important;
    opacity: 0;
  }
  .bottom-btn .btn-item {
    width: 20%;
    height: 55px;
    transition: all 0.2s linear;
    position: relative;
  }
  .bottom-btn .btn-item.gotop {
    opacity: 1;
    visibility: inherit;
    overflow: inherit;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    background: 0 0;
  }
  .bottom-btn .btn-item.gotop em {
    background: var(--bgcolor);
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderradius);
    font-size: var(--fontsize16);
  }
  .bottom-btn .btn-item.gotop:hover {
    background: 0 0;
  }
  .bottom-btn .btn-item em,
  .bottom-btn .btn-item i {
    font-size: var(--fontsize20);
    line-height: 1;
  }
  .bottom-btn .btn-item a,
  .bottom-btn .btn-item div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222;
    text-transform: capitalize;
    text-decoration: none;
  }
  .bottom-btn .btn-item a p,
  .bottom-btn .btn-item div {
    font-size: var(--fontsize12);
    text-transform: capitalize;
    line-height: 1;
    padding-top: 2px;
  }
  .mobile-bottom-bag {
    display: none;
  }
  .foot-title {
    font-size: var(--fontsize20);
  }
  .foot-logo {
    display: none;
  }
}
@media (max-width: 500px) {
  #searchtype {
    font-size: 16px;
    width: 110px;
    height: 28px;
  }
  .search-input input {
    padding-left: 125px;
  }
  .foot-newsletter .foot-submit {
    flex-direction: column;
  }
  .foot-newsletter .foot-submit input {
    margin-bottom: 10px;
    height: 45px;
    margin-right: 0px;
    flex: none;
  }
  .foot-link ul li .top {
    font-size: var(--fontsize18);
  }
  .foot-link ul li .top em {
    font-size: var(--fontsize20);
  }
}
@media (min-width: 1025px) {
  #liproducts .nav0.nav15,
  #liproducts .nav1.nav15 {
    display: flex;
    flex-wrap: wrap;
    width: 500px;
  }
  #liproducts .nav0.nav15 > li,
  #liproducts .nav1.nav15 > li {
    width: 50%;
  }
  #liproducts .nav2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: fixed;
    left: 0px;
    justify-content: center;
  }
  #liproducts .nav2 > li {
    width: 12%;
    margin: 1em 20px;
    text-align: center;
  }
  #liproducts .nav2 > li .item-info a {
    height: auto;
  }
  #liproducts .nav2 > li a {
    padding: 0;
    background: 0 0 !important;
  }
  #liproducts .nav3 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: fixed;
    left: 0px;
    justify-content: center;
  }
  #liproducts .nav3 > li {
    width: 12%;
    margin: 1em 20px;
    text-align: center;
  }
  #liproducts .nav3 > li .cate-img a {
    height: auto;
  }
  #liproducts .nav3 > li a {
    padding: 0;
    background: 0 0 !important;
  }
  #liproducts .nav3 > li ul {
    display: block;
    position: static;
    box-shadow: none;
  }
  #liproducts .nav3 > li ul li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #liproducts .nav2 .item-info,
  #liproducts .nav3 .cate-img {
    display: none;
  }
}
.mediaplay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 99;
}
.mediaplay em {
  font-size: var(--fontsize36);
  position: static;
  border: none;
  background: 0 0;
  transform: none;
  width: auto;
  height: auto;
}
.mediaplay::after {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  top: -2px;
  border-radius: 50%;
  border: 3px solid;
  opacity: 0.8;
  border-color: transparent;
  border-right-color: var(--color);
  animation: runDot 2s infinite ease-in-out;
}
.mediaplay:hover {
  color: var(--color);
  background: rgba(255, 255, 255, 0.7);
}
@keyframes runDot {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
@media (min-width: 1025px) {
  #liinquiry {
    display: flex;
    align-items: center;
  }
  #liinquiry a {
    height: 44px;
    padding: 0px 22px;
    border-radius: 30px;
    color: #ffffff !important;
    background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
    box-shadow: 0 10px 24px rgba(220, 23, 134, 0.26);
    transition: all 0.18s linear;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
  }
  #liinquiry a:hover {
    color: #ffffff !important;
    opacity: 0.92;
    transform: translateY(-1px);
  }
  #liinquiry a::after {
    display: none;
  }
}
.popup-inquiry {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.popup-inquiry.is-active {
  display: flex;
}
.popup-inquiry-opacity {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.popup-inquiry-box {
  z-index: 1;
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 30px;
  border-radius: 10px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  max-height: 100vh;
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0.5;
}
.popup-inquiry-close {
  font-size: var(--fontsize22);
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
.popup-inquiry.is-active .popup-inquiry-box {
  animation: popup-inquiry 0.3s forwards;
}
@keyframes popup-inquiry {
  0% {
    transform: translateY(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.send-popup-inquiry {
  min-width: 180px;
  padding: 0px 20px;
  height: 46px;
  border-radius: 23px;
  border: 1px solid var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  margin-left: 10px;
  background: var(--bgcolor);
  color: #ffffff;
}
@media (max-width: 1024px) {
  .popup-inquiry,
  .send-popup-inquiry {
    display: none !important;
  }
}
.homeswiper-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-top: 3em;
}
.homeswiper-btn::after,
.homeswiper-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #eeeeee;
  width: calc(100% / 2 - 100px);
}
.homeswiper-btn::after {
  left: auto;
  right: 0px;
}
.homeswiper-btn .homeswiper-next,
.homeswiper-btn .homeswiper-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
  cursor: pointer;
}
.homeswiper-btn .homeswiper-next:hover,
.homeswiper-btn .homeswiper-prev:hover {
  background: var(--bgcolor);
}
.homeswiper-btn .homeswiper-next:hover em,
.homeswiper-btn .homeswiper-prev:hover em {
  color: #ffffff;
}
.homeswiper-btn .homeswiper-next em,
.homeswiper-btn .homeswiper-prev em {
  background: var(--bgcolor);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: var(--fontsize22);
}
@media (max-width: 768px) {
  .homeswiper-btn .homeswiper-next,
  .homeswiper-btn .homeswiper-prev {
    width: 50px;
    height: 50px;
  }
}

/* footer  */
.contact-band {
  padding: 96px 0;
  color: #fff;
  background: var(--dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.contact-band h2 { color: #fff; margin-bottom: 24px; }
.contact-band p { color: rgba(255,255,255,0.74); }

.contact-card {
  padding: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-card p + p { margin-top: 10px; }
.contact-card strong { color: #fff; }


@media (max-width: 760px) {
  .contact-band {
    padding: 72px 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  color: rgba(255,255,255,0.72);
  background: #090909;
}

.footer p {
  margin: 0;
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.75;
}

.footer .newsletter {
  transform: translateY(-48px);
  margin-bottom: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgb(251, 133, 62), rgb(220, 23, 134));
}

.footer .newsletter h2 { color: #fff; font-size: 34px; }
.footer .newsletter p { color: rgba(255,255,255,0.86); }

.footer .newsletter div:last-child {
  display: grid;
  grid-template-columns: 260px auto;
  height: 54px;
  background: #fff;
}

.footer .newsletter input,
.footer .newsletter button {
  border: 0;
  outline: 0;
}

.footer .newsletter input { padding: 0 18px; }
.footer .newsletter button {
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
  background: #111;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer .footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .footer-grid li {
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.75;
}

.footer .footer-grid li + li {
  margin-top: 4px;
}

.footer h3,
.footer h4 {
  margin: 0 0 18px;
  color: #fff;
}

.footer .foot-bottom {
  margin-top: 40px;
  padding-top: 24px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .site-header .head-main-inner {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .site-header .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .site-header .nav a:first-child:after { bottom: -10px; }
  .site-header .search-box { width: min(100%, 520px); }

  .footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header .head-top-inner,
  .site-header .head-contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .site-header .brand { font-size: 24px; }
  .site-header .brand-mark { width: 50px; height: 50px; }
  .site-header .search-box { grid-template-columns: 1fr; height: auto; }
  .site-header .search-box span,
  .site-header .search-box input,
  .site-header .search-box button { min-height: 44px; }
  .site-header .search-box span { border-right: 0; border-bottom: 1px solid #eeeeee; }

  .footer .footer-grid,
  .footer .newsletter {
    grid-template-columns: 1fr;
  }

  .footer .newsletter {
    transform: none;
    margin-bottom: 50px;
    padding: 30px;
  }

  .footer .newsletter div:last-child {
    grid-template-columns: 1fr;
    height: auto;
  }

  .footer .newsletter input,
  .footer .newsletter button {
    height: 50px;
  }
}
