* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #d4362c;
  --secondary: #052a77;
  --title: #0f0f0f;
  --text: #424752;
}
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: 151rem;
  margin: 0 auto;
  position: relative;
  padding: 3.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%;
  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;
  color: var(--title);
  font-family: 'Manrope', sans-serif;
  counter-reset: section -1;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
section:not(.no_count) {
  counter-increment: section;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  --h: 100%;
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #2a4a8b;
  border-radius: var(--radius);
  z-index: 999;
  padding: 0.8rem;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  height: 4.6rem;
  padding: 0 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.3s;
}
.custom-popup input.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 0.4rem 1.2rem;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: rgba(255, 255, 255, 0.28);
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tcon em {
  color: var(--primary);
}
.tcon > em {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #585b60;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 14px;
  margin-bottom: 1.8rem;
}
.tcon > em::before {
  content: counter(section, decimal-leading-zero) ' / ';
}
.tcon > em::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background-color: var(--secondary);
}
.tcon h1 {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.2;
}
.tcon h2 {
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 1.125;
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 3.2rem;
}
.tcon.center {
  position: relative;
}
.tcon.center > em {
  position: absolute;
  left: 0;
  top: 1.3rem;
  z-index: 2;
}
.tcon.white {
  color: #fff;
}
.tcon.white > em {
  color: rgba(255, 255, 255, 0.6);
}
.tcon.white > em::after {
  background-color: #0e77bc;
}
.tcon.white p {
  color: rgba(255, 255, 255, 0.85);
}
.text_line {
  position: relative;
}
.text_line::before {
  content: '';
  display: block;
  position: absolute;
  right: calc(100% + 4rem);
  top: 4.6rem;
  width: 22.2rem;
  height: 2px;
  background-image: linear-gradient(to right, transparent, var(--primary));
}
.text_line.sec::before {
  background-image: linear-gradient(to right, transparent, #1177bc);
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 5.7rem;
  padding: 0 3.5rem 1px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.btn:hover {
  border-color: #bf3128;
  background-color: #bf3128;
}
.btn_more {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 5.7rem;
  padding: 0 3.5rem 1px;
  text-transform: uppercase;
  border: 1px solid #c3c6d4;
  background-color: rgba(255, 255, 255, 0.16);
}
.btn_more:hover {
  border-color: #bf3128;
  background-color: #bf3128;
}
.btn_arrow {
  gap: 2rem;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
.btn_arrow::before,
.btn_arrow::after {
  content: '';
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  transition: all 0.3s;
}
.btn_arrow::before {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  filter: contrast(0) brightness(2);
  background: url(../images/arrow-line-r.svg) no-repeat center / 35%;
}
.btn_arrow::after {
  background-color: var(--primary);
}
.btn_arrow:hover {
  color: var(--primary);
}
.btn_arrow:hover::after {
  transform: scale(1.1);
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns.white .swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.2);
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns.middle {
  width: 98%;
  max-width: 170.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  height: 6.8rem;
  transition: all 0.3s;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/arrow-line-r.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  background-color: transparent;
  border-color: #a2a2a2;
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
div.swiper-pagination {
  position: static;
}
div.swiper-pagination.swiper-pagination-progressbar {
  height: 3px;
  max-width: 15rem;
  background-color: rgba(255, 255, 255, 0.26);
}
div.swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--primary);
}
div.swiper-pagination.swiper-pagination-progressbar.sec {
  max-width: 21.7rem;
  background-color: rgba(221, 221, 221, 0.54);
}
div.swiper-pagination.swiper-pagination-progressbar.sec .swiper-pagination-progressbar-fill {
  background-color: var(--secondary);
}
.news_list .active .more {
  border-top-color: var(--secondary);
}
.news_list .active .more::before {
  background-color: var(--secondary);
}
.news_list .active .more::after {
  background-color: var(--secondary);
}
.news_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news_list a:hover .img img {
  transform: scale(1.03);
}
.news_list a:hover .more::after {
  transform: scale(1.1);
}
.news_list .img {
  padding-bottom: 62.385321%;
}
.news_list .info {
  flex: 1;
}
.news_list .info .metas {
  color: #5c5c5c;
  font-size: 1.7rem;
  margin-top: 2rem;
}
.news_list .info .metas .cat {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}
.news_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-top: 1.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .info .desc {
  color: var(--text);
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-top: 1.8rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .more {
  gap: 1.8rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  border-top: 1px solid transparent;
  margin-top: 3.2rem;
}
.news_list .more::before {
  content: '';
  display: block;
  height: 1px;
  transition: all 0.3s;
  background-color: #dddddd;
  grid-column: 1/-1;
}
.news_list .more::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  transition: all 0.3s;
  background: url(../images/arrow-line-r-w.svg) no-repeat center / 40% var(--primary);
}
.product_list .active a {
  background-color: #fff;
  box-shadow: 1.5rem 2rem 1.5rem rgba(37, 49, 66, 0.15);
}
.product_list .active .detail::after {
  background-color: var(--primary);
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  background-color: #f6f6f6;
  border: 2px solid #f6f6f6;
  padding: 4.444444% 8% 4%;
  position: relative;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list a:hover .detail::after {
  transform: scale(1.1);
}
.product_list .img {
  width: 100%;
  max-width: 34.2rem;
  margin: 0 auto;
}
.product_list .info {
  flex: 1;
  margin-top: -4.278075%;
}
.product_list .info .tag {
  position: absolute;
  top: 5.333333%;
  left: 4%;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 3rem;
  text-transform: uppercase;
  background-color: var(--secondary);
  padding: 0 1rem;
}
.product_list .info .title {
  font-weight: 700;
  font-size: 2.6rem;
}
.product_list .info .cat {
  color: var(--text);
  font-size: 1.8rem;
  margin-top: 2px;
}
.product_list .info .desc {
  color: var(--text);
  font-size: 1.5rem;
  padding-top: 0.8rem;
}
.product_list .info .desc p,
.product_list .info .desc li {
  margin-top: 0.533333em;
}
.product_list .info .desc li {
  position: relative;
  padding-left: 1.2em;
}
.product_list .info .desc li::before {
  content: '';
  display: block;
  width: 0.4em;
  height: 0.4em;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5em;
}
.product_list .detail {
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
  border-top: 1px solid rgba(66, 71, 82, 0.22);
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.product_list .detail::after {
  content: '';
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  transition: all 0.3s;
  background: url(../images/arrow-line-r-w.svg) no-repeat center / 32% var(--secondary);
}
.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
}
.mega_menu .flex {
  margin: 0 auto;
  max-width: 141.8rem;
}
.mega_menu .mega_menu_item {
  display: none;
  overflow: hidden;
  max-height: calc(100vh - 100px);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #f2f2f2;
}
.mega_menu .mega_menu_item.active {
  z-index: 2;
}
.mega_menu .mega_menu_item.active .mega_menu_item_inner::before {
  top: 0;
}
.mega_menu .mega_menu_item .mega_menu_fill {
  background-color: #fff;
}
.mega_menu .mega_menu_item_inner {
  overflow: hidden;
  position: relative;
  padding: 4.5rem 0 6.6rem;
}
.mega_menu .mega_menu_item_inner:has(.icon) {
  padding-bottom: 7.6rem;
}
.mega_menu .mega_menu_item_inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: -200%;
  z-index: 2;
  width: 100%;
  height: 300%;
  transition: all 0.5s;
  pointer-events: none;
  background-image: linear-gradient(to top, #fff, #fff, transparent, transparent);
}
.mega_menu .mega_menu_lt {
  width: 25.62592%;
}
.mega_menu .mega_menu_lt:has(.icon) {
  max-width: 28.8rem;
}
.mega_menu .mega_menu_tabs .active a::after {
  opacity: 1;
}
.mega_menu .mega_menu_tabs .active .icon {
  filter: none;
}
.mega_menu .mega_menu_tabs .active span {
  color: var(--primary);
  font-weight: 600;
  text-decoration-color: var(--primary);
}
.mega_menu .mega_menu_tabs:has(.icon) .active span {
  color: var(--title);
  text-decoration-color: transparent;
}
.mega_menu .mega_menu_tabs:has(.icon) li + li {
  margin-top: 2rem;
}
.mega_menu .mega_menu_tabs:has(.icon) a {
  grid-template-columns: auto 1fr auto;
}
.mega_menu .mega_menu_tabs li + li {
  margin-top: 2.5rem;
}
.mega_menu .mega_menu_tabs a {
  gap: 2.6rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.mega_menu .mega_menu_tabs a::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  opacity: 0;
  transition: all 0.3s;
  background: url(../images/arrow-line-r.svg) no-repeat center / contain;
}
.mega_menu .mega_menu_tabs .icon {
  width: 3.4rem;
  height: 3.4rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(0.8);
}
.mega_menu .mega_menu_tabs span {
  color: #686868;
  font-size: 2rem;
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.mega_menu .line {
  width: 1px;
  background-color: #f2f2f2;
}
.mega_menu .line + .mega_menu_rt {
  width: 65.243004%;
  padding: 1.4rem 0 2.6rem;
}
.mega_menu .line + .mega_menu_rt .mega_menu_cards .img {
  --h: 100%;
  width: 38.374718%;
  background: url(../images/solution-cir.svg) no-repeat center / contain;
}
.mega_menu .line + .mega_menu_rt .mega_menu_cards .img img {
  left: -22%;
  top: -20%;
  width: 125.588235%;
  height: 125.588235%;
}
.mega_menu .mega_menu_rt {
  width: 68.114875%;
  align-self: flex-start;
}
.mega_menu .mega_menu_cards {
  overflow: hidden;
}
.mega_menu .mega_menu_cards.show {
  overflow: visible;
}
.mega_menu .mega_menu_cards .item {
  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega_menu .mega_menu_cards .img {
  --h: 92.553191%;
  width: 40.648649%;
  background-color: #f2f6f9;
}
.mega_menu .mega_menu_cards .info {
  flex: 1;
  max-width: 46rem;
}
.mega_menu .mega_menu_cards .info .title {
  font-weight: 600;
  font-size: 2.8rem;
}
.mega_menu .mega_menu_cards .info .desc {
  color: rgba(15, 15, 15, 0.8);
  line-height: 2.6rem;
  margin-top: 2rem;
}
.mega_menu .mega_menu_cards .info .btn_arrow {
  margin-top: 3.7rem;
}
.mega_menu_overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5);
}
.mega_menu_overlay.active {
  opacity: 1;
  pointer-events: auto;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  padding: 15px 0;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.18);
}
header.clear {
  backdrop-filter: none;
  transition: background-color 0.3s, top 0.3s, box-shadow 0.3s;
}
header.white .logo_link .text {
  filter: contrast(0) brightness(2);
}
header.hide {
  top: -82px;
}
header.sticky {
  position: sticky;
  top: -82px;
}
header.show {
  top: 0;
}
header.bg,
header.sticky,
header.trans {
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}
header.bg .logo_link .text,
header.sticky .logo_link .text,
header.trans .logo_link .text {
  filter: none;
}
header.bg nav .menu > li > a,
header.sticky nav .menu > li > a,
header.trans nav .menu > li > a {
  color: var(--title);
}
header.bg .btn_search,
header.sticky .btn_search,
header.trans .btn_search,
header.bg .btn_lang,
header.sticky .btn_lang,
header.trans .btn_lang,
header.bg .btn_menu,
header.sticky .btn_menu,
header.trans .btn_menu {
  filter: none;
}
header.trans:not(.bg) {
  box-shadow: none;
  backdrop-filter: none;
  background-color: transparent;
}
header .flex {
  max-width: 186rem;
  padding: 0 3rem;
  margin: 0 auto;
}
header .lt {
  flex: 1;
  display: flex;
  align-items: center;
}
header .logo_link {
  gap: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
header .logo_link .logo {
  height: 50px;
}
header .logo_link .text {
  width: 139px;
  transition: all 0.3s;
}
header .logo_link p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 6.6rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 9;
}
header nav .menu > li > a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 52px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.active > a,
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  min-width: max-content;
  width: calc(100% + 48px);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  font-weight: 600;
  white-space: nowrap;
  padding: 14px 18px;
  transition: all 0.2s;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(191, 49, 40, 0.1);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 10px;
}
header .rt {
  flex: 1;
  gap: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  display: block;
  width: 19px;
  height: 19px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/icon-lang.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
  width: 22px;
  height: 22px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/nav-btn.svg) no-repeat center / contain;
}
header .btn {
  font-size: 18px;
  line-height: 49px;
  margin-left: 1.6rem;
  padding: 0 3.1rem 1px;
}
footer {
  overflow: hidden;
  position: relative;
  z-index: 9;
  color: #fff;
  padding: 12rem 0 4rem;
  background-color: var(--secondary);
}
footer .bg1 {
  position: absolute;
  left: -24.444444%;
  top: 16rem;
  z-index: -1;
  width: 33.055556%;
}
footer .bg2 {
  position: absolute;
  right: -40.555556%;
  top: 14rem;
  width: 46.111111%;
}
footer .lt {
  width: 45rem;
}
footer .logo_link {
  gap: 1.6rem;
  display: flex;
  align-items: center;
  position: relative;
}
footer .logo_link .logo {
  height: 7.8rem;
}
footer .logo_link .text {
  width: 21.6rem;
  filter: contrast(0) brightness(2);
}
footer .logo_link p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .infos {
  margin-top: 3.6rem;
}
footer .infos li + li {
  margin-top: 1rem;
}
footer .infos a {
  vertical-align: top;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .infos a:hover {
  color: var(--primary);
}
footer .social {
  margin-top: 3.8rem;
}
footer .social ul {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}
footer .social a {
  display: block;
  width: 45px;
  height: 45px;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  background: no-repeat center / contain rgba(255, 255, 255, 0.12);
}
footer .social a:hover {
  background-color: var(--primary);
}
footer .social .facebook a {
  background-image: url(../images/social-facebook.svg);
}
footer .social .instagram a {
  background-image: url(../images/social-instagram.svg);
}
footer .social .youtube a {
  background-image: url(../images/social-youtube.svg);
}
footer .social .linkedin a {
  background-image: url(../images/social-linkedin.svg);
}
footer .social .twitter a {
  background-image: url(../images/social-twitter.svg);
}
footer .rt {
  flex: 1;
  max-width: 84.5rem;
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
footer .foot_navs {
  gap: 5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 5rem;
}
footer .foot_navs .foot_nav {
  min-width: 20.473373%;
}
footer .foot_navs strong {
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
footer .foot_navs li + li {
  margin-top: 1.8rem;
}
footer .foot_navs a {
  font-size: 1.8rem;
  vertical-align: top;
  transition: all 0.3s;
}
footer .foot_navs a:hover {
  color: var(--primary);
}
footer .text_line {
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1.173913;
}
footer .text_line em {
  color: var(--primary);
}
footer .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
}
footer .bot {
  margin-top: 5.4rem;
}
footer .bot .rt {
  padding-bottom: 0.8rem;
}
footer .bot .rt ul {
  gap: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bot .rt li {
  gap: 1.8rem;
  display: flex;
  align-items: center;
}
footer .bot .rt li:last-child::after {
  display: none;
}
footer .bot .rt li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  background-color: rgba(255, 255, 255, 0.3);
}
footer .bot .rt a {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
footer .bot .rt a:hover {
  color: var(--primary);
}
.section_contact {
  overflow: hidden;
  background-image: linear-gradient(to top, #f5f5f5, transparent);
}
.section_contact .flex {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.section_contact .tcon {
  flex: 1;
  padding-bottom: 9.444444%;
  pointer-events: auto;
}
.section_contact .img {
  width: 66.111111%;
  margin-right: -16.666667%;
}
.section_contact form {
  position: relative;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 1.8rem 5.919003%;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  padding: 4.166667% 5.416667% 3.958333%;
  background-color: var(--secondary);
  margin-top: -10%;
}
.section_contact form label {
  display: block;
}
.section_contact form .label {
  cursor: pointer;
  max-width: max-content;
  margin-bottom: 0.7rem;
}
.section_contact form .label i {
  color: var(--primary);
}
.section_contact form .col2 {
  gap: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.section_contact form .textarea {
  align-self: stretch;
  grid-row-start: 1;
  grid-row-end: 4;
  grid-column-start: 2;
}
.section_contact form .textarea label {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section_contact form .textarea .wpcf7-form-control-wrap {
  flex: 1;
}
.section_contact form input,
.section_contact form select,
.section_contact form textarea {
  width: 100%;
  height: 4.6rem;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0 2rem;
  transition: all 0.3s;
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.section_contact form input::placeholder,
.section_contact form select::placeholder,
.section_contact form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_contact form input:focus,
.section_contact form select:focus,
.section_contact form textarea:focus,
.section_contact form input.focus,
.section_contact form select.focus,
.section_contact form textarea.focus {
  border-color: var(--primary);
}
.section_contact form select {
  padding-right: 6rem;
  background: url(../images/icon-select.svg) no-repeat right 2.5rem center / 1rem rgba(255, 255, 255, 0.15);
}
.section_contact form textarea {
  flex: 1;
  height: 100%;
  min-height: 120px;
  padding: 1.5rem 2rem;
}
.section_contact form span:has(input[type="checkbox"], .btn) {
  position: relative;
  margin-top: 1.2rem;
}
.section_contact form input[type="checkbox"] {
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}
.section_contact form input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/icon-gou.svg) no-repeat center / contain;
}
.section_contact form input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.section_contact form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.section_contact form input[type="checkbox"] ~ span {
  line-height: 2rem;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding-left: 0.6rem;
  /* width: calc(100% - 2.4rem); */
}
.section_contact form input[type="checkbox"] ~ span a {
  transition: all 0.3s;
}
.section_contact form input[type="checkbox"] ~ span a:hover {
  color: var(--primary);
}
.section_contact form .btn {
  max-width: max-content;
  margin-left: auto;
  min-width: 15.6rem;
  position: relative;
}
.section_contact form .btn input {
  display: none;
}
.section_contact .text {
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18.8rem;
  line-height: 0.9;
  white-space: nowrap;
  text-transform: uppercase;
  margin-top: -4.722222%;
  padding-left: 20%;
}
.section_banner {
  max-width: 256rem;
  margin: 0 auto;
}
.section_banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 39.782609%;
  z-index: -1;
  opacity: 0.93;
  pointer-events: none;
  background-image: linear-gradient(to top, #00060a, transparent);
}
.section_banner .flex {
  height: 100vh;
  max-height: 92rem;
  min-height: max-content;
  padding: calc(9.6rem + 82px) 0 9.6rem;
}
.section_banner .tcon {
  max-width: 87.6rem;
}
.section_banner .tcon p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 69.6rem;
  font-size: 2rem;
  margin-top: 2rem;
}
.book_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.86);
  display: none;
  align-items: center;
  overflow: auto;
}
.book_modal::-webkit-scrollbar {
  display: none;
}
.book_modal .modal_content {
  width: calc(100% - 10rem);
  max-width: 144rem;
  margin: 5rem auto;
  padding: 1.8rem 1.4rem;
  color: #fff;
  background-color: var(--secondary);
  gap: 2rem;
  display: grid;
  align-items: start;
  grid-template-columns: 4.4rem 1fr 4.4rem;
}
.book_modal .img {
  position: sticky;
  top: 1.8rem;
  pointer-events: none;
}
.book_modal .img img {
  width: min(42.708333vw, 82rem);
  transform: translateX(-55.731707%);
}
.book_modal form {
  gap: 2rem 5.919003%;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  padding: 3.6rem 0 2.4rem;
}
.book_modal form .title {
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 4rem;
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
.book_modal form label {
  display: block;
}
.book_modal form .label {
  cursor: pointer;
  max-width: max-content;
  margin-bottom: 0.7rem;
}
.book_modal form .label i {
  color: var(--primary);
}
.book_modal form .col2 {
  gap: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.book_modal form .date {
  align-self: stretch;
  grid-row-start: 2;
  grid-row-end: 6;
  grid-column-start: 2;
}
.book_modal form .textarea {
  align-self: stretch;
  grid-row-start: 1;
  grid-row-end: 4;
  grid-column-start: 2;
}
.book_modal form .textarea label {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.book_modal form .textarea .wpcf7-form-control-wrap {
  flex: 1;
}
.book_modal form .textarea textarea {
  flex: 1;
  height: 100%;
}
.book_modal form input,
.book_modal form select,
.book_modal form textarea {
  width: 100%;
  height: 4.6rem;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0 2rem;
  transition: all 0.3s;
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.book_modal form input::placeholder,
.book_modal form select::placeholder,
.book_modal form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.book_modal form input:focus,
.book_modal form select:focus,
.book_modal form textarea:focus,
.book_modal form input.focus,
.book_modal form select.focus,
.book_modal form textarea.focus {
  border-color: var(--primary);
}
.book_modal form select {
  padding-right: 6rem;
  background: url(../images/icon-select-w.svg) no-repeat right 2rem center / 1.4rem rgba(255, 255, 255, 0.15);
}
.book_modal form textarea {
  flex: 1;
  padding: 1.5rem 2rem;
}
.book_modal form span:has(input[type="checkbox"], .btn) {
  position: relative;
  margin-top: 1.5rem;
}
.book_modal form input[type="checkbox"] {
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}
.book_modal form input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/icon-gou.svg) no-repeat center / contain;
}
.book_modal form input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.book_modal form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.book_modal form input[type="checkbox"] ~ span {
  line-height: 2rem;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding-left: 0.6rem;
  width: calc(100% - 2.4rem);
}
.book_modal form input[type="checkbox"] ~ span a {
  transition: all 0.3s;
}
.book_modal form input[type="checkbox"] ~ span a:hover {
  color: var(--primary);
}
.book_modal form .btn {
  max-width: max-content;
  margin-left: auto;
  min-width: 15.6rem;
  position: relative;
}
.book_modal form .btn input {
  display: none;
}
.book_modal .btn_close {
  position: sticky;
  top: 1.8rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  background-color: #021d4c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.book_modal .btn_close::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
  background: url(../images/icon-close.svg) no-repeat center / contain;
}
.book_modal .btn_close:hover {
  background-color: var(--primary);
}
.book_modal .btn_close:hover::after {
  transform: rotate(180deg);
}

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

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

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 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;
}

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 2rem 2rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.search_drawer.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: default;
  background: rgba(10, 12, 22, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search_drawer.active .drawer_backdrop {
  opacity: 1;
}
.search_drawer .drawer_content {
  position: relative;
  width: 100%;
  max-width: 68rem;
  transform: translateY(-1.6rem) scale(0.96);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.search_drawer.active .drawer_content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search_drawer .search_panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(1.85);
  -webkit-backdrop-filter: blur(48px) saturate(1.85);
  border-radius: 1.8rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 2.8rem 7rem rgba(0, 0, 0, 0.2),
    0 1rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.search_drawer .search_field {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.search_drawer .search_icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon-search.svg) no-repeat center / contain;
  opacity: 0.42;
}
.search_drawer .search_field input {
  flex: 1;
  min-width: 0;
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--title);
  background-color: transparent;
}
.search_drawer .search_field input::placeholder {
  color: rgba(90, 90, 104, 0.55);
}
.search_drawer .search_field input::-webkit-search-cancel-button,
.search_drawer .search_field input::-webkit-search-decoration {
  display: none;
}
.search_drawer .search_clear {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, background-color 0.2s;
  background: rgba(0, 0, 0, 0.08) url(../images/close.svg) no-repeat center / 1rem;
}
.search_drawer .search_clear.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search_drawer .search_clear:hover {
  background-color: rgba(0, 0, 0, 0.14);
}
.search_drawer .search_submit {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.search_drawer .search_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding: 1.4rem 2.2rem;
  font-size: 1.25rem;
  color: rgba(90, 90, 104, 0.72);
}
.search_drawer .search_footer kbd {
  display: inline-block;
  min-width: 2.2rem;
  padding: 0.15rem 0.55rem;
  margin: 0 0.25rem;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1600px) {
  header nav .menu {
    gap: 5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .lt {
    flex: unset;
  }
  header nav .menu {
    gap: 4rem;
  }
  header nav .menu > li > a {
    font-size: 17px;
  }
  header .rt {
    gap: 3rem;
    flex: unset;
  }
  header .btn {
    font-size: 17px;
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  .tcon h1 {
    font-size: 6rem;
  }
  header .logo_link .text {
    width: 120px;
  }
  header nav .menu {
    gap: 2rem;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header .rt {
    gap: 2rem;
  }
  header .btn {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .tcon.center > em {
    position: static;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 0;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../images/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../images/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    width: 100%;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .rt {
    gap: 20px;
  }
  header .btn_menu {
    display: block;
  }
  .mega_menu,
  .mega_menu_overlay {
    display: none !important;
  }
}
@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: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .tcon > em {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .tcon > em::after {
    top: 8px;
  }
  .tcon h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .btn,
  .btn_more {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 42px;
    height: 42px;
  }
  div.swiper-pagination.swiper-pagination-progressbar {
    max-width: 150px;
  }
  div.swiper-pagination.swiper-pagination-progressbar.sec {
    max-width: 150px;
  }
  .news_list .info .metas {
    font-size: 14px;
    margin-top: 15px;
  }
  .news_list .info .title {
    font-size: 15px;
    line-height: 1.5;
  }
  .news_list .info .desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }
  .news_list .more {
    gap: 15px;
    margin-top: 20px;
    font-size: 15px;
  }
  .news_list .more::after {
    width: 30px;
    height: 30px;
  }
  .product_list .active a {
    box-shadow: 6px 9px 6px rgba(37, 49, 66, 0.15);
  }
  .product_list a {
    padding: 10px 15px 15px;
  }
  .product_list .info {
    margin-top: 0;
  }
  .product_list .info .tag {
    left: 10px;
    top: 10px;
    font-size: 12px;
    line-height: 26px;
  }
  .product_list .info .title {
    font-size: 16px;
  }
  .product_list .info .cat {
    font-size: 14px;
  }
  .product_list .info .desc {
    font-size: 13px;
  }
  .product_list .info .desc li {
    font-size: 13px;
  }
  .product_list .detail {
    font-size: 15px;
  }
  .product_list .detail::after {
    width: 30px;
    height: 30px;
  }
  header {
    padding: 0;
  }
  header .flex {
    padding: 0 20px;
  }
  header .logo_link {
    gap: 8px;
  }
  header .logo_link .logo {
    height: 40px;
  }
  header .logo_link .text {
    width: 120px;
  }
  header .rt {
    min-height: 64px;
  }
  header .btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  footer {
    padding: 50px 0 20px;
  }
  footer .lt {
    width: 260px;
  }
  footer .logo_link {
    gap: 12px;
  }
  footer .logo_link .logo {
    height: 50px;
  }
  footer .logo_link .text {
    width: 139px;
  }
  footer .infos {
    margin-top: 20px;
  }
  footer .infos a {
    font-size: 16px;
  }
  footer .social {
    margin-top: 20px;
  }
  footer .social a {
    width: 42px;
    height: 42px;
  }
  footer .foot_navs {
    margin: 0;
    gap: 30px 20px;
    display: block;
  }
  footer .foot_navs .foot_nav.active strong {
    color: #fff;
    border-color: #fff;
  }
  footer .foot_navs .foot_nav.active strong::after {
    opacity: 1;
    transform: rotate(180deg);
  }
  footer .foot_navs .foot_nav div {
    display: none;
    padding: 0 20px 30px;
  }
  footer .foot_navs strong {
    gap: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 20px;
    line-height: 42px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
  }
  footer .foot_navs strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
    background: url(../images/icon-select.svg) no-repeat center / contain;
  }
  footer .foot_navs li + li {
    margin-top: 12px;
  }
  footer .foot_navs a {
    font-size: 14px;
  }
  footer .bot {
    margin-top: 30px;
  }
  footer .bot .rt {
    gap: 20px;
    padding: 0;
  }
  footer .text_line {
    font-size: 22px;
  }
  .section_contact form {
    gap: 15px 20px;
    padding: 30px 20px;
  }
  .section_contact form input,
  .section_contact form select,
  .section_contact form textarea {
    height: 42px;
    font-size: 15px;
    padding: 0 15px;
  }
  .section_contact form select {
    padding-right: 40px;
    background: url(../images/icon-select.svg) no-repeat right 15px center / 10px rgba(255, 255, 255, 0.14);
  }
  .section_contact form textarea {
    height: 100%;
    padding: 12px 15px;
  }
  .section_contact form .btn {
    min-width: 120px;
  }
  .section_contact .text {
    margin-top: -20px;
    font-size: 70px;
  }
  .section_banner::after {
    height: 50%;
  }
  .section_banner .flex {
    height: 36vh;
    padding: 114px 0 50px;
  }
  .section_banner .tcon {
    max-width: 380px;
  }
  .section_banner .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .book_modal .modal_content {
    gap: 15px;
    padding: 12px;
    grid-template-columns: 40px 1fr 40px;
  }
  .book_modal .btn_close {
    width: 40px;
    height: 40px;
  }
  .book_modal form {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }
  .book_modal form .title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .book_modal form input,
  .book_modal form select,
  .book_modal form textarea {
    height: 42px;
    font-size: 15px;
    padding: 0 15px;
  }
  .book_modal form select {
    padding-right: 40px;
    background: url(../images/icon-select.svg) no-repeat right 15px center / 10px rgba(255, 255, 255, 0.14);
  }
  .book_modal form textarea {
    height: 120px;
    padding: 12px 15px;
  }
  .section_contact form input[type="checkbox"] ~ span {
    width: calc(100% - 2.4rem);
  }
  .book_modal form .date,
  .book_modal form .textarea {
    grid-row-start: unset;
    grid-row-end: unset;
    grid-column-start: unset;
  }
  .book_modal form .textarea textarea {
    height: 120px;
  }
  .book_modal form .btn {
    min-width: 120px;
  }

  /*** global css ***/
  .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;
  }
  
  .search_drawer {
    padding: max(7vh, env(safe-area-inset-top, 0px)) 1.6rem 1.6rem;
  }
  .search_drawer .drawer_content {
    max-width: none;
  }
  .search_drawer .search_panel {
    border-radius: 1.4rem;
  }
  .search_drawer .search_field {
    padding: 1.5rem 1.6rem;
    gap: 1rem;
  }
  .search_drawer .search_icon {
    width: 2rem;
    height: 2rem;
  }
  .search_drawer .search_field input {
    font-size: 1.6rem;
  }
  .search_drawer .search_clear {
    width: 3rem;
    height: 3rem;
    background-size: 1.1rem;
  }
  .search_drawer .search_footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.1rem 1.6rem;
    font-size: 1.15rem;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .tcon h1 {
    font-size: 32px;
  }
  .text_line::before {
    display: none;
  }
  header .btn {
    display: none;
  }
  footer .lt {
    width: 100%;
  }
  .section_contact {
    padding-top: 30px;
  }
  .section_contact .tcon {
    padding: 0;
  }
  .section_contact .img {
    display: none;
  }
  .section_contact form {
    gap: 15px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .section_contact form span {
    width: 100%;
  }
  .section_contact form .col2 {
    gap: 15px;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .section_contact .text {
    margin-top: -10px;
    font-size: 40px;
  }
  .section_banner .flex {
    height: 70vh;
  }
  .book_modal .modal_content {
    padding: 20px;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }
  .book_modal .img,
  .book_modal .btn_close {
    display: none;
  }
  .book_modal form {
    padding: 10px 0;
  }
}