html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font-pri: "SVN-Outfit", sans-serif;
  --pi-4: 0.4rem;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-18: 1.8rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --pi-10: 0.8rem;
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-18: 0.8rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
  }
}
:root {
  --z-i-header: 100;
  --radius-circle: 50%;
  --radius-max: 999rem;
  --radius-xl: 2.4rem;
  --radius-l: 1.6rem;
  --radius: 1.2rem;
  --radius-m: 0.8rem;
  --radius-s: 0.4rem;
  --box-shadow-1: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.1);
  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) invert(0);
  --filter-pri: brightness(0) saturate(100%) invert(10%) sepia(22%) saturate(1515%) hue-rotate(177deg) brightness(92%) contrast(85%);
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
  --bg-pri: linear-gradient(145deg, #d92525 6.38%, #9c1b1b 93.71%);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}
html ::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: rgba(51, 51, 51, 0.8);
}

body {
  font-weight: 400;
  font-size: 1.6rem;
  color: #1e293b;
  line-height: normal;
  overflow: hidden auto;
  font-family: var(--font-pri);
}
body.admin-bar .header {
  top: 3.2rem;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 4.6rem;
  }
}
body .mona-empty {
  color: #333;
  font-weight: 600;
}
body .grecaptcha-badge {
  display: none !important;
}

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

button,
select {
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

button {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.container {
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-width);
  padding: 0 var(--container-padding);
}

.no-scroll,
.no-scroll-popup {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: none;
}

iframe {
  vertical-align: middle;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
  user-select: none;
}

.tabBtn {
  cursor: pointer;
}

.tabPanel {
  display: none;
}
.tabPanel.open {
  display: block;
  animation: opacityAni 0.8s ease-in-out;
}

.gItem {
  cursor: pointer;
}

.hide-sitename {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: visible;
}

section {
  scroll-margin-top: 10rem;
}

.overlay,
.aside-overlay {
  inset: 0;
  opacity: 0;
  width: 100%;
  z-index: 100;
  height: 100dvh;
  position: fixed;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
}
.overlay.is-active,
.aside-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.row {
  --rg: 3.2rem;
  --cg: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--cg) / 2 * -1) calc(var(--rg) * -1);
}

.col {
  width: 100%;
  margin-bottom: var(--rg);
  padding: 0 calc(var(--cg) / 2);
}
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.6666666667%;
}
.col-10 {
  width: 83.3333333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.6666666667%;
}
.col-7 {
  width: 58.3333333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.6666666667%;
}
.col-4 {
  width: 33.3333333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.6666666667%;
}
.col-1 {
  width: 8.3333333333%;
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex-2 {
  gap: 0.2rem;
}
.flex-4 {
  gap: 0.4rem;
}
.flex-6 {
  gap: 0.6rem;
}
.flex-8 {
  gap: 0.8rem;
}
.flex-10 {
  gap: 1rem;
}
.flex-12 {
  gap: 1.2rem;
}
.flex-14 {
  gap: 1.4rem;
}
.flex-16 {
  gap: 1.6rem;
}
.flex-18 {
  gap: 1.8rem;
}
.flex-20 {
  gap: 2rem;
}
.flex-22 {
  gap: 2.2rem;
}
.flex-24 {
  gap: 2.4rem;
}
.flex-26 {
  gap: 2.6rem;
}
.flex-28 {
  gap: 2.8rem;
}
.flex-30 {
  gap: 3rem;
}
.flex-32 {
  gap: 3.2rem;
}
.flex-34 {
  gap: 3.4rem;
}
.flex-36 {
  gap: 3.6rem;
}
.flex-38 {
  gap: 3.8rem;
}
.flex-40 {
  gap: 4rem;
}
.flex-42 {
  gap: 4.2rem;
}
.flex-44 {
  gap: 4.4rem;
}
.flex-46 {
  gap: 4.6rem;
}
.flex-48 {
  gap: 4.8rem;
}
.flex-50 {
  gap: 5rem;
}
.flex-56 {
  gap: 5.6rem;
}
.flex-60 {
  gap: 6rem;
}
.flex-64 {
  gap: 6.4rem;
}
.flex-68 {
  gap: 6.8rem;
}
.flex-80 {
  gap: 8rem;
}
.flex-100 {
  gap: 10rem;
}
.flex-120 {
  gap: 12rem;
}
@media screen and (max-width: 992px) {
  .flex-48 {
    gap: 3.2rem;
  }
  .flex-50 {
    gap: 3.2rem;
  }
  .flex-56 {
    gap: 3.2rem;
  }
  .flex-60 {
    gap: 3.2rem;
  }
  .flex-64 {
    gap: 3.2rem;
  }
  .flex-68 {
    gap: 3.2rem;
  }
  .flex-80 {
    gap: 3.2rem;
  }
  .flex-100 {
    gap: 3.2rem;
  }
  .flex-120 {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .flex-48 {
    gap: 2.4rem;
  }
  .flex-50 {
    gap: 2.4rem;
  }
  .flex-56 {
    gap: 2.4rem;
  }
  .flex-60 {
    gap: 2.4rem;
  }
  .flex-64 {
    gap: 2.4rem;
  }
  .flex-68 {
    gap: 2.4rem;
  }
  .flex-80 {
    gap: 2.4rem;
  }
  .flex-100 {
    gap: 2.4rem;
  }
  .flex-120 {
    gap: 2.4rem;
  }
}

.title-64 {
  font-size: 6.4rem;
}
@media only screen and (max-width: 1200px) {
  .title-64 {
    font-size: 3.9rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-64 {
    font-size: 2.9rem;
  }
}
.title-48 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 1200px) {
  .title-48 {
    font-size: 4.3rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-48 {
    font-size: 3.3rem;
  }
}
.title-40 {
  font-size: 4rem;
}
@media only screen and (max-width: 1200px) {
  .title-40 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-40 {
    font-size: 2.7rem;
  }
}
.title-36 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .title-36 {
    font-size: 3.1rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-36 {
    font-size: 2.6rem;
  }
}
.title-32 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 1200px) {
  .title-32 {
    font-size: 2.7rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-32 {
    font-size: 2.2rem;
  }
}
.title-28 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1200px) {
  .title-28 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-28 {
    font-size: 2.1rem;
  }
}
.title-24 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .title-24 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-24 {
    font-size: 1.7rem;
  }
}

.text-20 {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .text-20 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .text-20 {
    font-size: 1.6rem;
  }
}
.text-18 {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .text-18 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .text-18 {
    font-size: 1.5rem;
  }
}
.text-16 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .text-16 {
    font-size: 1.4rem;
  }
}
.text-14 {
  font-size: 1.4rem;
}
.text-12 {
  font-size: 1.2rem;
}

.f-pri {
  font-family: var(--font-pri);
}
.f-tt {
  font-family: var(--font-title);
}
.f-desc {
  font-family: var(--font-desc);
}

.fs-i {
  font-style: italic;
}

.t-cap {
  text-transform: capitalize;
}
.t-up {
  text-transform: uppercase;
}
.t-center {
  text-align: center;
}

.fw-b {
  font-weight: 700;
}
.fw-sb {
  font-weight: 600;
}
.fw-m {
  font-weight: 500;
}
.fw-n {
  font-weight: 400;
}
.fw-t {
  font-weight: 300;
}

.cl-pri {
  color: #dc2626;
}

.cl-white {
  color: white;
}

.custom-logo-link {
  display: block;
  user-select: none;
}
.custom-logo-link img {
  width: 100%;
  object-fit: cover;
}

.img {
  display: block;
  overflow: hidden;
  position: relative;
}
.img img,
.img picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: 0.4s ease-in-out;
}

.ic {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 576px) {
  .tt {
    font-size: 2.4rem;
  }
}
.tt span {
  padding: 0.4rem 0;
  margin: -0.4rem 0;
  background: linear-gradient(to right, #d92525, #9c1b1b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtt {
  gap: 1.2rem;
  display: flex;
  font-weight: 700;
  position: relative;
  align-items: center;
}
.subtt::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #dc2626;
  border-radius: var(--radius-s);
}
.subtt .title-24,
.subtt .title-28 {
  color: #dc2626;
}
@media screen and (max-width: 576px) {
  .subtt .title-24,
  .subtt .title-28 {
    font-size: 2rem;
  }
}

.view-link {
  gap: 1.2rem;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .view-link:hover span::before, .view-link:focus-visible span::before {
    left: 0;
    width: 100%;
  }
  .view-link:hover .icon, .view-link:focus-visible .icon {
    background-color: #1e293b;
  }
}
.view-link .icon {
  transition: 0.4s ease-in-out;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #dc2626;
  border-radius: var(--radius-m);
}
.view-link .icon img {
  width: 1.2rem;
  height: 1.2rem;
  filter: var(--filter-white);
}
.view-link span {
  position: relative;
}
.view-link span::before {
  content: "";
  right: 0;
  width: 0;
  bottom: -0.2rem;
  height: 0.2rem;
  position: absolute;
  transition: 0.4s ease-in-out;
  background-color: #1e293b;
}

.blocker {
  z-index: calc(var(--z-i-header) + 1);
}

@media screen and (min-width: 577px) {
  .js-menu-search {
    position: relative;
  }
}
.js-menu-search .search {
  width: fit-content;
}
.js-menu-search .search {
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #dc2626;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .js-menu-search .search:hover, .js-menu-search .search:focus-visible {
    background-color: #dc2626;
  }
}
.js-menu-search .search img {
  object-fit: cover;
  width: 2rem;
  height: 2rem;
  transition: 0.4s ease-in-out;
  filter: var(--filter-white);
}
.js-menu-search button {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.js-menu-search.is-active .search {
  background-color: #dc2626;
}
.js-menu-search.is-active .search img {
  filter: brightness(0) invert(1);
}
.js-menu-search.is-active .search-menu {
  opacity: 1;
  pointer-events: auto;
}

.search-menu {
  right: 0;
  opacity: 0;
  width: 100%;
  min-width: 32rem;
  position: absolute;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  top: calc(100% + 1rem);
}
@media screen and (max-width: 576px) {
  .search-menu {
    padding: 0 1.6rem;
    top: calc(100% - 1rem);
  }
}
.search-menu form .form-label {
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 4rem;
  transition: 0.4s ease-in-out;
  flex-direction: unset;
  background-color: white;
  border: 0.1rem solid transparent;
}
@media screen and (min-width: 577px) {
  .search-menu form .form-label {
    box-shadow: var(--box-shadow-1);
  }
}
@media screen and (max-width: 1200px) {
  .search-menu form .form-label {
    border-color: #d0d0d0;
  }
}
.search-menu form .form-label:hover {
  border-color: #dc2626;
}
.search-menu form .form-label:has(input:focus) {
  border-color: #dc2626;
}
.search-menu form input {
  border: 0;
  padding: 0;
  height: auto;
  border-radius: 0;
  background-color: transparent;
}
.search-menu form input::placeholder {
  color: #999;
  font-size: 1.4rem;
  font-style: italic;
}

@keyframes opacityAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes phoneAni {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
.breadcrumb {
  padding: 2.4rem 0;
}
@media screen and (max-width: 576px) {
  .breadcrumb {
    padding: 1.6rem 0;
  }
}
.breadcrumb-list {
  display: flex;
  align-items: center;
}
.breadcrumb-item {
  line-height: 150%;
  white-space: nowrap;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1201px) {
  .breadcrumb-item:not(.is-current):hover {
    color: #dc2626;
  }
}
.breadcrumb-item:not(:first-child)::before {
  content: "";
  flex-shrink: 0;
  margin: 0 0.8rem;
  user-select: none;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  transform: rotate(-90deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-image: url("../../assets/images/icons/icon-chevron.svg");
}
@media screen and (max-width: 767px) {
  .breadcrumb-item:not(:first-child)::before {
    margin: 0 0.4rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
.breadcrumb-item.is-current {
  font-weight: 700;
}
.breadcrumb-item:last-child {
  cursor: default;
  white-space: normal;
}
.breadcrumb-item:last-child .text-16 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1200px) {
  .breadcrumb-item .text-16 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-item .text-16 {
    font-size: 1.2rem;
  }
}

.move-top {
  opacity: 0;
  z-index: 98;
  bottom: 2rem;
  row-gap: 1rem;
  display: flex;
  right: 0.8rem;
  cursor: pointer;
  position: fixed;
  user-select: none;
  visibility: hidden;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.6s ease-in-out;
}
@media screen and (max-width: 576px) {
  .move-top {
    bottom: 0.8rem;
  }
}
.move-top.active {
  opacity: 1;
  transform: unset;
  visibility: visible;
}
.move-top-social a {
  transition: 0.4s ease-in-out;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #dc2626;
  border-radius: var(--radius-l);
  animation: phoneAni 2s ease-in-out infinite;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .move-top-social a:hover, .move-top-social a:focus-visible {
    background-color: #1e293b;
    box-shadow: var(--box-shadow-1);
  }
}
@media screen and (max-width: 576px) {
  .move-top-social a {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
  }
}
.move-top-social a img {
  width: 2.4rem;
  height: 2.4rem;
}

.header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  padding: 2.65rem 0;
  transition: 0.6s ease-in-out;
  z-index: var(--z-i-header);
  background-color: white;
}
.header .custom-logo-link {
  max-width: 22.4rem;
}
@media screen and (max-width: 767px) {
  .header .custom-logo-link {
    max-width: 18.4rem;
  }
}
.header.is-fixed {
  padding: 1.65rem 0;
  box-shadow: var(--box-shadow-1);
}
@media screen and (max-width: 767px) {
  .header.is-fixed {
    padding: 1.57rem 0;
  }
}
.header-wrap {
  gap: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header-nav {
    top: 0;
    right: 0;
    width: 32rem;
    display: flex;
    height: 100dvh;
    position: absolute;
    transition: 0.4s ease-in-out;
    flex-direction: column;
    transform: translateX(100%);
    background-color: white;
    z-index: calc(var(--z-i-header) + 3);
  }
}
@media screen and (max-width: 1200px) and (max-width: 576px) {
  .header-nav {
    width: 29rem;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav.is-active {
    transform: unset;
  }
}
.header-nav .menu {
  display: flex;
}
@media screen and (min-width: 1201px) {
  .header-nav .menu {
    gap: 3.2rem;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav .menu {
    overflow: hidden auto;
    flex-direction: column;
  }
}
.header-nav .menu > .menu-item {
  gap: 0.6rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .header-nav .menu > .menu-item:hover > img, .header-nav .menu > .menu-item:focus-visible > img {
    transform: rotate(180deg);
  }
  .header-nav .menu > .menu-item:hover > .child, .header-nav .menu > .menu-item:focus-visible > .child {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -2rem);
  }
}
@media screen and (max-width: 1200px) {
  .header-nav .menu > .menu-item {
    width: 100%;
    border-bottom: 0.1rem solid #d0d0d0;
  }
  .header-nav .menu > .menu-item.is-active::before {
    transform: rotate(270deg);
  }
}
.header-nav .menu > .menu-item.current-menu-item > .menu-link {
  font-weight: 700;
  color: #dc2626;
}
.header-nav .menu > .menu-dropdown {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header-nav .menu > .menu-dropdown::before {
    top: 1.6rem;
    right: 1.2rem;
    position: absolute;
    content: "";
    z-index: 1;
    transition: 0.4s ease-in-out;
    width: 1.2rem;
    height: 1.2rem;
    transform: rotate(90deg);
    filter: var(--filter-black);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    background-image: url("../../assets/images/icons/icon-arrow.svg");
  }
}
@media screen and (max-width: 1200px) {
  .header-nav .menu-item {
    padding: 1.2rem;
  }
}
.header-nav .menu-link {
  display: block;
  transition: 0.4s ease-in-out;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .header-nav .menu-link:hover, .header-nav .menu-link:focus-visible {
    color: #dc2626;
  }
}
.header-info {
  padding: 1.2rem;
  margin-top: auto;
  background-color: #efefef;
}
@media screen and (min-width: 1201px) {
  .header-info {
    display: none;
  }
}
.header-info .menu > .menu-item {
  border: 0;
  padding: 0;
}
.header-info .menu > .menu-item > .menu-link {
  font-size: 1.2rem;
}
.header-inner {
  gap: 2.4rem;
  display: flex;
  align-items: center;
}
.header-action {
  gap: 2.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header-action {
    gap: 1.2rem;
  }
}

@media screen and (min-width: 1201px) {
  .child {
    left: 50%;
    z-index: 5;
    opacity: 0;
    display: flex;
    padding: 0.8rem;
    max-width: 30rem;
    min-width: 16rem;
    width: max-content;
    position: absolute;
    transition: 0.4s ease-in-out;
    pointer-events: none;
    top: calc(100% + 3rem);
    flex-direction: column;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: var(--box-shadow-1);
  }
  .child::before {
    content: "";
    left: 0;
    width: 100%;
    bottom: 100%;
    height: 1.2rem;
    position: absolute;
    background-color: transparent;
  }
}
@media screen and (max-width: 1200px) {
  .child {
    width: 100%;
    margin-top: 1.2rem;
    border-left: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1201px) {
  .child .menu-item {
    width: 100%;
  }
}
.child .menu-item::after {
  background-color: #1e293b;
}
.child .menu-link {
  color: #1e293b;
}
@media screen and (min-width: 1201px) {
  .child .menu-link {
    padding: 0.8rem;
    position: relative;
  }
}
@media screen and (min-width: 1201px) and (min-width: 1201px) {
  .child .menu-link::before {
    content: "";
    left: 0;
    bottom: 0;
    height: 0;
    width: 0.2rem;
    position: absolute;
    transition: 0.4s ease-in-out;
    background-color: #dc2626;
  }
  .child .menu-link:hover::before {
    top: 0;
    height: 100%;
  }
}

.menu-close {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #d0d0d0;
}
@media screen and (min-width: 1201px) {
  .menu-close {
    display: none;
  }
}
.menu-close .custom-logo-link {
  max-width: 10.2rem;
}
.menu-close-icon {
  margin-left: auto;
  width: 2.4rem;
  height: 2.4rem;
}

@media screen and (min-width: 1201px) {
  .menu-bar {
    display: none;
  }
}
.menu-bar .menu-icon span {
  width: 2.4rem;
  height: 0.2rem;
  display: block;
  user-select: none;
  margin-top: 0.4rem;
  transition: 0.4s ease-in-out;
  border-radius: 0.5rem;
  background-color: #1e293b;
}
.menu-bar .menu-icon span:nth-child(1) {
  margin-top: 0;
}

.footer {
  padding: 5rem 0;
  background-color: #efefef;
}
@media screen and (max-width: 991px) {
  .footer-col {
    width: 100%;
  }
}
.footer-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2.4rem;
  margin: 0 calc(-1 * var(--pi-10));
}
.footer-block {
  padding: 0 var(--pi-10);
}
@media screen and (min-width: 1201px) {
  .footer-block:first-child {
    width: 71.4285714286%;
  }
  .footer-block:last-child {
    margin-top: 4.2rem;
    width: 28.5714285714%;
  }
}
@media screen and (max-width: 1200px) {
  .footer-block {
    width: 100%;
  }
}
.footer-logo .custom-logo-link {
  max-width: 46.6rem;
}
@media screen and (max-width: 991px) {
  .footer-logo .custom-logo-link {
    max-width: 32rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo .custom-logo-link {
    max-width: 24rem;
  }
}
.footer-box .title-24 {
  font-weight: 700;
  color: #dc2626;
}
.footer-box .menu {
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
}
.footer-box .menu-item.current-menu-item > .menu-link {
  font-weight: 700;
  color: #dc2626;
}
.footer-box .menu-link:has(img) {
  gap: 0.8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-box .menu-link:has(img) {
    gap: 0.4rem;
  }
}
.footer-box .menu-link img {
  flex-shrink: 0;
  object-fit: contain;
  width: 0.8rem;
  height: 0.8rem;
}
.footer-box .menu-link a {
  transition: 0.4s ease-in-out;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .footer-box .menu-link a:hover, .footer-box .menu-link a:focus-visible {
    color: #dc2626;
  }
}
@media screen and (max-width: 576px) {
  .footer-box .menu-link a {
    font-size: 1.4rem;
  }
}
.footer-info {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
.footer-info_img {
  width: 100%;
}
.footer-info_img img {
  height: 8.4rem;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .footer-info_img img {
    height: 5.2rem;
  }
}
.footer-map {
  width: 100%;
  height: 100%;
  user-select: none;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 46.6rem;
  border-radius: var(--radius);
}
@media screen and (min-width: 767px) {
  .footer-map iframe {
    min-height: 35rem;
  }
}

.btn {
  z-index: 3;
  flex-shrink: 0;
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .btn {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .btn {
    font-size: 1.6rem;
  }
}
.btn {
  cursor: pointer;
  overflow: hidden;
  column-gap: 1rem;
  font-weight: 700;
  color: #1e293b;
  user-select: none;
  text-align: center;
  position: relative;
  width: fit-content;
  line-height: normal;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  background-color: #efefef;
  font-family: var(--font-pri);
  border: 0.1rem solid transparent;
}
@media screen and (min-width: 1201px) {
  .btn:hover {
    color: white;
    border-color: #1e293b;
  }
  .btn:hover::after {
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .btn {
    font-size: 1.6rem;
  }
}
.btn::after {
  content: "";
  top: 0;
  right: 0;
  width: 0;
  z-index: -1;
  height: 100%;
  position: absolute;
  transition: 0.4s ease-in-out;
  background-color: #1e293b;
}
.btn .wpcf7-spinner {
  top: 50%;
  left: 50%;
  margin-right: auto;
  margin-left: auto;
  position: absolute;
  transform: translate(-50%, -50%);
}
.btn span {
  line-height: inherit;
}
.btn img {
  width: 2rem;
  height: 2rem;
  transition: 0.4s ease-in-out;
}
.btn.mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.btn.w-100 {
  width: 100%;
}
.btn:disabled {
  pointer-events: none;
}
.btn-pri {
  color: white;
  background-color: #1e293b;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .btn-pri:hover, .btn-pri:focus-visible {
    border-color: #dc2626;
  }
}
.btn-pri:after {
  background-color: #dc2626;
}

form .form-wrap {
  display: flex;
  row-gap: 1.2rem;
  flex-direction: column;
}
form .form-group {
  gap: 2rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
form .form-box {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 576px) {
  form .form-box {
    width: 100%;
  }
}
form .form-label {
  width: 100%;
  display: flex;
  row-gap: 0.8rem;
  flex-direction: column;
}
form .form-text {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  form .form-text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  form .form-text {
    font-size: 1.6rem;
  }
}
form .form-text {
  font-weight: 700;
  color: #1e293b;
}
@media screen and (max-width: 576px) {
  form .form-text {
    font-size: 1.6rem;
  }
}
form .form-text sup {
  color: #dc2626;
}
form .form-select {
  position: relative;
}
form .form-select::before {
  content: "";
  top: 50%;
  right: 2.4rem;
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  pointer-events: none;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  background-image: url("../../assets/images/icons/icon-arrow.svg");
}
form .form-action {
  margin-top: 0.8rem;
}
form input {
  height: 4.8rem;
}
form textarea {
  resize: none;
  height: 20rem;
}
form select {
  padding: 1.2rem 4.8rem 1.2rem 2.4rem;
}
form input,
form textarea {
  padding: 1.2rem 2.4rem;
}
form input:hover, form input:focus, form input:not(:placeholder-shown),
form textarea:hover,
form textarea:focus,
form textarea:not(:placeholder-shown) {
  color: #1e293b;
  border-color: #dc2626;
}
form input::placeholder,
form textarea::placeholder {
  color: #1e293b;
}
form input,
form select,
form textarea {
  outline: 0;
  width: 100%;
  font-size: 1.6rem;
  transition: 0.4s ease-in-out;
  background-color: #efefef;
  border-radius: var(--radius);
  font-family: var(--font-title);
  border: 0.1rem solid transparent;
}

.g-recaptcha-wrap {
  padding: 0 !important;
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.wpcf7-not-valid-tip {
  right: 0;
  z-index: 4;
  bottom: -2.2rem;
  padding: 0.4rem;
  width: fit-content;
  position: absolute;
  border-radius: 0.5rem;
  background-color: red;
  color: white !important;
  font-size: 1.2rem !important;
}
.wpcf7-not-valid-tip::before {
  content: "";
  width: 0;
  height: 0;
  bottom: 100%;
  right: 1.6rem;
  position: absolute;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #ec1f26;
}

.wpcf7-response-output {
  color: #ec1f26;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  border: 0 !important;
  padding: 0 !important;
  margin: 2rem 0 0 0 !important;
}
@media screen and (max-width: 1200px) {
  .wpcf7-response-output {
    margin: 1.2rem 0 0 0 !important;
  }
}

.select2-results {
  overflow: hidden;
  background-color: white;
  border-radius: 0 !important;
  border: 0.1rem solid white;
  box-shadow: var(--box-shadow-1);
}

.select2-container .select2-dropdown {
  border: 0;
  background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #dc2626;
}

.banner {
  position: relative;
}
.banner-bg {
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  isolation: isolate;
  position: absolute;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-pos {
  z-index: 5;
  padding: 25rem 0;
  position: relative;
}
@media screen and (min-width: 1201px) {
  .banner-pos {
    min-height: 70.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .banner-pos {
    padding: 20rem 0;
  }
}
@media screen and (max-width: 576px) {
  .banner-pos {
    padding: 12rem 0;
  }
}
.banner-content .title-160 {
  font-size: 16rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.2621rem;
  display: none;
}
@media screen and (max-width: 1200px) {
  .banner-content .title-160 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 576px) {
  .banner-content .title-160 {
    font-size: 4.8rem;
  }
}
/*# sourceMappingURL=common.css.map */
