* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #0096FF;
  --secondary: #0A6AC9;
  --title: #212121;
  --text: #4D4E4F;
  --bg: linear-gradient(to right, var(--secondary), var(--primary));
}
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: 'Geist', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.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, #E6F5FF, #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;
}
.img_logo {
  position: relative;
  z-index: 2;
}
.img_logo::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
  filter: blur(4px);
  border-radius: 25%;
  background-color: rgba(39, 91, 239, 0.21);
}
.syedittext .subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}
.syedittext h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 7.1rem;
}
.syedittext h2 {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 6.6rem;
}
.syedittext p {
  font-size: 1.8rem;
  line-height: 3rem;
}
.btn {
  gap: 1.2rem;
  display: inline-flex;
  justify-content: center;
  vertical-align: top;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 6.8rem;
  border-radius: 100px;
  padding: 0 4.3rem;
  min-width: 20.8rem;
  background-size: 200%;
  background-image: linear-gradient(to right, var(--secondary), var(--primary), var(--secondary));
}
.btn::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}
.btn:hover {
  background-position: right;
}
.btn:hover::after {
  transform: translateX(5px);
}
.btn_b {
  gap: 1.2rem;
  display: inline-flex;
  justify-content: center;
  vertical-align: top;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  color: var(--title);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 5.8rem;
  border-radius: 100px;
  padding: 0 4.3rem;
  min-width: 20.8rem;
  background-image: var(--bg);
}
.btn_b::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: #fff;
}
.btn_b::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}
.btn_b:hover {
  color: #fff;
}
.btn_b:hover::before {
  opacity: 0;
}
.btn_b:hover::after {
  transform: translateX(5px);
  filter: contrast(0) brightness(2);
}
.btn_cir {
  gap: 1.8rem;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
}
.btn_cir::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}
.btn_cir::after {
  content: '';
  display: block;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  transition: all 0.3s;
  background-image: var(--bg);
}
.btn_cir:hover::after {
  transform: scale(1.1);
}
.btn_more {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  vertical-align: top;
  transition: all 0.3s;
  color: #fff;
  font-size: 1.8rem;
  line-height: 5.2rem;
  border-radius: 100px;
  padding: 0 3.7rem;
  background-size: 200%;
  background-image: linear-gradient(to right, #0366dd, #3cabf6, #0366dd);
  font-weight: 500;
  letter-spacing: 0.012rem;
}
.btn_more:hover {
  background-position: right;
}
.swiper_btns {
  gap: 4rem;
  display: flex;
}
.swiper_btns.middle {
  max-width: 167.4rem;
  width: 98%;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #00234C;
  border: 1px solid #00234C;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-line-l-b.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: #7B8E9E;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  gap: 2px;
  display: flex;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s linear;
  transform: scale(0.666667);
  background-color: #AAAAAA;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  transform: scale(1);
  background-color: #161616;
}
.nav_box {
  padding: 0.5rem;
  border-radius: 3rem;
  border: 1px solid #CCCCCC;
  max-width: max-content;
  overflow: auto;
}
.nav_box .nav_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.nav_box .nav_list::before {
  content: '';
  display: block;
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: var(--left);
  top: var(--top);
  z-index: -1;
  background-color: var(--primary);
  border-radius: 2.4rem;
  transition: all 0.3s;
}
.nav_box .nav_item {
  cursor: pointer;
  display: block;
  color: #8E8E8E;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.2rem 2.9rem;
  border-radius: 2.4rem;
  transition: all 0.3s;
  text-align: center;
}
.nav_box .nav_item.active {
  color: #fff;
}
header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 996;
  padding: 13px 0;
  transition: all 0.4s;
  background-color: #fff;
  box-shadow: 0 0 0 1px inset rgba(0, 0, 0, 0.05);
}
header .content {
  max-width: 185.6rem;
  padding: 0 3rem;
}
header .inner {
  gap: 7.461024%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: block;
  position: relative;
  margin-right: auto;
  transform: translateY(-3px);
}
header .logo img {
  display: block;
  width: auto;
  height: 33px;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  gap: 5.8rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 58px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.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;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 12px;
}
header nav .sub-menu > li > a:hover {
  background-color: #EAF5FD;
}
header nav .sub-menu > li.icon > a {
  position: relative;
  padding-left: 52px;
}
header nav .sub-menu > li.icon > a::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: no-repeat center / contain;
  filter: drop-shadow(0 0 5px rgba(39, 91, 239, 0.1));
}
header nav .sub-menu > li.icon-zwcad a::before {
  background-image: url(../img/pd-logo1.png);
}
header nav .sub-menu > li.icon-civilcad a::before {
  background-image: url(../img/pd-logo2.png);
}
header nav .sub-menu > li.icon-zwcad-mfg a::before {
  background-image: url(../img/pd-logo3.png);
}
header nav .sub-menu > li.icon-zw3d-cad-cam a::before {
  background-image: url(../img/pd-logo4.png);
}
header nav .sub-menu > li.icon-free-plugin a::before {
  background-image: url(../img/pd-logo5.svg);
}
header .btns {
  gap: 11px;
  display: flex;
  align-items: center;
  min-height: 58px;
}
header .btn_search {
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  background: url(../img/icon-search.svg) no-repeat center / 18px;
}
header .btn_search:hover {
  background-color: #EAF5FD;
}
header .btn_lang {
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  background: url(../img/icon-lang.svg) no-repeat center / 20px;
}
header .btn_lang:hover {
  background-color: #EAF5FD;
}
header .hr {
  width: 1px;
  height: 22px;
  background-color: #CECECE;
}
header .btn_menu {
  display: none;
}
header .btn_account {
  display: block;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  padding: 11px 11px 11px 42px;
  transition: all 0.3s;
  background: url(../img/icon-account.svg) no-repeat left 10px center / 20px;
}
header .btn_account:hover {
  background-color: #EAF5FD;
}
header .btn {
  line-height: 5.8rem;
  min-width: unset;
  padding: 0 3.5rem;
  margin-left: 1rem;
}
footer .main {
  gap: 5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10.6rem 0 12rem;
}
footer .foot_contact {
  width: 27.6rem;
  margin-right: 7.8%;
}
footer .foot_contact .logo {
  display: block;
  position: relative;
  width: 83.333333%;
}
footer .foot_contact .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_contact .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_contact .menu {
  gap: 1.5rem;
  display: grid;
  margin-top: 4.6rem;
}
footer .foot_contact .menu a {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  transition: all 0.3s;
  border: 1px solid #D7DEE2;
  color: #515151;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 0.8rem 2.8rem;
  min-height: 6.4rem;
}
footer .foot_contact .menu a::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0.61;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}
footer .foot_contact .menu a:hover {
  color: var(--title);
  border-color: var(--primary);
}
footer .foot_contact .menu a:hover::after {
  opacity: 1;
}
footer .foot_contact .social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  gap: 2rem 3.8rem;
}
footer .foot_contact .social a {
  width: 22px;
  height: 22px;
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
footer .foot_contact .social a:hover {
  transform: scale(1.2);
}
footer .foot_contact .social .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .foot_contact .social .instagram a {
  background-image: url(../img/social-instagram.svg);
}
footer .foot_contact .social .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .foot_contact .social .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .foot_contact .social .twitter a {
  background-image: url(../img/social-twitter.svg);
}
footer .foot_nav {
  margin-top: 3.8rem;
}
footer .foot_nav:last-child {
  min-width: 15.138889%;
}
footer .foot_nav strong {
  display: block;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.2rem;
  text-transform: uppercase;
}
footer .foot_nav li {
  margin-top: 2rem;
}
footer .foot_nav a {
  color: #505050;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .bottom {
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  padding: 3rem 76px 3rem 0;
}
footer .bottom ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .bottom li {
  display: flex;
  align-items: center;
}
footer .bottom li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  margin: 0 1.5rem;
  background-color: #CBCFD1;
}
footer .bottom li:last-child::after {
  display: none;
}
footer .bottom a {
  display: block;
  color: #616161;
  transition: all 0.3s;
}
footer .bottom a:hover {
  color: var(--primary);
}
footer .gotop_box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.3rem;
  z-index: 9;
  pointer-events: none;
}
footer .gotop_box .gotop {
  width: 48px;
  height: 48px;
  pointer-events: all;
  margin-left: auto;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  background-image: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .gotop_box .gotop:hover {
  transform: scale(1.1);
}
footer .gotop_box .gotop::after {
  content: '';
  display: block;
  width: 35%;
  height: 35%;
  background: url(../img/icon-top.svg) no-repeat center / contain;
}
.header_notice {
  position: relative;
  z-index: 9;
  color: #fff;
  font-size: 15px;
  background-image: linear-gradient(to right, #44A6E7 0%, #437ECF 30%, #437ECF 60%, #A7CDF0 90%, #89B9EA 100%);
}
.header_notice .content {
  max-width: 185.6rem;
  padding: 0 3rem;
}
.header_notice .inner {
  gap: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
}
.header_notice .header_notice_swiper {
  height: 46px;
  overflow: hidden;
}
.header_notice .header_notice_swiper .swiper-slide {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding: 4px 0;
}
.header_notice .header_notice_swiper .label {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.header_notice .header_notice_swiper .label::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  margin: 0 1.5rem;
  background-color: rgba(255, 255, 255, 0.16);
}
.header_notice .header_notice_swiper p {
  font-weight: 300;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header_notice .header_notice_swiper a {
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.header_notice .header_notice_swiper a:hover {
  text-decoration-color: #fff;
}
.header_notice .close {
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -17px;
  align-self: center;
}
.header_notice .close::after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  transition: all 0.3s;
  background: url(../img/icon-close.svg) no-repeat center / contain;
}
.header_notice .close:hover::after {
  transform: rotate(180deg);
}
.ticket_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.ticket_modal::-webkit-scrollbar {
  display: none;
}
.ticket_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 97.2rem;
  margin: 5rem auto;
  padding: 4rem 6rem 3.5rem;
  border-radius: 2.2rem;
  background-color: #fff;
}
.ticket_modal .head .title {
  font-weight: 600;
  font-size: 2.5rem;
}
.ticket_modal .head .desc {
  color: var(--text);
  font-size: 1.8rem;
  margin-top: 1.6rem;
}
.ticket_modal .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 0;
  justify-content: space-between;
  margin-top: 3.8rem;
}
.ticket_modal .wrap span {
  width: 100%;
}
.ticket_modal .wrap .col2 {
  width: 49.061033%;
}
.ticket_modal .wrap .label {
  cursor: pointer;
  max-width: max-content;
  color: #86868B;
  margin-bottom: 0.8rem;
}
.ticket_modal .wrap .label i {
  color: var(--primary);
}
.ticket_modal .wrap input,
.ticket_modal .wrap select,
.ticket_modal .wrap textarea {
  width: 100%;
  height: 4.6rem;
  display: block;
  outline: none;
  font-size: 1.6rem;
  padding: 0 2.2rem;
  border-radius: 0.6rem;
  transition: all 0.3s;
  border: 1px solid #C5D5DD;
}
.ticket_modal .wrap input:focus,
.ticket_modal .wrap select:focus,
.ticket_modal .wrap textarea:focus {
  border-color: var(--primary);
}
.ticket_modal .wrap select {
  background: url(../img/icon-select.svg) no-repeat right 2.2rem center / 1.2rem;
}
.ticket_modal .wrap textarea {
  height: 21.8rem;
  padding: 1.6rem 2.2rem;
}
.ticket_modal .wrap .file {
  margin-top: 1.6rem;
}
.ticket_modal .wrap .file input {
  display: none;
}
.ticket_modal .wrap .file .label {
  margin: 0;
  gap: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  color: #748F99;
  font-weight: 600;
  font-size: 1.8rem;
  border-radius: 1rem;
  text-align: center;
  background-color: #F0F4F7;
  padding: 4rem;
}
.ticket_modal .wrap .file .label::before {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../img/icon-upload.svg) no-repeat center / contain;
}
.ticket_modal .wrap .attachment-list {
  counter-reset: file;
}
.ticket_modal .wrap .attachment-list li {
  counter-increment: file;
  margin-top: 1rem;
}
.ticket_modal .wrap .attachment-list li::before {
  content: counter(file) '. ';
}
.ticket_modal .wrap .attachment-list li button {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  display: inline-block;
  vertical-align: top;
  transition: all .3s;
  filter: contrast(0) brightness(0);
  background: url(../img/icon-close.svg) no-repeat center/50%;
}
.ticket_modal .wrap .attachment-list li button:hover {
  transform: rotate(180deg);
}
.ticket_modal .wrap span:has(.btn) {
  margin-top: 1.2rem;
}
.ticket_modal .wrap .btn {
  display: flex;
  max-width: max-content;
  margin-left: auto;
  line-height: 6.2rem;
  min-width: 26.4rem;
}
.ticket_modal .wrap .btn input {
  display: none;
}
.login_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.login_modal::-webkit-scrollbar {
  display: none;
}
.login_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 103.8rem;
  margin: 5rem auto;
  border-radius: 1.2rem;
  background-color: #fff;
  display: flex;
}
.login_modal .image {
  width: 49.518304%;
  position: relative;
  border-radius: 1.2rem 0 0 1.2rem;
  background: url(../img/login-bg.svg) no-repeat center / cover;
}
.login_modal .image .img {
  width: 122.178988%;
  margin-left: -13.229572%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.login_modal .con {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 65rem;
}
.login_modal .wrap {
  width: 100%;
  display: none;
  padding: 8.6rem 5.1rem 8rem;
}
.login_modal .wrap.active {
  display: block;
}
.login_modal .head .title {
  font-weight: 600;
  font-size: 3rem;
}
.login_modal .head .desc {
  color: #333;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.login_modal .head .desc a,
.login_modal .head .desc .link {
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.login_modal .head .desc a:hover,
.login_modal .head .desc .link:hover {
  text-decoration-color: var(--secondary);
}
.login_modal form {
  gap: 1.8rem;
  display: flex;
  flex-direction: column;
  margin-top: 2.6rem;
}
.login_modal form .label {
  cursor: pointer;
  max-width: max-content;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.login_modal form input {
  width: 100%;
  height: 4.6rem;
  display: block;
  color: var(--title);
  font-size: 1.6rem;
  padding: 0 2.6rem;
  transition: all 0.3s;
  border-radius: 100px;
  border: 1px solid #D3D3D3;
}
.login_modal form input::placeholder {
  color: #919191;
}
.login_modal form input:focus {
  border-color: var(--secondary);
}
.login_modal form input.failed {
  border-color: #FF4949;
}
.login_modal form input.success {
  border-color: #13CE66;
}
.login_modal form .bot {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.login_modal form .bot a,
.login_modal form .bot .link {
  cursor: pointer;
  color: var(--secondary);
  text-decoration: underline;
  transition: all 0.3s;
}
.login_modal form .bot a:hover,
.login_modal form .bot .link:hover {
  text-decoration-color: transparent;
}
.login_modal form input[type="checkbox"] {
  padding: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}
.login_modal form input[type="checkbox"]:checked {
  border-color: var(--primary);
}
.login_modal form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.login_modal form input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  background: url(../img/icon-gou.svg) no-repeat center / contain;
}
.login_modal form input[type="checkbox"] ~ span {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  color: #666666;
  line-height: 1.8rem;
  padding-left: 0.6rem;
}
.login_modal form .btns {
  gap: 2rem;
  display: grid;
  margin-top: 1.8rem;
}
.login_modal form .btn {
  display: flex;
  line-height: 6rem;
}
.login_modal form .btn::after {
  display: none;
}
.login_modal form .btn input {
  display: none;
}
.login_modal form .btn_social {
  cursor: pointer;
  gap: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #D3D3D3;
  font-weight: 500;
  padding: 1.8rem;
  transition: all 0.3s;
}
.login_modal form .btn_social::before {
  content: '';
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: no-repeat center / contain;
}
.login_modal form .btn_social:hover {
  color: #fff;
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.login_modal form .google::before {
  background-image: url(../img/social-google.svg);
}
.section_pricing {
  position: relative;
  z-index: 2;
  padding: 9.8rem 0 4.8rem;
}
.section_pricing .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0.78;
  pointer-events: none;
  background-image: linear-gradient(to right, #95C9F4 0%, #F9FBFF 55%, #95C9F4 100%);
}
.section_pricing .bg::before,
.section_pricing .bg::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  bottom: 60%;
  background-image: linear-gradient(to top, transparent 0%, #fff 80%, #fff 100%);
}
.section_pricing .bg::after {
  top: 70%;
  bottom: -1px;
  transform: rotate(180deg);
}
.section_pricing .lt {
  flex: 1;
  max-width: 55rem;
}
.section_pricing .rt {
  flex: 1;
  max-width: 73rem;
  padding-bottom: 1.5rem;
}
.section_pricing .rt p {
  color: var(--text);
}
.section_pricing .options {
  gap: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3.2rem;
}
.section_pricing .time {
  max-width: max-content;
  overflow: auto;
}
.section_pricing .time ul {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.section_pricing .time ul::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: 2.2rem;
  border: 1px solid #A1B7C6;
}
.section_pricing .time .block {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: var(--left);
  top: var(--top);
  z-index: -1;
  transition: all 0.3s;
  border-radius: 2.2rem;
  background-image: var(--bg);
}
.section_pricing .time .block::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 2rem;
  background-color: #fff;
}
.section_pricing .time li {
  cursor: pointer;
  position: relative;
  min-width: 20.6rem;
  padding: 2.2rem 5rem 1.4rem 6.4rem;
}
.section_pricing .time li.active .cir::before {
  opacity: 0;
}
.section_pricing .time li.active strong {
  color: var(--secondary);
}
.section_pricing .time li .cir {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  position: absolute;
  left: 2rem;
  top: 2.4rem;
  background-image: var(--bg);
}
.section_pricing .time li .cir::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: all 0.3s;
  border: 1px solid #CCCCCC;
  background-color: #fff;
}
.section_pricing .time li .cir::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 0.5rem solid #fff;
}
.section_pricing .time li strong {
  font-weight: 500;
  font-size: 2.2rem;
  transition: all 0.3s;
}
.section_pricing .time li p {
  color: #72727A;
  margin-top: 0.4rem;
}
.section_pricing .dropdown {
  width: 37.2rem;
  position: relative;
  z-index: 9;
}
.section_pricing .dropdown.active .dropdown_link {
  border-color: #fff;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.section_pricing .dropdown.active .dropdown_link::after {
  transform: translateY(-50%) rotate(180deg);
}
.section_pricing .dropdown.active .dropdown_menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(1rem);
}
.section_pricing .dropdown .dropdown_link {
  padding: 1rem;
  border-radius: 2.2rem;
  border: 1px solid #A1B7C6;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.section_pricing .dropdown .dropdown_link::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 2.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  background: url(../img/icon-select-b.svg) no-repeat center / contain;
}
.section_pricing .dropdown .dropdown_menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  z-index: 9;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  pointer-events: none;
  border-radius: 2.2rem;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.section_pricing .dropdown .dropdown_menu .dropdown_item:hover {
  background-color: #EAF5FD;
}
.section_pricing .dropdown .dropdown_item {
  padding: 0.9rem 5.8rem 0.9rem 1.2rem;
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.4rem;
}
.section_pricing .dropdown .dropdown_item.active {
  background-color: #EAF5FD;
}
.section_pricing .dropdown .dropdown_item + .dropdown_item {
  margin-top: 0.5rem;
}
.section_pricing .dropdown .dropdown_item .img {
  width: 4.9rem;
  height: 4.9rem;
}
.section_pricing .dropdown .dropdown_item .name {
  font-weight: 500;
  font-size: 2rem;
}
.section_pricing .main {
  margin-top: 3.2rem;
  padding: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3rem;
  border-radius: 3rem;
  background-color: #fff;
}
.section_pricing .main .item {
  flex: 1;
  padding: 8.071749% 7.174888%;
  border-radius: 2.8rem;
  border: 2px solid #F9F9F9;
  background-color: #F9F9F9;
}
.section_pricing .main .item.active {
  border-color: var(--primary);
  background-color: #E6F4FF;
} 

.section_pricing .main .item .level {
  max-width: max-content;
  font-size: 1.8rem;
  border-radius: 100px;
  border: 1px solid #CCCCCC;
  padding: 0.5rem 1.8rem;
}

.item .price_box{
  display: flex;
  color: #383838; 
  gap: 1rem;
  align-items: baseline;
}

.section_pricing .main .item .price {
  margin-top: 1.4rem; 
  color: var(--title);
  font-weight: 600;
  font-size: 4rem;
  display: block; 
}
.section_pricing .main .item .price ins{
  text-decoration: none;
}
.section_pricing .main .item .price del {
  display: none;
}
.section_pricing .main .item .desc {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 3rem;
  margin-top: 1rem;
}
.section_pricing .main .item .btn_b {
  display: flex;
  margin-top: 2.4rem;
}
.section_pricing .main .item .btn {
  display: flex;
  line-height: 5.8rem;
  margin-top: 2.4rem;
}
.section_pricing .main .item .add-to-cart.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background-color: #999;
  border-color: #999;
}
.section_pricing .main .item .try {
  display: block;
  max-width: max-content;
  margin: 1.8rem auto 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 3rem;
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.section_pricing .main .item .try:hover {
  text-decoration-color: var(--primary);
}
.section_pricing .main .item .list {
  margin-top: 1.8rem;
  border-top: 1px solid #C4CDD6;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 2rem 0 0.2rem;
}
.section_pricing .main .item .list li {
  position: relative;
  padding-left: 3.4rem;
}
.section_pricing .main .item .list li + li {
  margin-top: 0.6rem;
}
.section_pricing .main .item .list li::before {
  content: '';
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
  border-radius: 50%;
  background: url(../img/icon-gou-w.svg) no-repeat center / 50% var(--primary);
}
.section_pricing .tip {
  margin-top: 3.6rem;
}
.section_pricing .tip a {
  transition: all 0.3s;
  text-decoration: underline;
}
.section_pricing .tip a:hover {
  color: var(--primary);
  text-decoration-color: transparent;
}
.section_pricing .btn {
  margin-top: 1.8rem;
}
.blog_list .active a {
  border-color: var(--primary);
  outline-color: var(--primary);
  box-shadow: 0 1rem 1rem rgba(199, 207, 211, 0.45);
}
.blog_list .active .info .more i {
  transition: all 0.3s;
  background-color: transparent;
}
.blog_list .active .info .more i::before {
  opacity: 1;
}
.blog_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 3rem;
  position: relative;
  transition: all 0.3s;
  border: 1px solid #CCCCCC;
  outline: 1px solid transparent;
  padding: 3.761062%;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  border-radius: 2.2rem;
  padding-bottom: 73.317308%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7.211538% 3.846154% 2.884615%;
}
.blog_list .info .cat {
  position: absolute;
  top: 3.6rem;
  left: 9.333333%;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 4.2rem;
  padding: 0 2rem;
  border-radius: 100px;
  background-color: var(--primary);
}
.blog_list .info .date {
  color: #5C5C5C;
}
.blog_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
  margin-top: 1.2rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .more {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
  gap: 1rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  margin-top: 3.2rem;
}
.blog_list .info .more i {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background-color: #00234B;
}
.blog_list .info .more i:hover::before {
  transform: scale(1.1);
}
.blog_list .info .more i:hover::after {
  transform: rotate(180deg);
}
.blog_list .info .more i::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 50%;
  transition: all 0.3s;
  background-image: var(--bg);
}
.blog_list .info .more i::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
  background: url(../img/icon-plus.svg) no-repeat center / contain;
}
.section_faq {
  padding: 9.2rem 0 22.6rem;
}
.section_faq .head {
  flex: 1;
  max-width: 43.2rem;
  margin-top: -0.6rem;
}
.section_faq .head p {
  color: var(--text);
  max-width: 28.4rem;
  margin-top: 3rem;
}
.section_faq .list {
  width: 63.888889%;
}
.faq_list .faq_item {
  position: relative;
  z-index: 2;
}
.faq_list .faq_item::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: 1.6rem;
  border: 1px solid #C5D5DD;
}
.faq_list .faq_item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 1.6rem;
  transition: all 0.3s;
  background-image: var(--bg);
}
.faq_list .faq_item + .faq_item {
  margin-top: 2.2rem;
}
.faq_list .faq_item.active::after {
  opacity: 1;
}
.faq_list .faq_item.active .question {
  color: #fff;
  padding: 2.7rem 3.6rem 1.4rem;
}
.faq_list .faq_item.active .question::after {
  filter: contrast(0) brightness(2);
  background-image: url(../img/icon-minus.svg);
}
.faq_list .question {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.6rem;
  cursor: pointer;
  padding: 2.3rem 3.6rem;
  transition: all 0.3s;
}
.faq_list .question::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.3s;
  background: url(../img/icon-plus-b.svg) no-repeat center / contain;
}
.faq_list .answer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin: 0 3.6rem;
  padding: 2rem 0 3.4rem;
  display: none;
}
.faq_list .answer p {
  line-height: 2.8rem;
  max-width: 84.2rem;
}
.section_blog {
  padding: 4.4rem 0 14.8rem;
}
.section_blog .swiper_btns {
  gap: 3rem;
}
.section_blog .swiper_btns div {
  width: 6rem;
  height: 6rem;
}
.section_blog .swiper_box {
  margin-top: 4rem;
}
.section_video {
  position: relative;
  max-width: 256rem;
  margin: 0 auto;
}
.section_video .inner {
  border-radius: 3.6rem;
  background-color: #D6ECFC;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 12.8rem 0 9.8rem;
}
.section_video .head {
  padding-bottom: 0.7rem;
}
.section_video .nav_box {
  border-color: rgba(255, 255, 255, 0.74);
  background-color: rgba(255, 255, 255, 0.74);
}
.section_video .nav_box .nav_list {
  gap: 0.2rem;
}
.section_video .nav_box .nav_item {
  font-size: 1.8rem;
  padding: 1rem 1.9rem;
}
.section_video .swiper_wrap {
  display: none;
}
.section_video .swiper_wrap.active {
  display: block;
}
.section_video .swiper_box {
  margin-top: 5.2rem;
}
.section_video .section_video_swiper {
  overflow: hidden;
}
.section_video .btn {
  margin-top: 6.6rem;
}
.section_video .bg1 {
  width: 27.96875%;
  position: absolute;
  right: -16%;
  top: 0;
  z-index: -1;
}
.section_video .bg1 img {
  transform: translateY(-40%);
}
.section_video .bg2 {
  width: 31.770833%;
  position: absolute;
  left: -18%;
  bottom: 0;
  z-index: -1;
}
.section_video .bg2 img {
  transform: translateY(45%);
}
.section_video .ball1 {
  width: 7.395833%;
  position: absolute;
  right: 4%;
  top: 0;
  z-index: 2;
}
.section_video .ball1 img {
  transform: translateY(-45%);
}
.section_video .ball2 {
  width: 9.114583%;
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 2;
}
.section_video .ball2 img {
  transform: translateY(45%);
}
.video_list a {
  display: block;
  position: relative;
}
.video_list a:hover img {
  transform: scale(1.03);
}
.video_list .image {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  background: url(../img/video-bg.jpg) no-repeat center / cover;
}
.video_list .image .img {
  width: 110.40724%;
  border-radius: 1.5rem;
  border: 2px solid #fff;
  padding-bottom: 59.276018%;
  margin: 18.552036% 0 -5.429864% 8.144796%;
}
.video_list .image i {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  right: 6.78733%;
  bottom: 2.2rem;
  z-index: 2;
  background: url(../img/icon-play.svg) no-repeat center / cover;
}
.video_list .image i:hover {
  transform: scale(1.1);
}
.video_list .info {
  margin-top: 2.8rem;
}
.video_list .info .cat {
  position: absolute;
  left: 5.882353%;
  top: 2rem;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 4.2rem;
  padding: 0 2rem;
  border-radius: 100px;
  background-color: var(--primary);
}
.video_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.section_category {
  padding: 17.7rem 0 7.1rem;
}
.section_category .items {
  margin-top: 7rem;
}
.section_category .items .syeditorlist {
  display: grid;
  gap: 3.5rem 2.222222%;
  grid-template-columns: repeat(4, 1fr);
}
.section_category .item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  border-radius: 3rem;
  transition: all 0.3s;
  padding: 10.714286%;
}
.section_category .item.active {
  box-shadow: 0 1rem 1rem rgba(151, 211, 255, 0.45);
}
.section_category .item.active::after {
  opacity: 1;
}
.section_category .item.active .icon {
  background-color: #fff;
}
.section_category .item.active .icon img {
  filter: none;
}
.section_category .item.active .syedittext {
  overflow: auto;
  transform: translate(0);
}
.section_category .item.active .syedittext h3 {
  color: #fff;
}
.section_category .item.active .syedittext p {
  color: rgba(255, 255, 255, 0.8);
}
.section_category .item.active .syedittext::after {
  filter: contrast(0) brightness(2);
}
.section_category .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: 3rem;
  box-sizing: border-box;
  border: 1px solid #C5D5DD;
  background-color: rgba(255, 255, 255, 0.91);
}
.section_category .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  border-radius: 3rem;
  background-image: var(--bg);
}
.section_category .item .icon {
  width: 8.6rem;
  height: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #DFEFFD;
}
.section_category .item .icon img {
  display: block;
  width: 45%;
  height: 45%;
  object-fit: contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.section_category .item .syedittext {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.6rem;
}
.section_category .item .syedittext h3 {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3.4rem;
  transition: all 0.3s;
  margin-top: 3.8rem;
}
.section_category .item .syedittext p {
  color: var(--text);
  transition: all 0.3s;
  margin-top: 2rem;
  margin-bottom: auto;
}
.section_category .item .syedittext::after {
  content: '';
  display: block;
  width: 2.2rem;
  height: 1.4rem;
  margin-left: auto;
  margin-top: 3.8rem;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}

/*** 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;
  right: 0;
  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;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: #fff;
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  right: 0;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(0);
  background: url(../img/mobile-menu/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.search_drawer input[type="submit"] {
  display: none;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 90vh;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.video_pop .pop_content iframe,
.video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: all;
}
.video_pop .pop_content video[src=""],
.video_pop .pop_content video.init {
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 102.4rem;
  margin: 5rem auto;
  padding: 6rem 5rem;
  border-radius: 2.2rem;
  background-color: #fff;
  overflow: visible;
}
.screen-reader-text{
  display: none!important;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1600px) {
  header .inner {
    gap: 5%;
  }
  header nav .menu {
    gap: 5rem;
  }
  footer .foot_contact .social {
    gap: 2rem 3.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .content {
    padding: 0 3rem;
  }
  header .inner {
    gap: 3%;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 17px;
  }
  header nav .sub-menu > li > a {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .swiper_content {
    max-width: 1024px;
  }
  .head h1 {
    font-size: 5rem;
    line-height: 1.3;
  }
  .head h2 {
    font-size: 4rem;
    line-height: 1.3;
  }
  .btn,
  .btn_b {
    line-height: 6.2rem;
    padding: 0 3rem;
    min-width: 16rem;
  }
  header .inner {
    gap: 3rem;
  }
  header .logo img {
    height: 30px;
  }
  header nav .menu {
    gap: 2rem;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  header .btns {
    gap: 5px;
  }
  header .hr {
    display: none;
  }
  header .btn_account {
    padding: 0;
    width: 45px;
    height: 45px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-account.svg) no-repeat center / 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 4rem;
  }
  .head h2 {
    font-size: 3rem;
  }
  .btn,
  .btn_b {
    line-height: 5.6rem;
  }
  .section_pricing .main {
    gap: 10px;
    padding: 10px;
  }
  .section_category .items .syeditorlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    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.75);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80%);
    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;
    padding-bottom: 32px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  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.menu-item-has-children {
    padding: 0;
  }
  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;
    position: absolute;
    top: 27px;
    right: 21px;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
    transform: translate(0);
    background: url(../img/icon-select.svg) no-repeat center / contain;
  }
  header nav .con .menu > li.menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  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: 6px;
    background-color: rgba(0, 0, 0, 0.02);
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    min-width: unset;
    transform: translate(0);
  }
  header nav .con .sub-menu li + li {
    margin-top: 2px;
  }
  header nav .con .sub-menu li a {
    font-size: 14px;
    white-space: normal;
    padding: 12px 18px;
  }
  header nav .con .sub-menu li.icon > a {
    padding-left: 50px;
    border-radius: 6px;
  }
  header nav .con .sub-menu li.icon > a::before {
    width: 24px;
    height: 24px;
  }
  header .btn_menu {
    display: block;
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / 23px;
  }
  header .btn_menu:hover {
    background-color: #EAF5FD;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 3.6rem;
  }
  .head h2 {
    font-size: 2.6rem;
  }
}
@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;
  }
  .syedittext .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .syedittext h1 {
    font-size: 25px;
    line-height: 1.3;
  }
  .syedittext h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .syedittext p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .btn,
  .btn_b {
    font-size: 14px;
    line-height: 42px;
    min-width: 120px;
    padding: 0 20px;
  }
  .btn::after,
  .btn_b::after {
    width: 14px;
  }
  .btn_cir {
    gap: 10px;
    font-size: 14px;
  }
  .btn_cir::before {
    width: 14px;
    height: 14px;
    right: 14px;
  }
  .btn_cir::after {
    width: 42px;
    height: 42px;
  }
  .btn_more {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    min-width: unset;
    letter-spacing: unset;
  }
  .swiper_btns {
    gap: 15px;
  }
  .swiper_btns div {
    width: 42px;
    height: 42px;
  }
  .nav_box {
    padding: 0;
  }
  .nav_box::-webkit-scrollbar {
    display: none;
  }
  .nav_box .nav_list {
    flex-wrap: nowrap;
  }
  .nav_box .nav_item {
    white-space: nowrap;
    padding: 9px 20px;
  }
  header {
    padding: 0;
  }
  header .content {
    padding: 0 20px;
  }
  header .logo {
    transform: translate(0);
  }
  header .logo img {
    height: 26px;
  }
  header .btns {
    min-height: 64px;
  }
  header .hr {
    display: none;
  }
  header .btn_account {
    padding: 0;
    width: 45px;
    height: 45px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-account.svg) no-repeat center / 20px;
  }
  header .btn {
    padding: 0 20px;
    line-height: 46px;
  }
  footer .main {
    gap: 30px 20px;
    padding: 50px 0;
  }
  footer .foot_contact {
    width: 220px;
    margin: 0;
  }
  footer .foot_contact .logo {
    max-width: 160px;
  }
  footer .foot_contact .menu {
    margin-top: 30px;
  }
  footer .foot_contact .menu a {
    font-size: 16px;
    padding: 12px 20px;
    min-height: unset;
  }
  footer .foot_contact .social {
    gap: 20px;
    margin-top: 30px;
  }
  footer .foot_nav {
    margin-top: 0;
  }
  footer .foot_nav:last-child {
    min-width: unset;
  }
  footer .foot_nav strong {
    font-size: 16px;
    line-height: 1.5;
  }
  footer .foot_nav li {
    margin-top: 12px;
  }
  footer .foot_nav a {
    font-size: 14px;
  }
  footer .bottom {
    padding: 28px 60px 28px 0;
  }
  footer .bottom li::after {
    margin: 0 10px;
  }
  .header_notice {
    font-size: 13px;
  }
  .header_notice .inner {
    gap: 10px;
  }
  .header_notice .content {
    padding: 0 20px;
  }
  .header_notice .header_notice_swiper .label::after {
    margin: 0 10px;
  }
  .section_pricing {
    padding: 50px 0;
  }
  .section_pricing .head {
    align-items: flex-start;
  }
  .section_pricing .rt {
    padding: 0;
  }
  .section_pricing .options {
    gap: 15px;
    margin-top: 20px;
  }
  .section_pricing .time {
    border-radius: 10px;
    border: 1px solid #A1B7C6;
  }
  .section_pricing .time::-webkit-scrollbar {
    display: none;
  }
  .section_pricing .time ul {
    flex-wrap: nowrap;
  }
  .section_pricing .time ul::before {
    display: none;
  }
  .section_pricing .time .block {
    border-radius: 10px;
  }
  .section_pricing .time .block::after {
    border-radius: 9px;
  }
  .section_pricing .time li {
    flex: 1 0 120px;
    min-width: unset;
    padding: 8px 8px 8px 32px;
  }
  .section_pricing .time li .cir {
    width: 16px;
    height: 16px;
    left: 8px;
    top: 12px;
  }
  .section_pricing .time li .cir::after {
    border-width: 3px;
  }
  .section_pricing .time li strong {
    font-size: 14px;
  }
  .section_pricing .time li p {
    margin: 0;
    font-size: 12px;
  }
  .section_pricing .dropdown {
    width: 150px;
  }
  .section_pricing .dropdown .dropdown_link {
    padding: 5px;
    border-radius: 10px;
  }
  .section_pricing .dropdown .dropdown_link::after {
    width: 12px;
    height: 12px;
    right: 10px;
  }
  .section_pricing .dropdown .dropdown_item {
    gap: 5px;
    border-radius: 10px;
    padding: 5px 22px 5px 5px;
  }
  .section_pricing .dropdown .dropdown_item .img {
    width: 30px;
    height: 30px;
  }
  .section_pricing .dropdown .dropdown_item .name {
    font-size: 12px;
  }
  .section_pricing .dropdown .dropdown_menu {
    padding: 5px;
    border-radius: 10px;
  }
  .section_pricing .main {
    gap: 10px;
    padding: 5px;
    margin-top: 30px;
    border-radius: 15px;
  }
  .section_pricing .main .item {
    padding: 15px;
    border-radius: 15px;
  }
  .section_pricing .main .item .level {
    padding: 4px 15px;
    font-size: 14px;
  }
  .section_pricing .main .item .price strong {
    font-size: 30px;
  }
  .section_pricing .main .item .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .section_pricing .main .item .btn {
    margin-top: 15px;
    line-height: 42px;
  }
  .section_pricing .main .item .btn_b {
    margin-top: 15px;
  }
  .section_pricing .main .item .try {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .section_pricing .main .item .list {
    margin-top: 15px;
    padding-top: 10px;
  }
  .section_pricing .main .item .list li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
  }
  .section_pricing .main .item .list li::before {
    width: 15px;
    height: 15px;
    top: 3px;
  }
  .section_pricing .tip {
    margin-top: 20px;
  }
  .blog_list a {
    padding: 5px;
    border-radius: 15px;
  }
  .blog_list .img {
    border-radius: 15px;
  }
  .blog_list .info {
    padding: 10px 5px;
  }
  .blog_list .info .cat {
    font-size: 13px;
    left: 8px;
    top: 8px;
    line-height: 30px;
    padding: 0 10px;
  }
  .blog_list .info .title {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 8px;
  }
  .blog_list .info .more {
    display: none;
  }
  .section_faq {
    padding: 50px 0;
  }
  .section_faq .head p {
    margin-top: 12px;
  }
  .faq_list .faq_item::before,
  .faq_list .faq_item::after {
    border-radius: 10px;
  }
  .faq_list .faq_item.active .question {
    padding: 15px 20px;
  }
  .faq_list .faq_item.active .answer {
    margin: 0 20px;
    padding: 0 0 20px;
  }
  .faq_list .faq_item + .faq_item {
    margin-top: 15px;
  }
  .faq_list .question {
    font-size: 16px;
    line-height: 1.5;
    padding: 15px 20px;
  }
  .faq_list .question::after {
    width: 15px;
    height: 15px;
  }
  .faq_list .answer {
    margin: 0 20px;
    padding: 0 0 20px;
  }
  .faq_list .answer p {
    line-height: 1.7;
  }
  .section_blog {
    padding: 50px 0;
  }
  .section_blog .flex {
    align-items: flex-end;
  }
  .section_blog .swiper_btns {
    gap: 15px;
  }
  .section_blog .swiper_btns div {
    width: 42px;
    height: 42px;
  }
  .section_blog .swiper_box {
    margin-top: 20px;
  }
  .section_video .inner {
    padding: 50px 0;
    border-radius: 15px;
  }
  .section_video .flex {
    gap: 15px;
  }
  .section_video .nav_box .nav_item {
    font-size: 14px;
    padding: 9px 20px;
  }
  .section_video .swiper_box {
    margin-top: 30px;
  }
  .section_video .btn {
    margin-top: 30px;
  }
  .video_list .image {
    border-radius: 10px;
  }
  .video_list .image i {
    width: 42px;
    height: 42px;
    right: 15px;
    bottom: 15px;
  }
  .video_list .info {
    margin-top: 20px;
  }
  .video_list .info .cat {
    font-size: 13px;
    left: 8px;
    top: 8px;
    line-height: 30px;
    padding: 0 10px;
  }
  .video_list .info .title {
    font-size: 16px;
    line-height: 1.3;
  }
  .section_category {
    padding: 50px 0;
  }
  .section_category .items {
    margin-top: 30px;
  }
  .section_category .items .syeditorlist {
    gap: 20px 15px;
  }
  .section_category .item {
    padding: 15px;
    border-radius: 15px;
  }
  .section_category .item::before {
    border-radius: 15px;
  }
  .section_category .item::after {
    border-radius: 15px;
  }
  .section_category .item .icon {
    width: 50px;
    height: 50px;
  }
  .section_category .item .syedittext h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 20px;
  }
  .section_category .item .syedittext p {
    font-size: 13px;
    margin-top: 12px;
  }
  .section_category .item .syedittext::after {
    width: 15px;
    height: 15px;
    margin-top: 15px;
  }
  .ticket_modal .modal_content {
    padding: 40px 30px;
    border-radius: 15px;
  }
  .ticket_modal .head .title {
    font-size: 22px;
  }
  .ticket_modal .head .desc {
    font-size: 14px;
    margin-top: 12px;
  }
  .ticket_modal .wrap {
    gap: 20px 0;
    margin-top: 30px;
  }
  .ticket_modal .wrap input, .ticket_modal .wrap select, .ticket_modal .wrap textarea {
    font-size: 15px;
    padding: 0 20px;
  }
  .ticket_modal .wrap select {
    padding-right: 56px;
  }
  .ticket_modal .wrap textarea {
    height: 150px;
    padding: 15px 20px;
  }
  .ticket_modal .wrap .file {
    margin-top: 0;
  }
  .ticket_modal .wrap .file .label {
    gap: 15px;
    padding: 30px 20px;
    font-size: 16px;
  }
  .ticket_modal .wrap .file .label::before {
    width: 30px;
    height: 30px;
  }
  .ticket_modal .wrap .btn {
    margin: 0 auto;
    line-height: 42px;
  }
  .login_modal .image .img {
    width: 118%;
    margin-left: -8%;
  }
  .login_modal .con {
    min-height: 450px;
  }
  .login_modal .wrap {
    padding: 40px;
  }
  .login_modal .head .title {
    font-size: 22px;
  }
  .login_modal .head .desc {
    margin-top: 12px;
  }
  .login_modal form {
    margin-top: 20px;
  }
  .login_modal form input {
    padding: 0 20px;
    font-size: 15px;
  }
  .login_modal form input[type="checkbox"] ~ span {
    padding-left: 0;
  }
  .login_modal form .bot {
    margin: 0;
    gap: 15px;
  }
  .login_modal form .btns {
    gap: 15px;
    margin-top: 0;
  }
  .login_modal form .btn {
    line-height: 42px;
  }
  .login_modal form .btn_social {
    padding: 15px;
    padding: 9px 20px;
  }

  /*** 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 .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }

  .video_pop .pop_content {
    max-width: 96vw;
    width: 96vw;
    height: auto;
  }
  
  .quote_modal .modal_content {
    padding: 50px 30px;
    border-radius: 15px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btns {
    gap: 5px;
  }
  header .btn_search,
  header .btn_lang,
  header .btn_account {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
  header .btn_menu {
    width: 40px;
    height: 40px;
  }
  header .btn {
    display: none;
  }
  footer .main {
    display: block;
    padding-bottom: 30px;
  }
  footer .foot_contact {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
  footer .foot_contact .logo {
    order: -2;
    align-self: center;
  }
  footer .foot_contact .social {
    order: -1;
    align-self: center;
  }
  footer .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_nav strong {
    font-size: 16px;
    line-height: 45px;
    border: 1px solid #D7DEE2;
    padding: 0 22px;
    position: relative;
    margin-bottom: 15px;
    border-radius: 100px;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select-b.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .foot_nav > div {
    display: none;
    padding: 0 20px 30px;
  }
  footer .foot_nav li:first-child {
    margin-top: 0;
  }
  footer .bottom {
    gap: 20px;
    padding: 20px 0;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .header_notice {
    font-size: 12px;
  }
  .header_notice .inner {
    gap: 10px;
  }
  .header_notice .header_notice_swiper {
    height: 40px;
  }
  .header_notice .close {
    width: 40px;
    height: 40px;
    margin-right: -20px;
  }
  .section_pricing .head {
    display: block;
  }
  .section_pricing .dropdown {
    flex: 1;
  }
  .section_pricing .main {
    grid-template-columns: 1fr;
  }
  .section_pricing .main .item {
    padding: 20px;
  }
  .section_faq .flex {
    display: block;
  }
  .section_faq .list {
    width: 100%;
    margin-top: 30px;
  }
  .section_video .swiper_box {
    overflow: hidden;
  }
  .section_video .section_video_swiper {
    overflow: visible;
  }
  .section_category .items .syeditorlist {
    gap: 15px 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .ticket_modal .wrap .col2 {
    width: 100%;
  }
  .login_modal .image {
    display: none;
  }
  .login_modal .con {
    min-height: unset;
  }
  .login_modal .wrap {
    padding: 40px 20px;
  }
}

/* Custom Dialog Styles */
.custom-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-dialog-overlay.show {
  opacity: 1;
}
.custom-dialog {
  background: #fff;
  border-radius: 1.7rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
  max-width: 50rem;
  width: 90%;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}
.custom-dialog-overlay.show .custom-dialog {
  transform: scale(1);
}
.custom-dialog-header {
  padding: 2.5rem 3rem 1.5rem;
  border-bottom: 1px solid #edf2f7;
}
.custom-dialog-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #282828;
  margin: 0;
}
.custom-dialog-body {
  padding: 2.5rem 3rem;
}
.custom-dialog-body p {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
.custom-dialog-footer {
  padding: 1.5rem 3rem 2.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}
.custom-dialog-btn {
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-size: 1.7rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.custom-dialog-btn-primary {
  background-image: linear-gradient(to right, #0366dd, #3cabf6, #0366dd);
  background-size: 200%;
  color: #fff;
}
.custom-dialog-btn-primary:hover {
  background-position: right;
}
.custom-dialog-btn-secondary {
  background-color: rgba(237, 242, 247, 0.46);
  color: #666666;
}
.custom-dialog-btn-secondary:hover {
  background-color: rgba(237, 242, 247, 0.8);
}
@media screen and (max-width: 768px) {
  .custom-dialog {
    max-width: 90%;
    width: 90%;
  }
  .custom-dialog-header {
    padding: 2rem 2rem 1.2rem;
  }
  .custom-dialog-header h3 {
    font-size: 1.8rem;
  }
  .custom-dialog-body {
    padding: 2rem;
  }
  .custom-dialog-body p {
    font-size: 1.5rem;
  }
  .custom-dialog-footer {
    padding: 1.2rem 2rem 2rem;
    gap: 1rem;
  }
  .custom-dialog-btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}
