* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #2F308C;
  --secondary: #E6212A;
  --title: #1C1C1C;
  --text: #808080;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  word-break: normal;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Noto Sans SC', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Manrope {
  font-family: 'Manrope', 'Noto Sans SC', sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #EBEBF4, #FFFFFF);
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.syedittext.white {
  color: #fff;
}
.syedittext.white p {
  color: rgba(255, 255, 255, 0.8);
}
.syedittext .subtitle {
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.syedittext .subtitle::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0.8rem;
  height: 0.8rem;
  margin: -0.5rem 1.2rem 0 0;
  border-radius: 50%;
  background-color: var(--secondary);
}
.syedittext h1 {
  font-weight: 500;
  line-height: 1.3;
  font-size: 6.8rem;
}
.syedittext h2,
.syedittext .title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 6.5rem;
}
.syedittext h3 {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 4.8rem;
}
.syedittext p {
  font-size: 2rem;
  line-height: 3.8rem;
  margin-top: 3rem;
}
.btn_bg {
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 19px;
  border-radius: 10px;
  padding: 14px 6.1rem 19px;
  background-color: var(--primary);
}
.btn_bg:hover {
  background-color: var(--secondary);
}
.btn {
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  min-width: 18.8rem;
  border-radius: 1rem;
  padding: 1.4rem 4.8rem 1.9rem;
  border: 1px solid rgba(28, 28, 28, 0.5);
  background-color: transparent;
}
.btn.white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn:hover {
  color: #fff;
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  color: var(--title);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  gap: 2.5rem;
}
.btn_i::after {
  width: 4.6rem;
  height: 4.6rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  transition: all 0.3s;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 34.783% var(--title);
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  background-color: var(--primary);
  transform: translateX(20%);
}
.btn_circle {
  width: 4.6rem;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--title);
}
.btn_circle::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 34.783%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_circle:hover {
  background-color: var(--primary);
}
.swiper_btns {
  gap: 3.8rem;
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 168.8rem;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.swiper_btns div {
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 1.2rem;
  pointer-events: all;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 35%;
  height: 35%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-l-b.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.4);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.nav_list {
  display: flex;
  flex-wrap: wrap;
}
.nav_list .nav_item {
  cursor: pointer;
  color: #8E8E8E;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  transition: all 0.3s;
  border-radius: 0.9rem;
  padding: 1.4rem 3.6rem 1.8rem;
}
.nav_list .nav_item:hover {
  color: var(--primary);
}
.nav_list .nav_item.active {
  color: #fff;
  background-color: var(--primary);
}
.blog_list .active .info {
  border-color: var(--primary);
  background-color: var(--primary);
}
.blog_list .active .info .date,
.blog_list .active .info .title {
  color: #fff;
}
.blog_list .active .info .more span {
  opacity: 0;
}
.blog_list .active .info .more i {
  opacity: 1;
}
.blog_list a {
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 2rem;
  flex-direction: column;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  border-radius: 2rem 2rem 0 0;
  padding-bottom: 58.14978%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 2rem 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  border-top: none;
  padding: 5.726872% 7.488987% 6.60793%;
}
.blog_list .info .cat {
  position: absolute;
  right: 6.167401%;
  bottom: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.6rem 2rem 1rem;
  border-radius: 0.7rem 0.7rem 0 0;
  background-color: var(--primary);
}
.blog_list .info .date {
  color: var(--text);
  font-size: 1.8rem;
  transition: all 0.3s;
}
.blog_list .info .title {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.5;
  transition: all 0.3s;
  margin-top: 1rem;
  margin-bottom: auto;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .more {
  position: relative;
  margin-top: 6rem;
}
.blog_list .info .more span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  font-size: 2rem;
  color: var(--primary);
}
.blog_list .info .more i {
  display: block;
  width: 5rem;
  height: 5rem;
  transition: all 0.3s;
  border-radius: 1.2rem;
  opacity: 0;
  background: url(../img/arrow-r-w.svg) no-repeat center / 35% var(--secondary);
}
nav.navigation {
  margin-top: 6rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
nav.navigation .page-numbers {
  border: 1px solid #cecece;
  transition: all 0.3s;
  font-size: 2.1rem;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 1rem 2px;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
}
nav.navigation .page-numbers.current::after,
nav.navigation .page-numbers:hover::after {
  filter: unset;
}
nav.navigation .prev,
nav.navigation .next {
  text-indent: -999px;
  overflow: hidden;
  padding: 0;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  width: 100%;
  height: 100%;
  background: url("../img/arrow.svg") no-repeat center / 20%;
  content: '';
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
nav.navigation .next::after {
  transform: rotate(180deg);
}
.product_list .active a {
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.35);
}
.product_list .active .info span {
  color: var(--primary);
  background-color: transparent;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s;
}
.product_list a:hover img {
  transform: scale(1.05);
}
.product_list .img {
  width: 100%;
  padding-bottom: 92.63%;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 2.2rem;
  color: #242424;
  padding: 0.7rem 10.5% 2.8rem;
}
.product_list .info strong {
  display: block;
  font-weight: 400;
  color: var(--primary);
}
.product_list .info h3 {
  font-size: 1.9rem;
  line-height: 2.6rem;
  font-weight: 700;
  margin-top: 0.6rem;
}
.product_list .info p {
  opacity: 0.75;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 1.6rem;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info span {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
  padding: 0.9rem 2rem 0.8rem;
  margin-top: 2.1rem;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  padding: 18px 0;
  transition: all 0.3s;
}
header.sticky {
  position: sticky;
  top: -96px;
}
header.style {
  top: 0;
}
header.hide {
  top: -96px;
}
header.style,
header.sticky {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  max-width: 185rem;
  padding: 0 3rem;
}
header .lt,
header .rt {
  flex: 1;
  gap: 4rem;
  display: flex;
  align-items: center;
}
header .rt {
  justify-content: flex-end;
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: auto;
  height: 60px;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  gap: 5rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-weight: 500;
  font-size: 19px;
  transition: all 0.3s;
  padding: 14px 0 19px;
}
header nav .menu > li > a:hover {
  color: var(--secondary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  color: var(--secondary);
}
header nav .menu > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  padding: 16px 24px;
}
header nav .menu > li:hover > ul > li {
  transform: translate(0);
}
header nav .sub-menu {
  left: -24px;
  position: absolute;
  min-width: 200px;
  border-radius: 10px;
  background-color: #fff;
  padding: 16px 24px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  transition: all 0.4s;
  margin-bottom: 5px;
  transform: translateY(-16px);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 8px 0;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
}
header nav .sub-menu > li > a:hover {
  color: var(--secondary);
}
header nav .sub-menu > li.current-menu-item > a {
  color: var(--secondary);
}
header .btn_search {
  width: 21px;
  height: 21px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
}
header .btn {
  margin-left: 0.4rem;
}
footer {
  color: #fff;
  overflow: hidden;
  padding-top: 9.6rem;
  background-color: var(--primary);
}
footer .logo {
  width: 22.6rem;
  display: block;
  position: relative;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main {
  column-gap: 5rem;
  column-count: 4;
  margin-top: 8rem;
}
footer .main strong {
  display: block;
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
footer .main .foot_nav {
  break-inside: avoid;
  margin-bottom: 3.7rem;
}
footer .main .foot_nav li + li {
  margin-top: 1.6rem;
}
footer .main .foot_nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  vertical-align: top;
  transition: all 0.3s;
}
footer .main .foot_nav a:hover {
  color: var(--secondary);
}
footer .main .foot_contact {
  width: 35.8rem;
  break-inside: avoid;
}
footer .main .foot_contact .infos li {
  position: relative;
  padding-left: 4.4rem;
}
footer .main .foot_contact .infos li + li {
  margin-top: 1rem;
}
footer .main .foot_contact .infos li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0.6rem;
  background: no-repeat center / contain;
}
footer .main .foot_contact .infos .phone::before {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/icon-phone.svg);
}
footer .main .foot_contact .infos .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_contact .infos a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  vertical-align: top;
  transition: all 0.3s;
}
footer .main .foot_contact .infos a:hover {
  color: var(--secondary);
}
footer .main .foot_contact .social {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5.8rem;
}
footer .main .foot_contact .social li {
  position: relative;
}
footer .main .foot_contact .social li:hover .qrcode {
  transform: translateY(2rem) scale(1);
}
footer .main .foot_contact .social a,
footer .main .foot_contact .social span {
  cursor: pointer;
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: no-repeat center / 50%;
  transition: all 0.3s;
}
footer .main .foot_contact .social a:hover,
footer .main .foot_contact .social span:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
footer .main .foot_contact .social .qrcode {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 1rem;
  width: 16.4rem;
  height: 16.4rem;
  border-radius: 1rem;
  transform: scale(0);
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
footer .main .foot_contact .social .wechat span {
  background-image: url(../img/wechat.svg);
}
footer .main .foot_contact .social .weibo a {
  background-image: url(../img/weibo.svg);
}
footer .bottom {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 3.8rem 8.8rem 3.8rem 0;
  margin-top: 13.8rem;
}
footer .bottom .copyright {
  flex: 1;
}
footer .bottom ul {
  display: flex;
  flex-wrap: wrap;
}
footer .bottom li {
  display: flex;
  align-items: center;
}
footer .bottom li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  margin: 0 2.8rem;
  background-color: rgba(170, 170, 170, 0.15);
}
footer .bottom li:last-child::after {
  display: none;
}
footer .bottom a {
  display: block;
  transition: all 0.3s;
}
footer .bottom a:hover {
  color: var(--secondary);
}
footer .back {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  bottom: 2.5rem;
  pointer-events: none;
}
footer .back.show #backtop {
  transform: translate(0);
}
footer .back.show #backtop:hover {
  transform: scale(1.1);
}
footer .back #backtop {
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  margin-left: auto;
  transition: all 0.3s;
  border-radius: 0.7rem;
  pointer-events: all;
  transform: translateY(7.5rem);
  background: url(../img/arrow-t-w.svg) no-repeat center / 25% var(--secondary);
}

header.sticky ~ .section_banner .flex,
header.sticky ~ div .section_banner .flex {
  height: calc(100vh - 96px);
}
.search .section_banner::after {
  display: none;
}
.section_banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.64;
  pointer-events: none;
  background-image: linear-gradient(to top, var(--primary), transparent);
}
.section_banner .flex {
  height: 100vh;
  max-height: 92rem;
  min-height: max-content;
  padding: 20rem 0 12rem;
}
.section_banner .head {
  flex: 1;
  padding: 2.2rem 0;
}
.section_banner .head p {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.section_banner .btn {
  min-width: 24.8rem;
}
.section_banner .arrow {
  position: absolute;
  max-width: 192rem;
  width: 100%;
  left: 50%;
  bottom: 13.26087%;
  transform: translateX(-50%);
  pointer-events: none;
}
.section_banner .arrow::after {
  content: '';
  display: block;
  width: 1rem;
  height: 19.2rem;
  margin: 0 2.916667% 0 auto;
  background: url(../img/banner-line.svg) no-repeat center / contain;
}
.section_blog {
  padding: 12rem 0 11.4rem;
}
.section_blog .head {
  padding-bottom: 0.8rem;
}
.section_blog .swiper_box {
  margin-top: 4.2rem;
}
.section_blog .section_blog_swiper {
  overflow: hidden;
  border-radius: 2rem;
  display: none;
}
.section_blog .section_blog_swiper.active {
  display: block;
}
.section_blog .btn {
  margin-top: 6.4rem;
}
.product_recommend {
  padding: 12rem 0 15rem;
}
.product_recommend strong {
  margin-bottom: 2.5rem;
}
.product_recommend .head {
  padding-bottom: 0.4rem;
}
.product_recommend .product_recommend_swiper {
  margin-top: 4.6rem;
}
.product_recommend .product_recommend_swiper .swiper-slide {
  width: 44.6rem;
}
.product_recommend .product_list .active a {
  border-color: #1156a8;
}
.product_recommend .product_list a {
  border-color: #e7e7e7;
}
.product_recommend .swiper_btns {
  top: 53.5%;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

div.jst-language-switcher {
  display: none;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  display: grid;
  align-items: center;
  overflow: auto;
}
.quote_modal.active {
  opacity: 1;
  pointer-events: all;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 102.4rem;
  margin: 5rem auto;
  padding: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fff;
}
.quote_modal .img {
  border-radius: 1.6rem;
}
.quote_modal .contact_main .rt {
  padding: 5rem 4rem;
}
.quote_modal .contact_main .syedittext p {
  margin: 10px 0 20px;
}

.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0;
  display: none;
  background-color: #fff;
}
.mega_menu .flex {
  gap: 4%;
}
.mega_menu .nav {
  width: 25%;
  padding-right: 5px;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .nav::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .nav::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .nav ul {
  gap: 1.5rem;
  display: grid;
}
.mega_menu .nav a {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.2rem 2rem;
}
.mega_menu .nav a.active {
  background-color: #edeef2;
}
.mega_menu .nav .icon {
  width: 2.6rem;
  height: 2.6rem;
  filter: contrast(0) brightness(0);
  background: no-repeat center/contain;
}
.mega_menu .nav .toggle {
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  transition: all .3s;
  background: url(../img/icon-select.svg) no-repeat center/50%;
}
.mega_menu .nav .open .toggle {
  transform: rotate(180deg);
}
.mega_menu .nav .sub {
  display: none;
  padding-top: 1rem;
  padding-left: 2rem;
}
.mega_menu .nav .sub a {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.mega_menu .list {
  flex: 1;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .list::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 2rem 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu .list li a {
  text-align: center;
}
.mega_menu .list li a:hover img {
  transform: scale(1.03);
}
.mega_menu .list li .img {
  padding-bottom: 80%;
  overflow: hidden;
}
.mega_menu .list li .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
}
.mega_menu .list .btn {
  margin-top: 5rem;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}

.full_text_editor_content {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #4c4c4c;
}
.full_text_editor_content > *:first-child {
  margin-top: 0;
}
.full_text_editor_content > *:last-child {
  margin-bottom: 0;
}
.full_text_editor_content h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--title);
  margin: 4.3rem 0 2rem;
}
.full_text_editor_content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--title);
  margin: 2rem 0 1rem;
}
.full_text_editor_content p {
  margin: 1rem 0;
}
.full_text_editor_content ul {
  margin: 2.9rem 0;
}
.full_text_editor_content ul li {
  position: relative;
  padding-left: 2.8rem;
}
.full_text_editor_content ul li::before {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  left: 0;
  top: 1.1rem;
  content: '';
  border-radius: 50%;
  background-color: var(--primary);
}
.full_text_editor_content ul li + li {
  margin-top: 1px;
}
.full_text_editor_content a {
  color: #1e120d;
  font-weight: 600;
  transition: all 0.3s;
}
.full_text_editor_content a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.full_text_editor_content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 3rem 0;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .content {
    padding: 0 3rem;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
  }
  header .lt,
  header .rt {
    gap: 3rem;
    flex: unset;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .swiper_content {
    max-width: 1024px;
  }
  .btn_bg {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 17px;
  }
  .section_banner .arrow::after {
    margin-right: 5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  footer .main {
    gap: 5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    column-count: unset;
  }
  footer .main .foot_nav {
    flex: auto;
  }
  footer .main .foot_contact {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu, .mega_overlay {
    display: none !important;
  }
  header .lt,
  header .rt {
    gap: 4rem;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li > a::after {
    display: none;
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    font-size: 14px;
    color: var(--title);
    white-space: normal;
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btn_menu {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .syedittext .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .syedittext .subtitle::before {
    width: 6px;
    height: 6px;
    margin: -2px 8px 0 0;
  }
  .syedittext h1 {
    font-size: 25px;
  }
  .syedittext h2,
  .syedittext .title {
    font-size: 22px;
    line-height: 1.3;
  }
  .syedittext h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .syedittext p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .btn {
    font-size: 14px;
    min-width: 120px;
    border-radius: 6px;
    padding: 9px 25px 11px;
  }
  .btn_bg {
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 25px 12px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after {
    width: 40px;
    height: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 30px;
  }
  .swiper_btns div {
    width: 46px;
    height: 46px;
    border-radius: 6px;
  }
  .nav_list {
    gap: 5px;
  }
  .nav_list .nav_item {
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 20px 12px;
  }
  .blog_list a {
    border-radius: 10px;
  }
  .blog_list .img {
    border-radius: 10px 10px 0 0;
  }
  .blog_list .info {
    border-radius: 0 0 10px 10px;
  }
  .blog_list .info .cat {
    font-size: 14px;
    border-radius: 6px 6px 0 0;
    padding: 8px 15px 10px;
  }
  .blog_list .info .date {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 16px;
    margin-top: 6px;
  }
  .blog_list .info .more {
    margin-top: 20px;
  }
  .blog_list .info .more span {
    font-size: 16px;
  }
  .blog_list .info .more i {
    width: 42px;
    height: 42px;
    border-radius: 6px;
  }
  nav.navigation {
    margin-top: 40px;
  }
  nav.navigation .nav-links {
    gap: 8px;
  }
  nav.navigation .page-numbers {
    width: 2rem;
    height: 2rem;
    font-size: 14px;
    padding: 0 10px 1px;
  }
  nav.navigation .next::after,
  nav.navigation .prev::after {
    background-size: 6px;
  }
  .product_list .info {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 1rem 20px 1.2rem;
  }
  .product_list .info h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .product_list .info p {
    font-size: 14px;
    margin-top: 10px;
  }
  .product_list .info span {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 20px;
  }
  header {
    padding: 11px 0;
  }
  header .content {
    padding: 0 20px;
  }
  header .lt,
  header .rt {
    gap: 30px;
  }
  header .logo img {
    height: 42px;
  }
  footer {
    padding-top: 50px;
  }
  footer .logo {
    width: 120px;
  }
  footer .main {
    gap: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    column-count: unset;
  }
  footer .main strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .main .foot_nav {
    flex: auto;
    margin: 0;
  }
  footer .main .foot_nav li + li {
    margin-top: 10px;
  }
  footer .main .foot_nav a {
    font-size: 14px;
  }
  footer .main .foot_contact {
    width: auto;
  }
  footer .main .foot_contact .infos li {
    padding-left: 30px;
  }
  footer .main .foot_contact .infos li + li {
    margin-top: 10px;
  }
  footer .main .foot_contact .infos li::before {
    width: 15px;
    height: 15px;
    top: 2px;
  }
  footer .main .foot_contact .infos a {
    font-size: 14px;
  }
  footer .main .foot_contact .infos .phone::before {
    width: 15px;
    height: 15px;
  }
  footer .main .foot_contact .social {
    gap: 12px;
    margin-top: 20px;
  }
  footer .main .foot_contact .social li:hover .qrcode {
    transform: translateY(10px) scale(1);
  }
  footer .main .foot_contact .social span,
  footer .main .foot_contact .social a {
    width: 46px;
    height: 46px;
  }
  footer .main .foot_contact .social .qrcode {
    width: 120px;
    height: 120px;
    padding: 6px;
    border-radius: 6px;
  }
  footer .bottom {
    margin-top: 30px;
    padding: 20px 60px 20px 0;
    font-size: 14px;
  }
  footer .bottom li::after {
    height: 10px;
    margin: 0 12px;
  }
  footer .back {
    bottom: 30px;
  }
  footer .back #backtop {
    width: 46px;
    height: 46px;
    border-radius: 6px;
  }

  .section_banner .flex {
    height: auto !important;
    min-height: 30vh;
    padding: 120px 0 50px;
  }
  .section_banner .head {
    padding: 0;
  }
  .section_banner .head p {
    font-size: 16px;
    line-height: 1.7;
  }
  .section_banner .btn {
    min-width: 120px;
  }
  .section_banner .arrow::after {
    width: 10px;
    height: 80px;
    margin: 0 5px 0 auto;
  }
  .section_blog {
    padding: 50px 0;
  }
  .section_blog .head {
    padding: 0;
  }
  .section_blog .swiper_box {
    margin-top: 30px;
  }
  .section_blog .section_blog_swiper {
    border-radius: 10px;
  }
  .section_blog .btn {
    margin-top: 30px;
  }
  .product_recommend {
    padding: 4rem 0;
    overflow: hidden;
  }
  .product_recommend .head {
    padding: 0;
  }
  .product_recommend .flex {
    gap: 20px 1rem;
  }
  .product_recommend .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .product_recommend .product_recommend_swiper {
    margin-top: 2rem;
  }
  .product_recommend .product_recommend_swiper .swiper-slide {
    width: 322px;
  }
  .product_recommend .swiper_btns {
    position: static;
    width: 100%;
    padding: 0 20px;
    justify-content: flex-end;
    transform: translate(0);
    max-width: unset;
    margin-top: 2rem;
  }

  /*** global css ***/
  .wd-action-btn {
    right: 2rem;
    bottom: 2rem;
    top: unset;
  }
  div.search-block div.content {
    height: 100%;
  }
  div.search-block {
    height: calc(100vh - 150px);
  }
  div.search-block.active {
    transform: translate(0);
  }
  div.search-block .searchform {
    padding-top: 2rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  div.search-block .searchform input[type='text'] {
    height: 42px;
    min-width: unset;
    width: 100%;
    font-size: 22px;
  }
  div.search-block .searchform input[type='submit'] {
    display: block;
    width: 20px;
    filter: contrast(0) brightness(0);
    height: 20px;
    background: url(../img/icon-search.svg) no-repeat center/contain;
  }

  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .full_text_editor_content {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .full_text_editor_content h2 {
    font-size: 18px;
    margin: 2rem 0 1rem;
  }
  .full_text_editor_content h3 {
    font-size: 1rem;
    margin: 1rem 0;
  }
  .full_text_editor_content p {
    margin: 10px 0;
  }
  .full_text_editor_content ul {
    margin: 1rem 0;
  }
  .full_text_editor_content ul li + li {
    margin-top: 10px;
  }
  .full_text_editor_content ul li {
    padding-left: 1.5rem;
  }
  .full_text_editor_content ul li::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
  .full_text_editor_content img {
    margin: 3rem 0;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .nav_list {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_list .nav_item {
    white-space: nowrap;
  }
  header .btn_bg {
    display: none;
  }
  footer .main {
    display: block;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
    border-radius: 8px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    filter: contrast(0) brightness(2);
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_contact {
    padding-top: 20px;
  }
  footer .main .foot_contact .social li:hover .qrcode {
    transform: translateY(-10px) scale(1);
  }
  footer .main .foot_contact .social .qrcode {
    top: unset;
    bottom: 100%;
  }
  footer .bottom {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  footer .bottom .copyright {
    font-size: 13px;
  }
  
  .section_banner::after {
    top: 0;
  }
  .section_banner .flex {
    display: block;
  }
  .section_banner .btn {
    margin-top: 20px;
  }
  .section_blog {
    overflow: hidden;
  }
  .section_blog .section_blog_swiper {
    overflow: visible;
  }
  .section_blog .swiper_btns {
    display: none;
  }
}
