@import url("iconfont.css");
@import url("animate.css");
@import url("swiper-bundle.min.css");
@import url("slinky.min.css");
@import url("magnific-popup.min.css");
@import url("iconfont.css");
/* #region all */
:root {
  --primary: #e2b4a4;
  --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;
}

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

li {
  list-style: none;
}

img {
  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 {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.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: 0 20px;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.container-two {
  max-width: 1200px;
  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;
}

.background-color {
  background: #faf6f5;
}

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

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

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

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

.btn-bg {
  color: var(--primary);
  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-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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-1 {
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-4 {
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-7 {
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-10 {
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    width: 91.6666666667%;
  }
  .col-xxl-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-70 {
  padding-top: 70px;
}

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

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

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

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

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

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

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

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

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

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

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

.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: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
}

header .container {
  display: flex;
  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;
}

header.active {
  position: fixed;
}

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

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

header.header-bg {
  position: fixed;
  background: none;
  border-bottom: none;
}

header.header-bg .header-logo-black {
  display: none;
}

header.header-bg .nav .nav-li > a {
  color: var(--color-white);
}

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-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: #696969;
  position: relative;
  padding: 0 15px;
}

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

.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 {
  border-bottom: 1px solid #dedede;
}

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

.nav .nav-two li a {
  padding: 8px 15px;
  display: block;
}

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

.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 ul a {
  padding: 10px 15px;
  color: #333;
}

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

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

.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);
  border: 1px solid var(--primary);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  padding: 22px 0;
  border-radius: 0;
  transition: .3s;
  border: none;
  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;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

.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: 26px;
  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;
}

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

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

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

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

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

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

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

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

.public-text h3,
.public-rich h3 {
  color: var(--color);
  font-size: 2rem;
  margin-bottom: 18px;
}

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

.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 {
  font-size: 20px;
  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;
}

.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-size: 45px;
  font-size: 2.8125rem;
  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: 28px;
}

.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-lg-9 {
    width: 74.75%;
  }
  .index-three-ul .col-lg-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-position: center;
  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-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: 992px) {
  .index-six-row .col-lg-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 {
  font-size: 18px;
  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;
}

.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(90deg);
}

.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: 700;
  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 {
  min-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;
}

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

.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 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;
  left: 0;
  width: 10px;
  height: 10px;
  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 a {
  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);
  border-radius: 5px;
  overflow: hidden;
  transition: .3s;
}

.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: 10px;
}

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

.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-sinosilk-ul {
  margin-top: 40px;
  row-gap: 50px;
}

.product-sinosilk-li {
  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 {
  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);
  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);
}

.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-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-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 {
  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 {
  width: 100%;
  display: block;
  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: 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 {
  width: 100%;
  display: block;
}

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

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

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

.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 {
  width: 100%;
}

.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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  margin-bottom: 30px;
}

.faq-search input {
  flex: 1;
  overflow: hidden;
  height: 100%;
  padding: 0 15px 0 10px;
  border: none;
  color: var(--color);
}

.faq-search button {
  font-size: 32px;
  color: #333;
  border: none;
  background: none;
  cursor: pointer;
}

.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: 2px;
}

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

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

.faq .faq-card {
  margin-bottom: 50px;
}

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

/* #endregion */
/* #region  */
/* #endregion */
