@charset "UTF-8";
@-webkit-keyframes ping_pong {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ping_pong {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes rotate_wrong {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
}

@keyframes rotate_wrong {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
}

@-webkit-keyframes rotate_correct {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes rotate_correct {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1370px;
  }
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

td {
  min-width: 200px;
}

a {
  color: var(--color1);
}

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  list-style: none;
}

input {
  background-clip: padding-box;
}

input.dangerous {
  border-color: red;
}

input.dangerous::-webkit-input-placeholder {
  color: red;
}

input.dangerous:-ms-input-placeholder {
  color: red;
}

input.dangerous::-ms-input-placeholder {
  color: red;
}

input.dangerous::placeholder {
  color: red;
}

input.form-control::-webkit-outer-spin-button, input.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"] {
  margin-top: 0;
  vertical-align: top;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  margin: 0 0.2rem 0 0;
  cursor: pointer;
  outline: none !important;
  border: none !important;
}

input[type="radio"]:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 1;
  width: 8px;
  height: 8px;
  background: var(--color1);
  border-radius: 50%;
}

input[type="radio"]:after {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

input[type="radio"]:checked:after {
  border: 1px solid var(--color1);
}

input[type="checkbox"] {
  margin-top: 0;
  vertical-align: top;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  outline: none !important;
  border: none !important;
}

input[type="checkbox"]:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: .38em;
  margin: auto;
  z-index: 1;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color1);
  border-top-style: none;
  border-right-style: none;
}

input[type="checkbox"]:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

input[type="checkbox"]:after {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: var(--color2);
  border: 1px solid var(--color1);
  cursor: pointer;
  border-radius: 3px;
}

input[type="checkbox"]:checked:after {
  border-color: var(--color1);
}

input[type=number] {
  -moz-appearance: textfield;
}

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

.swal-icon--success__line,
button.swal-button.swal-button--confirm {
  background: var(--color_main);
}

.swal-icon--success__ring {
  border: 4px solid var(--color_main);
}

.overplay-all {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  background: rgba(45, 45, 50, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 98;
}

body,
html {
  min-height: 80vh;
  font-size: 16px;
}

@media (max-width: 1200px) {
  body,
  html {
    font-size: 15.5px;
  }
}

@media (max-width: 1024px) {
  body,
  html {
    font-size: 15.0px;
  }
}

@media (max-width: 991px) {
  body,
  html {
    font-size: 14.5px;
  }
}

@media (max-width: 767px) {
  body,
  html {
    font-size: 14.0px;
  }
}

@media (max-width: 480px) {
  body,
  html {
    font-size: 13.5px;
  }
}

@media (max-width: 360px) {
  body,
  html {
    font-size: 13.0px;
  }
}

body.open-noscroll,
html.open-noscroll {
  overflow-y: hidden;
}

body.open-overplay .overplay-all,
html.open-overplay .overplay-all {
  opacity: 1;
  visibility: visible;
}

body.open-modalContact .modal-contact,
html.open-modalContact .modal-contact {
  visibility: visible;
  opacity: 1;
}

body.open-menu-mobile .shop-menu-mobile,
html.open-menu-mobile .shop-menu-mobile {
  -webkit-transform: none;
          transform: none;
  visibility: visible;
  opacity: 1;
}

body.is-safari .product-item .product-item-wrap .product-item-image a span,
html.is-safari .product-item .product-item-wrap .product-item-image a span {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: none !important;
          transform: none !important;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 0;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #ccc;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: var(--color_main);
}

.slick-slider:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.slick-slider .slick-track {
  margin-left: initial;
}

.slick-slider .slick-track div,
.slick-slider .slick-track a,
.slick-slider .slick-track a:focus,
.slick-slider .slick-track div:focus,
.slick-slider .slick-track article:focus,
.slick-slider .slick-track article {
  outline: 0 !important;
}

.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  outline: 0;
  font-size: 20px;
  z-index: 1;
  padding: 0;
  color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 480px) {
  .slick-slider .slick-arrow {
    display: none !important;
  }
}

.slick-slider .slick-arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CCC;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.slick-slider .slick-arrow:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #FFF;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.slick-slider .slick-arrow.slick-prev {
  padding-right: 10px;
  padding-left: 5px;
  left: 10px;
}

.slick-slider .slick-arrow.slick-prev:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.slick-slider .slick-arrow.slick-prev:after {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media (max-width: 767px) {
  .slick-slider .slick-arrow.slick-prev {
    left: 5px;
  }
}

.slick-slider .slick-arrow.slick-next {
  right: 10px;
  padding-right: 5px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .slick-slider .slick-arrow.slick-next {
    right: 5px;
  }
}

.slick-slider .slick-dots {
  position: absolute;
  bottom: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 9;
}

.slick-slider .slick-dots li {
  margin: 0 2.5px;
}

.slick-slider .slick-dots li.slick-active button {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.slick-slider .slick-dots li button {
  font-size: 0;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 20px;
  height: 5px;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  border-radius: 0;
}

.section-title-all {
  margin-bottom: 15px;
}

.section-title-all > span {
  color: var(--color_main);
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 1.25rem;
  position: relative;
  padding-left: 27.5px;
  line-height: 1;
}

.section-title-all > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  z-index: 9;
  height: 15px;
  width: 20px;
  background: url(https://theme.hstatic.net/200000588277/1000936870/14/image_title_all.png?v=3245);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}

.section-title-all > h1,
.section-title-all h2,
.section-title-all h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 10px;
}

.section-title-all > p {
  color: #AAA;
  margin-top: 10px;
}

.section-title-all > a {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  display: inline-block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #CCC;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  -webkit-transition: color .4s .4s ease-in, border .4s .4s ease-in;
  transition: color .4s .4s ease-in, border .4s .4s ease-in;
}

@media (max-width: 360px) {
  .section-title-all > a {
    width: 280px;
  }
}

.section-title-all > a:hover {
  color: var(--color_main);
  border-color: var(--color_main);
}

.section-title-all > a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.section-title-all > a:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color_main);
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.shop-menu-hot {
  font-weight: bold;
  color: #F30;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.shop-menu-hot:before {
  content: "";
  background-image: url(https://file.hstatic.net/200000588277/file/icon-hot_c5f23f4ccabe4e4a8129048e7701b568.gif);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.shop-menu-hot span {
  margin-left: auto;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  z-index: 90;
  -webkit-transition: -webkit-box-shadow .5s;
  transition: -webkit-box-shadow .5s;
  transition: box-shadow .5s;
  transition: box-shadow .5s, -webkit-box-shadow .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .header {
    height: 75px;
  }
}

@media (max-width: 1200px) {
  .header {
    height: 50px;
  }
}

.header.active {
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
}

.header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.header .header-wrap .header-menu {
  display: none;
  width: 25%;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-menu {
    display: block;
  }
}

.header .header-wrap .header-menu button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.header .header-wrap .header-menu button svg {
  width: 15px;
  height: 15px;
  line-height: 15px;
}

.header .header-wrap .header-left {
  width: 20%;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-left {
    width: 50%;
  }
}

.header .header-wrap .header-left a {
  display: block;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-left a {
    text-align: center;
  }
}

.header .header-wrap .header-left a img {
  max-height: 55px;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-left a img {
    max-height: 30px;
  }
}

.header .header-wrap .header-center {
  width: auto;
  padding-left: 5%;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-center {
    display: none;
  }
}

.header .header-wrap .header-center .header-center-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.header .header-wrap .header-center .header-center-menu > li {
  position: relative;
}

.header .header-wrap .header-center .header-center-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.header .header-wrap .header-center .header-center-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.header .header-wrap .header-center .header-center-menu > li > a span {
  margin-left: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.header .header-wrap .header-center .header-center-menu > li .menu1 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .35s ease-in;
  transition: all .35s ease-in;
  position: absolute;
  left: 0;
  background: #FFF;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-top: 3px solid var(--color_main);
}

.header .header-wrap .header-center .header-center-menu > li .menu1:before {
  content: "";
  position: absolute;
  top: -13px;
  left: 17.5px;
  border-style: solid;
  border-width: 5px;
  border-color: transparent transparent var(--color_main) transparent;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li {
  position: relative;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li:hover > a {
  background: var(--color_main);
  color: var(--color2);
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li > a span {
  margin-left: 10px;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li .menu2 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all .35s ease-in;
  transition: all .35s ease-in;
  position: absolute;
  top: -3px;
  left: calc(100% + 1px);
  background: #FFF;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-top: 3px solid var(--color_main);
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li .menu2 > li {
  position: relative;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li .menu2 > li:hover > a {
  background: var(--color_main);
  color: var(--color2);
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li .menu2 > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header .header-wrap .header-center .header-center-menu > li .menu1 > li .menu2 > li > a span {
  margin-left: 10px;
}

.header .header-wrap .header-right {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-right {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .header-wrap .header-right button[data-type="contact-mobile"] {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  text-align: right;
  display: none;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-right button[data-type="contact-mobile"] {
    display: block;
  }
}

.header .header-wrap .header-right button[data-type="contact-mobile"] img {
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.header .header-wrap .header-right button[data-type="contact-desktop"] {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: red;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .header .header-wrap .header-right button[data-type="contact-desktop"] {
    display: none;
  }
}

footer.footer {
  margin-top: 25px;
  background-image: url("https://file.hstatic.net/200000588277/file/map-3f6e1ddb342185a26c476daa59c3_1874dd6431394e1a89c367e95fe34e46.png");
  background-size: cover;
}

footer.footer p {
  margin: 0;
}

footer.footer h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-bottom: 10px;
}

footer.footer h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  border-bottom: 1px solid;
}

@media (max-width: 768px) {
  footer.footer h4 {
    margin-bottom: 10px;
  }
}

footer.footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 0;
}

@media (max-width: 767px) {
  footer.footer .footer-top {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  footer.footer .footer-top {
    margin-left: -10px;
    margin-right: -10px;
  }
}

footer.footer .footer-top .footer-top-item {
  width: calc(100%/3);
}

@media (max-width: 767px) {
  footer.footer .footer-top .footer-top-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  footer.footer .footer-top .footer-top-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  footer.footer .footer-top .footer-top-item {
    width: 50% !important;
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  footer.footer .footer-top .footer-top-item {
    width: 100% !important;
    padding: 10px 10px;
  }
}

@media (max-width: 480px) {
  footer.footer .footer-top .footer-top-item {
    padding: 5px 10px;
  }
}

@media (max-width: 767px) {
  footer.footer .footer-top .footer-top-item h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer.footer .footer-top .footer-top-item h4:after {
    content: '+';
  }
}

footer.footer .footer-top .footer-top-item h4.active:after {
  content: '-';
}

@media (max-width: 767px) {
  footer.footer .footer-top .footer-top-item .footer-top-item-content {
    display: none;
  }
}

footer.footer .footer-top .footer-top-item .footer-top-item-content > p {
  width: 80%;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li:hover a {
  color: var(--color);
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li a {
  padding: 3px 0;
  display: block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li a span {
  font-size: 12px;
  color: #aaa;
  margin-left: 5px;
}

footer.footer .footer-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 0;
}

@media (max-width: 767px) {
  footer.footer .footer-center {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  footer.footer .footer-center {
    margin-left: -10px;
    margin-right: -10px;
  }
}

footer.footer .footer-center .footer-center-item {
  width: calc(100%/3);
}

@media (max-width: 767px) {
  footer.footer .footer-center .footer-center-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  footer.footer .footer-center .footer-center-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  footer.footer .footer-center .footer-center-item {
    width: 100%;
    padding: 15px 10px;
  }
}

footer.footer .footer-center .footer-center-item img {
  margin-top: 10px;
  max-height: 250px;
}

footer.footer .footer-bot {
  background-color: #FFF;
  border-top: 1px solid #E8E8F2;
  padding-top: 25px;
  padding-bottom: 25px;
}

footer.footer .footer-bot * {
  color: var(--color);
}

footer.footer .footer-bot p {
  font-size: 13px;
  color: #6c6c6c;
}

footer.footer .footer-bot img {
  max-width: 150px;
}

@media (max-width: 767px) {
  footer.footer .footer-bot img {
    margin-bottom: 10px;
  }
}

footer.footer .footer-bot .footer-bot-item {
  width: 50%;
}

@media (max-width: 767px) {
  footer.footer .footer-bot .footer-bot-item {
    width: 100%;
    padding: 15px 10px;
  }
}

footer.footer .footer-bot .footer-bot-item img {
  margin-top: 10px;
}

@-webkit-keyframes scroll_product_item_start {
  to {
    -webkit-transform: -webkit-translateY(calc(-100% + 350px));
    transform: translateY(calc(-100% + 350px));
  }
}

@keyframes scroll_product_item_start {
  to {
    -webkit-transform: -webkit-translateY(calc(-100% + 350px));
    transform: translateY(calc(-100% + 350px));
  }
}

@-webkit-keyframes scroll_product_item_end {
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes scroll_product_item_end {
  to {
    -webkit-transform: none;
            transform: none;
  }
}

.product-item {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .product-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .product-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.product-item .product-item-wrap {
  padding: 15px;
  background: var(--color_bg_item);
  border-radius: var(--border_radius);
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .product-item .product-item-wrap:hover {
    -webkit-box-shadow: 0 0 5px 0.5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px 0.5px rgba(0, 0, 0, 0.1);
  }
  .product-item .product-item-wrap:hover .product-item-image.product-item-image-style1 a span {
    -webkit-transform: translateY(calc(-100% + 350px));
            transform: translateY(calc(-100% + 350px));
  }
  .product-item .product-item-wrap:hover .product-item-image.product-item-image-style2 a span img:first-child {
    opacity: 0;
    visibility: hidden;
  }
  .product-item .product-item-wrap:hover .product-item-image.product-item-image-style2 a span img:last-child {
    opacity: 1;
    visibility: visible;
  }
  .product-item .product-item-wrap:hover .product-item-detail .product-item-detail-price span:after {
    opacity: 1;
  }
}

.product-item .product-item-wrap .product-item-image.product-item-image-style1 a {
  display: block;
  height: 350px;
  overflow: hidden;
  border-radius: var(--border_radius);
}

.product-item .product-item-wrap .product-item-image.product-item-image-style1 a span {
  display: block;
  position: relative;
  -webkit-transition: all var(--transition-scroll) linear;
  transition: all var(--transition-scroll) linear;
}

.product-item .product-item-wrap .product-item-image.product-item-image-style1 a span img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-item .product-item-wrap .product-item-image.product-item-image-style2 a {
  display: block;
  height: 350px;
  overflow: hidden;
  border-radius: var(--border_radius);
}

.product-item .product-item-wrap .product-item-image.product-item-image-style2 a span {
  display: block;
  position: relative;
  padding-bottom: 100%;
}

.product-item .product-item-wrap .product-item-image.product-item-image-style2 a span img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.product-item .product-item-wrap .product-item-image.product-item-image-style2 a span img:first-child {
  opacity: 1;
  visibility: visible;
}

.product-item .product-item-wrap .product-item-image.product-item-image-style2 a span img:last-child {
  opacity: 0;
  visibility: hidden;
}

.product-item .product-item-wrap .product-item-detail {
  margin: 10px 0 0;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-name {
  margin: 5px 0;
  height: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 20px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-name a {
  font-size: 14px;
  color: var(--color);
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-price span {
  color: #F30;
  position: relative;
  display: inline-block;
  font-size: 1rem;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-price span:after {
  content: '';
  background-image: url(https://file.hstatic.net/200000588277/file/ezgif.com-gif-maker_552c3c2ddb0348d89adf611cd047bc5a.webp);
  width: 30px;
  height: 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -30px;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-price del {
  color: #AAA;
  font-size: .9rem;
}

.shop-social-sidebar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -125px;
  z-index: 9;
}

@media (max-width: 991px) {
  .shop-social-sidebar {
    display: none;
  }
}

.shop-social-sidebar a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  line-height: 40px;
  padding: 7.5px;
  width: 165px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  background: #ffffff;
  color: #333;
  border: 1px solid #DbDbDb;
  cursor: pointer;
  margin-bottom: 5px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.shop-social-sidebar a.back-to-top {
  opacity: 0;
  visibility: hidden;
}

.shop-social-sidebar a.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.shop-social-sidebar a:hover {
  -webkit-transform: translateX(-120px);
          transform: translateX(-120px);
}

.shop-social-sidebar a img {
  margin-right: 20px;
  height: 100%;
}

.shop-mobar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--color_main);
  display: none;
  z-index: 97;
}

@media (max-width: 991px) {
  .shop-mobar {
    display: block;
  }
}

.shop-mobar .shop-mobar-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop-mobar .shop-mobar-wrap ul li {
  width: calc(100%/4);
  padding: 7.5px 2.5px;
  text-align: center;
}

.shop-mobar .shop-mobar-wrap ul li:not(:last-child) {
  border-right: 1px solid #d9b23a;
}

.shop-mobar .shop-mobar-wrap ul li img {
  max-width: 20px;
}

.shop-mobar .shop-mobar-wrap ul li span {
  font-size: .9rem;
  display: block;
  margin-top: 10px;
  line-height: 1;
  color: var(--color2);
}

.shop-social {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop-social a {
  display: block;
  margin-right: 15px;
}

.shop-social a img {
  max-height: 30px;
}

.shop-menu-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 320px;
  background: #FFF;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.shop-menu-mobile .shop-menu-mobile-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #DbDbDb;
  height: 50px;
}

.shop-menu-mobile .shop-menu-mobile-head label {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

@media (max-width: 1200px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.45rem;
  }
}

@media (max-width: 1024px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.40rem;
  }
}

@media (max-width: 991px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.30rem;
  }
}

@media (max-width: 480px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.35rem;
  }
}

@media (max-width: 360px) {
  .shop-menu-mobile .shop-menu-mobile-head label {
    font-size: 1.30rem;
  }
}

.shop-menu-mobile .shop-menu-mobile-head button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.shop-menu-mobile .shop-menu-mobile-head button svg {
  width: 15px;
  height: 15px;
}

.shop-menu-mobile .shop-menu-mobile-body {
  height: calc(100% - 235px);
  overflow-y: auto;
  overflow-x: hidden;
}

.shop-menu-mobile .shop-menu-mobile-body li:not(:last-child) a {
  border-bottom: 1px solid var(--color_bg);
}

.shop-menu-mobile .shop-menu-mobile-body li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7.5px 15px;
}

.shop-menu-mobile .shop-menu-mobile-body li a.active span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.shop-menu-mobile .shop-menu-mobile-body li a span {
  -webkit-transition: all .5s;
  transition: all .5s;
  font-size: 1.75rem;
  line-height: 1;
}

.shop-menu-mobile .shop-menu-mobile-body li a strong {
  margin-right: auto;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 {
  display: none;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 li a {
  padding-left: 45px;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 .menu2 {
  display: none;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 .menu2 li a {
  padding-left: 75px;
}

.shop-menu-mobile .shop-menu-mobile-foot {
  padding: 5px 15px;
  margin-top: auto;
  width: 100%;
  height: 185px;
}

.shop-menu-mobile .shop-menu-mobile-foot form {
  width: 100%;
  position: relative;
}

.shop-menu-mobile .shop-menu-mobile-foot form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  background: #FFF;
  border: 1px solid #DbDbDb;
  padding: 0 10px;
  height: 35px;
  width: 100%;
}

.shop-menu-mobile .shop-menu-mobile-foot form button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  opacity: .5;
}

.shop-menu-mobile .shop-menu-mobile-foot form button svg {
  width: 20px;
  height: 20px;
}

.modal-contact {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color2);
  width: 850px;
  border-radius: var(--border_radius);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

@media (max-width: 991px) {
  .modal-contact {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .modal-contact {
    width: 75%;
  }
}

@media (max-width: 480px) {
  .modal-contact {
    width: 90%;
  }
}

.modal-contact .modal-contact-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-left {
  width: 40%;
  padding: 10px;
}

@media (max-width: 991px) {
  .modal-contact .modal-contact-wrap .modal-contact-wrap-left {
    display: none;
  }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-left img {
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right {
  padding: 20px;
  width: 60%;
}

@media (max-width: 991px) {
  .modal-contact .modal-contact-wrap .modal-contact-wrap-right {
    width: 100%;
  }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content {
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content {
    max-width: 100%;
  }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form {
  margin: 10px auto;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form input,
.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  margin: 5px 0px;
  width: 100%;
  border: 1px solid var(--color_main);
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  border-radius: var(--border_radius);
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button {
  background: var(--color_main);
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--color_main);
  text-align: center;
  border-radius: var(--border_radius);
  color: var(--color2);
  width: 100%;
  text-transform: uppercase;
  margin-top: 10px;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button span {
  font-size: 15px !important;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form span {
  font-size: 11px;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-close {
  height: 25px;
  width: 25px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 9;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-close svg {
  width: 15px;
  height: 15px;
  fill: var(--color1);
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-close:hover svg {
  fill: var(--color_main);
}

.modal-contact .modal-contact-wrap-right-content p {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 0.5rem;
}

.home-slider {
  max-width: 1920px;
  margin: 0 auto;
}

.home-slider a {
  display: block;
}

.home-slider .slick-dots {
  bottom: 10px;
}

.home-about {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .home-about {
    padding: 15px 0;
  }
}

.home-about .home-about-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .home-about .home-about-wrap {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  .home-about .home-about-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.home-about .home-about-wrap .home-about-left {
  width: 50%;
}

@media (max-width: 767px) {
  .home-about .home-about-wrap .home-about-left {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-about .home-about-wrap .home-about-left {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .home-about .home-about-wrap .home-about-left {
    width: 100%;
  }
}

.home-about .home-about-wrap .home-about-left .home-about-vector {
  position: absolute;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-about .home-about-wrap .home-about-left .home-about-vector {
    display: none;
  }
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector1 {
  left: 0;
  top: 15%;
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector1 img {
  -webkit-animation: ping_pong 5s linear infinite;
          animation: ping_pong 5s linear infinite;
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector2 {
  left: 30%;
  top: 5%;
  opacity: .5;
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector2 img {
  -webkit-animation-name: rotate_wrong;
          animation-name: rotate_wrong;
  -webkit-animation-duration: 300s;
          animation-duration: 300s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector3 {
  left: 20%;
  bottom: 0%;
}

.home-about .home-about-wrap .home-about-left .home-about-vector.home-about-vector3 img {
  -webkit-animation-name: rotate_correct;
          animation-name: rotate_correct;
  -webkit-animation-duration: 350s;
          animation-duration: 350s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.home-about .home-about-wrap .home-about-left picture {
  position: relative;
  z-index: 2;
}

.home-about .home-about-wrap .home-about-right {
  width: 50%;
}

@media (max-width: 767px) {
  .home-about .home-about-wrap .home-about-right {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-about .home-about-wrap .home-about-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .home-about .home-about-wrap .home-about-right {
    width: 100%;
    margin-top: 15px;
  }
}

.home-how {
  padding: 30px 0;
}

@media (max-width: 767px) {
  .home-how {
    padding: 15px 0;
  }
}

.home-how .home-how-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .home-how .home-how-wrap {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  .home-how .home-how-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.home-how .home-how-wrap .home-how-left {
  width: 50%;
}

@media (max-width: 767px) {
  .home-how .home-how-wrap .home-how-left {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-how .home-how-wrap .home-how-left {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .home-how .home-how-wrap .home-how-left {
    width: 100%;
  }
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li {
  position: relative;
  padding: 0 0 25px 75px;
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li:not(:last-child):before {
  content: "";
  position: absolute;
  top: 20px;
  width: 2px;
  height: 100%;
  background-color: #ff5d22;
  z-index: 1;
  left: 25px;
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li:not(:last-child):after {
  content: "›";
  position: absolute;
  left: 22.75px;
  color: #ff5d22;
  bottom: 0;
  font-size: 35px;
  line-height: 1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li span {
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 50px;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 5px #edf1fe;
          box-shadow: 0 0 0 5px #edf1fe;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
  font-style: italic;
  z-index: 2;
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li h3 {
  font-size: 1.5rem;
}

.home-how .home-how-wrap .home-how-left ul.home-how-left-data li p {
  margin: 0;
}

.home-how .home-how-wrap .home-how-right {
  width: 50%;
}

@media (max-width: 767px) {
  .home-how .home-how-wrap .home-how-right {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-how .home-how-wrap .home-how-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .home-how .home-how-wrap .home-how-right {
    width: 100%;
  }
}

.home-how .home-how-wrap .home-how-right img {
  -webkit-animation: ping_pong 5s linear infinite;
          animation: ping_pong 5s linear infinite;
}

.home-review {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F7FAFF), to(var(--color_index_review)));
  background: linear-gradient(to bottom, #F7FAFF, var(--color_index_review));
  position: relative;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .home-review {
    padding: 15px 0;
  }
}

.home-review .home-review-vector {
  position: absolute;
  z-index: 1;
  opacity: 1;
  -webkit-animation: ping_pong 5s linear infinite;
          animation: ping_pong 5s linear infinite;
  top: -25px;
  left: 0;
}

.home-review .home-review-head {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .home-review .home-review-head {
    max-width: 100%;
  }
}

.home-review .home-review-head p {
  max-width: 60%;
  margin: 10px auto 0;
  color: var(--color);
}

@media (max-width: 991px) {
  .home-review .home-review-head p {
    max-width: 100%;
  }
}

.home-review .home-review-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px -30px 0;
}

@media (max-width: 1200px) {
  .home-review .home-review-wrap {
    margin: 55px -30px 0;
  }
}

@media (max-width: 1024px) {
  .home-review .home-review-wrap {
    margin: 50px -30px 0;
  }
}

@media (max-width: 991px) {
  .home-review .home-review-wrap {
    margin: 45px -30px 0;
  }
}

@media (max-width: 767px) {
  .home-review .home-review-wrap {
    margin: 40px -30px 0;
  }
}

@media (max-width: 480px) {
  .home-review .home-review-wrap {
    margin: 35px -30px 0;
  }
}

@media (max-width: 360px) {
  .home-review .home-review-wrap {
    margin: 30px -30px 0;
  }
}

.home-review .home-review-wrap .home-review-item {
  padding: 0 30px;
  width: calc(100%/3);
  position: relative;
}

@media (max-width: 991px) {
  .home-review .home-review-wrap .home-review-item {
    width: 100%;
    padding: 15px 30px;
  }
}

.home-review .home-review-wrap .home-review-item .home-review-item-quote {
  position: absolute;
  top: -25px;
  left: 5px;
  background: var(--color_main);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--color2);
  border-radius: 999px;
  font-size: 1.5rem;
  z-index: 2;
}

@media (max-width: 991px) {
  .home-review .home-review-wrap .home-review-item .home-review-item-quote {
    top: 0;
    left: 15px;
  }
}

.home-review .home-review-wrap .home-review-item .home-review-item-quote img {
  width: 25px;
  display: inline-block;
  padding: initial;
}

.home-review .home-review-wrap .home-review-item p {
  padding: 50px;
  background: #FFF;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.home-review .home-review-wrap .home-review-item p:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 35px;
  border-style: solid;
  border-width: 20px;
  border-color: #FFF transparent transparent transparent;
  z-index: 2;
}

.home-review .home-review-wrap .home-review-item .home-review-item-author {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-review .home-review-wrap .home-review-item .home-review-item-author img {
  border-radius: 999px;
  max-height: 50px;
  margin-right: 15px;
}

.home-review .home-review-wrap .home-review-item .home-review-item-author strong {
  font-size: 1.25rem;
  color: var(--color2);
}

.home-review .home-review-wrap .home-review-item .home-review-item-author strong span {
  font-weight: normal;
  display: block;
  color: var(--color2);
  font-size: 1rem;
}

.home-counter {
  position: relative;
}

.home-counter .home-counter-vector {
  position: absolute;
  z-index: 1;
  opacity: .25;
  -webkit-animation: ping_pong 5s linear infinite;
          animation: ping_pong 5s linear infinite;
  bottom: -15%;
  right: 0;
}

.home-counter .home-counter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  padding: 45px 0;
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  .home-counter .home-counter-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (max-width: 1200px) {
  .home-counter .home-counter-wrap {
    padding: 40px 0;
  }
}

@media (max-width: 1024px) {
  .home-counter .home-counter-wrap {
    padding: 35px 0;
  }
}

@media (max-width: 991px) {
  .home-counter .home-counter-wrap {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  .home-counter .home-counter-wrap {
    padding: 20px 0;
  }
}

@media (max-width: 360px) {
  .home-counter .home-counter-wrap {
    padding: 15px 0;
  }
}

.home-counter .home-counter-wrap .home-counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: calc(100%/4);
  cursor: pointer;
  -webkit-transition: all .75s;
  transition: all .75s;
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap .home-counter-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-counter .home-counter-wrap .home-counter-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .home-counter .home-counter-wrap .home-counter-item {
    width: calc(100%/2);
    margin: 15px 0;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.home-counter .home-counter-wrap .home-counter-item:hover i {
  color: var(--color2);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.home-counter .home-counter-wrap .home-counter-item span {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 1024px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 991px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 360px) {
  .home-counter .home-counter-wrap .home-counter-item span {
    width: 30px;
    height: 30px;
  }
}

.home-counter .home-counter-wrap .home-counter-item span i {
  font-size: 45px;
  color: #0ce0ff;
  -webkit-transition: all .8s linear;
  transition: all .8s linear;
}

.home-counter .home-counter-wrap .home-counter-item strong {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color2);
  line-height: 3rem;
  padding-left: 10px;
}

.home-counter .home-counter-wrap .home-counter-item strong small {
  font-weight: bold;
}

@media (max-width: 1200px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.9rem;
  }
}

@media (max-width: 1024px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.7rem;
  }
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.5rem;
  }
}

@media (max-width: 360px) {
  .home-counter .home-counter-wrap .home-counter-item strong {
    font-size: 2.4rem;
  }
}

.home-counter .home-counter-wrap .home-counter-item p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  color: #c2dfff;
  font-size: 1.75rem;
}

@media (max-width: 1200px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.65rem;
  }
}

@media (max-width: 1024px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.55rem;
  }
}

@media (max-width: 991px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.45rem;
  }
}

@media (max-width: 767px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.25rem;
  }
}

@media (max-width: 360px) {
  .home-counter .home-counter-wrap .home-counter-item p {
    font-size: 1.15rem;
  }
}

.home-bigban a {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
}

.home-qa {
  overflow: hidden;
}

.home-qa .home-qa-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .home-qa .home-qa-wrap {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  .home-qa .home-qa-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.home-qa .home-qa-wrap .home-qa-left {
  width: 40%;
  position: relative;
}

@media (max-width: 767px) {
  .home-qa .home-qa-wrap .home-qa-left {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-qa .home-qa-wrap .home-qa-left {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .home-qa .home-qa-wrap .home-qa-left {
    width: 100%;
  }
}

.home-qa .home-qa-wrap .home-qa-left:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 200%;
  background: #F7FAFF;
  z-index: -1;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data {
  padding: 50px 0 50px;
  text-align: center;
}

@media (max-width: 991px) {
  .home-qa .home-qa-wrap .home-qa-left .home-qa-left-data {
    position: relative;
    padding: 15px 0 50px;
    top: initial;
  }
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .home-qa-left-data-item {
  margin: 0 auto;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .home-qa-left-data-item img {
  margin: 0 auto 10px;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .home-qa-left-data-item h3 {
  font-size: 1.5rem;
  max-width: 90%;
  margin: 0 auto 10px;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .home-qa-left-data-item p {
  max-width: 80%;
  margin: 0 auto 10px;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .home-qa-left-data-item a {
  max-width: 200px;
}

.home-qa .home-qa-wrap .home-qa-left .home-qa-left-data .slick-dots {
  bottom: 25px;
}

.home-qa .home-qa-wrap .home-qa-right {
  width: 60%;
}

@media (max-width: 767px) {
  .home-qa .home-qa-wrap .home-qa-right {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 767px) {
  .home-qa .home-qa-wrap .home-qa-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .home-qa .home-qa-wrap .home-qa-right {
    width: 100%;
  }
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data {
  max-width: 80%;
  margin: 10% auto;
}

@media (max-width: 991px) {
  .home-qa .home-qa-wrap .home-qa-right .home-qa-right-data {
    max-width: 100%;
    margin: 0;
  }
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul {
  margin-top: 20px;
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li {
  background: var(--color_bg_item);
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li:first-child > div {
  display: block;
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li.active label:after {
  content: "-";
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0;
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li label:after {
  content: "+";
  float: right;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #FFF;
  border-radius: 5px;
}

.home-qa .home-qa-wrap .home-qa-right .home-qa-right-data ul li div {
  display: none;
  padding-top: 10px;
}

.home-collections {
  padding: 30px 0;
}

@media (max-width: 767px) {
  .home-collections {
    padding: 15px 0;
  }
}

.home-collections .home-collections-head {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}

.home-collections .home-collections-head .section-title-all {
  margin-bottom: 0;
}

.home-collections .home-collections-head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .home-collections .home-collections-head ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .home-collections .home-collections-head ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.home-collections .home-collections-head ul li {
  position: relative;
  font-size: 1.25rem;
}

.home-collections .home-collections-head ul li.active a {
  color: var(--color_main);
}

.home-collections .home-collections-head ul li:not(:first-child) {
  padding-left: 30px;
}

.home-collections .home-collections-head ul li:not(:last-child):after {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -20px;
  border-radius: 999px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .home-collections .home-collections-head ul li:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 991px) {
  .home-collections .home-collections-head ul li {
    width: 50%;
    padding: 0 !important;
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .home-collections .home-collections-head ul li {
    text-align: left;
    width: auto;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin-right: 20px;
  }
}

.home-collections .home-collections-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .home-collections .home-collections-body {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 767px) {
  .home-collections .home-collections-body {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.home-collections .home-collections-body .product-item {
  width: calc(100%/4);
}

@media (max-width: 767px) {
  .home-collections .home-collections-body .product-item {
    width: calc(100%/2);
  }
}

@media (max-width: 480px) {
  .home-collections .home-collections-body .product-item {
    width: calc(100%/1);
  }
}

.home-letter {
  overflow: hidden;
  padding: 30px 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .home-letter {
    padding: 15px 0;
  }
}

.home-letter .home-letter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-letter .home-letter-wrap .home-letter-left {
  width: 40%;
}

@media (max-width: 991px) {
  .home-letter .home-letter-wrap .home-letter-left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.home-letter .home-letter-wrap .home-letter-left img {
  padding: 10%;
}

.home-letter .home-letter-wrap .home-letter-right {
  width: 40%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .home-letter .home-letter-wrap .home-letter-right {
    width: 100%;
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.home-letter .home-letter-wrap .home-letter-right .section-title-all h2 {
  color: #FFF;
}

.home-letter .home-letter-wrap .home-letter-right .section-title-all p {
  color: #FFF;
}

.home-letter .home-letter-wrap .home-letter-right form {
  width: 100%;
}

.home-letter .home-letter-wrap .home-letter-right form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  background: #FFF;
  border: 1px solid #DbDbDb;
  padding: 0 10px;
  height: 35px;
  width: 275px;
}

@media (max-width: 480px) {
  .home-letter .home-letter-wrap .home-letter-right form input {
    width: 240px;
  }
}

@media (max-width: 360px) {
  .home-letter .home-letter-wrap .home-letter-right form input {
    width: 205px;
  }
}

.home-letter .home-letter-wrap .home-letter-right form button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  background: var(--color_main);
  border: 1px solid var(--color_main);
  padding: 0 10px;
  height: 34px;
  color: var(--color2);
  text-transform: uppercase;
  font-weight: bold;
}
/*# sourceMappingURL=index.css.map */