@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: #DAA897;
  --primary-black: #010101;
  --white: #ffffff;
  --black: #000000;
  --font-body: Arial, Helvetica, sans-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);
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary-black);
}

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

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

li {
  list-style: none;
}

img {
  display: block;
  border: 0;
  height: auto;
}

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 30px;
  max-width: 1460px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-block;
  border-radius: 4px;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: bold;
  font-size: 18px;
  padding: 23px 30px;
  min-width: 238px;
  text-align: center;
  transition: .2s;
}

.btn-primary.on, .btn-primary:hover {
  color: var(--white);
  background: var(--primary);
}

.btn-color {
  color: var(--primary-black);
  border-color: var(--primary-black);
}

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

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

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

.link-primary {
  display: inline-block;
  font-size: 22px;
  color: var(--primary);
  line-height: 2;
  position: relative;
}

.link-primary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: .36s;
}

.link-primary:hover::after {
  width: 100%;
}

.title {
  font-size: 18px;
  color: var(--primary-black);
}

.title div {
  display: flex;
  align-items: center;
}

.title div::after {
  content: '';
  width: 72px;
  height: 1px;
  background: var(--primary-black);
  margin-left: 15px;
}

.title h2 {
  font-weight: 900;
  font-size: 50px;
  margin-top: 40px;
  line-height: 1.2;
}

.title-text {
  color: #696969;
}

.title-two {
  font-size: 34px;
  line-height: 1.2;
  color: var(--primary-black);
}

.title-white .title,
.title-white .title-two {
  color: var(--white);
}

.title-white .title div::after {
  background: var(--white);
}

.title-white .title-text {
  color: #A7A7A7;
}

.title-white .link-primary {
  color: var(--white);
}

.title-white .link-primary::after {
  background: var(--white);
}

.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-60 {
  margin-top: 60px;
}

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

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

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

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

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

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

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

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

.background-color {
  background: #F5F5F5;
}

.link-hover {
  display: inline;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: .36s;
}

.link-hover:hover {
  color: var(--primary);
  background-size: 100% 1px;
}

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

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

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

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

.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  header footer */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  z-index: 99;
}

header .container {
  display: flex;
  align-items: center;
  position: relative;
}

header .logo {
  display: block;
  width: 160px;
  margin-right: 20px;
}

header .logo img {
  width: 100%;
}

header.active .nav .nav-li {
  padding: 15px 0;
}

.nav {
  flex: 1;
}

.nav a {
  display: block;
}

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

.nav .nav-li {
  position: relative;
  margin-right: 3.85%;
  font-size: 18px;
  padding: 30px 0;
  transition: .36s;
}

.nav .nav-li > a {
  padding: 16px 4px;
  color: #696969;
  position: relative;
  transition: .2s;
}

.nav .nav-li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #010101;
  transition: .36s;
}

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

.nav .nav-li > a:hover::after, .nav .nav-li > a.active::after {
  width: 100%;
}

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

.nav .nav-two {
  position: absolute;
  left: 0;
  top: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  background: #ffffff;
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  transition: all 500ms ease;
}

.nav .nav-two li {
  margin-bottom: 2px;
}

.nav .nav-two li:last-child {
  margin-bottom: 0;
}

.nav .nav-two li a {
  width: 200px;
  color: #313131;
  background: #F5F5F5;
  padding: 12px 20px;
  transition: .36s;
  display: block;
}

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

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

.nav .nav-super {
  position: absolute;
  left: 30px;
  top: 100%;
  width: calc(100% - 60px);
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  transition: all 500ms ease;
}

.nav .nav-super-row {
  padding: 30px 30px 20px 40px;
}

.nav .nav-super-left {
  width: 16.61%;
  margin-bottom: 10px;
}

.nav .nav-super-left a {
  margin-bottom: 20px;
  color: #313131;
  background: #F5F5F5;
  padding: 12px 20px;
  transition: .36s;
}

.nav .nav-super-left a:hover, .nav .nav-super-left a.active {
  background: var(--primary);
  color: var(--white);
}

.nav .nav-super-left a:last-child {
  margin-bottom: 0;
}

.nav .nav-super-center {
  width: 20.28%;
  margin-left: 1.33%;
  margin-bottom: 10px;
}

.nav .nav-super-img {
  position: relative;
  text-align: center;
  display: none;
}

.nav .nav-super-img a {
  display: inline;
}

.nav .nav-super-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.nav .nav-super-img.active {
  display: block;
}

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

.nav .nav-super-img div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav .nav-super-img .nav-super-more {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}

.nav .nav-super-right {
  flex: 1;
  overflow: hidden;
}

.nav .nav-super-lis {
  display: flex;
  flex-wrap: wrap;
  max-height: 452px;
  overflow-y: auto;
  padding-right: 10px;
  row-gap: 12px;
}

.nav .nav-super-lis li {
  width: 22.71%;
  margin-left: 2.29%;
}

.nav .nav-super-lis span {
  display: block;
  overflow: hidden;
}

.nav .nav-super-lis span img {
  width: 100%;
  transition: .5s;
}

.nav .nav-super-lis span a:hover img {
  transform: scale(1.05);
}

.nav .nav-super-lis h2 {
  margin-top: 5px;
  font-size: 18px;
}

.nav .nav-super-hide {
  display: none;
}

.nav .nav-super-hide.active {
  display: block;
}

.search-icon {
  font-size: 20px;
  padding: 5px;
  cursor: pointer;
  transition: .2s;
  color: var(--primary-black);
}

.search-icon:hover {
  color: var(--primary);
}

.nav-icon {
  font-size: 32px;
  padding: 5px;
  cursor: pointer;
  transition: .2s;
  color: var(--primary-black);
  transition: .5s;
  display: none;
}

.nav-icon:hover {
  color: var(--primary);
}

.nav-icon.active {
  transform: rotate(90deg);
}

footer {
  background: var(--black);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
}

.footer-left {
  width: 45%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}

.footer-right {
  width: 55%;
  padding-left: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
  display: block;
}

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

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

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

.footer-follow {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}

.footer-follow a {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  margin-top: 6px;
}

.footer-follow a i,
.footer-follow a svg {
  transition: .36s;
}

.footer-follow a:hover svg,
.footer-follow a:hover i {
  transform: rotate(360deg);
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 23px;
  margin-bottom: 20px;
}

.footer-info li {
  margin-right: 5%;
  margin-top: 12px;
}

.footer-info a {
  display: inline;
}

.footer-info i {
  margin-right: 5px;
}

.footer-links {
  display: flex;
}

.footer-links .footer-title {
  margin-bottom: 5px;
}

.footer-links li {
  margin-right: auto;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-links li:last-child {
  padding-right: 0;
}

.footer-links a {
  padding: 3px 0;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: .36s;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  color: #999;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 16px;
}

.footer-bottom a {
  display: inline;
}

.form-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.3s linear;
}

.form-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.form-popup.active .form-popup-card {
  transition-delay: 0.36s;
  transform: scale(1);
}

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

.form-popup-card {
  width: 480px;
  max-width: 100%;
  padding: 30px 30px 40px 30px;
  background: #fff;
  position: relative;
  transform: scale(0);
  transition: transform ease 0.36s;
}

.form-popup-card h2 {
  font-size: 24px;
  font-weight: 900;
}

.form-popup-card .row {
  margin-top: 25px;
  --gutter-x: 20px;
}

.form-popup-card input,
.form-popup-card textarea {
  display: block;
  width: 100%;
  height: 60px;
  background: #F5F7FB;
  font-size: 16px;
  padding: 0 10px;
  border: none;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.form-popup-card input::placeholder,
.form-popup-card textarea::placeholder {
  color: #969696;
}

.form-popup-card textarea {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  height: 160px;
  resize: none;
}

.form-popup-card button {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--primary);
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: .36s;
}

.form-popup-card button:hover {
  background: var(--primary-black);
}

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

.form-popup-clear:hover {
  background: var(--black);
}

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

.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  background-color: var(--primary);
}

.th-menu-wrapper .mobile-logo a {
  width: 185px;
  display: block;
}

.th-menu-wrapper .mobile-logo img {
  width: 100%;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 16px;
  z-index: 1;
  color: var(--black);
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: .36s;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--black);
  color: var(--white);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--primary);
  height: 100%;
  position: relative;
  left: -110%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: auto;
  flex: 1;
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

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

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

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

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

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

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

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: #F9F3F0;
  color: var(--primary-black);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
  content: '\e613';
  font-family: 'icomoon';
  transition: .36s;
}

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\e613";
  font-family: 'icomoon';
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: #F9F3F0;
  float: right;
  margin-top: 1px;
  transition: .36s;
}

.th-mobile-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: '\e67c';
}

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

.th-mobile-menu > ul {
  padding: 0 40px;
}

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

.scrollbar::-ms-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.scrollbar::-moz-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.scrollbar::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.scrollbar::-ms-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.scrollbar::-moz-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.scrollbar::-ms-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.scrollbar::-moz-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-left: 10px;
}

.search-popup {
  position: fixed;
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  transform: scale(0);
  z-index: 999;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}

.search-popup button.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: transparent;
  font-size: 35px;
  transform: rotate(0);
  transition: all ease 0.36s;
  color: var(--primary-black);
  border: none;
  cursor: pointer;
}

.search-popup button.search-close:hover {
  color: var(--primary);
  border-color: transparent;
  transform: rotate(90deg);
}

.search-popup form {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  display: inline-block;
  padding: 20px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}

@media (max-width: 1199px) {
  .search-popup form {
    max-width: 600px;
  }
}

.search-popup form input {
  font-family: var(--font-body);
  font-size: 25px;
  height: 70px;
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary);
  background-color: transparent;
  padding-left: 0px;
  color: var(--primary-black);
}

.search-popup form input::placeholder {
  color: #888888;
}

.search-popup form button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  color: var(--primary-black);
  font-size: 24px;
  cursor: pointer;
  height: 70px;
  transition: .36s;
}

.search-popup form button:hover {
  color: var(--primary);
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.search-popup.active form {
  transition-delay: 0.36s;
  transform: translate(-50%, -50%) scale(1);
}

/* #endregion */
/* #region  index*/
.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%;
  opacity: 0;
  color: var(--primary-black);
  transition: ease-out .36s;
}

.banner .swiper-slide .banner-card.on {
  opacity: 1;
}

.banner .swiper-slide .banner-card h2 {
  font-size: 56px;
}

.banner .swiper-slide .banner-card .banner-text {
  font-size: 20px;
  margin-top: 35px;
  max-width: 650px;
}

.banner .swiper-slide .banner-card a {
  margin-top: 55px;
}

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

.index-about .title-two {
  margin-bottom: 30px;
}

.index-about .title-text {
  margin-bottom: 30px;
}

.index-about .counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index-about .counter li {
  width: 33.33%;
  display: flex;
  align-items: flex-end;
}

.index-about .counter div {
  font-size: 60px;
  line-height: 1;
}

.index-about .counter span {
  color: #696969;
  margin-left: 10px;
}

.index-about-ul {
  margin-top: 80px;
  margin-bottom: 50px;
}

.index-about-li {
  background: #F5F5F5;
  padding: 56px 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: .5s;
}

.index-about-li img {
  width: 90px;
  transition: .36s;
}

.index-about-li .index-about-t1 {
  font-size: 32px;
  line-height: 1.25;
  margin-top: 40px;
  display: flex;
  padding-bottom: 25px;
  transition: .36s;
}

.index-about-li .index-about-t1 div {
  flex: 1;
  margin-left: 6%;
}

.index-about-li .index-about-t2 {
  font-size: 16px;
  color: #696969;
  margin-top: auto;
  padding-top: 23px;
  border-top: 1px solid #696969;
  transition: .36s;
}

.index-about-li:hover {
  background: var(--primary);
  color: var(--white);
}

.index-about-li:hover img {
  filter: brightness(0) invert(1);
}

.index-about-li:hover .index-about-t2 {
  color: var(--white);
  border-top: 1px solid var(--white);
}

.index-categories-ul {
  margin-top: 75px;
  --gutter-x: 20px;
  row-gap: 20px;
}

.index-categories-ul .row {
  --gutter-x: 20px;
  row-gap: 20px;
}

.index-categories-li {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.index-categories-li img {
  width: 100%;
}

.index-categories-li div {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
  opacity: 0;
  transition: .5s;
}

.index-categories-li h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.index-categories-li .btn-primary {
  padding: 16px 20px;
  min-width: 200px;
}

.index-categories-li:hover div {
  top: 0;
  opacity: 1;
}

.index-factory-card {
  position: relative;
  margin-top: 100px;
}

.index-factory-card > img {
  width: 100%;
}

.index-factory-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.index-factory-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.index-factory-li {
  background: #fff;
  width: 260px;
  height: 246px;
  padding: 1.5%;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
}

.index-factory-num {
  display: flex;
  align-items: center;
}

.index-factory-num div {
  font-size: 60px;
  line-height: 1;
}

.index-factory-num span {
  color: #696969;
  margin-left: 15px;
}

.video-popup {
  cursor: pointer;
  position: relative;
}

.video-popup div {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: .36s;
  position: relative;
  z-index: 1;
}

.video-popup:after, .video-popup:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #F5F5F5;
  border-radius: 50%;
  transition: all ease 0.4s;
  animation: ripple 5s ease-in-out infinite;
}

.video-popup:after {
  animation-delay: 2s;
}

.video-popup:hover div {
  background: var(--black);
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}

.index-factory-link {
  margin-top: auto;
  margin-bottom: 2.5%;
  margin-left: 2%;
}

.index-factory-link a {
  padding: 2px 0;
  font-size: 22px;
  line-height: 2;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.index-factory-link a i {
  margin-left: 10px;
  transition: .36s;
  display: inline-block;
}

.index-factory-link a:hover i {
  transform: translateX(10px);
}

.index-process-ul {
  margin-top: 100px;
}

.index-process-ul .row {
  margin-left: 0;
  margin-right: 0;
}

.index-process-ul .row > * {
  padding: 0;
}

.index-process-ul .swiper {
  position: relative;
}

.index-process-img img {
  border-radius: 5px;
  width: 100%;
}

.index-process-card {
  height: 100%;
  padding: 5% 40px 60px 40px;
}

.index-process-card .btn-primary {
  margin-top: 25px;
}

.index-process-title div {
  font-size: 32px;
  color: var(--primary);
}

.index-process-title h2 {
  line-height: 1.2;
  font-size: 34px;
}

.index-process-title h2 a:hover {
  color: var(--primary);
}

.index-process-text {
  color: #696969;
  margin-top: 30px;
  padding-bottom: 20px;
}

.index-process-dot {
  position: absolute;
  left: 50% !important;
  bottom: 40px !important;
  width: 50% !important;
  padding: 0 40px;
  z-index: 1;
}

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

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

@media (min-width: 992px) {
  .index-process-even {
    text-align: right;
  }
  .index-process-even .row {
    flex-direction: row-reverse;
  }
  .index-process-even .index-process-dot {
    left: 0 !important;
    right: 54% !important;
  }
  .index-process-even .index-process-dot span {
    margin: 0 0 0 15px !important;
  }
}

.index-cooperation-row {
  max-width: 1690px;
  padding-left: 30px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

.index-cooperation-left {
  width: 34.2%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.index-cooperation-left .btn-primary {
  margin-top: auto;
}

.index-cooperation-right {
  width: 60%;
}

.index-cooperation .swiper-slide div {
  border-radius: 5px;
  overflow: hidden;
}

.index-cooperation .swiper-slide div img {
  width: 100%;
}

.index-cooperation .swiper-slide h2 {
  font-size: 34px;
  margin-top: 12px;
  color: var(--primary-black);
}

.index-cooperation .swiper-slide h2 a {
  display: inline;
}

.index-cooperation .swiper-slide h2 a:hover {
  color: var(--primary);
}

.index-news-ul {
  margin-top: 90px;
}

.index-news-li .btn-primary {
  margin-top: 30px;
}

.index-news-img {
  overflow: hidden;
  border-radius: 5px;
  display: block;
}

.index-news-img img {
  width: 100%;
  transition: .5s;
}

.index-news-img:hover img {
  transform: scale(1.05);
}

.index-news-title {
  margin-top: 23px;
}

.index-news-title a {
  font-size: 34px;
  transition: .2s;
}

.index-news-title a:hover {
  color: var(--primary);
}

.index-news-text {
  color: #696969;
  margin-top: 13px;
}

.index-contact {
  background: var(--primary-black);
}

.index-contact-card {
  margin-top: 75px;
}

.index-contact-card textarea,
.index-contact-card input {
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  color: #ffffff;
  font-size: 20px;
  padding: 25px 20px;
  background: none;
  width: 100%;
  font-family: var(--font-body);
  display: block;
  transition: .36s;
}

.index-contact-card textarea:focus,
.index-contact-card input:focus {
  box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.15);
}

.index-contact-card textarea::placeholder,
.index-contact-card input::placeholder {
  color: #A7A7A7;
}

.index-contact-card textarea {
  padding: 20px;
  height: 200px;
  resize: none;
}

.index-contact-card .index-contact-btn {
  background: none;
  border-radius: 5px;
  width: 238px;
  display: block;
  min-width: auto;
  margin: 60px auto 0 auto;
  cursor: pointer;
}

.index-contact-card .index-contact-btn:hover {
  background: var(--white);
}

.index-contact .wpcf7-response-output {
  color: var(--white);
}

/* #endregion */
/* #region  media */
@media (max-width: 1366px) {
  .index-categories-li h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .index-categories-li .btn-primary {
    padding: 12px 20px;
    min-width: 150px;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }
  .btn-primary {
    font-size: 16px;
    padding: 18px;
    min-width: 160px;
  }
  .space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .space-top {
    padding-top: 100px;
  }
  .space-bottom {
    padding-bottom: 100px;
  }
  .link-primary {
    font-size: 20px;
  }
  .row {
    --gutter-x: 20px;
  }
  .nav .nav-li {
    font-size: 16px;
    padding: 20px 0;
    margin-right: 3%;
  }
  .nav .nav-super-row {
    padding: 25px 25px 15px 25px;
  }
  .footer-title {
    font-size: 22px;
  }
  .banner .swiper-slide .banner-card h2 {
    font-size: 40px;
  }
  .banner .swiper-slide .banner-card a {
    margin-top: 32px;
  }
  .banner .swiper-slide .banner-card .banner-text {
    font-size: 18px;
    margin-top: 18px;
  }
  .banner .banner-dot span {
    width: 50px;
  }
  .index-about-li {
    padding: 35px 35px;
  }
  .index-about-li .index-about-t1 {
    font-size: 26px;
    margin-top: 33px;
  }
  .index-about-ul {
    margin-bottom: 30px;
  }
  .index-about-li img {
    width: 80px;
  }
  .index-about-ul,
  .index-categories-ul,
  .index-factory-card,
  .index-process-ul,
  .index-news-ul {
    margin-top: 70px;
  }
  .index-factory-li {
    width: 210px;
    height: 200px;
    margin-right: 25px;
  }
  .index-factory-num div {
    font-size: 56px;
  }
  .index-factory-num span {
    margin-left: 12px;
  }
  .index-process-card {
    padding: 20px 25px;
  }
  .index-process-title div {
    font-size: 26px;
  }
  .index-process-title h2 {
    font-size: 30px;
  }
  .index-process-text {
    margin-top: 20px;
    padding-bottom: 5px;
  }
  .index-process-dot {
    bottom: 0 !important;
  }
  .title h2 {
    font-size: 42px;
    margin-top: 30px;
  }
  .title-text {
    color: #696969;
    margin-bottom: 25px;
  }
  .index-cooperation .swiper-slide h2 {
    font-size: 30px;
    margin-top: 10px;
  }
  .index-news-title {
    margin-top: 16px;
  }
  .index-news-title a {
    font-size: 30px;
  }
  .index-news-li .btn-primary {
    margin-top: 25px;
  }
  .index-contact-card {
    margin-top: 65px;
  }
  .index-contact-card textarea,
  .index-contact-card input {
    font-size: 18px;
    padding: 20px 18px;
  }
  .index-contact-card textarea {
    height: 160px;
  }
  .index-contact-card .index-contact-btn {
    width: 160px;
    margin-top: 40px;
  }
  .index-cooperation-left .title.mb-30 {
    margin-bottom: 0;
  }
  .nav .nav-super-lis li {
    width: 31.04%;
  }
  .nav-super-center {
    display: none;
  }
  .nav .nav-super-left {
    width: 22%;
  }
}

@media (max-width: 991px) {
  .space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .space-top {
    padding-top: 80px;
  }
  .space-bottom {
    padding-bottom: 80px;
  }
  .title h2 {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .title-two {
    font-size: 26px;
  }
  .index-about .title-two {
    margin-bottom: 20px;
  }
  .index-about-ul,
  .index-categories-ul,
  .index-factory-card,
  .index-process-ul,
  .index-news-ul {
    margin-top: 50px;
  }
  .title-text {
    margin-bottom: 20px;
  }
  .index-about-ul {
    margin-bottom: 30px;
  }
  .index-about-li .index-about-t1 {
    font-size: 24px;
    margin-top: 32px;
  }
  .index-about-ul .mb-30 {
    margin-bottom: 20px;
  }
  .index-categories-li img {
    max-height: 350px;
    object-fit: cover;
    object-position: center;
  }
  .index-factory-li {
    width: 160px;
    height: 150px;
  }
  .index-factory-num {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .index-factory-num div {
    font-size: 46px;
    margin-bottom: 5px;
  }
  .index-process-dot {
    position: relative;
    width: 100% !important;
    left: 0 !important;
    justify-content: center;
    display: flex;
    margin-top: 35px;
  }
  .index-process-dot span {
    margin: 0 7px !important;
  }
  .index-cooperation .swiper-slide h2 {
    font-size: 24px;
  }
  .index-news-title a {
    font-size: 24px;
  }
  .index-news-text {
    margin-top: 6px;
  }
  .index-news-li .btn-primary {
    margin-top: 20px;
  }
  .index-contact-card {
    margin-top: 50px;
  }
  .index-contact-card .mb-30 {
    margin-bottom: 20px;
  }
  .banner .swiper-slide > img {
    min-height: 350px;
    object-fit: cover;
    object-position: center;
  }
  header .container {
    height: 80px;
  }
  .nav {
    display: none;
  }
  .nav-icon {
    display: block;
    margin-left: 15px;
  }
  .search-icon {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 15px;
  }
  header .logo {
    width: 150px;
  }
  .space {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .space-top {
    padding-top: 50px;
  }
  .space-bottom {
    padding-bottom: 50px;
  }
  .link-primary {
    font-size: 18px;
  }
  .th-menu-wrapper .mobile-logo a {
    width: 150px;
  }
  .th-menu-wrapper .mobile-logo {
    padding-bottom: 25px;
    padding-top: 30px;
  }
  .btn-primary {
    font-size: 16px;
    padding: 12px;
    min-width: 140px;
  }
  .title {
    font-size: 16px;
  }
  .title div::after {
    width: 50px;
  }
  .title h2 {
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .title-two {
    font-size: 20px;
  }
  .title-text {
    margin-bottom: 12px;
  }
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
  .banner .swiper-slide .banner-card h2 {
    font-size: 28px;
  }
  .banner .swiper-slide .banner-card .banner-text {
    font-size: 16px;
    margin-top: 6px;
  }
  .banner .swiper-slide .banner-card a {
    margin-top: 20px;
  }
  .banner .banner-dot {
    bottom: 20px !important;
  }
  .index-about .counter li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .index-about .counter div {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 5px;
  }
  .index-about .title-text {
    margin-bottom: 25px;
  }
  .index-about-li img {
    width: 60px;
  }
  .index-about-li .index-about-t1 {
    font-size: 22px;
    margin-top: 20px;
    padding-bottom: 18px;
  }
  .index-about-li .index-about-t2 {
    padding-top: 15px;
  }
  .index-about-li {
    padding: 30px 25px;
  }
  .index-about-ul {
    margin-bottom: 15px;
  }
  .index-about-ul,
  .index-categories-ul,
  .index-factory-card,
  .index-process-ul,
  .index-news-ul {
    margin-top: 35px;
  }
  .index-categories-li img {
    max-height: 300px;
  }
  .index-categories-ul {
    row-gap: 15px;
  }
  .index-categories-ul .row {
    --gutter-x: 15px;
    row-gap: 15px;
  }
  .index-categories-li h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .index-categories-li .btn-primary {
    min-width: 130px;
    font-size: 14px;
  }
  .index-factory-card > img {
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .index-factory-bottom .container {
    flex-wrap: wrap;
  }
  .index-factory-link {
    order: -1;
  }
  .index-factory-li {
    width: 130px;
    height: 120px;
    margin: 0 auto;
  }
  .index-factory-link {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  .index-factory-link a {
    padding: 0;
  }
  .index-factory-num div {
    font-size: 40px;
  }
  .video-popup div {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
  .index-process-card {
    padding: 20px 15px;
  }
  .index-process-title div {
    font-size: 24px;
  }
  .index-process-title h2 {
    font-size: 26px;
  }
  .index-process-text {
    margin-top: 12px;
    padding-bottom: 0;
  }
  .index-process-dot {
    margin-top: 20px;
  }
  .index-cooperation-row {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }
  .index-cooperation-left {
    width: 100%;
  }
  .index-cooperation-right {
    width: 100%;
    margin-top: 30px;
  }
  .index-cooperation .swiper-slide h2 {
    font-size: 18px;
  }
  .index-cooperation-left .btn-primary {
    margin-top: 10px;
  }
  .index-news-title a {
    font-size: 20px;
  }
  .index-news-title {
    margin-top: 12px;
  }
  .index-news-text {
    margin-top: 5px;
  }
  .index-news-li .btn-primary {
    margin-top: 15px;
  }
  .index-news-ul {
    row-gap: 30px;
  }
  .index-contact-card textarea,
  .index-contact-card input {
    font-size: 16px;
    padding: 15px 15px;
  }
  .index-contact-card .mb-30 {
    margin-bottom: 15px;
  }
  .index-contact-card .index-contact-btn {
    width: 150px;
    margin-top: 30px;
  }
  .index-contact-card {
    margin-top: 35px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-left {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
  .footer-right {
    width: 100%;
  }
  .footer-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  .footer-title {
    font-size: 18px;
  }
  .footer-right {
    padding-left: 0;
    margin-top: 32px;
  }
  .footer-bottom {
    padding: 12px 0;
    font-size: 14px;
  }
  .footer-top {
    padding: 60px 0 40px 0;
  }
  .footer-links {
    display: none;
  }
  .footer-info {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .search-popup form {
    width: 100%;
  }
  .search-popup button.search-close {
    top: 40px;
    right: 20px;
    font-size: 26px;
  }
  .search-popup form input {
    font-size: 20px;
    height: 60px;
  }
  .search-popup form button {
    height: 60px;
    font-size: 22px;
  }
}

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