@import url("iconfont.css");
@import url("swiper-bundle.min.css");
@import url("magnific-popup.min.css");
@import url("iconfont.css");
/* #region all */
@font-face {
  font-family: 'FilsonPro';
  font-weight: 400;
  font-display: auto;
  font-fallback: San Serif;
  src: url("../fonts/FilsonProRegular.ttf") format("truetype");
}

@font-face {
  font-family: 'FilsonPro';
  font-weight: 500;
  font-display: auto;
  font-fallback: San Serif;
  src: url("../fonts/FilsonProMedium.ttf") format("truetype");
}

@font-face {
  font-family: 'FilsonPro';
  font-weight: 700;
  font-display: auto;
  font-fallback: San Serif;
  src: url("../fonts/FilsonProBold.ttf") format("truetype");
}

:root {
  --primary: #e2b4a4;
  --primary-color: #daa897;
  --color: #000;
  --color-two: #4c4c4c;
  --color-three: #4b4b4b;
  --color-four: #f5f5f5;
  --color-five: #ffffff;
  --color-six: #f2f5f7;
  --color-seven: #424242;
  --color-eight: #424242;
  --color-border: #ddd;
  --color-white: #ffffff;
  --font-body: FilsonPro, San Serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  margin-top: 0 !important;
}

body {
  font-family: var(--font-body);
  color: var(--color-two);
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: .2s;
}

h1 {
  font-size: 45px;
  font-size: 2.8125rem;
}

h2 {
  font-size: 45px;
  font-size: 2.8125rem;
}

h3 {
  font-size: 32px;
  font-size: 2rem;
}

h4 {
  font-size: 24px;
  font-size: 1.5rem;
}

h5 {
  font-size: 20px;
  font-size: 1.25rem;
}

h6 {
  font-size: 18px;
  font-size: 1.125rem;
}

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

li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
  height: auto;
}

input,
textarea {
  font-size: 16px;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  outline: none;
}

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

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.display-flex {
  display: flex;
}

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

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

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

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: start;
}

/* #endregion */
/* #region  0 */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-top {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.container-two {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-three {
  max-width: 1350px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 320px) and (max-width: 479px) {
  .container {
    max-width: 350px;
  }
  .container-three,
  .container-two {
    max-width: 320px;
  }
  .page-banner .container-two {
    max-width: 350px;
  }
}

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

@media (min-width: 480px) and (max-width: 767px) {
  .container-three,
  .container-two,
  .container {
    max-width: 510px;
  }
  .page-banner .container-two {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-three,
  .container-two,
  .container {
    max-width: 780px;
  }
  .page-banner .container-two {
    max-width: 810px;
  }
}

@media (min-width: 992px) {
  .container-three,
  .container-two,
  .container {
    max-width: 1000px;
  }
  .page-banner .container-two {
    max-width: 1030px;
  }
  .container-top {
    max-width: 1460px;
  }
}

@media (min-width: 1200px) {
  .container-three,
  .container-two,
  .container {
    max-width: 1200px;
  }
  .page-banner .container-two {
    max-width: 1230px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1450px;
  }
  .container-three {
    max-width: 1350px;
  }
}

.background-color {
  background: #faf6f5;
}

.background-color2 {
  background-color: #f4f6f9;
}

.background-white {
  background-color: #ffffff !important;
}

.btn-primary {
  display: inline-block;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
  padding: 6px 15px;
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--color-five);
}

.btn-bg {
  color: var(--primary-color);
  padding: 10px 20px;
  background: #faf6f5;
  line-height: 1;
  font-family: inherit;
  font-weight: 700;
  border-radius: 3px;
  transition: .3s;
  cursor: pointer;
}

.btn-bg:hover {
  background: var(--color);
  color: var(--color-six);
}

.btn-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #666;
  color: var(--color);
  padding: 18px 35px;
  text-align: center;
  border-radius: 30px 0;
  transition: .3s;
  cursor: pointer;
}

.btn-link.btn-white {
  background: var(--color-white);
  border-color: var(--color-white);
  line-height: 1.1;
}

.btn-link.btn-white:hover {
  border-color: var(--color-white);
}

.btn-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #faf6f5;
}

.img-hover {
  display: block;
  overflow: hidden;
}

.img-hover img {
  width: 100%;
  display: block;
  transition: .5s;
}

.img-hover:hover img {
  transform: scale(1.1);
}

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

.text-one {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.text-two {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-three {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

table,
td,
th {
  border: 1px solid #ddd;
}

td,
th {
  padding: .7em 1em;
  border-width: 0 1px 1px 0;
}

table tr:nth-child(odd) td {
  background: #f1f1f1;
}

iframe {
  display: block;
  width: 100%;
}

/* #endregion */
/* #region boot */
.row {
  display: flex;
  flex-wrap: wrap;
  --gutter-x: 30px;
  margin-left: calc(var(--gutter-x) / -2);
  margin-right: calc(var(--gutter-x) / -2);
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.row-direction {
  flex-direction: row !important;
}

.row > * {
  padding-right: calc(var(--gutter-x) / 2);
  padding-left: calc(var(--gutter-x) / 2);
}

.row.gap {
  --gutter-x: 0;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-xs-1 {
    width: 8.3333333333%;
  }
  .col-xs-2 {
    width: 16.6666666667%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.3333333333%;
  }
  .col-xs-5 {
    width: 41.6666666667%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 58.3333333333%;
  }
  .col-xs-8 {
    width: 66.6666666667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.3333333333%;
  }
  .col-xs-11 {
    width: 91.6666666667%;
  }
  .col-xs-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

/* #endregion */
/* #region padding + margin */
.space {
  padding-top: 120px;
  padding-bottom: 120px;
}

.space-top {
  padding-top: 120px;
}

.space-bottom {
  padding-bottom: 120px;
}

.space-bottom-two {
  padding-bottom: 90px;
}

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

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

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

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

/* #endregion */
/* #region index */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
}

header .container-top {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

header .logo {
  display: block;
  margin-right: 20px;
  padding: 1em 0;
  transition: 0s;
}

header .logo img {
  width: 210px;
  height: 64px;
  object-fit: contain;
  object-position: left;
  transition: .1s;
}

header .header-logo-white {
  display: none;
}

header.active .logo {
  padding: .5em 0;
}

header.active .logo img {
  width: 180px;
  height: 55px;
}

header.header-bg + main {
  padding-top: 0 !important;
}

@media (min-width: 992px) {
  header.header-bg {
    background: none;
    border-bottom: none;
  }
  header.header-bg .header-logo-white {
    display: block;
  }
  header.header-bg .header-logo-black {
    display: none;
  }
  header.header-bg .nav .nav-li > a {
    color: var(--color-white);
  }
  header.header-bg .logo img {
    width: 180px;
    height: 55px;
  }
  header.header-bg.active {
    background: var(--color-white);
  }
  header.header-bg.active .header-logo-white {
    display: none;
  }
  header.header-bg.active .header-logo-black {
    display: block;
  }
  header.header-bg.active .nav .nav-li > a {
    color: var(--color);
  }
  header.header-bg + main {
    padding-top: 0 !important;
  }
}

.header-btn {
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.nav {
  flex: 1;
}

.nav a {
  display: block;
}

.nav .nav-ul {
  height: 100%;
  display: flex;
  justify-content: end;
}

.nav .nav-li {
  position: relative;
  transition: .36s;
}

.nav .nav-li > a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--color);
  position: relative;
  padding: 0 15px;
}

.nav .nav-li > a:hover, .nav .nav-li > a.active {
  color: var(--primary-color);
}

.nav .nav-li > a i {
  margin-left: 10px;
  font-size: .6rem;
  font-weight: 700;
  display: block;
}

.nav .nav-li:hover > .nav-two,
.nav .nav-li:hover .nav-super {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.nav .nav-two {
  position: absolute;
  left: 0;
  top: 100%;
  width: 240px;
  background: #ffffff;
  border: 1px solid #dedede;
  visibility: hidden;
  opacity: 0;
}

.nav .nav-two li {
  position: relative;
  border-bottom: 1px solid #dedede;
}

.nav .nav-two li:last-child {
  border-bottom: none;
}

.nav .nav-two li a {
  padding: 8px 15px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.nav .nav-two li a .nav-btn {
  font-size: 12px;
  font-weight: 600;
  transform: rotate(-90deg);
  position: relative;
  top: 2px;
  margin-left: 10px;
}

.nav .nav-two li a:hover, .nav .nav-two li a.active {
  background: #dedede;
}

.nav .nav-two li:hover .nav-three {
  visibility: visible;
  opacity: 1;
}

.nav .nav-two i {
  font-size: 14px;
  position: relative;
  top: 3px;
}

.nav .nav-three {
  left: calc(100% + 1px) !important;
  top: 0 !important;
  visibility: hidden;
  opacity: 0;
}

.nav .nav-position {
  position: unset;
}

.nav .nav-super {
  position: absolute;
  left: 30px;
  top: 100%;
  width: calc(100% - 40px);
  background: #fff;
  border: 1px solid #dedede;
  visibility: hidden;
  opacity: 0;
}

.nav .nav-super-row {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
}

.nav .nav-super-lis {
  flex: 1;
  overflow: hidden;
  min-width: 20%;
  padding: 0 15px;
  border-right: 1px solid #dadada;
}

.nav .nav-super-lis:last-child {
  border-right: none;
}

.nav .nav-super-lis h2 a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  padding: 10px 15px;
}

.nav .nav-super-lis h2 .nav-btn {
  display: none;
}

.nav .nav-super-lis ul a {
  padding: 10px 15px;
  color: #333;
}

.nav .nav-super-lis ul a.active, .nav .nav-super-lis ul a:hover {
  background-color: #dedede;
}

.header-menu {
  padding: 0 10px;
  border: 1px solid var(--color);
  color: var(--color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 46px;
  cursor: pointer;
}

.header-menu i {
  font-weight: 600;
  font-size: 18px;
}

.header-menu span {
  margin-left: 8px;
}

.header-menu.active i {
  transform: rotate(45deg);
}

.header-menu.active i::before {
  content: "\e634";
}

.footer-top {
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer-top .footer-logo {
  width: 210px;
  display: block;
}

.footer-top .footer-logo img {
  width: 100%;
}

.footer-top .footer-text {
  font-size: 16px;
  line-height: 1.5;
  max-width: 280px;
  margin-top: 15px;
}

.footer-top .footer-phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color);
  margin-top: 30px;
}

.footer-top .footer-icon {
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
}

.footer-top .footer-icon img {
  width: 15px;
}

.footer-top .footer-icon a {
  border-radius: 50%;
  color: var(--color-two);
  width: 58px;
  height: 58px;
  border: 1px solid #b2b2b2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 5px 0 5px;
}

.footer-top .footer-icon a:hover {
  background: #f8eeea;
  border-color: #f8eeea;
}

.footer-top .footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color);
}

.footer-top .footer-links a {
  display: block;
  color: var(--color-two);
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-top .footer-links a:last-child {
  margin-bottom: 0;
}

.footer-top .footer-links a:hover {
  color: var(--primary);
}

.footer-top .footer-contact div {
  margin-bottom: 1.2em;
}

.footer-top .footer-contact div:last-child {
  margin-bottom: 0;
}

.footer-top .footer-form input {
  display: block;
  border: 1px solid #c4c4c4;
  background: #fff;
  padding: 20px 30px;
  border-radius: 0;
  margin-bottom: 10px;
  width: 100%;
  color: #333;
  font-size: 16px;
}

.footer-top .footer-form input::placeholder {
  color: #666;
}

.footer-top .footer-form button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  padding: 22px 0;
  border-radius: 0;
  transition: .3s;
  border: none;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
}

.footer-top .footer-form button:hover {
  background: var(--color);
}

.footer-top .footer-top-two {
  max-width: 260px;
  margin-left: auto;
}

.footer-top .footer-top-three {
  max-width: 310px;
  margin-left: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0 20px 0;
  border-top: 1px solid #ccc;
}

.footer-bottom .footer-bottom-text {
  margin-top: 10px;
}

.footer-bottom .footer-bottom-link {
  margin-top: 10px;
  margin-left: 6px;
}

.footer-bottom .footer-bottom-link:hover {
  color: var(--primary);
}

.right-icon {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
}

.right-icon ul {
  padding: 20px 0;
}

.right-icon a {
  width: 50px;
  height: 50px;
  position: relative;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1;
}

.right-icon a div {
  position: absolute;
  top: 0;
  right: -400px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  border-radius: 25px;
  color: #fff;
  padding: 12px 55px 12px 15px;
  transition: .3s;
  visibility: hidden;
  z-index: -1;
  font-size: 16px;
}

.right-icon a img {
  width: 230px;
}

.right-icon a:hover div {
  right: 0;
  visibility: visible;
}

.page-top .public-title,
.page-top .public-text {
  position: relative;
}

.public-title {
  line-height: 1.3;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  color: var(--color);
}

.public-text {
  margin-top: 20px;
}

.details-text img,
.public-text img,
.public-rich img {
  display: inline;
}

.details-text p,
.public-text p,
.public-rich p {
  margin-bottom: 18px;
}

.details-text p:last-child,
.public-text p:last-child,
.public-rich p:last-child {
  margin-bottom: 0;
}

.details-text a,
.public-text a,
.public-rich a {
  color: var(--primary);
}

.details-text a:hover,
.public-text a:hover,
.public-rich a:hover {
  color: var(--color);
}

.details-text ol,
.public-text ol,
.public-rich ol {
  margin-top: 18px;
  margin-bottom: 18px;
  padding-left: 20px;
}

.details-text ol li,
.public-text ol li,
.public-rich ol li {
  list-style: auto;
}

.details-text ul,
.public-text ul,
.public-rich ul {
  margin-top: 18px;
  margin-bottom: 18px;
}

.details-text ul li,
.public-text ul li,
.public-rich ul li {
  padding-left: 20px;
  position: relative;
}

.details-text ul li::before,
.public-text ul li::before,
.public-rich ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 50%;
}

.details-text h1,
.details-text h2,
.details-text h3,
.details-text h4,
.details-text h5,
.details-text h6,
.public-text h1,
.public-text h2,
.public-text h3,
.public-text h4,
.public-text h5,
.public-text h6,
.public-rich h1,
.public-rich h2,
.public-rich h3,
.public-rich h4,
.public-rich h5,
.public-rich h6 {
  margin-bottom: 18px;
  color: var(--color);
}

.public-table {
  padding-bottom: 10px;
  margin-bottom: 20px;
  overflow-x: scroll;
}

.language {
  position: fixed;
  right: 8%;
  top: 0;
  z-index: 99999;
  width: 173px;
  border: 1px solid #ccc;
}

.language.active .language-choose i {
  transform: rotate(180deg);
}

.language-ul {
  max-height: 180px;
  overflow-y: auto;
  display: none;
}

.language-li {
  display: flex;
  align-items: start;
  background-color: #eee;
  color: var(--color);
  padding: 3px 5px;
  transition: .3s;
  line-height: 24px;
  cursor: pointer;
}

.language-li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  margin-right: 4px;
}

.language-li span {
  flex: 1;
  overflow: hidden;
}

.language-li i {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  top: 4px;
  margin-right: 3px;
  transition: .3s;
}

.language-li:hover {
  background-color: var(--color-white);
}

.language-li.language-choose {
  background: var(--color-white);
  background: #fff linear-gradient(180deg, #efefef 0%, #fff 70%);
  border-top: 1px solid #ccc;
  color: #666;
  position: relative;
}

.language-li.language-choose * {
  position: relative;
}

.language-li.language-choose::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: .3s;
}

.language-li.language-choose:hover::before {
  opacity: 1;
}

.language-ul::-ms-scrollbar {
  width: 4px;
}

.language-ul::-moz-scrollbar {
  width: 4px;
}

.language-ul::-webkit-scrollbar {
  width: 4px;
}

.language-ul::-ms-scrollbar-thumb {
  background: #888;
}

.language-ul::-moz-scrollbar-thumb {
  background: #888;
}

.language-ul::-webkit-scrollbar-thumb {
  background: #888;
}

.language-ul::-ms-scrollbar-track {
  background: #fff;
}

.language-ul::-moz-scrollbar-track {
  background: #fff;
}

.language-ul::-webkit-scrollbar-track {
  background: #fff;
}

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner .swiper-slide {
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner .swiper-slide .banner-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: var(--color-white);
  transition: .3s;
}

.banner .swiper-slide .banner-card h2 {
  font-size: 406.25%;
  line-height: 1.2;
  font-weight: 700;
  max-width: 750px;
}

.banner .swiper-slide .banner-card .banner-text {
  margin-top: 28px;
  max-width: 785px;
}

.banner .swiper-slide .banner-card .btn-link {
  margin-top: 45px;
}

.banner .banner-dot {
  position: absolute;
  left: 0 !important;
  bottom: 25px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner .banner-dot span {
  width: 60px;
  height: 3px;
  transition: .36s;
  margin: 0 7px !important;
  border-radius: 0;
  background: #D2D2D2;
  opacity: 1;
}

.banner .banner-dot span.swiper-pagination-bullet-active {
  background: var(--primary);
}

.one-stop {
  background-size: cover;
  background-position: center;
}

.one-stop .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
  flex-wrap: wrap;
}

.one-stop .btn-link {
  border-color: var(--color-white);
  color: var(--color-white);
}

.one-stop .btn-link:hover {
  color: var(--primary);
}

.one-stop-text {
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  flex: 1;
  overflow: hidden;
  max-width: 574px;
  margin-bottom: 20px;
}

.index-one {
  padding: 70px 0 150px;
}

.index-one-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color);
}

.index-one-row {
  margin-top: 20px;
  position: relative;
}

.index-one-row .swiper-slide {
  height: auto;
  padding: 0 10px;
}

.index-one-row .swiper-slide div {
  width: 100%;
  height: 100%;
  border: 2px solid #f4ebe8;
  border-radius: 10px;
  overflow: hidden;
}

.index-one-row .swiper-slide div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.index-one-line {
  font-size: 18px;
  font-weight: 700;
  color: var(--color);
}

.index-one-prev,
.index-one-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: .2s;
}

.index-one-prev:hover,
.index-one-next:hover {
  color: var(--primary);
}

.index-one-prev {
  right: 100%;
}

.index-one-next {
  left: 100%;
}

.index-two {
  padding-bottom: 150px;
}

.index-two .btn-link {
  margin-top: 55px;
}

.index-two .row {
  position: relative;
  padding: 80px 0;
}

.index-two .row::before {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  width: calc(85% - 30px);
  height: 100%;
  background: url(../images/index_two.png) 100% 115% no-repeat #f7eeeb;
}

.index-two .row > div {
  position: relative;
}

.index-two .public-text {
  margin-top: 25px;
}

.index-two-text {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}

.index-two-img {
  position: relative;
}

.index-two-img img {
  width: 100%;
}

.index-two-img::before, .index-two-img::after {
  content: '';
  position: absolute;
  width: 106px;
  height: 106px;
}

.index-two-img::before {
  top: -33px;
  left: -33px;
  border-top: 8px solid #e2b4a4;
  border-left: 8px solid #e2b4a4;
}

.index-two-img::after {
  bottom: -33px;
  right: -33px;
  border-bottom: 8px solid #e2b4a4;
  border-right: 8px solid #e2b4a4;
}

.index-three {
  padding-top: 180px;
}

.index-three-ul {
  margin-top: 35px;
  --gutter-x: 10px;
  row-gap: 10px;
}

.index-three-ul .row {
  --gutter-x: 10px;
  row-gap: 10px;
}

.index-three-li {
  position: relative;
  overflow: hidden;
}

.index-three-li img {
  width: 100%;
  display: block;
  transition: .3s;
}

.index-three-li div {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding: 0 30px;
  color: #fff;
}

.index-three-li h2 {
  font-size: 24px;
  font-weight: 700;
}

.index-three-li:hover img {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .index-three-ul .col-md-9 {
    width: 74.75%;
  }
  .index-three-ul .col-md-3 {
    width: 25.25%;
  }
}

.index-four {
  padding: 45px 0 200px 0;
}

.index-four-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color);
}

.index-four-row {
  --gutter-x: 20px;
}

.index-four-row a {
  display: flex;
  align-items: center;
  border: 1px solid #c4c4c4;
  padding: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
  color: var(--color);
}

.index-four-row a:hover {
  background: #faf6f5;
  color: var(--primary);
  border-color: var(--primary);
}

.index-four-row h2 {
  font-size: 18px;
  font-weight: 500;
}

.index-five {
  padding: 70px 0;
  background-size: cover;
}

.index-five-card {
  background: #fff;
  max-width: 720px;
  padding: 60px 120px;
}

.index-five-card > h2 {
  font-size: 40px;
  color: var(--color);
}

.index-five-card .btn-link {
  margin-top: 38px;
}

.index-six {
  padding: 200px 0 150px;
}

.index-six-row {
  --gutter-x: 20px;
  margin-top: 60px;
}

.index-six-row > div {
  padding-bottom: 30px;
}

.index-six-row a {
  display: block;
  max-width: 214px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.index-six-row a img {
  display: block;
  transition: .3s;
  width: 100%;
}

.index-six-row a h2 {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 500;
  color: var(--color);
  transition: .3s;
}

.index-six-row a:hover img {
  transform: scale(1.1);
}

.index-six-row a:hover h2 {
  color: var(--primary);
}

@media (min-width: 1200px) {
  .index-six-row .col-md-3 {
    width: 20%;
  }
}

.index-seven {
  padding: 110px 0;
}

.index-seven-tab {
  --gutter-x: 16px;
  margin-top: 50px;
}

.index-seven-li {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--color);
  margin-bottom: 20px;
}

.index-seven-li span {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color);
  border-radius: 50%;
  margin-right: 20px;
}

.index-seven-li h2 {
  flex: 1;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
  color: var(--color);
}

.index-seven-li.active {
  color: var(--color-white);
}

.index-seven-li.active span {
  background: var(--primary);
  border-color: var(--primary);
}

.index-seven-ul li {
  display: none;
}

.index-seven-ul li.active {
  display: block;
}

.index-seven-img img {
  width: 100%;
}

.index-seven-row {
  padding-top: 50px;
}

.index-seven-card {
  max-width: 440px;
  margin: 0 auto;
  align-items: center;
}

.index-seven-card .btn-link {
  margin-top: 40px;
}

.index-eight {
  padding: 250px 0 120px;
}

.index-eight .public-text {
  max-width: 470px;
}

.index-eight .btn-link {
  margin-top: 70px;
}

.index-eight-num {
  margin-bottom: 100px;
}

.index-eight-num span {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--color);
}

.index-eight-num div {
  color: #666;
  margin-top: 2px;
}

.index-nine {
  padding: 150px 0 170px;
}

.index-nine .swiper {
  margin-top: 50px;
}

.index-nine-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.index-nine-lr {
  display: flex;
  align-items: center;
}

.index-nine-lr div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #cccbcb;
  color: #cccbcb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
}

.index-nine-lr i {
  font-weight: 700;
}

.video-popup {
  position: relative;
}

.video-popup img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.video-popup:hover .video-arrow img {
  transform: scale(1.1);
}

.video-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-arrow img {
  width: 144px;
  height: 144px;
  object-fit: contain;
  object-position: center;
  transition: .3s;
}

.index-ten {
  padding-bottom: 100px;
  background: url(../images/message_img.png) 10% 100% no-repeat #faf6f5;
}

.index-ten .btn-link {
  margin-top: 70px;
}

.faq-li {
  padding: 36px 0;
  border-bottom: 2px solid #f1e0da;
  display: flex;
}

.faq-li.active .faq-title span {
  transform: rotate(-180deg);
}

.faq-num {
  color: #292f33;
  font-size: 22px;
  font-weight: 700;
  margin-right: 40px;
}

.faq-title {
  display: flex;
  align-items: start;
  cursor: pointer;
}

.faq-title h2 {
  flex: 1;
  overflow: hidden;
  font-size: 22px;
  color: #292f33;
  font-weight: 500;
}

.faq-title span {
  width: 20px;
  height: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  position: relative;
  top: 6px;
  transition: .36s;
}

.faq-text {
  padding-top: 20px;
  color: #777;
  display: none;
}

.faq-right {
  flex: 1;
  overflow: hidden;
}

.index-ten-left {
  padding-top: 80px;
}

.index-eleven {
  padding: 200px 0;
}

.index-form {
  border: 1px solid #c4c4c4;
  padding: 55px 45px 40px;
  border-radius: 65px 0 65px 0;
}

.index-form-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--color);
  margin-bottom: 35px;
  line-height: 1;
}

.index-form-li {
  margin-bottom: 10px;
}

.index-form-li textarea,
.index-form-li input {
  width: 100%;
  border: 1px solid #e3e3e3;
  padding: 20px 25px;
  border-radius: 35px 0;
  font-size: 16px;
  font-size: 1rem;
  color: #111;
  font-family: unset;
  transition: .3s;
}

.index-form-li textarea::placeholder,
.index-form-li input::placeholder {
  color: #666;
}

.index-form-li textarea:focus,
.index-form-li input:focus {
  border-color: #c4c4c4;
}

.index-form-li textarea {
  height: 180px;
}

.index-form-upload div {
  font-size: 16px;
  font-weight: 600;
  color: var(--color);
}

.index-form-upload input {
  font-size: 16px;
  color: #888;
}

.index-form-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  background: none;
  border: 1px solid var(--color);
  color: var(--color);
  font-weight: 400;
}

.index-form-btn:hover {
  background: var(--color);
  color: var(--color-white);
  border-color: var(--color);
}

.index-eleven-name {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.index-eleven-name img {
  margin-right: 20px;
  border-radius: 50%;
}

.index-eleven-name div {
  flex: 1;
  overflow: hidden;
}

.index-eleven-name h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color);
}

.index-eleven-name p {
  display: block;
  margin-top: 1px;
}

.index-eleven-icon {
  margin-bottom: 40px;
}

.index-eleven-icon img {
  width: 59px;
}

.index-eleven-card {
  max-width: 550px;
  margin: 0 auto;
}

.form-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  visibility: hidden;
  transition: 0.36s;
  opacity: 0;
}

.form-popup.active {
  opacity: 1;
  visibility: visible;
}

.form-popup.active .form-popup-card {
  transform: translate(0);
}

.form-popup-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-popup-card {
  width: 340px;
  max-width: 100%;
  background: #fff;
  position: relative;
  transform: translateY(-100%);
  transition: 0.36s;
}

.form-popup-card .product-form {
  padding: 15px;
}

.form-popup-clear {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 32px;
  height: 32px;
  background: #333;
  border: 1px solid var(--color-white);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: .36s;
}

.form-popup-clear i {
  transform: rotate(45deg);
}

.form-popup-show {
  cursor: pointer;
}

.footer-cookies {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
  color: #111;
  max-width: 50%;
  padding: 3rem;
  z-index: 999;
}

.footer-cookies-title {
  font-size: 24px;
  font-weight: 500;
}

.footer-cookies-text {
  margin-top: 16px;
}

.footer-cookies-btns {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
}

.footer-cookies-btns button {
  font-size: 14px;
  font-weight: bold;
  margin-right: 4px;
  margin-top: 4px;
  color: #fff;
  background-color: green;
  padding: 8px 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.footer-cookies-btns .footer-cookies-bg {
  background-color: #eaeaea;
  color: #111;
}

/* #endregion */
/* #region product */
.page-banner {
  width: 100%;
}

.page-banner.color-black {
  color: var(--color);
}

.page-banner .public-rich ul li::before {
  background: none;
}

.page-banner {
  position: relative;
}

.page-banner .container-two {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.page-banner {
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
}

.page-banner-img {
  width: 100%;
}

.page-t1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
}

.page-t2 {
  margin-top: 20px;
}

.page-t3 {
  margin-top: 20px;
}

.page-t3 ul {
  margin-top: 0;
  margin-bottom: 0;
}

.page-t3 li {
  font-size: 16px;
  line-height: 1.2;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 400;
}

.page-t3 li:last-child {
  margin-bottom: 0;
}

.page-t3 li::before {
  content: '';
  position: absolute;
  top: 3px !important;
  left: 0;
  width: 10px !important;
  height: 10px !important;
  background: 0 0;
  border: 1px solid #fff;
  border-radius: 50%;
}

.page-t3 li a {
  color: var(--primary);
}

.page-t3 li a:hover {
  color: var(--color-white);
}

.page-t4 {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.page-t4 img {
  width: 70px;
  margin-right: 5px;
  margin-top: 5px;
}

.page-t5 {
  margin-top: 22px;
}

.page-t5 .btn-link {
  background: var(--color-white);
}

.product-swp {
  position: relative;
  margin-top: 60px;
}

.product-swp .swiper {
  overflow: visible;
}

.product-swp .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.product-swp .swiper-slide-active,
.product-swp .swiper-slide-next,
.product-swp .swiper-slide-next + .swiper-slide {
  opacity: 1;
  visibility: visible;
}

.product-next,
.product-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1;
}

.product-prev {
  left: -50px;
}

.product-next {
  right: -50px;
}

.product-swp-li {
  text-align: center;
  background: var(--color-white);
  overflow: hidden;
  transition: .3s;
  display: block;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

.product-swp-li.text-left {
  text-align: left;
}

.product-swp-li .product-swp-bottom {
  padding: 15px;
}

.product-swp-li .product-swp-bottom > div {
  font-weight: 400;
  margin-top: 10px;
  padding-bottom: 10px;
}

.product-swp-li .product-swp-bottom li {
  padding-left: 20px;
  position: relative;
}

.product-swp-li .product-swp-bottom li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #666;
  border-radius: 50%;
}

.product-swp-li img {
  width: 100%;
}

.product-swp-li h2 {
  color: #222;
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.product-swp-li h2 a:hover {
  color: var(--primary);
}

.product-swp-li .btn-primary {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.product-swp-li:hover {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}

.product-dot {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-dot span {
  width: 18px;
  height: 18px;
  border: 2px solid #676767;
  border-radius: 50%;
  position: relative;
  margin: 0 3px;
  background: none;
  opacity: 1;
  transition: .2s;
}

.product-dot span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  transition: .2s;
  opacity: 0;
}

.product-dot span.swiper-pagination-bullet-active {
  border-color: var(--primary);
}

.product-dot span.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.product-section {
  overflow: hidden;
}

.product-sinosilk-ul {
  margin-top: 40px;
  row-gap: 50px;
}

.product-sinosilk-li {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-sinosilk-img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #fff;
}

.product-sinosilk-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-sinosilk-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-top: 12px;
}

.product-sinosilk-text {
  margin-top: 9px;
}

.product-sinosilk-text a {
  color: var(--primary);
}

.product-sinosilk-text a:hover {
  color: var(--color);
}

.product-swatch .public-text ul {
  margin-top: 20px;
}

.product-swatch .btn-link {
  background: var(--color-white);
  margin-top: 20px;
}

.product-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1400 / 600;
  margin-top: 20px;
}

.product-creative {
  background: #f9f9f9;
}

.product-creative-ul {
  margin-top: 40px;
}

.product-creative-ul li {
  padding: 25px 15px;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
}

.product-creative-img {
  width: 270px;
}

.product-creative-img img {
  width: 100%;
}

.product-creative-right {
  flex: 1;
  overflow: hidden;
}

.product-creative-card {
  max-width: 740px;
  padding-left: 30px;
}

.product-creative-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color);
}

.product-creative-text {
  margin-top: 10px;
  padding-bottom: 10px;
}

.product-creative-btn .btn-link {
  margin: 10px 5px 0 5px;
}

.product-creative-btn .btn-link:nth-child(even) {
  border-color: var(--color-white);
}

.product-creative-btn .btn-link:nth-child(even):hover {
  border-color: var(--primary);
}

.product-available .product-available-line {
  padding: 20px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  background: var(--color-white);
}

.product-available-tab {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  display: flex;
  flex-wrap: wrap;
}

.product-available-tab div {
  cursor: pointer;
  margin-right: 40px;
  transition: .3s;
  padding-bottom: 15px;
  border-bottom: 3px solid transparent;
}

.product-available-tab div.active {
  border-color: var(--primary-color);
}

.product-available-card {
  padding-bottom: 2em;
  padding-top: 40px;
}

.product-available-card .row {
  --gutter-x: 20px;
  margin-left: 0;
  margin-right: 0;
}

.product-available-img {
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-available-img img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.product-available-img h2 {
  padding: 10px;
  margin: 10px 10px 0 10px;
  text-align: center;
  font-size: .9em;
  font-weight: 400;
  color: var(--color);
}

.product-available-img2 {
  padding-bottom: 13px;
}

.product-available-img2 img {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.product-available-title {
  font-size: 16px;
  font-weight: 40;
  margin-bottom: 20px;
}

.product-available-video {
  padding-top: 40px;
}

.product-available-video iframe {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  aspect-ratio: 1130 / 800;
}

.product-available-li {
  display: none;
}

.product-available-li.active {
  display: block;
}

.product-faq .faq-title h2 {
  font-size: 20px;
  font-weight: 600;
}

.product-faq .faq-ul {
  border-top: 1px solid #ebebeb;
}

.product-faq .faq-li {
  border-bottom: 1px solid #ebebeb;
}

.product-faq .faq-li.active .faq-title span {
  transform: rotate(-270deg);
}

.product-faq-color .faq-title,
.product-faq-color .faq-title h2,
.product-faq-color .faq-text {
  color: var(--color);
}

.product-send {
  background: #f4f6f9;
}

.product-send h3.public-title {
  font-size: 32px;
  font-size: 2rem;
}

.product-send .faq-li {
  background: var(--color-white);
  border: 1px solid #dadada;
  margin-bottom: 15px;
  padding: 0;
}

.product-send .faq-li i {
  font-weight: 700;
}

.product-send .faq-li.active .faq-title span {
  transform: rotate(0deg);
}

.product-send .faq-li.active .faq-title span i::before {
  content: "\e662";
}

.product-send .faq-li:last-child {
  margin-bottom: 0;
}

.product-send .faq-title {
  color: var(--color);
  padding: 8px 10px 8px 10px;
  position: relative;
  background: #dadada;
}

.product-send .faq-title h2 {
  font-size: 16px;
}

.product-send .faq-title span {
  width: 16px;
  height: 16px;
  font-size: 16px;
  top: 3px;
}

.product-send .faq-text {
  padding: 15px;
}

.product-form {
  position: sticky;
  top: 120px;
  padding: 20px;
  box-shadow: 0 0 80px 13px rgba(141, 153, 204, 0.1);
  border: 1px solid #ecf1f6;
}

.product-form.active {
  box-shadow: 0 0 10px 1px #19588d;
}

.product-form h2 {
  font-size: 22px;
  font-weight: 600;
  color: #060a12;
  margin-bottom: 10px;
}

.product-form-li {
  margin-bottom: 8px;
}

.product-form-li input,
.product-form-li textarea {
  width: 100%;
  display: block;
  padding: 10px;
  border: none;
  background: none;
  font-size: 16px;
  font-family: unset;
  color: var(--color);
  transition: .3s;
  background: #f5f7fb;
}

.product-form-li input::placeholder,
.product-form-li textarea::placeholder {
  color: #999;
}

.product-form-li input:focus,
.product-form-li textarea:focus {
  background: var(--color-white);
}

.product-form-li textarea {
  height: 120px;
}

.product-form-file {
  font-size: 16px;
  color: var(--color);
  font-weight: 600;
  margin-bottom: 15px;
}

.product-form-file input {
  font-size: 16px;
  color: #888;
}

.product-form-btn {
  border: none;
  display: block;
  width: 100%;
  background: var(--primary-color);
  color: var(--color-white);
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
}

.product-custom-ul {
  margin-top: 40px;
}

.product-custom-img {
  margin-bottom: 20px;
}

.product-custom-img img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.product-custom-text {
  padding-top: 10px;
  padding-bottom: 20px;
}

.product-custom-text ul {
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-custom-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  position: relative;
  top: -5px;
}

.product-custom-lis {
  position: relative;
  top: -5px;
}

/* #endregion */
/* #region about */
.about-counter-ul {
  margin-left: 0;
  margin-right: 0;
  margin-top: 40px;
  padding: 25px 10px;
  border: 1px solid #ccc;
  border-radius: 7px;
  background: #e9e9e9;
}

.about-counter-ul > div:last-child .about-counter-li::after,
.about-counter-ul > div:nth-child(4n+4) .about-counter-li::after {
  background: none;
}

.about-counter-li {
  text-align: center;
  margin: 14px 0;
  position: relative;
}

.about-counter-li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background: #ccc;
}

.about-counter-li span {
  display: block;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--primary-color);
}

.about-counter-li div {
  font-size: 16px;
  margin-top: 15px;
}

.about-video-card {
  margin-top: 20px;
}

.about-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1170 / 800;
}

.about-history-ul {
  margin-top: 80px;
}

.about-history-ul li {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.about-history-ul li:first-child {
  padding-top: 0;
}

.about-history-ul li:last-child {
  padding-bottom: 0;
}

.about-history-ul li::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: rgba(218, 168, 151, 0.6);
}

.about-history-ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #daa897;
  border-radius: 50%;
}

.about-history-ul li:nth-child(odd) {
  text-align: right;
}

.about-history-ul li:nth-child(even) {
  margin-left: auto;
}

.about-history-ul li:nth-child(even) .about-history-card {
  margin-left: auto;
}

.about-history-ul li:nth-child(odd) .about-history-card::before {
  right: -12px;
  border-left: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.about-history-ul li:nth-child(even) .about-history-card::before {
  left: -12px;
  border-right: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.about-history-card {
  width: calc(50% - 35px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  position: relative;
}

.about-history-card::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

.about-history-card span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.25;
}

.about-history-card div {
  margin-top: 10px;
}

.about-make-ul {
  row-gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.about-make-ul h2 {
  font-size: 20px;
  margin-top: 15px;
  padding-left: 20px;
  position: relative;
  color: #363636;
}

.about-make-ul h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 5px;
}

.about-make-text {
  margin-top: 15px;
}

.about-exhibitions-ul {
  row-gap: 30px;
  margin-top: 60px;
}

.about-exhibitions-li img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.reviews-row {
  --gutter-x: 20px;
  row-gap: 20px;
}

.reviews-img {
  display: flex;
  justify-content: center;
  align-items: start;
}

.reviews-img span {
  border-radius: 2px 2px 0 0;
  border: 1px solid #ddd;
  overflow: hidden;
}

.reviews-img img {
  max-width: 100%;
  height: auto;
}

.faq-search {
  height: 50px;
  border: 1px solid #dadada;
  margin-bottom: 30px;
  position: relative;
}

.faq-search input {
  width: 100%;
  height: 100%;
  padding: 0 50px 0 12px;
  border: none;
  color: var(--color);
  position: relative;
  background: none;
}

.faq-search span,
.faq-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #333;
  border: none;
  background: none;
}

.faq-rubric {
  color: var(--color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.faq .faq-li .faq-title span::before {
  font-weight: 900;
}

.faq .faq-li.active .faq-title span {
  transform: rotate(45deg);
}

.faq .faq-ul {
  border-top: 1px solid #ebebeb;
}

.faq .faq-li {
  padding: 15px;
  border: 1px solid #ebebeb;
  border-top: none;
}

.faq .faq-title h2 {
  font-size: 16px;
  color: var(--primary);
}

.faq .faq-title h2:hover {
  text-decoration: underline;
}

.faq .faq-title span {
  color: var(--primary);
  top: 1px;
}

.faq .faq-title span i {
  font-weight: 900;
}

.faq .faq-text {
  padding: 30px 0 15px;
  color: var(--color-two);
}

.faq-page-title {
  color: var(--color);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.faq-page-title span {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  position: relative;
}

.faq-page-title span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #ebebeb;
  border-radius: 50%;
}

.faq-page-title span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
}

.faq-page-title span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.faq-page {
  position: sticky;
  top: 120px;
}

.faq-page ul {
  padding: 20px 0 10px 0;
}

.faq-page li {
  margin-bottom: 10px;
}

.faq-page a {
  color: var(--primary);
}

.faq-page a:hover {
  color: var(--color);
}

.video-ul {
  margin-top: 30px;
  row-gap: 30px;
}

.video-li h2 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
  color: var(--color-two);
}

.video-img {
  position: relative;
}

.video-img img {
  display: block;
  width: 100%;
}

.video-img .video-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-img .video-popup div {
  width: 80px;
  height: 80px;
  font-size: 40px;
  color: var(--color-white);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-piece {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  aspect-ratio: 370 / 210;
}

.player-container {
  width: 100%;
}

.player-container video {
  width: 100%;
}

.mejs-container,
.mejs-container .mejs-controls,
.mejs-embed,
.mejs-embed body {
  background: #222;
}

/* #endregion */
/* #region  free + blog + contact */
.product-free .row {
  row-gap: 30px;
}

.product-free .public-title {
  margin-bottom: 50px;
}

.product-free .product-swp-li h2 {
  font-weight: 700;
}

.product-free-bottom {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-free-bottom .product-free-num {
  padding: 7px 8px;
  background: #f5f5f5;
}

.product-free-bottom .pagination {
  margin-left: auto;
  color: var(--primary-color);
}

.product-free-bottom .pagination .page-num {
  min-width: 36px;
  height: 36px;
}

.product-free-bottom .pagination .page-num.active,
.product-free-bottom .pagination .page-num:hover {
  color: var(--color-white);
}

.free-img-section .public-title {
  margin-bottom: 30px;
}

.free-img-section .row {
  --gutter-x: 20px;
  row-gap: 30px;
}

.free-img div {
  cursor: pointer;
}

.free-img img {
  width: 100%;
  height: auto;
  display: block;
}

.free-img h2 {
  text-align: center;
  font-size: .9rem;
  padding: 0 10px;
  margin: 18px 10px 0 10px;
  font-weight: 400;
  color: var(--color);
}

.breadcrumb {
  font-size: 17px;
  font-size: 1.0625rem;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a,
.breadcrumb span {
  transition: .2s;
  display: inline;
}

.breadcrumb a:hover,
.breadcrumb span {
  color: var(--color);
}

.breadcrumb i {
  font-size: 12px;
  margin: 0 3px;
  font-weight: 600;
}

@media (max-width: 921px) {
  .blog {
    padding-top: 60px;
  }
  .blog .col-12 {
    width: 100%;
  }
}

.blog .row {
  row-gap: 70px;
}

.blog-li .btn-bg {
  display: block;
  padding: 15px 0;
  width: 100%;
  font-weight: 400;
  text-align: center;
  margin-top: 24px;
}

.blog-img img {
  display: block;
  max-width: 100%;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 24px;
}

.blog-text {
  margin-top: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--color);
}

.pagination .page-num {
  font-size: 16px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 2px;
  border: 1px solid var(--primary-color);
  padding: 0 5px;
  transition: .36s;
}

.pagination .page-num i {
  font-size: 14px;
}

.pagination .page-num.page-prev {
  padding: 0 8px;
}

.pagination .page-num.page-prev i {
  margin-right: 6px;
  transform: rotate(180deg);
}

.pagination .page-num.page-next {
  padding: 0 8px;
}

.pagination .page-num.page-next i {
  margin-left: 6px;
}

.pagination .page-num.active, .pagination .page-num:hover {
  background: var(--primary-color);
}

.blog-details .container-top {
  display: flex;
  flex-wrap: wrap;
}

.blog-details .details-card {
  width: 68%;
  padding: 35px;
  overflow: hidden;
}

.details-title {
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  color: var(--color);
  line-height: 1.2;
}

.details-name {
  color: var(--primary-color);
  margin-top: 20px;
}

.details-name a:hover {
  color: var(--color);
}

.headings-navigation {
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #aaa;
  margin-top: 25px;
  margin-bottom: 20px;
  border-radius: 4px;
  max-width: 500px;
  width: 100%;
  transition: .36s;
}

.headings-navigation.active {
  width: 250px;
}

.headings-navigation h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

#toc-list {
  list-style-type: none;
  padding-left: 0;
}

.toc-item {
  margin: 5px 0;
}

.toc-sub-item {
  margin-left: 20px;
}

.toc-link {
  text-decoration: none;
  color: #333;
}

.toc-link:hover {
  text-decoration: underline;
}

.headings-navigation > h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headings-btn {
  display: flex;
  align-items: center;
  width: 33px;
  height: 30px;
  justify-content: center;
  direction: ltr;
  margin-left: 10px;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid #999191;
  border-radius: 4px;
}

.details-center-icon {
  display: flex;
  flex-wrap: wrap;
  font-size: 22px;
  margin-top: 10px;
}

.details-center-icon li {
  margin-right: 20px;
}

.details-center-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}

.details-form {
  width: 32%;
  padding: 20px 20px 20px 50px;
}

.contact .container-two {
  padding-left: 0;
  padding-right: 0;
}

.contact-row {
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

.contact-row > .row {
  --gutter-x: 0;
}

.contact-card {
  flex: 1;
  overflow: hidden;
  padding: 75px 55px;
  border-right: none;
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.contact-info .contact-info-top {
  padding: 55px 25px 30px;
  border-bottom: 1px solid var(--color-white);
}

.contact-info .contact-info-top span {
  display: block;
  margin-bottom: 3px;
}

.contact-info .contact-info-top .top-description-title {
  font-size: 50px;
  letter-spacing: 2px;
  font-weight: 500;
}

.contact-info .contact-info-top .top-description-text {
  margin-top: 2px;
}

.contact-info .contact-info-bottom {
  flex: 1;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
}

.contact-info .contact-info-ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.contact-info .contact-info-ul li {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
}

.contact-info .contact-info-ul i {
  width: 34px;
  height: 34px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 20px;
}

.contact-info .contact-info-ul div {
  flex: 1;
  position: relative;
  top: 6px;
}

.contact-info .contact-info-text {
  margin-top: auto;
  margin-bottom: 30px;
  margin-top: 50px;
}

.contact-info .contact-info-text i {
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
}

.contact-info .contact-info-text div {
  text-align: center;
  margin-top: 12px;
}

.contact-form-li {
  border-bottom: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
}

.contact-form {
  margin-top: 60px;
}

.contact-form i {
  margin-right: 7px;
  font-size: 26px;
  color: #888;
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  color: var(--color);
  font-family: var(--font-body);
  display: block;
  width: 100%;
}

.contact-form input {
  border: none;
  padding: 15px 0;
}

.contact-form textarea {
  border: none;
  min-height: 170px;
  border: 1px solid var(--color-border);
  padding: 20px 45px !important;
  background: none;
}

.contact-form .contact-form-textarea {
  position: relative;
  margin-top: 15px;
}

.contact-form .contact-form-textarea i {
  position: absolute;
  left: 25px;
  top: 18px;
}

.contact-form button {
  display: block;
  margin-left: auto;
  margin-top: 15px;
  width: 145px;
  background: none;
}

.contact-form-file {
  font-size: 18px;
  margin-top: 15px;
}

.contact-form-file div {
  font-weight: 600;
  color: var(--color);
  font-size: 16px;
}

.contact-form-file input {
  padding: 0;
  color: #777;
}

@media (min-width: 992px) {
  .th-menu-wrapper {
    display: none !important;
  }
}

.th-menu-wrapper {
  display: none;
}

.th-mobile-ul > li > a::before {
  display: none;
}

.th-menu-wrapper {
  position: relative;
  z-index: 999999;
  width: 100%;
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  position: relative;
}

.th-mobile-menu ul li {
  border-top: 1px solid var(--color-border);
  list-style-type: none;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 20px;
  padding-right: 12px;
  color: #000;
}

.th-mobile-menu ul li a.active {
  color: var(--primary-color);
}

.th-mobile-menu ul ul li a:before {
  content: "\e660";
  font-family: 'icomoon';
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 12px;
  display: inline-block;
  transition: .36s;
}

/* .th-mobile-menu ul li.th-active>a  */
.th-mobile-menu ul li a:hover {
  color: var(--primary);
}

.th-mobile-menu ul li {
  background: #faf6f5;
}

.th-mobile-menu ul li li {
  background: #ffffff;
}

.th-mobile-menu ul ul li a {
  color: #333;
  padding-left: 45px;
}

.th-mobile-menu ul ul li a.active {
  color: #333;
  background-color: #dedede;
}

.th-mobile-menu ul ul li a.active:hover {
  color: var(--primary-color);
}

.th-mobile-menu ul ul li a::before {
  left: 25px;
}

.th-mobile-menu ul ul ul li a {
  padding-left: 55px;
}

.th-mobile-menu ul ul ul li a::before {
  left: 35px;
}

.th-mobile-menu ul ul ul ul li a {
  padding-left: 65px;
}

.th-mobile-menu ul ul ul ul li a::before {
  left: 45px;
}

.th-mobile-menu ul ul ul ul ul li a {
  padding-left: 75px;
}

.th-mobile-menu ul ul ul ul ul li a::before {
  left: 55px;
}

.th-mobile-menu ul ul ul ul ul ul li a {
  padding-left: 85px;
}

.th-mobile-menu ul ul ul ul ul ul li a::before {
  left: 65px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\e71a";
  font-family: 'icomoon';
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  float: right;
  margin-top: -3px;
  transition: .36s;
}

.th-mobile-menu ul .menu-item-has-children.th-active > a:after {
  content: "\e719";
}

.not-found {
  padding-top: 120px;
  padding-bottom: 120px;
}

.not-found-title {
  color: var(--primary-color);
  text-align: center;
}

.not-found-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.not-found-search {
  width: 370px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: #fafafa;
  display: flex;
  align-items: center;
  padding-right: 3px;
  margin: 28px auto 0 auto;
}

.not-found-search input {
  flex: 1;
  overflow: hidden;
  height: 100%;
  background: none;
  border: none;
  font-size: 16px;
  padding: 0 15px;
  color: var(--color);
}

.not-found-search button {
  width: 45px;
  height: 100%;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.search-title {
  margin-bottom: 70px;
  font-weight: 300;
  color: var(--primary-color);
}

.thanks h1 {
  color: var(--color);
}

.thanks .product-form {
  margin-left: 30px;
}

/* #endregion */
/* #region  */
@media (max-width: 1199px) {
  .header-btn {
    display: none;
  }
  .banner .swiper-slide .banner-card h2 {
    font-size: 32.5px;
  }
  .banner .swiper-slide .banner-card .banner-text {
    margin-top: 5px;
  }
  .banner .swiper-slide .banner-card .btn-link {
    margin-top: 15px;
  }
  .index-one {
    padding-bottom: 70px;
  }
  .index-two {
    padding-bottom: 70px;
  }
  .index-three {
    padding-top: 70px;
  }
  .index-four {
    padding-bottom: 70px;
  }
  .index-five-card {
    max-width: 620px;
    padding: 40px;
  }
  .index-six {
    padding: 70px 0 50px 0;
  }
  .index-seven {
    padding: 70px 0;
  }
  .index-eight {
    padding: 70px 0;
  }
  .index-nine {
    padding: 70px 0;
  }
  .index-eleven {
    padding: 70px 0;
  }
  .index-form {
    padding: 20px;
  }
  .page-t1 {
    font-size: 40px;
  }
  .details-form {
    padding-left: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .index-two-img::before {
    top: -20px;
    left: -20px;
  }
  .index-two-img::after {
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 991px) {
  main {
    padding-top: 0 !important;
  }
  header {
    padding-top: 1em;
    position: relative;
    flex-wrap: wrap;
    z-index: 99999;
  }
  header .container-top {
    align-items: center;
    justify-content: space-between;
  }
  header.active .logo img {
    width: 210px;
    height: 64px;
  }
  header .logo,
  header.active .logo {
    padding: 1em 0;
  }
  .header-menu {
    display: flex;
  }
  .nav {
    display: none;
  }
  .index-two .row::before {
    width: calc(100% - 30px - 5%);
  }
  .index-two-img {
    max-width: 540px;
  }
  .index-two-text {
    margin-top: 30px;
  }
  .index-three-ul .col-lg-3 .index-three-li {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .index-seven-card {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
  .index-eight .btn-link {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .index-eight-num {
    margin-bottom: 40px;
  }
  .index-eight-num span {
    font-size: 34px;
  }
  .index-ten-left {
    padding-top: 0;
    margin-bottom: 30px;
  }
  .faq-num {
    margin-right: 30px;
  }
  .faq-num,
  .faq-title h2 {
    font-size: 18px;
  }
  .faq-title span {
    font-size: 14px;
    top: 4px;
  }
  .faq-li {
    padding: 20px 0;
  }
  .index-eleven-card {
    max-width: 100%;
    margin-top: 30px;
  }
  .one-stop-text {
    width: 100%;
    flex: auto;
  }
  .one-stop .container {
    padding: 60px 0;
  }
  .one-stop .btn-link {
    margin-top: 25px;
  }
  .footer-top .footer-top-three,
  .footer-top .footer-top-two {
    max-width: 100%;
  }
  .footer-top {
    row-gap: 80px;
  }
  .footer-bottom {
    margin-top: 25px;
  }
  .footer-top .footer-phone {
    font-size: 16px;
  }
  .product-swatch .video-popup {
    display: block;
    margin-top: 30px;
  }
  .product-swatch .row.reverse {
    flex-direction: column-reverse;
  }
  .product-swatch .row.reverse .video-popup {
    margin-bottom: 30px;
    margin-top: 0;
  }
  .product-creative-card {
    padding-left: 15px;
  }
  .product-swp .swiper-slide-next + .swiper-slide {
    opacity: 0;
    visibility: hidden;
  }
  .about-counter-li::after {
    display: none;
  }
  .about-history-card {
    width: 100%;
  }
  .about-history-ul li::before,
  .about-history-ul li::after {
    display: none;
  }
  .about-history-ul li:nth-child(odd) {
    text-align: left;
  }
  .about-history-ul li .about-history-card::before {
    display: none !important;
  }
  .product-send .product-form {
    margin-top: 30px;
  }
  .contact-form {
    margin-top: 50px;
  }
  .contact-info {
    margin-top: 30px;
  }
  .search-title {
    margin-bottom: 50px;
  }
  .index-three-li img {
    width: auto;
    max-width: 100%;
  }
  .index-nine-top {
    display: block;
  }
  .index-nine-lr {
    justify-content: flex-end;
    position: relative;
    top: 15px;
  }
  .video-piece {
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .public-text iframe {
    max-height: 400px;
  }
}

@media (max-width: 921px) {
  h1,
  h1.public-title {
    font-size: 30px;
  }
  h2,
  .public-title {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  .blog-details .container-top {
    display: block;
  }
  .blog-details .details-card {
    width: 100%;
  }
  .details-form {
    width: 100%;
    margin-top: 30px;
  }
  .details-form,
  .blog-details .details-card {
    padding: 25px;
  }
  .not-found-text {
    font-size: 20px;
  }
  .not-found {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .thanks .product-form {
    margin-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 787px) {
  .banner .swiper-slide .banner-card h2 {
    font-size: 26px;
  }
  .banner .swiper-slide .banner-card .btn-link {
    display: none;
  }
  body {
    font-size: 14px;
  }
  .banner .swiper-slide .banner-card .banner-text {
    margin-top: 6px;
  }
  .index-three-ul .row,
  .index-three-ul {
    row-gap: 5px;
  }
  .index-five-card > h2 {
    font-size: 22px;
  }
  .index-five-card {
    padding: 20px;
  }
  .footer-top {
    row-gap: 30px;
  }
  .banner .container-top {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-banner.page-banner-bg .container-two {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    margin-top: -100px;
  }
  .page-banner.page-banner-top .container-two {
    margin-top: -80px;
  }
  .page-t1 {
    font-size: 30px;
  }
  .page-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    margin-top: 20px;
  }
  .page-card > *:first-child {
    margin-top: 0;
  }
  .page-t2 {
    margin-top: 0;
  }
  .product-swp .swiper-slide-next,
  .product-swp .swiper-slide-next + .swiper-slide {
    opacity: 0;
    visibility: hidden;
  }
  .product-creative-ul li {
    display: block;
  }
  .product-creative-card {
    padding-left: 0;
  }
  .product-creative-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-available-tab div {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 15px;
  }
  .product-available-tab div:last-child {
    margin-bottom: 0;
  }
  .not-found {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 479px) {
  .index-form-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .index-form {
    border-radius: 35px;
  }
  .index-form-li textarea,
  .index-form-li input {
    padding: 12px 15px;
    border-radius: 20px 0 20px 0;
  }
  .index-form-li textarea {
    height: 120px;
  }
  .footer-top .footer-title {
    margin-bottom: 20px;
  }
  .banner .swiper-slide .banner-card .banner-text {
    font-size: 13px;
  }
  .product-prev {
    left: -20px;
  }
  .product-next {
    right: -20px;
  }
  .product-creative-btn .btn-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .details-form {
    margin-top: 45px;
  }
  .details-form,
  .blog-details .details-card {
    padding: 5px;
  }
  .blog-details {
    padding-top: 30px;
  }
  .details-title {
    font-size: 34px;
    font-size: 2.2rem;
  }
  .contact-card {
    padding: 30px 25px;
  }
  .contact-form {
    margin-top: 30px;
  }
  .not-found {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .not-found-search {
    width: 100%;
  }
  .thanks .not-found-text {
    font-size: 16px;
  }
  .page-banner.page-banner-reviews .container-two {
    top: 18%;
  }
  .reviews {
    padding-top: 75px;
  }
  td,
  th {
    padding: 8px 10px;
  }
}

.honeypot-257-wrap,
.honeypot-321-wrap {
  display: none;
}

/* #endregion */
