/***** FONTS *****/
@font-face {
  font-family: "Manrope-Regular";
  font-display: swap;
  src: url("./Manrope-Regular.woff2") format("woff2"), url("./Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope-Bold";
  font-display: swap;
  src: url("./Manrope-Bold.woff2") format("woff2"), url("./Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope-ExtraBold";
  font-display: swap;
  src: url("./Manrope-ExtraBold.woff2") format("woff2"), url("./Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "TOMOBossa-Black";
  font-display: swap;
  src: url("./TOMOBossa-Black.woff2") format("woff2"), url("./TOMOBossa-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

/***** GENERAL ELEMENTS *****/
/***** BLOCKS GLOBAL *****/
/*-----generals-----*/
html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1300px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 1140px) {
  html {
    font-size: 13px;
  }
}

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

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

@media (max-width: 390px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "Manrope-Regular";
  font-size: 1rem;
  line-height: 140%;
  color: #6A51B7;
  background: #ffffff;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  /*	@media (max-width: 1140px) {
  		font-size: 1.2rem;
  	}
  	@media (max-width: 1024px) {
  		font-size: 1.4rem;
  	}
  	@media (max-width: 480px) {
  		font-size: 1.2rem;
  	}
  	*/
}

body.no-scroll {
  height: 100%;
  overflow: hidden;
  position: fixed;
}

.wrapper {
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  display: block;
}

main {
  position: relative;
  /* z-index: 2001; */
  margin: auto;
  /* padding-top: 64px; */
  max-width: 100%;  /* 最大宽度从2150px设置为100%, 避免在超过2150px宽度的显示器上面一些全屏的模块(如banner)左右会有空白 */
  /* overflow: hidden; */
  /* 产品信息左边固定右边滚动时，需要计算区段以上部分距离因此需开启BFC以保证精准高度，然而邮件订阅模块主流邮件下拉过多时会被遮挡，因此又暂时取消后期再精准设计导航模块。 */
}

/* @media (max-width: 767px) {
  main {
    padding-top: 4.5rem;
  }
} */

section {
  padding: 4.8rem 0;
}

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

.container {
  width: 78rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 1140px) {
  .container {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.md-hidden {
  display: none;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

::-webkit-scrollbar {
  width: 0.375rem;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  width: 0.375rem;
  height: 18.75rem;
  border-radius: 0.9375rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00569f;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
}

*:hover {
  transition: 0.3s;
}

html, body {
  transition: none !important;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

a:focus {
  outline: none;
  outline-offset: 0;
}

figure {
  margin: 0;
}

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

svg,
svg:hover,
path,
polygon {
  transition: 0.05s;
}

svg:not(:root) {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: normal;
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: #ff0;
  color: #000;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #f2f2f2;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  outline-offset: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 0.125rem;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*-----buttons----*/
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  border: 2px solid #0c0c0c;
  border-radius: 5px;
  background: transparent;
  font-family: "Manrope-Regular";
  font-size: 1rem;
  line-height: 180%;
  color: #0c0c0c;
  padding: 1.125rem 2.5rem;
}

.button svg {
  margin-left: 8px;
}

@media (max-width: 560px) {
  .button {
    border-width: 1px;
  }
}

.button:hover {
  background: #6A51B7;
  border-color: #6A51B7;
  color: #fff;
}

.button-solid {
  border-color: #6A51B7;
  background: #6A51B7;
  color: #fff;
}

.button-solid:hover,
.button-solid:focus {
  opacity: 0.8;
  color: #fff !important;
}

.button-global {
  border-color: #6A51B7;
  color: #6A51B7;
}

.button-global:hover {
  background: #6A51B7;
  border-color: #6A51B7;
  color: #fff;
}

.button-global:hover svg path {
  fill: #fff;
}

@media (max-width: 992px) {
  .button-global:hover {
    background: unset;
    border-color: unset;
    color: unset;
  }
  .button-global:hover svg path {
    fill: #6A51B7;
  }
}

.button-white {
  color: #fff;
  border-color: #fff;
}

.button-white:hover {
  background: #fff;
  border-color: #fff;
  color: #6A51B7;
}

/*-----title----*/
.section-title {
  font-family: "TOMOBossa-Black";
  font-size: 3.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 680px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.title {
  font-family: "Manrope-Bold";
  font-size: 1.5rem;
  line-height: 140%;
}

@media (max-width: 480px) {
  .title {
    font-size: 1.2rem;
  }
}

.subtitle {
  font-family: "Manrope-Regular";
  font-weight: 400;
  font-size: 1rem;
}

/***** COMPONENTS GLOBAL *****/
/*----header-----*/
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent;
  background-image: none;
  transition: background-color 15768000s ease-in-out 0s;
}

.home header .search-bar input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

@media (max-width: 992px) {
  .home header .nav {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.home header.sticky {
  background-color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* z-index: 6000; */
  z-index: 1000;
  width: 100%;
  background-color: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #c2b8ff;
  transition: none;
}

@media (min-width: 1200px) {
  header {
    height: 90px;
  }
  header>.container {
    width: 94rem;
    max-width: 95%;
  }
}

@media (max-width: 1199px) {
  header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

header.sticky {
  box-shadow: 0px 4px 2.125rem rgba(0, 0, 0, 0.05);
  /* background-color: rgba(255, 255, 255, 0.6); */
  background-color: rgba(255, 255, 255, 1);
}

header .core {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  header .core {
    position: relative;
    z-index: 200;
  }
}

header .logo {
  width: auto;
  text-align: center;
}

@media (max-width: 992px) {
  header .logo {
    text-align: center;
    width: 30%;
    position: relative;
    z-index: 100;
  }
}

header .logo img {
  width: 10rem;
}

header .search-bar {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  z-index: 50;
  /* padding-top: 1rem; */
  /* padding-bottom: 1rem; */
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
}

header .search-bar.active {
  top: calc(100% + 1px);
  opacity: 1;
  visibility: visible;
}

header .search-bar .search {
  width: 100%;
  position: relative;
}

header .search-bar .search svg {
  position: absolute;
  top: 32%;
  left: 1.3rem;
  width: 1.5rem;
  height: auto;
  cursor: pointer;
  z-index: 1;
}

/* header .search-bar .search svg path {
  fill: #606060;
} */

header .search-bar .search input {
  width: 100%;
  border: 1px solid #606060;
  border-radius: 5px;
  font-size: 1.25rem;
  padding: 0.5rem 1.25rem 0.5rem 2rem;
  background-color: transparent;
  color: #0c0c0c;
  display: flex;
  box-sizing: border-box;
}

header .search-bar .search input:focus {
  border-color: #6A51B7;
}

header .site-bar {
  width: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  header .site-bar {
    width: 30%;
    position: relative;
    z-index: 100;
  }
}

header .site-bar.bar-left {
  justify-content: flex-start;
  display: none;
}

@media (max-width: 1199px) {
  header .site-bar.bar-left {
    display: block;
  }
}

header .site-bar.bar-right {
  justify-content: flex-end;
  position: relative;
  z-index: 100;
}

@media (max-width: 1199px) {
  header .site-bar.bar-right .but-search {
    display: none;
  }
}

header .site-bar a,
header .site-bar span {
  margin-right: 1rem;
  cursor: pointer;
}

@media (max-width: 1199px) {

  header .site-bar a,
  header .site-bar span {
    margin-right: 0.5rem;
  }
}

header .site-bar a img,
header .site-bar a svg,
header .site-bar span img,
header .site-bar span svg {
  width: 1.5rem;
  height: auto;
}

header .site-bar a:hover svg path,
header .site-bar span:hover svg path {
  fill: #f5a240;
}
@media (max-width: 992px) {
  header .site-bar a:hover svg path,
  header .site-bar span:hover svg path {
    fill: #6A51B7;
  }
}

@media (max-width: 992px) {
  header .nav {
    position: fixed;
    top: 0;
    left: -150%;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    z-index: 10;
    padding-top: 8rem;
    min-height: 100vh;
  }

  header .nav.active {
    left: 0;
  }
}

header .nav ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 992px) {
  header .nav ul {
    flex-wrap: wrap;
  }
}

header .nav ul li {
  padding: 0;
  margin: 0;
}

@media (max-width: 992px) {
  header .nav ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
}

header .nav ul li a {
  padding: 20px 1.3rem;
  display: inline-flex;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
}

@media (max-width: 992px) {
  header .nav ul li a {
    font-size: 1.5rem;
    padding: 0;
  }
}

header .nav ul li a:hover {
  color: #f5a240;
}

header .nav ul li a.active {
  color: #f5a240;
  border-color: #f5a240;
}

header .nav ul li:hover .nav-banner {
  position: absolute;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  overflow: visible;
}

header .nav .nav-banner {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  height: 0;
  overflow: hidden;
}

@media (max-width: 992px) {
  header .nav .nav-banner {
    display: none;
  }
}

header .nav .nav-banner .container-fluid {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  padding-right: 1rem;
  padding-left: 0;
}

header .nav .nav-banner .image {
  min-width: 15.3125rem;
  width: 20%;
  background-color: #f3f1ff;
  background-size: cover;
  background-position: 50% 0;
}

header .nav .nav-banner .block {
  max-width: 23rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #6A51B7;
}

header .nav .nav-banner .block .section-title {
  font-size: 2.25rem;
}

header .nav .nav-banner .block p {
  font-size: 1rem;
}

header .nav .nav-banner .block .button {
  width: 13.75rem;
  height: 3rem;
  padding: 0;
  margin: 0 auto;
}

header .nav .nav-banner .products {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.875rem 0;
}

header .nav .nav-banner .products .item {
  width: calc(33.33% - 1rem);
  text-align: center;
  display: block;
  padding: 0;
}

header .nav .nav-banner .products .item img {
  width: 100%;
  margin-bottom: 1rem;
}

header .nav .nav-banner .products .item .name {
  color: #6A51B7;
  font-size: 1rem;
  text-transform: capitalize;
}

header .nav .nav-banner .products .item:hover .name {
  color: #f5a240;
}

/*-----rating-----*/
.rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.625rem 0;
  color: #f5a240;
}

@media (max-width: 560px) {
  .rating {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.rating .stars {
  width: 7.5rem;
  height: 1.5rem;
  position: relative;
  background-image: url(./star-off.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.rating .stars .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.5rem;
  background-image: url(./star-on.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.rating .rating-agregate {
  display: none;
}

.rating .rating-count {
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* .owl-carousel .owl-nav.disabled {
  display: none !important;
} */

.owl-carousel .owl-dots {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  border-radius: 0.8125rem;
  margin: 0 auto;
}

.owl-carousel .owl-dots .owl-dot {
  width: 3.75rem;
  height: 0.25rem;
  margin: 0.3rem;
  background: #cbcbcb;
  border: 1px solid #cbcbcb;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: #6A51B7;
  border: 1px solid #8e7de7;
}

@media (max-width: 767px) {
  .owl-carousel .owl-dots .owl-dot {
    width: 2rem;
    height: 0.4rem;
  }
}

.tabs-product {
  padding-top: 5rem;
  position: relative;
}

.tabs-product .tabs-list {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #606060;
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
}

.tabs-product .tabs-list.sticky {
  position: fixed;
  z-index: 100;
  top: 4rem;
  width: 100%;
  padding-top: 2.5rem;
  background: #F9F9F9;
}

.tabs-product .tabs-list li {
  margin: 0 1.875rem;
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  color: #606060;
  cursor: pointer;
}

@media (max-width: 680px) {
  .tabs-product .tabs-list {
    padding: 0 .75rem;
  }

  .tabs-product .tabs-list li {
    margin: 0;
    font-size: 1rem;
    flex: auto;
  }
}

.tabs-product .tabs-list li.active {
  border-color: #6A51B7;
  color: #6A51B7;
}

.product {
  position: relative;
  text-align: center;
}

@media (max-width: 560px) {
  .product {
    text-align: left;
  }
}

.product .image {
  margin-bottom: 1rem;
  display: block;
}

.product .image img {
  width: 100%;
}

.product .image img:nth-child(2) {
  display: none;
}

.product .image img:nth-child(1) {
  display: block;
}

.product .name {
  font-family: "Manrope-Bold";
  font-size: 1rem;
}

.product .name:hover {
  color: #f5a240;
}

@media (max-width: 560px) {
  .product .name {
    line-height: 1;
  }
}

.product .rating {
  justify-content: center;
  margin: 0.6rem auto;
}

@media (max-width: 560px) {
  .product .rating {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .product .rating .rating-count {
    width: 100%;
    margin: 0.5rem 0 0;
    line-height: 140%;
  }
}

.product .price {
  color: #0c0c0c;
  margin: 0.6rem auto 0.7rem;
}

@media (max-width: 560px) {
  .product .price {
    font-family: "Manrope-Bold";
  }
}

.product .button {
  width: 100%;
  max-width: 260px;
  height: 40px;
  padding: 8px 16px;
  border-width: 1px;
  line-height: 40px;
}

.product:hover .image img:nth-child(2) {
  display: block;
}

.product:hover .image img:nth-child(1) {
  display: none;
}

.post {
  width: calc(33.33% - 1rem);
  background: #ffffff;
  box-shadow: 0.125rem 0.125rem 0.375rem rgba(91, 72, 188, 0.15);
  border-radius: 0.3125rem;
}

@media (max-width: 992px) {
  .post {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .post {
    width: 100%;
  }
}

.post .image img {
  width: 100%;
  max-height: 200px;
  border-radius: 0.3125rem 0.3125rem 0px 0px;
}

.post .caption {
  padding: 1.25rem;
  border-radius: 0px 0px 0.3125rem 0.3125rem;
  background-color: #ffffff;
  color: #0c0c0c;
}

.post .caption .titl {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1rem;
}

.post .caption .meta {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #606060;
  display: flex;
  align-items: center;
}

.post .caption .meta a {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}

.post .caption .meta a:after {
  content: "";
  width: 1px;
  height: 0.875rem;
  background: #606060;
  margin-left: 0.5rem;
}

.post .caption .meta a:hover {
  color: #f5a240;
}

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

/*------ accordion ------*/
.accordion {
  margin-top: 2.5rem;
}

.accordion .accordion-box {
  background: #ffffff;
  border-bottom: 1px solid #6A51B7;
}

.accordion .accordion-box .top {
  min-height: 4.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  color: #0c0c0c;
  cursor: pointer;
}

.accordion .accordion-box .top:after {
  content: "+";
  font-family: "Manrope-Regular";
  font-size: 1.5em;
}

.accordion .accordion-box .accordion-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
  box-sizing: border-box;
}

.accordion .accordion-box .accordion-body .block {
  padding: 0 2rem 1rem;
  font-size: 1.0625rem;
  color: #000000;
}

.accordion .accordion-box .accordion-body .block p {
  margin-top: 0;
}

.accordion .accordion-box.active .top {
  color: #6A51B7;
}

.accordion .accordion-box.active .top:after {
  content: "-";
}

.breadcrumbs {
  height: auto;
  margin: 2rem auto;
}

.breadcrumbs .navigation {
  width: 100%;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  color: #606060;
  font-size: 1rem;
  line-height: 1;
}

.breadcrumbs .navigation a {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs .navigation span {
  color: #0c0c0c;
  font-family: "Manrope-Bold";
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: auto;
  line-height: 1.2;
}

.breadcrumbs a:after {
  content: "";
  margin: 0 0.4rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  background-image: url(./arrow.svg);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.breadcrumbs a:hover {
  color: #6A51B7;
}

.page-banner {
  min-height: 30.5rem;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-banner:after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 60%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 1080px) {
  .page-banner {
    min-height: 22rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    min-height: 16rem;
  }

  .page-banner:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0));
  }
}

.page-banner .container {
  position: relative;
  z-index: 10;
}

.page-banner .box {
  max-width: 25rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 180%;
}

@media (max-width: 680px) {
  .page-banner .box {
    text-align: center;
    margin: 0 auto;
    font-size: 1rem;
  }
}

.page-banner .box .title {
  font-family: "TOMOBossa-Black";
  font-size: 2.25rem;
  line-height: 1.3;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.pagination .page-nav {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope-Bold";
}

.pagination .page-nav.curent {
  color: #6A51B7;
}

.pagination a {
  color: #000000;
}

.pagination a:hover {
  color: #6A51B7;
}

.pagination .next,
.pagination .prev {
  background-color: #ffffff;
  border: 1px solid #bebebe;
  border-radius: 0.25rem;
}

.pagination .next svg,
.pagination .prev svg {
  width: 0.9rem;
  height: auto;
}

.pagination .next svg path,
.pagination .prev svg path {
  fill: #000000;
}

.pagination .next:hover svg path,
.pagination .prev:hover svg path {
  fill: #6A51B7;
}

.pagination .next:disabled,
.pagination .next.disabled,
.pagination .prev:disabled,
.pagination .prev.disabled {
  cursor: default;
  opacity: 0.5;
}

.pagination .next:disabled:hover svg path,
.pagination .next.disabled:hover svg path,
.pagination .prev:disabled:hover svg path,
.pagination .prev.disabled:hover svg path {
  fill: #000000;
}

.pagination .prev {
  transform: rotate(180deg);
}

/*------ modal ------*/
.state {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: -1;
}

.state.active {
  visibility: visible;
  opacity: 1;
  z-index: 6666;
  background: rgba(66, 66, 68, 0.95);
  transition: 0.3s;
}

.state-box {
  width: 41.5rem;
  max-width: 96%;
  min-height: 12.5rem;
  max-height: 100%;
  height: auto;
  box-shadow: -1.0625rem 0.625rem 5rem rgba(116, 128, 136, 0.5);
  border-radius: 0.5rem;
  background-color: #f8f8f8;
  position: relative;
  transition: 0.3s;
  padding: 1.875rem 2.8125rem;
}

@media (max-width: 414px) {
  .state-box {
    padding: 1.5rem;
  }
}

.state-box .close {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: -0.9375rem;
  right: -0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

@media (max-width: 540px) {
  .state-box .close {
    top: 1.5rem;
    right: 1.5rem;
  }
}

.state-box .close:hover {
  opacity: 0.8;
}

.state-box .title {
  text-align: center;
  font-family: "Gilroy-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 3rem;
  /* identical to box height */
  color: #424244;
}

.state-box .text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 2rem;
}

.state-box .forma {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.state-box .forma .wide-row {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.state-box .forma .first-row {
  width: 49%;
  margin-bottom: 1rem;
  position: relative;
}

.state-box .forma input {
  width: 100%;
  height: 3.5rem;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding-left: 2.75rem;
  border-radius: 0.5rem;
  font-family: "Gilroy-Regular";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.state-box .forma input.field-name {
  background-image: url(./id-card.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma input.field-tel {
  background-image: url(./phone-call.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma input.field-chat {
  background-image: url(./messenger.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma input.field-map {
  background-image: url(./map-1.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma input.field-data {
  background-image: url(./calendar.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma .select2-container {
  z-index: 6667 !important;
  width: 100% !important;
}

.state-box .forma .select2-container .select2-selection--single {
  height: 3rem;
  padding: 0.3125rem 0.625rem 0.3125rem 2.75rem;
  background-image: url(./messenger.svg);
  background-repeat: no-repeat;
  background-position: 0.875rem;
}

.state-box .forma .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 2.5625rem;
}

.state-box .buttons {
  width: 100%;
  margin: 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state-box .button {
  margin-top: 1rem;
  width: 100%;
  height: 3.5rem;
  font-family: "Gilroy-Medium";
  font-style: normal;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.625rem;
}

.state-box .btn {
  display: flex;
  width: 10rem;
  height: 2.75rem;
  font-family: "Gilroy-Regular";
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1;
  padding: 1rem 1rem;
}

@media (max-width: 540px) {
  .state-box .btn {
    width: 9.5rem;
  }
}

.state-box .soc {
  width: 100%;
  margin-bottom: 1.5rem;
}

.state-box .soc a {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.state-box .soc a img {
  width: 1.2rem;
  margin-right: 0.5rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none !important;
}

/*-----footer-----*/
/*
.home .footer-decor {
	position: absolute;
	bottom: 14rem;
	right: 0;
	width: 9.375rem;

	z-index: 3000;
	@media (max-width: 480px) {
		width: 14rem;
		bottom: 30rem;
	}
	@media (max-width: 414px) {
		width: 12rem;
		bottom: 34rem;
		right: -1rem;
	}
	@media (max-width: 320px) {
		width: 10rem;
		bottom: 38rem;
	}
	img {
		width: 100%;
		height: auto;
	}
}
*/
/* .footer-decor {
  position: absolute;
  bottom: 17rem;
  right: 0;
  width: 5.25rem;
  z-index: 3000;
}

@media (max-width: 480px) {
  .footer-decor {
    width: 14rem;
    bottom: 22rem;
  }
}

@media (max-width: 414px) {
  .footer-decor {
    width: 10rem;
    bottom: 26rem;
  }
}

@media (max-width: 320px) {
  .footer-decor {
    width: 8rem;
    bottom: 38rem;
  }
}

.footer-decor img {
  width: 100%;
  height: auto;
} */

.up {
  width: 3.5rem;
  height: 3rem;
  background: #ffffff;
  border: 2px solid #6A51B7;
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: -1;
  opacity: 0;
}

.up.sticky {
  z-index: 1000;
  opacity: 1;
}

.up img,
.up svg {
  width: 1.5rem;
  height: auto;
}

.up:hover {
  background-color: #6A51B7;
}

.up:hover svg path {
  fill: #fff;
}

.chat {
  height: 3rem;
  padding: 0.75rem;
  color: #fff;
  background-color: #6A51B7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: fixed;
  right: 1.5rem;
  bottom: 1.2rem;
  z-index: 1000;
}

.chat:hover {
  background-color: #f5a240;
}

@media (max-width: 992px) {
  .chat {
    width: 3.5rem;
  }

  .chat span {
    display: none;
  }
}

footer {
  position: relative;
  color: #fff;
  background-color: #3c2d8b;
  /* z-index: 2000; */
}

footer .footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer .widget {
  min-width: 20%;
}

@media (max-width: 680px) {
  footer .widget {
    min-width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 414px) {
  footer .widget {
    padding-left: 1rem;
  }
}

footer .widget .title {
  line-height: 1;
}

footer .widget .nav ul {
  display: block;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

footer .widget .nav ul li {
  margin: 0 0 1rem;
}

footer .widget .nav ul li a {
  font-family: "Manrope-Regular";
  font-size: 1rem;
  line-height: 1;
}

footer .widget .nav ul li a:hover {
  color: #f5a240;
}

footer a {
  font-family: "Manrope-Regular";
  font-size: 1rem;
}

.fotter-bottom-social {
  padding: 1.8125rem 0;
  background: #29205a;
}

.fotter-bottom-social .social-info {
  /* justify-content: space-between; */
  align-items: center;
}

@media (max-width: 480px) {
  .fotter-bottom-social .social-info {
    flex-direction: column;
  }
}

.fotter-bottom-social .subtitle {
  display: flex;
  align-items: center;
  font-size: 1rem;
  /* margin-right: 1.9375rem; */
}

@media (max-width: 480px) {
  .fotter-bottom-social .subtitle {
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }
}

.fotter-bottom-social .subtitle img,
.fotter-bottom-social .subtitle svg {
  width: 1.25rem;
  height: auto;
  margin-right: 0.6875rem;
}

@media (max-width: 480px) {
  .fotter-bottom-social .subtitle.phone {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.fotter-bottom-social .subtitle.phone:hover {
  color: #f5a240;
}

.fotter-bottom-social .subtitle.phone:hover svg path {
  fill: #f5a240;
}

@media (max-width: 480px) {
  .fotter-bottom-social .social-icon {
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
  }
}

.fotter-bottom-social .social-icon a {
  margin-right: 1rem;
}

@media (max-width: 480px) {
  .fotter-bottom-social .social-icon a {
    margin: 0 0.5rem;
  }
}

.fotter-bottom-social .social-icon a img,
.fotter-bottom-social .social-icon a svg {
  width: 1.25rem;
  height: auto;
}

.fotter-bottom-social .social-icon a:hover svg path {
  fill: #f5a240;
}

.fotter-bottom {
  background: #08041b;
}

.fotter-bottom .row {
  align-items: center;
  /* justify-content: space-between; */
}

.fotter-bottom .copyring {
  padding: 1.4375rem 0;
  font-family: "Manrope-Regular";
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (max-width: 480px) {
  .fotter-bottom .copyring {
    width: 100%;
    margin: 0 0.5rem;
  }
}

.fotter-bottom .copyring img {
  margin-right: 0.5rem;
  width: 1.25rem;
}

.fotter-bottom .police-confident {
  display: flex;
  align-items: center;
  padding: 1.4375rem 0;
}

@media (max-width: 480px) {
  .fotter-bottom .police-confident {
    width: 100%;
    margin: 0 0.5rem 2rem;
    padding: 0;
    justify-content: center;
  }
}

.fotter-bottom .police-confident a {
  font-family: "Manrope-Regular";
  font-size: 0.75rem;
  line-height: 180%;
  margin-left: 1.5rem;
}

@media (max-width: 480px) {
  .fotter-bottom .police-confident a {
    margin: 0 1rem;
  }
}

.fotter-bottom .police-confident a:hover {
  color: #f5a240;
}

.video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  justify-content: space-around;
  overflow: hidden;
}

.video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 !important;
}

.video__button {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
  background: rgba(12, 12, 12, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  margin: auto;
  border: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.video__button:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.1rem solid transparent;
  border-left: 1.8rem solid #fff;
  border-bottom: 1.1rem solid transparent;
  margin-left: 0.3125rem;
  position: relative;
}

@media (max-width: 680px) {
  .video__button {
    width: 5rem;
    height: 5rem;
  }

  .video__button:after {
    border-top: 0.6rem solid transparent;
    border-left: 1rem solid #fff;
    border-bottom: 0.6rem solid transparent;
  }
}

@media (max-width: 414px) {
  .video__button {
    width: 4rem;
    height: 4rem;
  }
}

.video:hover .video__button {
  background: #f5a240;
}

.video:hover .video__button:after {
  border-left-color: #fff;
}

.video--enabled {
  cursor: pointer;
}

/***** SECTIONS GLOBAL (Widgets) *****/
/* .slider {
  margin-top: -5rem;
} */

/* .slider .item {
  height: 100vh;
  min-height: 45.625rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  padding: 2rem;
}

.slider .item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .slider .item {
    height: 45rem;
    min-height: 45rem;
  }
}

@media (max-width: 480px) {
  .slider .item {
    height: 27rem;
    min-height: 27rem;
  }
}

.slider .item .container {
  position: relative;
  z-index: 10;
}

.slider .item .section-title {
  line-height: 1;
  font-size: 5rem;
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .slider .item .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .slider .item .section-title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 20px;
  }
}

.slider .item .title {
  line-height: 1;
  margin: 1.875rem 0 2.5rem;
}

@media (max-width: 480px) {
  .slider .item .title {
    display: none;
  }
}

.slider .item .button {
  width: 16.25rem;
}

@media (max-width: 480px) {
  .slider .item .button {
    width: 152px;
  }
}

.slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

.slider .owl-nav {
  position: absolute;
  top: calc(50% - 2.5rem);
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .slider .owl-nav {
    top: auto;
    bottom: 0.5rem;
    right: 0.5rem;
    justify-content: flex-end;
  }
}

.slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
  width: 5rem;
  height: 6.6875rem;
  background: rgba(12, 12, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {

  .slider .owl-nav .owl-prev,
  .slider .owl-nav .owl-next {
    margin: 0.2rem;
    width: 4rem;
    height: 4.5rem;
  }
}

.slider .owl-nav .owl-prev:after,
.slider .owl-nav .owl-next:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.625rem solid transparent;
  border-left: 0.9375rem solid #fff;
  border-bottom: 0.625rem solid transparent;
}

.slider .owl-nav .owl-prev:hover,
.slider .owl-nav .owl-next:hover {
  background: rgba(12, 12, 12, 0.7);
}

.slider .owl-nav .owl-prev:hover:after,
.slider .owl-nav .owl-next:hover:after {
  border-left-color: #f5a240;
}

.slider .owl-nav .owl-prev:after {
  transform: rotate(180deg);
} */

@media (max-width: 680px) {
  .widgets-inovation {
    padding-top: 2.8571rem;
    padding-bottom: 2.8571rem;
  }
}

.widgets-inovation .row {
  justify-content: space-between;
}

.widgets-inovation .inovation {
  position: relative;
}

.widgets-inovation .inovation .block {
  width: calc(50% - 0.75rem);
}

@media (max-width: 767px) {
  .widgets-inovation .inovation .block {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 911px) {
  .widgets-inovation .inovation .block {
    margin: .5rem 0 1.5rem;
  }
}

.widgets-inovation .inovation .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 0.75rem);
}

@media (max-width: 767px) {
  .widgets-inovation .inovation .image {
    width: 100%;
  }
}

.widgets-inovation .inovation .section-title {
  line-height: 1;
  margin-bottom: 2.5rem;
}

@media (max-width: 680px) {
  .widgets-inovation .inovation .section-title {
    margin-bottom: 1.4286rem;
  }
}

.widgets-inovation .inovation .text {
  color: #211a43;
  font-size: 1.25rem;
  line-height: 180%;
}

@media (max-width: 680px) {
  .widgets-inovation .inovation .text {
    font-size: 1rem;
    line-height: 140%;
  }
}

.widgets-inovation .inovation:after {
  content: "";
  width: 13.75rem;
  height: 9.0625rem;
  background-image: url(./look-cat.gif);
  background-size: contain;
  /* transform: rotateY(180deg); */
  position: absolute;
  left: 0;
  bottom: -5.75rem;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .widgets-inovation .inovation:after {
    display: none;
  }
}

@media (min-width: 1000px) and (max-width: 1140px) {
  .widgets-inovation .inovation:after {
    bottom: -2rem;
  }
}

.widgets-category {
  background: #ece8ff;
  position: relative;
}

@media (max-width: 560px) {
  .widgets-category {
    padding-top: 2.8571rem;
    padding-bottom: 1.571rem;
  }
}

.widgets-category .category {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}

.widgets-category .item {
  width: calc(50% - 0.625rem);
  text-align: center;
  color: #0c0c0c;
}

@media (max-width: 767px) {
  .widgets-category .item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 560px) {
  .widgets-category .item {
    width: 100%;
  }
}

.widgets-category .item .image {
  width: 21.875rem;
  height: 21.875rem;
  border-radius: 100%;
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  padding: 2rem;
}

@media (max-width: 767px) {
  .widgets-category .item .title {
    font-size: 2rem;
  }
}

.widgets-category .item .subtitle {
  max-width: 21.875rem;
  margin: 1.25rem auto 1.5rem;
  color: #0c0c0c;
}

body .particletext.hearts {
  text-align: center;
  font-size: 4rem;
  position: relative;
  width: 2rem;
  height: 1px;
  display: inline-block;
}

body .particletext.prr {
  text-align: center;
  font-size: 4rem;
  position: relative;
  width: 1.5rem;
  height: 1px;
}

body .particletext.hearts>.particle {
  opacity: 0;
  position: absolute;
  background-color: #f5a240;
  -webkit-animation: hearts 5s ease-in infinite;
  animation: hearts 5s ease-in infinite;
}

body .particletext.prr>.particle {
  opacity: 0;
  position: absolute;
  -webkit-animation: prr 4s ease-in infinite;
  animation: prr 4s ease-in infinite;
}

body .particletext.hearts>.particle:before,
body .particletext.hearts>.particle:after {
  position: absolute;
  content: "";
  border-radius: 100px;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #f5a240;
}

body .particletext.prr>.particle:before,
body .particletext.prr>.particle:after {
  position: absolute;
  content: "purr~";
  font-family: "Manrope-Bold";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  color: #6A51B7;
  font-size: 1.5rem;
}

body .particletext.hearts>.particle:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

body .particletext.hearts>.particle:after {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@-webkit-keyframes hearts {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(45deg);
    transform: translate(0, 0%) rotate(45deg);
  }

  20% {
    opacity: 0.8;
    -webkit-transform: translate(0, -20%) rotate(45deg);
    transform: translate(0, -20%) rotate(45deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(0, -1000%) rotate(45deg);
    transform: translate(0, -1000%) rotate(45deg);
  }
}

@keyframes hearts {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(45deg);
    transform: translate(0, 0%) rotate(45deg);
  }

  20% {
    opacity: 0.8;
    -webkit-transform: translate(0, -20%) rotate(45deg);
    transform: translate(0, -20%) rotate(45deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(0, -1000%) rotate(45deg);
    transform: translate(0, -1000%) rotate(45deg);
  }
}

@-webkit-keyframes prr {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(-40deg) scale(0);
    transform: translate(0, 0%) rotate(-40deg) scale(0);
  }

  20% {
    opacity: 0.8;
    -webkit-transform: translate(-20%, 0) rotate(-40deg) scale(0.5);
    transform: translate(-20%, 0) rotate(-40deg) scale(0.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-1000%, 0) rotate(-40deg) scale(1);
    transform: translate(-1000%, 0) rotate(-40deg) scale(1);
  }
}

@keyframes prr {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(-45deg) scale(0);
    transform: translate(0, 0%) rotate(-45deg) scale(0);
  }

  20% {
    opacity: 0.8;
    -webkit-transform: translate(-20%, 0) rotate(-45deg) scale(0.5);
    transform: translate(-20%, 0) rotate(-45deg) scale(0.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-1000%, 0) rotate(-45deg) scale(1);
    transform: translate(-1000%, 0) rotate(-45deg) scale(1);
  }
}

.widgets-catalog {
  text-align: center;
}

@media (max-width: 560px) {
  .widgets-catalog {
    padding-top: 1.8571rem;
    padding-bottom: 1.8571rem;
  }
}

.widgets-catalog .section-title span {
  position: relative;
}

.widgets-catalog .section-title span:after {
  content: "";
  width: 12.5rem;
  height: 5.25rem;
  position: absolute;
  left: 100%;
  top: 1rem;
  background-image: url(./try.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

@media (max-width: 540px) {
  .widgets-catalog .section-title span:after {
    top: 1rem;
    width: 6rem;
    height: 4rem;
  }
}

.widgets-catalog .container {
  position: relative;
}

.widgets-catalog .container .znak {
  width: 10rem;
  position: absolute;
  left: 0;
  top: 3rem;
  z-index: 100;
}

@media (max-width: 992px) {
  .widgets-catalog .container .znak {
    top: -10rem;
  }
}

@media (max-width: 540px) {
  .widgets-catalog .container .znak {
    top: -5.5rem;
    width: 6rem;
  }
}

.widgets-catalog .container .znak img {
  width: 100%;
}

.widgets-catalog .text {
  max-width: 55rem;
  margin: 1.85rem auto;
  color: #211a43;
}

@media (max-width: 540px) {
  .widgets-catalog .text {
    margin-top: 1.4rem;
  }
}

.widgets-catalog .catalogs {
  margin: 3rem 0 0;
}

.widgets-catalog .catalogs .owl-nav:not(.disabled) {
  position: absolute;
  top: calc(35% - 1.25rem);
  left: -1.25rem;
  right: -1.25rem;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1140px) {
  .widgets-catalog .catalogs .owl-nav {
    left: 0;
    right: 0;
  }
}

.widgets-catalog .catalogs .owl-nav .owl-prev,
.widgets-catalog .catalogs .owl-nav .owl-next {
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff;
  border: 1px solid #cbcbcb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widgets-catalog .catalogs .owl-nav .owl-prev:after,
.widgets-catalog .catalogs .owl-nav .owl-next:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 7px solid #000;
  border-bottom: 5px solid transparent;
}

.widgets-catalog .catalogs .owl-nav .owl-prev:hover:after,
.widgets-catalog .catalogs .owl-nav .owl-next:hover:after {
  border-left-color: #f5a240;
}

.widgets-catalog .catalogs .owl-nav .owl-prev:after {
  transform: rotate(180deg);
}

.widgets-catalog .block {
  text-align: left;
}

@media (max-width: 992px) {
  .widgets-catalog .block {
    margin-bottom: 1rem;
  }
}

.widgets-catalog .block .subtitle {
  display: block;
  padding: 1rem;
  color: #0c0c0c;
}

.widgets-catalog .block .subtitle:hover {
  color: #f5a240;
}

.widgets-works {
  background: #6A51B7;
  color: #fff;
  text-align: center;
}

@media (max-width: 680px) {
  .widgets-works {
    padding-top: 2.8571rem;
    padding-bottom: 2.8571rem;
  }
}

.widgets-works .section-title {
  line-height: 1;
}

.widgets-works .works {
  justify-content: space-between;
  margin-top: 3.125rem;
  position: relative;
}

@media (max-width: 680px) {
  .widgets-works .works {
    margin-top: 2.1429rem;
    text-align: center;
  }
}

.widgets-works .works::before {
  content: "";
  border-top: 2px dashed #f5a240;
  width: 100%;
  height: 0.1875rem;
  background-size: 100%;
  position: absolute;
  top: 2rem;
}

@media (max-width: 680px) {
  .widgets-works .works::before {
    display: none;
  }
}

.widgets-works .works .block {
  width: calc(33.33% - 1rem);
  text-align: center;
  z-index: 1;
}

@media (max-width: 680px) {
  .widgets-works .works .block {
    width: 100%;
    text-align: left;
    margin-bottom: 1.4286rem;
    text-align: center;
  }

  .widgets-works .works .block .caption {
    width: 100%;
  }
}

.widgets-works .works .block img.count {
  width: 3.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 680px) {
  .widgets-works .works .block img.count {
    display: none;
  }
}

.widgets-works .works .block .image img {
  width: 100%;
}

.widgets-works .works .works-sub {
  font-size: 0.875rem;
  min-height: 9.375rem;
}

@media (max-width: 767px) {
  .widgets-works .works .works-sub {
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .widgets-works .works .works-sub {
    min-height: 2rem;
  }
}

.widgets-works .works .button {
  width: 16.25rem;
  margin: 1.875rem auto 0;
}

@media (max-width: 540px) {
  .widgets-works .works .button {
    margin: 0 auto 0;
  }
}

.widgets-subscribe {
  padding: 0;
}

.widgets-subscribe .subscribe {
  align-items: center;
}

.widgets-subscribe .block {
  width: calc(50% - 1.875rem);
}

@media (max-width: 680px) {
  .widgets-subscribe .block {
    width: 100%;
  }

  .widgets-subscribe .block:nth-child(2) {
    order: -1;
  }
}

.widgets-subscribe .block video {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 680px) {
  .widgets-subscribe .form {
    padding: 4rem;
  }
}

@media (max-width: 480px) {
  .widgets-subscribe .form {
    padding: 4rem 1rem 0;
  }
}

.widgets-subscribe .form .form-title {
  font-size: 1.25rem;
  color: #0c0c0c;
}

@media (max-width: 680px) {
  .widgets-subscribe .form .form-title {
    font-size: 1.5rem;
  }
}

.widgets-subscribe .form .email-text {
  margin-top: 1.25rem;
  position: relative;
  display: inline-flex;
}

@media (max-width: 680px) {
  .widgets-subscribe .form .email-text {
    width: 100%;
  }
}

.widgets-subscribe .form .email-text input {
  width: 25rem;
  height: 3.5rem;
  padding: 1.4375rem 2.8rem;
  border: 0.125rem solid #f5a240;
  background: #fff;
  color: #0c0c0c;
  font-weight: 600;
  border-radius: 0.3125rem;
  background-image: url(./massage.svg);
  background-repeat: no-repeat;
  background-position: 0.6rem 50%;
}

@media (max-width: 680px) {
  .widgets-subscribe .form .email-text input {
    width: 100%;
    height: 3.1429rem;
    font-size: 1rem;
  }
}

.widgets-subscribe .form .email-text input::placeholder {
  color: #868686;
}

.widgets-subscribe .form .email-text:focus-within input,
.widgets-subscribe .form .email-text input:focus {
  border-color: #6A51B7;
}

.widgets-subscribe .form .email-text button {
  width: 2rem;
  height: 2rem;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 1rem);
  background: transparent;
}

.widgets-subscribe .form .email-text button span {
  display: none;
  color: white;
}

.widgets-subscribe .form .email-text:focus-within button {
  width: 7rem;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #6A51B7;
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  gap: 6px;
}

.widgets-subscribe .form .email-text:focus-within button span {
  display: inline;
}

.widgets-subscribe .form .email-text button:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 7px solid #000;
  border-bottom: 5px solid transparent;
  display: block;
}

.widgets-subscribe .form .email-text:focus-within button:after {
  border-left-color: #fff;
}

.widgets-subscribe .form .email-text button:hover:after {
  border-left-color: #f5a240;
}

.widgets-subscribe .form .email-text .mail-suffix {
  position: absolute;
  top: 100%;
  z-index: 999;
  display: none;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  padding: 10px 0;
  background: white;
  list-style: none;
}

.widgets-subscribe .form .email-text .mail-suffix li {
  padding: 10px 20px;
  color: #6A51B7;
  cursor: pointer;
}

.widgets-subscribe .form .email-text .mail-suffix li:hover {
  background: #F1F8FF;
}

.widgets-subscribe.subscribe-category {
  padding: 0;
  background: #6A51B7;
  color: #fff;
}

.widgets-subscribe.subscribe-category .form-title {
  color: #fff;
}

.widgets-subscribe.subscribe-category .form .email-text input {
  border-color: #fff;
}

.widgets-subscribe.subscribe-category .form .email-text input:focus {
  border-color: #f5a240;
}

.widgets-subscribe.subscribe-category .form .email-text:focus-within button {
  background-color: #fcc279;
}

.widgets-subscribe.subscribe-category .form .email-text:focus-within button span {
  color: #6A51B7;
}

.widgets-subscribe.subscribe-category .form .email-text:focus-within button:after {
  border-left-color: #6A51B7;
}

@media (max-width: 480px) {
  .widgets-subscribe.subscribe-category .form {
    padding: 4rem 1rem 0;
  }
}

.widgets-subscribe.subscribe-category .text {
  max-width: 25rem;
  margin: auto;
  font-size: 1.125rem;
  line-height: 180%;
}

@media (max-width: 680px) {
  .widgets-subscribe.subscribe-category .text {
    display: none;
  }
}

@media (max-width: 680px) {
  .widgets-subscribe.subscribe-category .block {
    text-align: center;
  }
}

.widgets-parents {
  background: #ededed;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 680px) {
  .widgets-parents {
    padding-top: 2.8571rem;
    padding-bottom: 2.8571rem;
  }
}

.widgets-parents .section-title {
  text-align: center;
}

@media (max-width: 992px) {
  .widgets-parents .block {
    margin-bottom: 1.5rem;
  }
}

.widgets-parents .parents {
  justify-content: space-between;
  margin-top: 3.125rem;
}

.widgets-parents .caption {
  padding: 1rem;
  background: #fff;
}

.widgets-parents .subtitle {
  color: #0c0c0c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 480px) {
  .widgets-parents .subtitle {
    -webkit-line-clamp: 4;
  }
}

.widgets-parents .author {
  font-family: "Manrope Regular";
  font-size: 1rem;
  cursor: pointer;
}

.widgets-qute {
  padding: 0;
  position: relative;
}

.widgets-qute .qute {
  justify-content: space-between;
  align-items: center;
}

.widgets-qute .section-title {
  font-size: 2.25rem;
  line-height: 1.33;
  margin-bottom: 1rem;
  display: none;
}

@media (max-width: 992px) {
  .widgets-qute .section-title {
    font-size: 2rem;
    display: block;
    padding: 2.8571rem 1.5rem 1.4286rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .widgets-qute .section-title {
    font-size: 1.8rem;
  }
}

.widgets-qute .image {
  width: 50%;
}

@media (max-width: 992px) {
  .widgets-qute .image {
    width: 100%;
    order: 1;
  }
}

.widgets-qute .image img {
  width: 100%;
}

.widgets-qute .znak {
  width: 9.375rem;
  position: absolute;
  left: 5%;
  top: -4.5rem;
}

@media (max-width: 1440px) {
  .widgets-qute .znak {
    left: 2%;
  }
}

@media (max-width: 992px) {
  .widgets-qute .znak {
    display: none;
  }
}

.widgets-qute .block {
  width: 50%;
  padding: 2rem 8.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1440px) {
  .widgets-qute .block {
    padding: 3rem 5rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .widgets-qute .block {
    width: 100%;
    order: 2;
    padding: 4rem 1.5rem 1rem;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .widgets-qute .block {
    padding: 3rem 1.5rem 1rem;
  }
}

.widgets-qute .block .content {
  max-width: 29rem;
}

@media (max-width: 992px) {
  .widgets-qute .block .content {
    max-width: 100%;
    width: 100%;
  }
}

.widgets-qute .qutes .tabs-list {
  height: 5.625rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background: #fff;
}

.widgets-qute .qutes .tabs-list li {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  mix-blend-mode: luminosity;
  background-size: cover;
  background-position: 50% 50%;
  cursor: pointer;
}

.widgets-qute .qutes .tabs-list li.active {
  width: 5.625rem;
  height: 5.625rem;
  mix-blend-mode: unset;
}

@media (max-width: 1440px) {
  .widgets-qute .qutes .tabs-list li {
    width: 4rem;
    height: 4rem;
  }

  .widgets-qute .qutes .tabs-list li.active {
    width: 4.625rem;
    height: 4.625rem;
  }
}

.widgets-qute .qutes .tabs-content {
  position: relative;
  min-height: 21.625rem;
}

@media (max-width: 992px) {
  .widgets-qute .qutes .tabs-content {
    min-height: 5rem;
  }
}

.widgets-qute .qutes .tabs-content:after {
  content: "";
  width: 5rem;
  height: 4.1875rem;
  position: absolute;
  background-image: url(./cite.svg);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -6rem;
  right: 0rem;
  transform: rotateY(180deg);
}

.widgets-qute .qutes .tabs-content .section-title {
  display: block;
}

@media (max-width: 992px) {
  .widgets-qute .qutes .tabs-content .section-title {
    display: none;
  }
}

.widgets-qute .qutes .tabs-content .text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: "Manrope-Bold";
  color: #0c0c0c;
  position: relative;
}

.widgets-qute .qutes .tabs-content .text:before {
  content: "";
  width: 5rem;
  height: 4.1875rem;
  position: absolute;
  background-image: url(./cite.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: -2rem;
  left: -6.5rem;
  z-index: -1;
}

@media (max-width: 992px) {
  .widgets-qute .qutes .tabs-content .text:before {
    left: -1rem;
  }
}

.widgets-qute .qutes .tabs-content .autor {
  margin-top: 1.25rem;
  color: #0c0c0c;
}

.widgets-brands {
  background: #ededed;
  padding: 1.25rem 0;
  overflow: auto;
}

.widgets-brands .brands {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
}

.widgets-brands .brands .barnds-image {
  background: #ffc27a;
}

.widgets-brands .brands .barnds-image img {
  mix-blend-mode: multiply;
}

.widgets-brands .items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.widgets-brands .items {
  flex-shrink: 0;
  display: flex;
  gap: 0;
  overflow-x: hidden;
}

.widgets-brands .item {
  background: #ededed;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  transition: all 0.1s ease-in-out;
}

.widgets-brands .item img {
  height: 4.375rem;
  width: auto;
  mix-blend-mode: multiply;
}

@media (max-width: 992px) {
  .widgets-brands .item img {
    height: 3.5rem;
  }
}

@media (max-width: 680px) {
  .widgets-brands .item img {
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .widgets-brands .item img {
    height: 2.5rem;
  }
}

.widgets-brands .marquee {
  animation: scroll 30s linear infinite;
}

@media (max-width: 1440px) {
  .widgets-brands .marquee {
    animation: scroll 25s linear infinite;
  }
}

@media (max-width: 992px) {
  .widgets-brands .marquee {
    animation: scroll 20s linear infinite;
  }
}

@media (max-width: 480px) {
  .widgets-brands .marquee {
    animation: scroll 15s linear infinite;
  }
}

.widgets-brands .reverce {
  animation-direction: reverse;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.widgets-sales {
  background: #6A51B7;
  color: #fff;
  padding: 0;
}

@media (max-width: 992px) {
  .widgets-sales {
    background: #ece8ff;
    color: #6A51B7;
  }
}

.widgets-sales .sales {
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.widgets-sales .image {
  width: 50%;
}

@media (max-width: 992px) {
  .widgets-sales .image {
    width: 100%;
  }
}

.widgets-sales .image img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.widgets-sales .block {
  width: 50%;
  padding: 2.8571rem 6.25rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1440px) {
  .widgets-sales .block {
    padding: 2.8571rem 6.25rem;
  }
}

@media (max-width: 992px) {
  .widgets-sales .block {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .widgets-sales .block {
    font-size: 1rem;
  }
}

.widgets-sales p {
  margin: 1em 0;
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  line-height: 140%;
}

.widgets-sales .button {
  margin-top: 1.25rem;
}

@media (max-width: 992px) {
  .widgets-sales .button {
    display: none;
  }
}

.widgets-blog {
  text-align: center;
}

@media (max-width: 680px) {
  .widgets-blog {
    padding-top: 2.8571rem;
    padding-bottom: 2.8571rem;
  }
}

.widgets-blog .section-title {
  line-height: 1;
}

.widgets-blog .blog {
  margin: 3.125rem 0 1.75rem;
}

@media (max-width: 680px) {
  .widgets-blog .blog {
    margin: 1.4286rem 0 1.2857rem;
  }
}

.widgets-blog .button {
  width: 24.5rem;
}

.widgets-blog .block {
  text-align: left;
}

.widgets-blog .block .caption {
  background: #fff;
  padding: 1rem;
}

.widgets-blog .block .subtitle {
  display: block;
  color: #0c0c0c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.widgets-community {
  background: #ededed;
  padding-bottom: 0;
}

@media (max-width: 680px) {
  .widgets-community {
    padding-top: 2.8571rem;
  }
}

.widgets-community .section-title {
  text-align: center;
  line-height: 1;
}

.widgets-community .community {
  margin: 3.125rem auto 2px;
  gap: 2px;
}

@media (max-width: 680px) {
  .widgets-community .community {
    margin-top: 1.4286rem;
  }
}

.widgets-community .community .item {
  width: calc(25% - 2px);
  background-color: #f5a240;
  background-size: 100% 100%;
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
}

.widgets-community .community .item:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.widgets-community .community .item.first {
  background-color: #f5a240;
}

@media (max-width: 1440px) {
  .widgets-community .community .item.first {
    display: none;
  }
}

.widgets-community .community .item.last {
  background-color: #6A51B7;
}

@media (max-width: 1440px) {
  .widgets-community .community .item.last {
    display: none;
  }
}

.widgets-community .community .item .content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 20;
  padding: 2rem;
}

@media (max-width: 992px) {
  .widgets-community .community .item .content {
    padding: 1rem;
  }
}

@media (max-width: 414px) {
  .widgets-community .community .item .content {
    padding: 0.8rem;
  }
}

.widgets-community .community .item .content p {
  font-family: "TOMOBossa-Black";
  font-size: 2.25rem;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1200px) {
  .widgets-community .community .item .content p {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .widgets-community .community .item .content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .widgets-community .community .item .content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .widgets-community .community .item .content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 414px) {
  .widgets-community .community .item .content p {
    font-size: 0.7rem;
  }
}

.widgets-community .community .item .content .cat {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .cat {
    left: 0;
  }
}

.widgets-community .community .item .content .cat img {
  width: 18rem;
}

@media (max-width: 1440px) {
  .widgets-community .community .item .content .cat img {
    width: 13.75rem;
  }
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .cat img {
    width: 9rem;
  }
}

@media (max-width: 480px) {
  .widgets-community .community .item .content .cat img {
    width: 5rem;
  }
}

.widgets-community .community .item .content .dog {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .dog {
    right: 0;
  }
}

.widgets-community .community .item .content .dog img {
  width: 19rem;
}

@media (max-width: 1440px) {
  .widgets-community .community .item .content .dog img {
    width: 13.75rem;
  }
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .dog img {
    width: 9rem;
  }
}

@media (max-width: 480px) {
  .widgets-community .community .item .content .dog img {
    width: 5rem;
  }
}

.widgets-community .community .item .content .dog-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .dog-2 {
    right: 0;
  }
}

.widgets-community .community .item .content .dog-2 img {
  width: 23rem;
}

@media (max-width: 1440px) {
  .widgets-community .community .item .content .dog-2 img {
    width: 18rem;
  }
}

@media (max-width: 992px) {
  .widgets-community .community .item .content .dog-2 img {
    width: 12rem;
  }
}

@media (max-width: 480px) {
  .widgets-community .community .item .content .dog-2 img {
    width: 6rem;
  }
}

.widgets-all {
  padding: 0;
  position: relative;
}

.widgets-all .clue .box {
  left: -6.5rem;
}

.widgets-all .clue-1 {
  top: 60%;
  left: 5%;
}

.widgets-all .clue-2 {
  top: 58%;
  left: 11%;
}

.widgets-all .clue-3 {
  top: 58%;
  left: 15%;
}

.widgets-all .clue-4 {
  top: 50%;
  left: 18.3%;
}

.widgets-all .clue-5 {
  top: 38%;
  left: 22.3%;
}

.widgets-all .clue-6 {
  top: 38%;
  left: 27%;
}

.widgets-all .clue-7 {
  top: 31%;
  left: 37%;
}

.widgets-all .clue-8 {
  top: 31%;
  left: 47%;
}

.widgets-all .clue-9 {
  top: 23%;
  right: 45%;
}

.widgets-all .clue-10 {
  top: 23%;
  right: 35%;
}

.widgets-all .clue-11 {
  top: 30%;
  right: 15%;
}

@media (max-width: 992px) {

  .widgets-all .clue-1 .box,
  .widgets-all .clue-2 .box,
  .widgets-all .clue-3 .box,
  .widgets-all .clue-4 .box,
  .widgets-all .clue-5 .box {
    left: 0;
  }
}

@media (max-width: 992px) {

  .widgets-all .clue-7 .box,
  .widgets-all .clue-8 .box,
  .widgets-all .clue-9 .box,
  .widgets-all .clue-10 .box,
  .widgets-all .clue-11 .box {
    left: auto;
    right: 0;
  }
}

.widgets-faq {
  background: #6A51B7;
  color: #fff;
  padding: 3.75rem 0 5rem;
}

.widgets-faq .section-title {
  text-align: center;
}

.product-detail {
  padding: 3.125rem 0;
}

@media (max-width: 680px) {
  .product-detail {
    padding-bottom: 0;
  }
}

.product-detail .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -0.7rem -0.7rem 3.125rem;
}

.product-detail .steps .item {
  width: calc(16.6666666667% - 1.4rem);
  margin: 0.7rem;
}

@media (max-width: 767px) {
  .product-detail .steps .item {
    width: calc(33.3333333333% - 1.4rem);
  }
}

.product-detail .steps .item img {
  width: 100%;
}

.product-detail .detail .block {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.product-detail .detail .block img {
  width: 60%;
}

@media (max-width: 680px) {
  .product-detail .detail .block img {
    width: 100%;
  }
}

.product-detail .detail .block img.vet {
  width: 100%;
}

.product-detail .detail .block .box {
  width: calc(40% - 5rem);
  font-size: 18px;
}

@media (max-width: 680px) {
  .product-detail .detail .block .box {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }
}

.product-detail .detail .block .box .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
}

@media (max-width: 680px) {
  .product-detail .detail .block .box .section-title {
    font-size: 1.8rem;
  }
}

.product-detail .detail .block .box .text {
  color: #0c0c0c;
  font-size: 1.125rem;
  line-height: 180%;
}

.product-detail .detail .block .box .text .big {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
}

.product-detail .detail .link {
  text-align: center;
  font-size: 1.25rem;
  text-decoration: underline;
}

.product-detail .detail .link:hover {
  text-decoration: none;
}

.widgets-reviews {
  background: #f3f1ff;
  padding: 3.125rem 0;
}

.widgets-reviews .section-title {
  text-align: center;
}

.widgets-reviews .reviews-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125rem -1rem 1rem;
  /*去掉左右为负后，在使用“Product Reviews”插件时评论整体会略微变瘦对不齐。由于原CSS样式缺陷，因此后期再来优化。*/
}

@media (max-width: 992px) {
  .widgets-reviews .reviews-grid {
    margin: 3.125rem -0.5rem;
  }
}

.widgets-reviews .reviews-grid .item {
  width: calc(16.6666666667% - 1.4rem);
  margin: 0.7rem;
  color: #0c0c0c;
}

@media (max-width: 992px) {
  .widgets-reviews .reviews-grid .item {
    width: calc(33.3333333333% - 1.4rem);
  }
}

@media (max-width: 680px) {
  .widgets-reviews .reviews-grid .item {
    width: calc(50% - 1.4rem);
  }
}

.widgets-reviews .reviews-grid .item img {
  width: 100%;
}

.widgets-reviews .reviews-grid .item .caption {
  padding: 1rem 0.8rem;
  background-color: #fff;
}

.widgets-reviews .reviews-grid .item .name {
  font-family: "Manrope-Bold";
  margin-bottom: 0.4rem;
}

.widgets-reviews .reviews-grid .item .date {
  color: #606060;
  font-size: 0.75rem;
}

.widgets-reviews .reviews-grid .item .answer {
  margin-top: 1rem;
}

.widgets-reviews .reviews-grid .item .rating {
  margin-bottom: 0;
}

.widgets-reviews .reviews-grid .item hr {
  margin-top: 1rem;
  border-top: 1px solid #cbcbcb;
}

.widgets-reviews .reviews-grid .bottom {
  width: 100%;
  text-align: center;
  margin-top: 3.125rem;
}

.widgets-reviews .reviews-grid .bottom .button {
  line-height: 1;
  text-transform: uppercase;
  width: 24.375rem;
  max-width: 100%;
}

/***** Page (article) *****/
.products-grid {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.products-grid .section-title {
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

.products-grid .product {
  width: calc(33.33% - 1.25rem);
  margin: 1.875rem 0.625rem;
}

@media (max-width: 992px) {
  .products-grid .product {
    width: calc(50% - 1.25rem);
  }
}

.clue {
  position: absolute;
  cursor: pointer;
}

.clue img.pik {
  width: 1.625rem;
}

.clue .box {
  width: 13.25rem;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0.3125rem;
  padding: 0.5rem;
  color: #0c0c0c;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 180%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 2.125rem rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .clue .box {
    font-size: 1rem;
  }
}

@media (max-width: 414px) {
  .clue .box {
    font-size: 0.8rem;
  }
}

.clue .box .img {
  width: 5.25rem;
  min-width: 5.25rem;
}

.clue .box:hover {
  color: #6A51B7;
}

.clue:hover svg .touch {
  fill: #00ba88;
}

.clue:hover .box {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.banner-category {
  background: #ffda7a;
}

.banner-category.banner-cat {
  background: #b8aeec;
}

.banner-category .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.banner-category .container .block {
  width: calc(50% - 0.75rem);
  padding: 0 3.125rem;
  color: #29205a;
}

@media (max-width: 680px) {
  .banner-category .container .block {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: -2rem;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .banner-category .container .block {
    padding: 0;
  }
}

.banner-category .container .block .section-title {
  line-height: 1;
  margin-bottom: 2.5rem;
}

.banner-category .container .block .text {
  font-size: 1.25rem;
  line-height: 180%;
  color: #29205a;
}

@media (max-width: 414px) {
  .banner-category .container .block .text {
    font-size: 1.1rem;
  }
}

.banner-category .container .image {
  width: calc(50% - 0.75rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .banner-category .container .image {
    right: 7rem;
  }
}

@media (max-width: 680px) {
  .banner-category .container .image {
    width: 370px;
    right: 0;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .banner-category .container .image {
    width: 270px;
  }
}

.banner-category .container .image.dog-image img.dog-banner {
  width: 17.5rem;
}

@media (max-width: 540px) {
  .banner-category .container .image.dog-image img.dog-banner {
    width: 12rem;
  }
}

.banner-category .container .image.dog-image .clue-1 {
  top: 1rem;
  left: 30%;
}

@media (max-width: 992px) {
  .banner-category .container .image.dog-image .clue-1 {
    left: 24%;
  }
}

.banner-category .container .image.dog-image .clue-1 .box {
  right: 100%;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.dog-image .clue-1 .box {
    top: auto;
    bottom: 100%;
    right: -6rem;
  }
}

.banner-category .container .image.dog-image .clue-2 {
  top: 28%;
  left: 34%;
}

@media (max-width: 992px) {
  .banner-category .container .image.dog-image .clue-2 {
    left: 25%;
  }
}

.banner-category .container .image.dog-image .clue-2 .box {
  right: -1rem;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.dog-image .clue-2 .box {
    right: -6rem;
  }
}

.banner-category .container .image.dog-image .clue-3 {
  bottom: 5%;
  left: 32%;
}

@media (max-width: 992px) {
  .banner-category .container .image.dog-image .clue-3 {
    left: 28%;
  }
}

.banner-category .container .image.dog-image .clue-3 .box {
  right: 105%;
  top: -3rem;
}

@media (max-width: 480px) {
  .banner-category .container .image.dog-image .clue-3 .box {
    top: 100%;
    right: -6rem;
  }
}

.banner-category .container .image.dog-image .clue-4 {
  top: 43%;
  right: 27%;
}

@media (max-width: 992px) {
  .banner-category .container .image.dog-image .clue-4 {
    right: 20%;
  }
}

.banner-category .container .image.dog-image .clue-4 .box {
  left: 0;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.dog-image .clue-4 .box {
    top: 100%;
    right: -6rem;
    left: auto;
  }
}

.banner-category .container .image.dog-image .clue-5 {
  top: 32%;
  right: 40%;
}

@media (max-width: 992px) {
  .banner-category .container .image.dog-image .clue-5 {
    right: 35%;
  }
}

.banner-category .container .image.dog-image .clue-5 .box {
  left: 0;
  bottom: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.dog-image .clue-5 .box {
    left: -6rem;
    bottom: 100%;
  }
}

.banner-category .container .image.cat-image {
  margin-bottom: -4rem;
}

.banner-category .container .image.cat-image img.cat-banner {
  width: 26rem;
}

@media (max-width: 540px) {
  .banner-category .container .image.cat-image img.cat-banner {
    width: 18rem;
  }
}

.banner-category .container .image.cat-image .clue-1 {
  top: 2rem;
  left: 35%;
}

@media (max-width: 992px) {
  .banner-category .container .image.cat-image .clue-1 {
    left: 32%;
  }
}

.banner-category .container .image.cat-image .clue-1 .box {
  right: 100%;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.cat-image .clue-1 .box {
    top: auto;
    bottom: 100%;
    right: -6rem;
  }
}

.banner-category .container .image.cat-image .clue-2 {
  top: 48%;
  left: 33%;
}

@media (max-width: 992px) {
  .banner-category .container .image.cat-image .clue-2 {
    left: 30%;
  }
}

.banner-category .container .image.cat-image .clue-2 .box {
  right: -1rem;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.cat-image .clue-2 .box {
    right: -6rem;
  }
}

.banner-category .container .image.cat-image .clue-3 {
  bottom: 38%;
  left: 24%;
}

@media (max-width: 992px) {
  .banner-category .container .image.cat-image .clue-3 {
    left: 14%;
  }
}

.banner-category .container .image.cat-image .clue-3 .box {
  right: 105%;
  top: -3rem;
}

@media (max-width: 480px) {
  .banner-category .container .image.cat-image .clue-3 .box {
    top: 100%;
    right: -6rem;
  }
}

.banner-category .container .image.cat-image .clue-4 {
  bottom: 10%;
  right: 27%;
}

@media (max-width: 992px) {
  .banner-category .container .image.cat-image .clue-4 {
    right: 20%;
  }
}

.banner-category .container .image.cat-image .clue-4 .box {
  left: 0;
  top: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.cat-image .clue-4 .box {
    top: 100%;
    right: -6rem;
    left: auto;
  }
}

.banner-category .container .image.cat-image .clue-5 {
  top: 42%;
  right: 42%;
}

@media (max-width: 992px) {
  .banner-category .container .image.cat-image .clue-5 {
    right: 35%;
  }
}

.banner-category .container .image.cat-image .clue-5 .box {
  left: 0;
  bottom: 100%;
}

@media (max-width: 480px) {
  .banner-category .container .image.cat-image .clue-5 .box {
    left: -6rem;
    bottom: 100%;
  }
}

.top-category {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.top-category .breadcrumbs,
.top-category .sort {
  margin: 0;
  display: flex;
}

.top-category .sort {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 680px) {
  .top-category .sort {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

.top-category .filter-result {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-right: 2.5rem;
}

@media (max-width: 680px) {
  .top-category .filter-result {
    width: 100%;
    order: 2;
    margin-right: 0;
    /* margin-top: 1rem; */
    justify-content: flex-end;
  }
}

.top-category .filter-result a,
.top-category .filter-result span {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  height: 1.625rem;
  padding: 0.5rem;
  background: #ededed;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 12px;
  line-height: 1;
}

.top-category .filter-result a:after,
.top-category .filter-result span:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-image: url(./close.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.top-category .filter-result a:hover,
.top-category .filter-result span:hover {
  color: #6A51B7;
}

.top-category .filter-toggle {
  background-color: #fff;
  border: 1px solid #666666;
  border-radius: 3px;
  padding: 0.6rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Manrope-Bold";
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
}

.top-category .filter-toggle svg {
  width: 1rem;
  height: auto;
}

.top-category .filter-toggle:hover {
  border-color: #29205a;
  color: #29205a;
}

/*-----filter-----*/
.filter {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0.5rem 0 0;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  width: 18rem;
  display: none;
}

.filter.active {
  display: block;
}

@media (max-width: 680px) {
  .filter {
    position: fixed;
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
  }
}

.filter .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.filter .close svg {
  width: 1.1rem;
  height: auto;
}

.filter .filter-box {
  color: #0c0c0c;
}

.filter .filter-box .top {
  font-family: "Manrope-Bold";
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter .filter-box .body {
  padding: 1rem 0;
}

.filter .filter-box .body .checkbox {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.filter .filter-box:last-child .body {
  padding-bottom: 0;
}

.input__to,
.input__from {
  width: 46%;
  text-align: center;
  display: inline-flex;
  align-items: center;
}

.input__to {
  justify-content: flex-start;
}

.input__from {
  justify-content: flex-end;
}

.input__from span {
  margin-right: 0.4rem;
}

.price__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
}

.price__inputs input {
  margin: 0;
  width: auto !important;
  max-width: 6.5rem;
  height: 2.125rem;
  background: #ffffff;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  font-weight: 400;
  padding: 0.4rem 1rem;
  color: #6A51B7;
  font-size: 14px;
}
.filter-price-unit {
  margin-right: 0 !important;
  position: relative;
  right: -12px;
  color: #4A51B7;
}

.range-slider-wrap {
  margin-bottom: 15px;
}

.range-slider {
  position: relative;
}

.range-slider-wrap .irs--round {
  height: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before {
  display: none !important;
}

.range-slider-wrap .irs--round .irs-handle {
  top: 0;
  border-radius: 100%;
  width: 1rem;
  height: 1rem;
  border: none;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0px 2px 12px rgba(9, 25, 39, 0.15);
  border: 4px solid #6A51B7;
}

.range-slider-wrap .irs--round .irs-handle:hover {
  background: #dee4ec;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.range-slider-wrap .irs--round .irs-handle:active {
  background: #fff;
  border: 6px solid #6A51B7;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.irs--round .irs-line {
  top: 7px;
}

.range-slider-wrap .irs--round .irs-bar {
  height: 3px;
  background-color: #606060;
  cursor: pointer;
  top: 7px;
}

.irs--round .irs-line {
  top: 7px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px;
}

.range-slider-wrap .irs--round .irs-line {
  height: 3px;
}

.range-slider-wrap .irs--round .irs-max,
.range-slider-wrap .irs--round .irs-min {
  display: none;
}

.range-slider-wrap .irs--round .irs-from,
.range-slider-wrap .irs--round .irs-to {
  font-size: 1rem;
  line-height: 1;
  text-shadow: none;
  padding: 0.2143rem 0.3571rem;
  background-color: #d7bca3;
  color: white;
  border-radius: 0.2857rem;
  position: absolute;
  display: none !important;
  z-index: -10 !important;
}

.range-slider-wrap .irs--round .irs-from:before,
.range-slider-wrap .irs--round .irs-to:before {
  display: none;
}

.range-slider-wrap .filter-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.range-slider-wrap .filter-price .label {
  position: relative;
  width: 48%;
}

.range-slider-wrap .filter-price .label span {
  font-size: 10px;
  font-family: "Montserrat-Medium";
  color: #83868b;
  position: absolute;
  top: 6px;
  left: 15px;
}

.range-slider-wrap .filter-price .js-input-to,
.range-slider-wrap .filter-price .js-input-from {
  background: #606060;
  border: 1px solid #eaeeee;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  height: 44px;
  margin: 0;
  font-size: 1rem;
  padding: 20px 14px 7px;
  text-align: left;
}

.range-slider-wrap .filter-price .js-input-to:hover,
.range-slider-wrap .filter-price .js-input-from:hover {
  background: #ffffff;
  border: 0.07143rem solid #eeeeee;
}

.range-slider-wrap .filter-price .js-input-to.active,
.range-slider-wrap .filter-price .js-input-from.active {
  background: #ffffff;
  border: 0.07143rem solid #252525;
  color: #252525;
}

.filter .option-grid {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  margin: 2px 3px 2px 0;
  padding: 0 !important;
}

.filter .option-grid a {
  border: 1px solid #cdcdcd !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  padding: 2px 8px;
  border-radius: 5px;
  min-width: 42px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  color: #2c2f34;
}

.filter .option-grid a:hover {
  color: #2c3034 !important;
  border-color: #2c3034 !important;
  box-shadow: 0 5px 10px rgba(40, 40, 40, 0.1);
}

.filter .option-grid a:active {
  color: #2180e4 !important;
  border-color: #2180e4 !important;
  box-shadow: 0 5px 10px rgba(40, 40, 40, 0.1);
}

.filter .option-grid.option-selected a {
  color: #fff !important;
  border-color: #2180e4 !important;
  background-color: #2180e4 !important;
}

.filter .option-grid .option-square {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  display: block !important;
  line-height: 1;
}

.filter .option-grid.option-selected .option-square {
  color: #fff !important;
  background: transparent !important;
}

.checkbox {
  display: block;
  margin-bottom: 11px;
  cursor: pointer;
}

.checkbox>span {
  display: flex;
  align-items: center;
  user-select: none;
  font-size: 14px;
  color: #2c2f34;
}

.checkbox>span:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #0c0c0c;
  border-radius: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 0.5rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto;
}

.checkbox>span p a {
  margin: 0 !important;
  text-decoration: underline;
  color: #2180e4;
}

.checkbox>span p a:hover {
  text-decoration: none;
}

.checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox>input:checked+span::before {
  background-color: #0c0c0c;
  border-color: #0c0c0c;
  box-shadow: 0 0 0 2px inset #fff;
}

.checkbox>input:disabled+span::before {
  background-color: #e9ecef;
}

.product-info {
  margin-bottom: 3.75rem;
}

@media (max-width: 680px) {
  .product-info {
    margin-bottom: 1rem;
  }
}

.product-info .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-info .images {
  position: relative;
  width: 65%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .product-info .images {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .product-info .images {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.product-info .images .thumbs-wrapper {
  position: absolute;
  z-index: 2;
  width: 4.5rem;
  order: 1;
  height: 100%;
  overflow: hidden;
}

.product-info .images .owl-thumbs .owl-thumb-item {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.product-info .images .owl-thumbs .owl-thumb-item img {
  width: 100%;
}

@media (max-width: 992px) {
  .product-info .images .thumbs-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    order: 2;
    height: 4.5rem;
    margin-top: 1.5rem;
  }

  .product-info .images .thumbs-wrapper .owl-thumbs {
    display: flex;
    flex-shrink: 0;
    /*当box.offsetWidth无法包含溢出部分的高度时使用，另外不要脱离文档流*/
  }

  .product-info .images .owl-thumbs .owl-thumb-item {
    margin-bottom: 0;
  }

  .product-info .images .owl-thumbs .owl-thumb-item img {
    height: 100%;
  }
}

.product-info .images .owl-thumbs .owl-thumb-item.active {
  border-color: #f5a240;
}

.product-info .images #slider-product {
  flex: 1 0 0%;
  width: calc(100% - 5.5rem);
  order: 2;
  padding-left: 5.5rem;
}

@media (max-width: 992px) {
  .product-info .images #slider-product {
    flex: none;
    width: 100%;
    order: 1;
    padding-left: 0;
  }
}

.product-info .block {
  width: 35%;
  padding-left: 1.5rem;
}

@media (max-width: 767px) {
  .product-info .block {
    width: 100%;
    padding-left: 0;
  }
}

.product-info .product-title {
  font-family: "Manrope-ExtraBold";
  font-size: 1.85rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.product-info .short-description {
  font-family: "Manrope-Bold";
  font-size: 1rem;
  color: #0c0c0c;
  margin-bottom: 1rem;
}

.product-info .morecontent span {
  display: none;
}

.product-info .morelink {
  font-weight: bold;
  color: #6A51B7;
}

.product-info .morelink:hover {
  color: #f5a240;
}

.product-info .atributes {
  background: #f9f9f9;
  padding: 1rem;
  margin: 0 0 1.5rem;
  list-style: none;
}

@media (max-width: 767px) {
  .product-info .atributes {
    display: flex;
    flex-wrap: wrap;
  }
}

.product-info .atributes li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 12px;
}

@media (max-width: 767px) {
  .product-info .atributes li {
    width: 48%;
  }
}

@media (max-width: 414px) {
  .product-info .atributes li {
    width: 100%;
  }
}

.product-info .atributes li:last-child {
  margin-bottom: 0;
}

.product-info .atributes li img {
  width: 1rem;
  margin-right: 1rem;
}

.product-info .price {
  font-family: "Manrope-ExtraBold";
  font-size: 2.5rem;
  line-height: 1;
  color: #6A51B7;
  margin: 1rem 0;
}

.product-info .buttons {
  position: relative;
  text-align: center;
  margin-top: 2rem;
}

.product-info .buttons form {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

@supports (gap: 0) and (not (inset: 0)) {

  /*
    1. Chrome支持gap是先支持grid布局的gap，然后才支持flex下的gap。
    2. Chrome 80浏览器不支持display:flex下gap属性而支持grid下gap。
    3. Chrome 80浏览器刚好此时也不支持inset简写。
  */
  .shopify-payment-button {
    margin: 1rem 0;
  }
}

.product-info .buttons .button {
  height: 2.5rem;
}

/* @media (max-width: 767px) {
  .product-info .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.product-info .buttons a.more {
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .product-info .buttons a.more {
    align-items: center;
    order: 10;
  }
}

.product-info .buttons a.more:hover {
  color: #f5a240;
}

.product-info .buttons .button {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 0.625rem;
}

@media (max-width: 767px) {
  .product-info .buttons .button {
    width: 48%;
    margin: 0 auto 1rem;
    height: 3.5rem;
  }
}

@media (max-width: 414px) {
  .product-info .buttons .button {
    width: 100%;
  }
}

.product-info .buttons .button.button-solid img {
  width: 4.5rem;
  margin-left: 0.5rem;
}

.product-info .buttons .button.button-solid:hover {
  border-color: #3c2d8b !important;
  background-color: #3c2d8b !important;
  opacity: 1;
}

.product-info .buttons .button.button-global:hover {
  border-color: #3c2d8b !important;
  background-color: #3c2d8b !important;
}

.product-info .buttons .payment {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .product-info .buttons .payment {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .product-info .buttons .payment {
    width: 100%;
  }
} */

/* .select2-container {
  min-width: 100%;
} */

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: 1px solid #606060;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1.25rem;
  color: #0c0c0c;
  line-height: 1;
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 1px;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #0c0c0c transparent transparent transparent;
  border-style: solid;
  border-width: 0.4rem 0.4rem 0 0.4rem;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0c0c0c transparent;
  border-width: 0 0.4rem 0.4rem 0.4rem;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #e9e8f7;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}

.select2-results__option {
  padding: 0.75rem 1.5625rem;
  user-select: none;
  -webkit-user-select: none;
  font-size: 1rem;
  white-space: nowrap;
}

.select2-results__options {
  border-radius: 0;
  overflow: hidden;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #6A51B7;
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f5a240;
  color: #fff;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 270px;
  overflow-y: auto;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 1rem 3.75rem;
  gap: 1.5rem;
}

.blog-nav {
  list-style: none;
  display: flex;
  align-items: center;
  padding-top: 0.625rem;
  margin-bottom: 0;
}

.blog-nav li {
  width: 50%;
  border-bottom: 1px solid #cbcbcb;
}

.blog-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border-bottom: 0.25rem solid transparent;
  font-family: "TOMOBossa-Black";
  font-size: 2.25rem;
  line-height: 1;
  color: #606060;
}

.blog-nav li a span {
  margin-top: -0.6rem;
}

@media (max-width: 680px) {
  .blog-nav li a {
    font-size: 1.6rem;
  }
}

.blog-nav li a:hover {
  color: #6A51B7;
}

.blog-nav li a img,
.blog-nav li a svg {
  width: 2.875rem;
  height: auto;
  margin-right: 1.25rem;
}

@media (max-width: 680px) {

  .blog-nav li a img,
  .blog-nav li a svg {
    width: 2.4rem;
    margin-right: 0.8rem;
  }
}

.blog-nav li.active a {
  color: #6A51B7;
  border-color: #6A51B7;
}

.tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  display: inline-flex;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 0.5rem 0.95rem;
  color: #0c0c0c;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.tags a:hover,
.tags a.active {
  color: #6A51B7;
  border-color: #6A51B7;
  background-color: #f3f1ff;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.875rem;
}

@media (max-width: 992px) {
  .contact-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .contact-grid {
    margin-bottom: 0;
  }
}

.contact-grid iframe {
  width: 37.5rem;
  max-width: 100%;
  height: 44.25rem;
}

@media (max-width: 992px) {
  .contact-grid iframe {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .contact-grid iframe {
    height: 26rem;
  }
}

.contact-grid .forma {
  width: 30.9375rem;
  max-width: 100%;
  color: #0c0c0c;
  padding-top: 1.875rem;
}

@media (max-width: 992px) {
  .contact-grid .forma {
    width: 100%;
    margin-bottom: 3.875rem;
  }
}

@media (max-width: 680px) {
  .contact-grid .forma {
    padding-top: 0;
  }
}

.contact-grid .forma .title {
  font-family: "Manrope-Bold";
  font-size: 1.5rem;
  line-height: 140%;
  color: #6A51B7;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 3.125rem;
}

@media (max-width: 680px) {
  .contact-grid .forma .title {
    margin-bottom: 40px;
  }
}

.contact-grid .forma .title img {
  empty-cells: 1.5rem;
  margin-right: 0.5rem;
}

.contact-grid .forma form {
  display: block;
}

.contact-grid .forma fieldset {
  border: none;
  margin: 1.25rem 0;
  padding: 0;
}

.contact-grid .forma legend {
  margin-bottom: 0.875rem;
  font-family: "Manrope-Bold";
  font-size: 1.5rem;
  line-height: 140%;
}

.contact-grid .forma label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact-grid .forma input,
.contact-grid .forma textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  border: none;
  border-bottom: 1px solid #cbcbcb;
  font-size: 1.125rem;
}

.contact-grid .forma input:focus,
.contact-grid .forma input:active,
.contact-grid .forma textarea:focus,
.contact-grid .forma textarea:active {
  border-color: #0c0c0c;
}

.contact-grid .forma input {
  height: 3.5rem;
  padding: 0.625rem 1rem;
}

.contact-grid .forma textarea {
  height: 7.5rem;
  padding: 1rem;
}

.contact-grid .forma .count {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 180%;
  color: #868686;
  margin-left: auto;
}

.contact-grid .forma .button {
  width: 100%;
  height: 3rem;
}

.contacts {
  background: #ededed;
  color: #0c0c0c;
  padding: 4.375rem 0;
}

@media (max-width: 680px) {
  .contacts {
    padding: 40px 0;
    background: #fff;
  }
}

.contacts .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.125rem 0;
}

.contacts .container .item-text {
  display: none;
}

@media (max-width: 680px) {
  .contacts .container .item-text {
    width: 100%;
    display: block;
  }
}

.contacts .container .item {
  /* width: 37.5rem; */
  width: 33.333333%;
  display: flex;
}

@media (max-width: 992px) {
  .contacts .container .item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .contacts .container .item {
    width: 100%;
  }
}

.contacts .container .item img {
  width: 2.625rem;
  margin-right: 1rem;
}

.contacts .container .item .name {
  font-family: "Manrope-Bold";
  font-size: 1rem;
  color: #000000;
}

.contacts .container .item a {
  font-size: 0.875rem;
  color: #6A51B7;
}

.contacts .container .item a:hover {
  color: #f5a240;
}

.contacts .container .item span {
  font-size: 0.75rem;
  color: #868686;
}

.widgets-faq-contacts {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

@media (max-width: 680px) {
  .widgets-faq-contacts {
    padding-top: 1.25rem;
    background: #ededed;
  }
}

.widgets-faq-contacts .section-title {
  text-align: center;
  line-height: 1;
}

.widgets-faq-contacts .button {
  display: flex;
  width: 21.25rem;
  height: 2.5rem;
  margin: 2.5rem auto 0;
}

@media (max-width: 680px) {
  .widgets-faq-contacts .accordion .accordion-box {
    background: transparent;
  }
}

.track {
  margin-bottom: 2.5rem;
}

.track .button {
  width: 100%;
  height: 3.75rem;
  background-color: #f5a240;
  border-color: #f5a240;
  font-size: 1.5rem;
}

.track .button img,
.track .button svg {
  width: 2rem;
  height: auto;
  margin-left: 0.6rem;
}

@media (max-width: 480px) {
  .track .button {
    font-size: 16px;
  }

  .track .button img,
  .track .button svg {
    width: 24px;
  }
}

.image-page img {
  width: 100%;
}

.widgets-hocl-why {
  padding-top: 4rem;
}

.widgets-hocl-why .section-title {
  text-align: center;
}

.widgets-hocl-why .row {
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.widgets-hocl-why .item {
  width: calc(33.33% - 1rem);
  color: #0c0c0c;
  text-align: center;
}

@media (max-width: 992px) {
  .widgets-hocl-why .item {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .widgets-hocl-why .item {
    width: 100%;
  }
}

.widgets-hocl-why .item .titl {
  font-family: "Manrope-Bold";
  color: #000000;
  font-size: 1.25rem;
  line-height: 140%;
}

.widgets-hocl-why .item p {
  font-size: 0.875rem;
  line-height: 140%;
}

.widgets-hocl-video {
  padding: 3rem 0 5rem;
  background: #ededed;
}

.widgets-hocl-video .section-title {
  text-align: center;
}

.widgets-hocl-video .video {
  margin-top: 2.5rem;
}

.widgets-hocl-info {
  padding: 5rem 0;
}

.widgets-hocl-info .row {
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.widgets-hocl-info .block {
  width: calc(50% - 0.75rem);
}

@media (max-width: 992px) {
  .widgets-hocl-info .block {
    width: 100%;
    text-align: center;
    order: 1;
  }
}

.widgets-hocl-info .block .title {
  font-family: "TOMOBossa-Black";
  font-size: 2.2rem;
  line-height: 1.33;
  margin-bottom: 1.875rem;
}

@media (max-width: 680px) {
  .widgets-hocl-info .block .title {
    font-size: 1.8rem;
  }
}

.widgets-hocl-info .block .titl {
  font-family: "Manrope-Bold";
  color: #211a43;
  font-size: 1.5rem;
  line-height: 1;
  margin: 1.875rem 0;
}

.widgets-hocl-info .block .text {
  color: #211a43;
}

.widgets-hocl-info .block ul {
  padding: 0;
  list-style: none;
  font-size: 1.125rem;
  line-height: 180%;
  display: flex;
  flex-wrap: wrap;
}

.widgets-hocl-info .block ul li {
  width: 42%;
}

@media (max-width: 992px) {
  .widgets-hocl-info .block ul li {
    width: 100%;
  }
}

.widgets-hocl-info .image {
  width: calc(50% - 0.75rem);
}

@media (max-width: 992px) {
  .widgets-hocl-info .image {
    width: 100%;
    text-align: center;
    order: 2;
  }
}

.widgets-hocl-info .image img {
  width: 100%;
}

.widgets-hocl-info.coconut-info {
  background: #f9f9f9;
  color: #211a43;
}

@media (max-width: 992px) {
  .widgets-hocl-info.coconut-info {
    padding: 1.75rem 0 2.5rem;
    background: #fff;
  }
}

.widgets-hocl-info.coconut-info .block .title {
  color: #0c0c0c;
}

.widgets-hocl-info.sol-info {
  padding: 3.75rem 0;
}

@media (max-width: 992px) {
  .widgets-hocl-info.sol-info {
    padding: 1.75rem 0;
  }
}

@media (max-width: 992px) {
  .widgets-hocl-info.sol-info .image {
    order: 1;
  }
}

@media (max-width: 992px) {
  .widgets-hocl-info.sol-info .block {
    order: 2;
  }
}

.widgets-hocl-desc {
  padding: 5rem 0 3rem;
  background: #6A51B7;
  color: #fff;
  text-align: center;
}

.widgets-hocl-desc .text {
  font-size: 1rem;
  line-height: 140%;
}

.widgets-hocl-desc .text p {
  margin: 2.625rem 0;
}

.widgets-hocl-desc.coconut-desc {
  background: #f5a240;
}

.widgets-hocl-posts {
  background: #f3f1ff;
  padding-bottom: 1.5rem;
}

.widgets-hocl-posts .hocl-posts {
  width: 78%;
}

.widgets-hocl-posts .hocl-posts .owl-stage-outer {
  overflow: visible;
}

.widgets-hocl-posts .hocl-posts .owl-dots {
  margin-left: 20%;
}

@media (max-width: 1200px) {
  .widgets-hocl-posts .hocl-posts .owl-dots {
    margin-left: 15%;
  }
}

.widgets-hocl-posts .hocl-posts .owl-nav {
  position: absolute;
  top: calc(30% - 2.5rem);
  left: -5.5rem;
  right: -36%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .widgets-hocl-posts .hocl-posts .owl-nav {
    display: none;
  }
}

.widgets-hocl-posts .hocl-posts .owl-nav .owl-prev,
.widgets-hocl-posts .hocl-posts .owl-nav .owl-next {
  width: 5rem;
  height: 6.6875rem;
  background: rgba(12, 12, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {

  .widgets-hocl-posts .hocl-posts .owl-nav .owl-prev,
  .widgets-hocl-posts .hocl-posts .owl-nav .owl-next {
    margin: 0.2rem;
    width: 4rem;
    height: 4.5rem;
  }
}

.widgets-hocl-posts .hocl-posts .owl-nav .owl-prev:after,
.widgets-hocl-posts .hocl-posts .owl-nav .owl-next:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.625rem solid transparent;
  border-left: 0.9375rem solid #fff;
  border-bottom: 0.625rem solid transparent;
}

.widgets-hocl-posts .hocl-posts .owl-nav .owl-prev:hover,
.widgets-hocl-posts .hocl-posts .owl-nav .owl-next:hover {
  background: rgb(12, 12, 12);
}

.widgets-hocl-posts .hocl-posts .owl-nav .owl-prev:hover:after,
.widgets-hocl-posts .hocl-posts .owl-nav .owl-next:hover:after {
  border-left-color: #f5a240;
}

.widgets-hocl-posts .hocl-posts .owl-nav .owl-prev:after {
  transform: rotate(180deg);
}

.widgets-hocl-posts .hocl-posts .block img {
  width: 100%;
  margin-bottom: 2rem;
}

.widgets-hocl-posts .hocl-posts .block .titl {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  line-height: 140%;
  margin-bottom: 1rem;
}

.widgets-hocl-posts .hocl-posts .block .text {
  color: #211a43;
}

.widgets-hocl-publication {
  padding: 5rem 0;
}

.widgets-hocl-publication .titl {
  font-size: 1.25rem;
  line-height: 180%;
  margin-bottom: 1.5rem;
}

.widgets-hocl-publication .titl span {
  display: block;
}

.widgets-hocl-publication .text {
  color: #606060;
}

@media (max-width: 992px) {
  .widgets-hocl-publication .text {
    text-align: left;
  }
}

.widgets-coconut-advant {
  padding: 3.75rem 0;
}

@media (max-width: 680px) {
  .widgets-coconut-advant {
    padding-bottom: 2rem;
  }
}

.widgets-coconut-advant .advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .widgets-coconut-advant .advantages {
    justify-content: center;
  }
}

.widgets-coconut-advant .advantages img {
  width: 10rem;
}

@media (max-width: 992px) {
  .widgets-coconut-advant .advantages img {
    width: 8rem;
  }
}

@media (max-width: 680px) {
  .widgets-coconut-advant .advantages img {
    width: 100px;
  }
}

.widgets-coconut-advant .text {
  background: #ededed;
  color: #211a43;
  padding: 3.75rem 11.25rem;
  font-size: 1.125rem;
  line-height: 180%;
}

@media (max-width: 992px) {
  .widgets-coconut-advant .text {
    margin: 0 -1.4rem;
    padding: 3.75rem 2rem;
  }
}

.widgets-coconut-advant .text .title {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .widgets-coconut-advant .text .title {
    text-align: left;
  }
}

.widgets-coconut-advant .text p {
  margin-bottom: 1.875rem;
}

.widgets-coconut-advant .text p:last-child {
  margin-bottom: 0;
}

.widgets-coconut-advant .text span {
  font-family: "Manrope-Bold";
  font-size: 1.5rem;
  line-height: 140%;
}

.widgets-coconut-compound {
  padding: 3.75rem 0;
  background: #f3f1ff;
}

@media (max-width: 992px) {
  .widgets-coconut-compound {
    background: #fff;
    padding: 0;
  }
}

.widgets-coconut-compound .compound {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.widgets-coconut-compound .compound:last-child {
  margin-bottom: 0;
}

.widgets-coconut-compound .compound .image {
  width: 24.5rem;
}

@media (max-width: 992px) {
  .widgets-coconut-compound .compound .image {
    width: 100%;
    order: 1;
  }
}

.widgets-coconut-compound .compound .image img {
  width: 100%;
}

.widgets-coconut-compound .compound .text {
  width: calc((100% - 27.5rem) / 2);
  color: #211a43;
}

@media (max-width: 992px) {
  .widgets-coconut-compound .compound .text {
    width: 100%;
    order: 2;
    text-align: center;
  }
}

.widgets-coconut-compound .compound .text .titl {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  color: #0c0c0c;
}

.widgets-coconut-compound .compound .text p {
  margin: 1rem 0;
}

.widgets-coconut-tech {
  text-align: center;
}

@media (max-width: 992px) {
  .widgets-coconut-tech {
    padding: 1.75rem 0;
    background: #ededed;
  }
}

.widgets-coconut-tech .text {
  margin-top: 2.25rem;
  color: #0c0c0c;
}

.widgets-coconut-tech .title {
  margin-top: 3.625rem;
  font-family: "TOMOBossa-Black";
  font-size: 1.5rem;
  color: #0c0c0c;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .widgets-coconut-tech .title {
    margin-top: 1rem;
  }
}

.widgets-coconut-tech .works {
  justify-content: space-between;
  margin-top: 3.125rem;
  position: relative;
  color: #0c0c0c;
}

@media (max-width: 680px) {
  .widgets-coconut-tech .works {
    margin-top: 2.1429rem;
    text-align: center;
  }
}

.widgets-coconut-tech .works::before {
  content: "";
  border-top: 2px dashed #f5a240;
  width: 100%;
  height: 0.1875rem;
  background-size: 100%;
  position: absolute;
  top: 11.25rem;
}

@media (max-width: 680px) {
  .widgets-coconut-tech .works::before {
    display: none;
  }
}

.widgets-coconut-tech .works .block {
  width: calc(33.33% - 1rem);
  text-align: center;
  z-index: 1;
}

@media (max-width: 680px) {
  .widgets-coconut-tech .works .block {
    width: 100%;
    text-align: left;
    margin-bottom: 1.4286rem;
    text-align: center;
  }

  .widgets-coconut-tech .works .block .caption {
    width: 100%;
  }
}

.widgets-coconut-tech .works .block img.count {
  width: 3.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 680px) {
  .widgets-coconut-tech .works .block img.count {
    display: none;
  }
}

.widgets-coconut-tech .works .block .image {
  margin-bottom: 1.25rem;
}

.widgets-coconut-tech .works .block .image img {
  height: 8.125rem;
}

.widgets-coconut-tech .works .works-sub {
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .widgets-coconut-tech .works .works-sub {
    font-size: 1rem;
  }
}

.widgets-coconut-tech .works .button {
  width: 16.25rem;
  margin: 4rem auto 0;
}

@media (max-width: 540px) {
  .widgets-coconut-tech .works .button {
    margin: 0 0 0 5rem;
  }
}

.widgets-coconut-explore {
  background: #ffda7a;
  color: #0c0c0c;
  text-align: center;
}

@media (max-width: 992px) {
  .widgets-coconut-explore {
    background: #ededed;
    padding: 1.4286rem 0;
  }
}

.widgets-coconut-explore .section-title {
  margin-bottom: 2.25rem;
}

@media (max-width: 992px) {
  .widgets-coconut-explore .section-title {
    display: none;
  }
}

@media (max-width: 992px) {
  .widgets-coconut-explore .text {
    display: none;
  }
}

.widgets-coconut-explore .explore {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px 16px;
  /* margin-top: 2.5rem; */
}

@media (max-width: 1200px) {
  .widgets-coconut-explore .explore {
    justify-content: space-around;
  }
}

@media (max-width: 992px) {
  .widgets-coconut-explore .explore {
    justify-content: center;
  }
}

.widgets-coconut-explore .explore .item {
  width: 11.5rem;
}

@media (max-width: 992px) {
  .widgets-coconut-explore .explore .item {
    width: 15rem;
  }
}

@media (max-width: 480px) {
  .widgets-coconut-explore .explore .item {
    width: calc(50% - 1.25rem);
  }
}

.widgets-coconut-explore .explore .item img {
  width: 100%;
  margin-bottom: 1rem;
}

.widgets-coconut-explore .explore .item .titl {
  font-family: "Manrope-Bold";
  line-height: 1;
}

.widgets-coconut-explore .explore .item p {
  font-size: 0.875rem;
}

.widgets-coconut-oil {
  padding-top: 0;
}

@media (max-width: 480px) {
  .widgets-coconut-oil {
    padding-bottom: 1.5rem;
  }
}

.widgets-coconut-oil .title {
  margin-top: 3.625rem;
  font-family: "TOMOBossa-Black";
  font-size: 1.5rem;
  color: #0c0c0c;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.85rem;
}

.widgets-coconut-oil .big-image {
  width: 100%;
}

.widgets-coconut-oil .coconut-oil {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4.625rem;
}

@media (max-width: 992px) {
  .widgets-coconut-oil .coconut-oil {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .widgets-coconut-oil .coconut-oil {
    margin-top: 2rem;
  }
}

.widgets-coconut-oil .coconut-oil .titl {
  font-family: "Manrope-Bold";
  font-size: 1.5rem;
  line-height: 140%;
}

@media (max-width: 480px) {
  .widgets-coconut-oil .coconut-oil .titl {
    font-size: 1.1429rem;
  }
}

.widgets-coconut-oil .coconut-oil img {
  width: calc(100% - 45rem);
}

@media (max-width: 992px) {
  .widgets-coconut-oil .coconut-oil img {
    width: 48%;
  }
}

@media (max-width: 680px) {
  .widgets-coconut-oil .coconut-oil img {
    width: 100%;
    order: 2;
  }
}

.widgets-coconut-oil .coconut-oil .text {
  width: 43.875rem;
  color: #211a43;
}

@media (max-width: 992px) {
  .widgets-coconut-oil .coconut-oil .text {
    width: 48%;
  }
}

@media (max-width: 680px) {
  .widgets-coconut-oil .coconut-oil .text {
    width: 100%;
    order: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .widgets-coconut-oil .coconut-oil .text {
    font-size: 12px;
  }
}

.widgets-coconut-oil .coconut-oil .text p {
  margin: 0.5em 0;
}

.widgets-coconut-oil .coconut-oil .text p.big {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  line-height: 140%;
  margin: 1em 0;
}

@media (max-width: 480px) {
  .widgets-coconut-oil .coconut-oil .text p.big {
    font-size: 14px;
  }
}

.widgets-donation-one {
  padding: 0;
  background: #6A51B7;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.widgets-donation-one .image {
  width: 50%;
  min-height: 10rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(./dn-1.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 992px) {
  .widgets-donation-one .image {
    position: relative;
    order: 1;
    width: 100%;
    height: 30rem;
    background-position: 50% 0;
  }
}

@media (max-width: 680px) {
  .widgets-donation-one .image {
    height: 24rem;
  }
}

@media (max-width: 480px) {
  .widgets-donation-one .image {
    height: 18rem;
  }
}

.widgets-donation-one .block {
  padding: 7.875rem 1rem;
  display: flex;
  align-items: center;
  color: #fff;
}

@media (max-width: 992px) {
  .widgets-donation-one .block {
    width: 100%;
    order: 2;
    padding: 1.875rem 1.25rem 4rem;
    text-align: center;
  }
}

.widgets-donation-one .block .text {
  width: 32.625rem;
  max-width: 50%;
}

@media (max-width: 1140px) {
  .widgets-donation-one .block .text {
    width: 39rem;
  }
}

@media (max-width: 992px) {
  .widgets-donation-one .block .text {
    width: 100%;
    max-width: 100%;
  }
}

.widgets-donation-one .block .text p {
  margin-bottom: 2.2rem;
  line-height: 160%;
}

.widgets-donation-one .block .text p:last-child {
  margin-bottom: 0;
}

.widgets-donation-one .block .text p span {
  font-family: "Manrope-Bold";
  display: block;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .widgets-donation-one .block .text p span {
    font-size: 1.7143rem;
    margin-top: 0.4rem;
  }
}

.widgets-donation-one .section-title {
  font-size: 2.25rem;
  line-height: 1.33;
  margin-bottom: 2.5rem;
}

@media (max-width: 680px) {
  .widgets-donation-one .section-title {
    font-size: 1.8rem;
  }
}

.widgets-donation-two {
  padding: 5rem 0;
}

@media (max-width: 680px) {
  .widgets-donation-two {
    padding: 3rem 0;
  }
}

.widgets-donation-two .row {
  justify-content: space-between;
}

.widgets-donation-two .image {
  width: 31rem;
  min-height: 41.25rem;
  background-image: url(./dn-2.png);
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 992px) {
  .widgets-donation-two .image {
    width: 100%;
    min-height: 35rem;
  }
}

@media (max-width: 680px) {
  .widgets-donation-two .image {
    min-height: 30rem;
  }
}

@media (max-width: 480px) {
  .widgets-donation-two .image {
    min-height: 18rem;
  }
}

.widgets-donation-two .block {
  width: calc(100% - 35rem);
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .widgets-donation-two .block {
    width: 100%;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.widgets-donation-two .section-title {
  margin-bottom: 2.5rem;
}

.widgets-donation-two .text {
  color: #0c0c0c;
  font-size: 1.125rem;
  line-height: 180%;
}

.widgets-donation-three {
  padding-top: 0;
}

@media (max-width: 680px) {
  .widgets-donation-three {
    padding-bottom: 2.5714rem;
  }
}

.widgets-donation-three .block {
  display: flex;
  align-items: center;
  background: #ffda7a;
  margin-bottom: 3.75rem;
}

@media (max-width: 680px) {
  .widgets-donation-three .block {
    flex-wrap: wrap;
    padding: 2.5rem 1.25rem;
    margin: 0 -1rem 2.5714rem;
  }
}

.widgets-donation-three .image {
  width: 23.75rem;
}

.widgets-donation-three .image img {
  width: 100%;
}

@media (max-width: 680px) {
  .widgets-donation-three .image {
    width: 100%;
    order: 1;
    margin-bottom: 1.875rem;
  }
}

.widgets-donation-three .text {
  width: calc(100% - 23.75rem);
  padding: 3.125rem;
  font-family: "Manrope-Bold";
  color: #0c0c0c;
  font-size: 1.5rem;
  line-height: 140%;
}

@media (max-width: 680px) {
  .widgets-donation-three .text {
    width: 100%;
    order: 2;
    text-align: center;
    padding: 0;
    font-size: 1.1429rem;
  }
}

.widgets-donation-three .text .cite {
  font-family: "Manrope-Regular";
  font-size: 1.125rem;
  margin-top: 2.5rem;
}

.widgets-donation-three .button {
  width: 100%;
  display: flex;
  text-transform: uppercase;
}

.widgets-donation-three .button svg {
  width: 1.5rem;
  height: auto;
  margin-right: 0.6rem;
}

.widgets-about-one {
  position: relative;
}

@media (max-width: 992px) {
  .widgets-about-one {
    padding: 0;
  }
}

.widgets-about-one::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 42%;
  background: #6A51B7;
}

@media (max-width: 992px) {
  .widgets-about-one::after {
    display: none;
  }
}

.widgets-about-one .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .widgets-about-one .block {
    flex-wrap: wrap;
    padding: 0;
  }
}

.widgets-about-one .block .image {
  width: 41.5625rem;
  height: 37.5rem;
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 992px) {
  .widgets-about-one .block .image {
    width: 100%;
    order: 1;
  }
}

@media (max-width: 680px) {
  .widgets-about-one .block .image {
    height: 30rem;
  }
}

@media (max-width: 480px) {
  .widgets-about-one .block .image {
    height: 20rem;
  }
}

.widgets-about-one .block .box {
  width: calc(100% - 44rem);
}

@media (max-width: 992px) {
  .widgets-about-one .block .box {
    width: 100%;
    order: 2;
    text-align: center;
    padding: 2.1429rem 1.4286rem 1.4286rem;
  }
}

@media (max-width: 480px) {
  .widgets-about-one .block .box {
    padding-bottom: 0;
  }
}

.widgets-about-one .block .box .text {
  font-size: 1.125rem;
  line-height: 180%;
  color: #0c0c0c;
  margin-top: 2.5rem;
}

.widgets-about-two {
  position: relative;
  background-image: url(./ab-1.jpg);
  background-size: 58% auto;
  background-repeat: no-repeat;
  padding: 0;
}

@media (max-width: 992px) {
  .widgets-about-two {
    background-image: none;
    background: #ece8ff;
    padding: 2.8571rem 0;
  }
}

.widgets-about-two .block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  height: 37.875rem;
}

@media (max-width: 992px) {
  .widgets-about-two .block {
    flex-wrap: wrap;
    height: auto;
  }
}

.widgets-about-two .block .image img {
  display: none;
}

@media (max-width: 992px) {
  .widgets-about-two .block .image img {
    width: 100%;
    display: block;
  }
}

.widgets-about-two .block .box {
  width: 23.75rem;
}

@media (max-width: 1140px) {
  .widgets-about-two .block .box {
    width: 30rem;
  }
}

@media (max-width: 992px) {
  .widgets-about-two .block .box {
    width: 100%;
    text-align: center;
    margin-top: 2.1429rem;
  }
}

.widgets-about-two .block .box .text {
  font-size: 1.125rem;
  line-height: 180%;
  color: #0c0c0c;
  margin-top: 2.5rem;
}

.widgets-about-three {
  padding: 3.75rem 0;
}

@media (max-width: 680px) {
  .widgets-about-three {
    padding: 0;
  }

  .widgets-about-three .container {
    padding: 0;
  }
}

.widgets-about-three img {
  width: 100%;
}

.widgets-team {
  background: #f3f1ff;
}

@media (max-width: 992px) {
  .widgets-team {
    background: #fff;
    padding-top: 2.8571rem;
    padding-bottom: 0;
  }
}

.widgets-team .section-title {
  text-align: center;
  margin-bottom: 3.4375rem;
}

@media (max-width: 680px) {
  .widgets-team .section-title {
    display: none;
  }
}

.widgets-team .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.widgets-team .image {
  width: 50%;
}

@media (max-width: 680px) {
  .widgets-team .image {
    width: 100%;
    order: 1;
    margin-bottom: 2.1429rem;
  }
}

.widgets-team .image img {
  width: 100%;
}

.widgets-team .text {
  width: calc(50% - 5.625rem);
  color: #0c0c0c;
  font-size: 1.125rem;
  line-height: 180%;
}

@media (max-width: 680px) {
  .widgets-team .text {
    width: 100%;
    order: 2;
    margin-bottom: 2.1429rem;
    text-align: center;
  }
}

.widgets-team .text .section-title {
  display: none;
}

@media (max-width: 680px) {
  .widgets-team .text .section-title {
    display: block;
    color: #6A51B7;
    margin-bottom: 1rem;
  }
}

.widgets-team .text .title {
  font-size: 2rem;
  line-height: 140%;
  color: #6A51B7;
}

@media (max-width: 480px) {
  .widgets-team .text .title {
    font-size: 1.4286rem;
  }
}

.widgets-team .text ul {
  padding-left: 1rem;
}

@media (max-width: 680px) {
  .widgets-team .text ul {
    text-align: left;
    padding-left: 2rem;
  }
}

.widgets-about-social {
  background: #ededed;
  text-align: center;
  padding: 5rem 0;
}

@media (max-width: 680px) {
  .widgets-about-social {
    padding: 2.5rem 0;
  }
}

.widgets-about-social .text {
  color: #202020;
  margin: 1.875rem 0;
}

.widgets-about-social .about-social {
  display: flex;
  justify-content: space-between;
  margin-top: 3.125rem;
}

.widgets-about-social .about-social a img {
  width: 3.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 680px) {
  .widgets-about-social .about-social a img {
    width: 2.2857rem;
  }
}

.widgets-about-social .about-social a .name {
  font-family: "Manrope-Bold";
  font-size: 1.25rem;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 680px) {
  .widgets-about-social .about-social a .name {
    font-size: 0.9rem;
  }
}

/***** ICONS *****/
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-next:before {
  content: "\e901";
}

.icon-close:before {
  content: "\e902";
}

.icon-detal:before {
  content: "\e903";
}

.icon-doc:before {
  content: "\e904";
}

.icon-play:before {
  content: "\e905";
}

.icon-phone:before {
  content: "\e90b";
}

.icon-star-off:before {
  content: "\e910";
}

.icon-search:before {
  content: "\e908";
}

.product-info .owl-stage-outer::after {
  width: 1px;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: white;
}

.shopify-challenge__container {
  margin: 4rem auto !important;
  padding: 4.375rem 2rem;
}

.shopify-challenge__container [type=submit] {
  margin-top: 1rem !important;
  border: 1px solid #452D8D;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

header .nav .nav-dropdown {
  display: block;
  width: max-content;
  height: auto;
  margin: 0 auto;
  padding: 4px 6px;
  border-radius: 0 0 5px 5px;
}

.dropdown_bg_dark {
  background: rgb(0 0 0 / .6);
}

.dropdown_bg_light {
  background: rgb(248 249 250 / .78);
}

@media (max-width: 992px) {
  .nav-dropdown {
    margin-top: 1rem !important;
  }

  .dropdown_bg_dark {
    background: rgb(33 37 41) !important;
  }

  .dropdown_bg_light {
    background: rgb(248 249 250) !important;
  }
}

.fotter-bottom-social .social-info .vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: #8E7DE7;
  margin: 0 32px;
}

.fotter-bottom .copyring {
  margin-right: 48px;
}

@media (max-width: 660px) {
  .fotter-bottom-social .social-info i:last-of-type {
    display: none;
  }

  .fotter-bottom-social .social-info> :last-child {
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .fotter-bottom-social .subtitle {
    justify-content: start;
  }

  .fotter-bottom-social .subtitle.phone {
    text-align: left;
  }

  .fotter-bottom-social .social-info i:first-of-type {
    display: none;
  }

  .fotter-bottom-social .social-info> :last-child {
    margin-top: 0;
    justify-content: start;
  }

  .fotter-bottom-social .social-icon a {
    margin-left: 0;
    margin-right: 32px;
  }

  .fotter-bottom .row {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .fotter-bottom .copyring {
    margin: 0;
    padding: 0;
  }

  .fotter-bottom .police-confident {
    margin: 10px 0 0;
    justify-content: start;
  }

  .fotter-bottom .police-confident a:first-child {
    margin-left: 0;
  }

  /* .footer-decor {
    width: 60px;
    bottom: 40rem;
  } */
}

@media (max-width: 360px) {
  .slider .item .section-title {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .product-info form[action*=add]>[class*=button] {
    width: 80%;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .widgets-coconut-tech .works .block .image {
    background: white;
    padding: 16px 0;
  }
}
/* WJ 开始 */
/* 通用滑动动画效果 */
.slide-transition {
  transition: transform 0.3s ease, visibility 0s ease 0.3s; /* 修改过渡效果 */
  transform: translateX(-100%);
  visibility: hidden; /* 初始状态隐藏 */
}

.slide-transition.active {
  transition: transform 0.3s ease, visibility 0s ease; /* active 状态的过渡效果 */
  transform: translateX(0);
  visibility: visible;
}
/* ATC按钮 */
.add-to-cart-button, .choose-option-button {
  background-color: #ffffff !important;
  color: #6A51B7 !important;
  border: 1px solid #6A51B7 !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  line-height: 24px !important;
  padding: 8px 0px !important;
}
@media screen and (min-width: 1025px) {
  .add-to-cart-button:hover, .choose-option-button:hover {
    background-color: #6A51B7 !important;
    color: #ffffff !important;
  }
  .add-to-cart-button:hover svg, .choose-option-button:hover svg {
    fill: #ffffff !important;
  }
}
/* PC端 */
@media (min-width: 768px) {
  /* 首页订阅板块左边的视频区域有一条黑线的bug */
  .deferred-media video {
    height: 102% !important;
  }
  /* 产品集合页面星级位置调整为居中 */
  [data-bv-rating] .bv_main_container, [data-bv-show=inline_rating] .bv_main_container {
    justify-content: center;
  }
}
.cart-count-bubble span {
  margin-right: 0 !important;
}

/* 移动端 */
@media (max-width: 767px) {
  .custom-sections .product-kv__img {
    margin-bottom: 30px;
  }
}

/* WJ 结束 */