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

/*------------------------------------------------------------
	Media
------------------------------------------------------------*/
/*------------------------------------------------------------
	Flex Box
------------------------------------------------------------*/
:root {
  --font-pri: "Inter", sans-serif;
  --font-title: "Archivo Condensed", sans-serif;
  --header-index: 99;
  --header-fixed: 3.6rem;
  --header-height: 12rem;
}
@media screen and (max-width: 576px) {
  :root {
    --header-height: 10.2rem;
  }
}
:root {
  --pi-4: 0.4rem;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-20: 2rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
}
@media screen and (max-width: 1024px) {
  :root {
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-20: 1rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --pi-8: 0.4rem;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  font-weight: 400;
  font-size: 1.6rem;
  color: #131313;
  line-height: normal;
  overflow: hidden auto;
  background-color: #fafafa;
  font-family: var(--font-pri);
}
body .mona-empty {
  color: #333;
  font-weight: 600;
}
body .grecaptcha-badge {
  display: none !important;
}
body:has(.video-splide) .fancybox__thumbs, body:has(.fb) .fancybox__thumbs {
  display: none;
}
body:has(.hero) .breadcrumb-item {
  color: white;
}
body:has(.hero) .breadcrumb-item svg path {
  stroke: white;
}
body:has(.hero) .breadcrumb-item::before {
  background-color: white;
}
body.admin-bar .header {
  top: 3.2rem;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 4.6rem;
  }
}

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: 0 auto;
  padding: 0 1.6rem;
  max-width: 124.8rem;
}

.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 {
  top: 0;
  left: 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;
  }
}

.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 {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: 0.4s ease-in-out;
}

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

.social {
  gap: 1.2rem;
  user-select: none;
  display: flex;
  align-items: center;
}
.social-link {
  display: block;
  transition: 0.4s ease-in-out;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (min-width: 1201px) {
  .social-link:hover {
    transform: translateY(-0.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .social-link {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .social-link {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.hover-border {
  position: relative;
}
@media screen and (min-width: 1201px) {
  .hover-border:hover::before {
    left: 0;
    width: 100%;
  }
}
.hover-border::before {
  content: "";
  right: 0;
  width: 0;
  height: 0.2rem;
  bottom: -0.2rem;
  position: absolute;
  transition: 0.4s ease-in-out;
  background-color: #BD2C20;
}

.view-link {
  z-index: 5;
  gap: 0.8rem;
  font-weight: 600;
  line-height: 125%;
  position: relative;
  width: fit-content;
  color: #BD2C20;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
  font-family: var(--font-title);
}
.view-link img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(49%) saturate(2482%) hue-rotate(342deg) brightness(99%) contrast(99%);
  object-fit: contain;
  width: 1.6rem;
  height: 1.6rem;
}

.video-play {
  top: 50%;
  left: 50%;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  position: absolute;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
}
.video-play::before, .video-play::after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  border: 0.1rem solid white;
}
.video-play::before {
  animation: pulseAni 2s linear infinite;
}
.video-play::after {
  animation: pulseAni 2s 1s linear infinite;
}

.view-more {
  margin: 0 auto;
  width: fit-content;
}
@media screen and (min-width: 1201px) {
  .view-more:hover img {
    transform: rotate(270deg);
  }
}
.view-more .text-18 {
  gap: 0.8rem;
  line-height: 133%;
  color: #BD2C20;
  display: flex;
  align-items: center;
}
.view-more .text-18.is-active img {
  transform: rotate(270deg);
}
.view-more img {
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(49%) saturate(2482%) hue-rotate(342deg) brightness(99%) contrast(99%);
  transition: 0.4s ease-in-out;
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(90deg);
}

.tt {
  line-height: 120%;
}

.arrowAni {
  width: 100%;
  margin: 0 auto;
  user-select: none;
  max-width: 14.2rem;
  animation: arrDownAni 2s ease-in-out infinite;
}
.arrowAni img {
  width: 100%;
  object-fit: cover;
}

.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-56 {
  font-size: 5.6rem;
}
@media only screen and (max-width: 1200px) {
  .title-56 {
    font-size: 5.1rem;
  }
}
@media only screen and (max-width: 800px) {
  .title-56 {
    font-size: 4rem;
  }
}
.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: #FCC300;
}

.cl-white {
  color: white;
}

@media screen and (min-width: 577px) {
  .js-menu-search {
    position: relative;
  }
}
.js-menu-search .search {
  width: fit-content;
}
.js-menu-search button,
.js-menu-search .search {
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  padding: 0.6rem;
  margin: -0.6rem;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}
.js-menu-search button:hover,
.js-menu-search .search:hover {
  background-color: #BD2C20;
}
.js-menu-search button:hover img,
.js-menu-search .search:hover img {
  filter: brightness(0) invert(1);
}
.js-menu-search button img,
.js-menu-search .search img {
  object-fit: cover;
  transition: 0.4s ease-in-out;
  width: 2.4rem;
  height: 2.4rem;
}
.js-menu-search button img {
  filter: brightness(0) invert(0);
}
.js-menu-search.is-active .search {
  background-color: #BD2C20;
}
.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 {
  opacity: 0;
  width: 100%;
  min-width: 32rem;
  position: absolute;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  top: calc(100% + 2rem);
}
@media screen and (min-width: 1201px) {
  .search-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1200px) {
  .search-menu {
    right: -2rem;
  }
}
@media screen and (max-width: 576px) {
  .search-menu {
    right: 0;
    padding: 0 1.6rem;
    top: calc(100% - 2rem);
  }
}
.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: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 1200px) {
  .search-menu form .form-label {
    border-color: #d0d0d0;
  }
}
.search-menu form .form-label:hover {
  border-color: #BD2C20;
}
.search-menu form .form-label:has(input:focus) {
  border-color: #BD2C20;
}
.search-menu form input {
  border: 0;
  padding: 0;
  height: auto;
  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 phone-anim {
  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);
  }
}
@keyframes pulseAni {
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}
@keyframes arrDownAni {
  0% {
    opacity: 0;
    transform: translate(0, -1rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, 1rem);
  }
}
@keyframes rotateAni {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes thumbAni {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.breadcrumb {
  z-index: 6;
  position: relative;
  padding-top: 2.4rem;
}
.breadcrumb-list {
  row-gap: 0.8rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-item {
  font-size: 1.6rem;
  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: #BD2C20;
  }
  .breadcrumb-item:not(.is-current):hover svg path {
    stroke: #BD2C20;
  }
}
@media screen and (max-width: 576px) {
  .breadcrumb-item {
    font-size: 1.4rem;
  }
}
.breadcrumb-item svg {
  display: block;
  user-select: none;
  object-fit: contain;
  width: 2.4rem;
  height: 2.4rem;
}
.breadcrumb-item svg path {
  transition: 0.4s ease-in-out;
}
.breadcrumb-item:not(:first-child)::before {
  content: "";
  flex-shrink: 0;
  margin: 0 1.2rem;
  user-select: none;
  border-radius: 50%;
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  background-color: #131313;
}
.breadcrumb-item.is-current {
  font-weight: 500;
}
.breadcrumb-item:last-child {
  cursor: default;
  white-space: normal;
}
.breadcrumb-item:last-child > * {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.move-top {
  z-index: 97;
  gap: 0.8rem;
  display: flex;
  bottom: 3.2rem;
  cursor: pointer;
  position: fixed;
  user-select: none;
  transition: 0.6s ease-in-out;
}
@media screen and (min-width: 577px) {
  .move-top {
    opacity: 0;
    right: 0.8rem;
    visibility: hidden;
    flex-direction: column;
    transform: translateX(100%);
  }
}
@media screen and (max-width: 1200px) {
  .move-top {
    row-gap: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .move-top {
    bottom: 0;
    width: 100%;
    box-shadow: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
    padding: 0.661rem;
    background-color: white;
  }
}
.move-top.active {
  opacity: 1;
  transform: unset;
  visibility: visible;
}
@media screen and (max-width: 576px) {
  .move-top-social {
    display: flex;
    row-gap: 0.4rem;
    text-align: center;
    width: 25%;
    flex-direction: column;
  }
}
.move-top-social > a {
  box-shadow: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  animation: phone-anim 1s infinite ease-in-out;
}
@media screen and (max-width: 576px) {
  .move-top-social > a {
    margin: 0 auto;
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 577px) {
  .move-top-social img {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.move-top-back {
  display: flex;
  row-gap: 0.4rem;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .move-top-back {
    text-align: center;
    width: 25%;
  }
  .move-top-back .progress-wrap {
    margin: 0 auto;
  }
}
.move-top-text {
  font-weight: 500;
  font-size: 1.4rem;
  font-family: var(--font-title);
}
@media screen and (min-width: 577px) {
  .move-top-text {
    display: none;
  }
}

.progress-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  background-color: white;
  box-shadow: inset 0 0 0 0.2rem rgba(11, 24, 29, 0.2);
}
@media screen and (max-width: 576px) {
  .progress-wrap {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.progress-wrap .inner {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 576px) {
  .progress-wrap .inner {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.progress-wrap .inner img {
  width: 1.6rem;
  height: 1.6rem;
}

.progress-circle circle {
  fill: none;
  stroke-width: 4;
  stroke: #FCC300;
  box-sizing: border-box;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: all 0.2s linear;
}

.header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  box-shadow: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: 0.6s ease-in-out;
  height: var(--header-height);
  z-index: var(--header-index);
}
.header .custom-logo-link {
  max-width: 7.11rem;
}
@media screen and (max-width: 576px) {
  .header .custom-logo-link {
    max-width: 5.45rem;
  }
}
@media screen and (min-width: 1201px) {
  .header.is-fixed {
    transform: translateY(calc(var(--header-fixed) * -1));
  }
}
@media screen and (max-width: 1200px) {
  .header.is-hidden {
    transform: translateY(calc(var(--header-height) * -1));
  }
}
.header-heading {
  gap: 0.8rem;
  color: white;
  isolation: isolate;
  position: relative;
  padding: 0.821rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .header-heading {
    padding: 0.761rem 0;
  }
}
.header-heading::before {
  content: "";
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  position: absolute;
  transform: translateX(-50%);
  background-color: #BD2C20;
}
.header-heading .text-14 {
  line-height: 140%;
}
@media screen and (max-width: 576px) {
  .header-heading .text-14 {
    font-size: 1.2rem;
  }
}
.header-heading .link {
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 110%;
  display: flex;
  align-items: center;
  font-family: var(--font-title);
}
@media screen and (max-width: 576px) {
  .header-heading .link {
    font-size: 1.2rem;
  }
}
.header-heading .link::before {
  background-color: white;
}
.header-heading .link img {
  flex-shrink: 0;
  object-fit: contain;
  width: 1.6rem;
  height: 1.6rem;
}
.header-wrap {
  gap: 2.4rem;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1201px) {
  .header-wrap {
    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(--header-index) + 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: 2.4rem;
    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 (min-width: 1201px) {
  .header-nav .menu > .menu-item:hover > img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(49%) saturate(2482%) hue-rotate(342deg) brightness(99%) contrast(99%);
    transform: rotate(180deg);
  }
  .header-nav .menu > .menu-item:hover > .menu-link {
    color: #BD2C20;
  }
  .header-nav .menu > .menu-item:hover > .menu-link svg path {
    stroke: #BD2C20;
  }
  .header-nav .menu > .menu-item:hover > .child {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav .menu > .menu-item {
    border-bottom: 0.1rem solid #d0d0d0;
  }
}
.header-nav .menu > .menu-item > img {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: 0.4s ease-in-out;
}
.header-nav .menu > .menu-item > .menu-link svg {
  display: block;
  user-select: none;
  object-fit: contain;
  width: 2.4rem;
  height: 2.4rem;
}
.header-nav .menu > .menu-item > .menu-link svg path {
  transition: 0.4s ease-in-out;
}
.header-nav .menu > .menu-item.current-menu-item > img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(49%) saturate(2482%) hue-rotate(342deg) brightness(99%) contrast(99%);
}
.header-nav .menu > .menu-item.current-menu-item > .menu-link {
  font-weight: 500;
  color: #BD2C20;
}
.header-nav .menu > .menu-item.current-menu-item > .menu-link svg path {
  fill: #BD2C20;
  stroke: #BD2C20;
}
.header-nav .menu > .menu-item.is-active > img {
  transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .header-nav .menu > .menu-item:has(.menu-link svg) {
    display: none;
  }
}
.header-nav .menu > .menu-dropdown {
  position: relative;
}
.header-nav .menu > .menu-dropdown > .menu-link {
  width: calc(100% - 2.6rem);
}
@media screen and (max-width: 1200px) {
  .header-nav .menu-item {
    width: 100%;
    padding: 1.2rem;
  }
}
.header-nav .menu-link {
  display: block;
  font-size: 1.4rem;
  transition: 0.4s ease-in-out;
}
.header-nav_action {
  padding: 1.2rem;
}
@media screen and (min-width: 1201px) {
  .header-nav_action {
    display: none;
  }
}
.header-inner {
  gap: 2.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header-inner {
    margin-left: auto;
  }
}
.header-info {
  color: white;
  padding: 1.2rem;
  margin-top: auto;
  background-color: #BD2C20;
}
@media screen and (min-width: 1201px) {
  .header-info {
    display: none;
  }
}
.header-info .social-link {
  width: 2rem;
  height: 2rem;
}
.header-info .social-link img {
  filter: brightness(0) invert(1);
}
.header-action {
  gap: 2.4rem;
  display: flex;
  align-items: center;
}
.header-action .btn {
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
}
@media screen and (max-width: 1200px) {
  .header-action .btn {
    display: none;
  }
}

@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;
    box-shadow: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
    width: max-content;
    position: absolute;
    transition: 0.4s ease-in-out;
    pointer-events: none;
    border-radius: 0.8rem;
    flex-direction: column;
    top: calc(100% + 1.2rem);
    transform: translateX(-50%);
    background-color: white;
  }
  .child::before {
    content: "";
    left: 50%;
    bottom: 100%;
    height: 1.2rem;
    position: absolute;
    width: calc(100% - 4rem);
    transform: translateX(-50%);
    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: #131313;
}
.child .menu-link {
  color: #131313;
}
@media screen and (min-width: 1201px) {
  .child .menu-link {
    padding: 0.8rem;
    position: relative;
  }
  .child .menu-link::before {
    content: "";
    left: 0;
    bottom: 0;
    height: 0;
    width: 0.2rem;
    position: absolute;
    transition: 0.4s ease-in-out;
    background-color: #BD2C20;
  }
  .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: 4rem;
}
.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-span 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: #131313;
}
.menu-bar .menu-span span:nth-child(1) {
  margin-top: 0;
}

.footer {
  color: white;
  position: relative;
  background-color: #BD2C20;
}
@media screen and (max-width: 576px) {
  .footer {
    padding-bottom: 6rem;
  }
}
.footer .custom-logo-link {
  max-width: 15.4rem;
}
@media screen and (max-width: 767px) {
  .footer .custom-logo-link {
    max-width: 12rem;
  }
}
.footer .title-28 {
  line-height: 115%;
}
@media screen and (max-width: 576px) {
  .footer .title-28 {
    font-size: 1.6rem;
  }
}
.footer .menu {
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
}
.footer .menu-link {
  gap: 0.8rem;
  display: flex;
  line-height: 150%;
  transition: 0.4s ease-in-out;
}
@media screen and (min-width: 1201px) {
  .footer .menu-link:hover {
    color: #FCC300;
  }
}
@media screen and (max-width: 576px) {
  .footer .menu-link {
    font-size: 1.4rem;
  }
}
.footer .menu-link img {
  flex-shrink: 0;
  object-fit: contain;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 576px) {
  .footer .menu-link img {
    width: 2rem;
    height: 2rem;
  }
}
.footer-wrap {
  padding: 6.4rem 0;
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    gap: 2.4rem;
  }
}
.footer-heading {
  gap: 2.4rem;
  position: relative;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .footer-heading {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .footer-heading {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer-heading {
    padding-bottom: 2.4rem;
  }
}
.footer-heading::before {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}
.footer-heading .form {
  gap: 4.8rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer-heading .form {
    gap: 2.4rem;
  }
}
.footer-heading .form > .title-28 {
  max-width: 23rem;
}
@media screen and (max-width: 576px) {
  .footer-heading .form > .title-28 {
    display: none;
  }
}
.footer-heading form {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .footer-heading form {
    max-width: 48.8rem;
  }
}
.footer-heading form .form-label {
  position: relative;
  align-items: center;
  flex-direction: unset;
}
.footer-heading form input {
  border: 0;
  color: white;
  height: 5.6rem;
  border-radius: 10rem;
  padding-right: 13.8rem;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 1024px) {
  .footer-heading form input {
    height: 4.8rem;
  }
}
.footer-heading form input::placeholder {
  color: white;
}
.footer-heading form .btn {
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.footer-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(2 * var(--pi-32));
  margin: 0 calc(-1 * var(--pi-32));
}
@media screen and (max-width: 576px) {
  .footer-group {
    --pi-32: 1rem;
  }
}
.footer-block {
  padding: 0 var(--pi-32);
}
@media screen and (min-width: 1025px) {
  .footer-block:first-child {
    width: 33.3333333333%;
  }
  .footer-block:nth-child(3) {
    width: 27.5%;
  }
  .footer-block:last-child {
    width: 19.1666666667%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .footer-block:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .footer-box {
    gap: 1.2rem;
  }
}
.footer-bottom {
  padding: 1.6rem 0;
  position: relative;
  gap: 1.2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    padding: 1.2rem 0;
  }
}
@media screen and (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
  }
}
.footer-bottom::before {
  content: "";
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: 100%;
  position: absolute;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(74deg, #FCC300 3.53%, #FFEE98 67.5%, #FEEC94 72.14%, #FEE988 76.77%, #FEE475 81.41%, #FDDC59 86.04%, #FDD236 90.68%, #FCC60C 95.31%, #FCC300 96.24%);
}
.footer-bottom > * {
  z-index: 5;
}
.footer-bottom .copyright {
  gap: 0.4rem;
  display: flex;
  align-items: center;
}
.footer-bottom .copyright img {
  flex-shrink: 0;
  object-fit: cover;
  width: 1.6rem;
  height: 1.6rem;
}
.footer-bottom .copyright .text-14 {
  line-height: 142%;
  color: #131313;
}
.footer-bottom .connect {
  display: flex;
  flex-wrap: wrap;
  user-select: none;
  margin: 0 calc(-1 * var(--pi-20));
}
.footer-bottom .connect > * {
  padding: 0 var(--pi-20);
}
.footer-bottom .connect > *:not(:last-child) {
  border-right: 0.1rem solid rgba(19, 19, 19, 0.5);
}
.footer-bottom .connect-img {
  position: relative;
}
.footer-bottom .connect-img .pic {
  display: block;
  max-width: 8.4rem;
}
.footer-bottom .connect-img .pic img {
  width: 100%;
  object-fit: cover;
}

.btn {
  z-index: 3;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .btn {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .btn {
    font-size: 1.5rem;
  }
}
.btn {
  flex-shrink: 0;
  color: white;
  cursor: pointer;
  font-weight: 600;
  overflow: hidden;
  user-select: none;
  line-height: 133%;
  column-gap: 0.8rem;
  text-align: center;
  position: relative;
  width: fit-content;
  transition: 0.4s ease-in-out;
  border-radius: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1.504rem 3.2rem;
  background-color: #BD2C20;
  font-family: var(--font-title);
  border: 0.1rem solid transparent;
}
@media screen and (min-width: 1201px) {
  .btn:hover {
    color: white;
    border-color: #FCC300;
  }
  .btn:hover::after {
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .btn {
    padding: 1.2rem 2.4rem;
  }
}
.btn::after {
  content: "";
  top: 0;
  right: 0;
  width: 0;
  z-index: -1;
  height: 100%;
  position: absolute;
  transition: 0.4s ease-in-out;
  background-color: #FCC300;
}
.btn span {
  line-height: inherit;
}
.btn img {
  object-fit: cover;
  transition: 0.4s ease-in-out;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .btn img {
    width: 2rem;
    height: 2rem;
  }
}
.btn.mx-auto {
  margin: 0 auto;
}
.btn.w-100 {
  width: 100%;
}
.btn:disabled {
  pointer-events: none;
}
.btn-white {
  color: #BD2C20;
  background-color: white;
}
.btn-white.border-red {
  border-color: #BD2C20;
}
@media screen and (min-width: 1201px) {
  .btn-white.border-red:hover {
    border-color: #FCC300;
  }
}
.btn .wpcf7-spinner {
  top: 50%;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  transform: translate(-50%, -50%);
}

form .form-wrap {
  display: flex;
  row-gap: 1.6rem;
  flex-direction: column;
}
form .form-group {
  gap: 3.2rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  form .form-group {
    gap: 1.6rem;
  }
}
form .form-box {
  width: calc(50% - 1.6rem);
}
@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 {
  line-height: 150%;
  color: #131313;
}
@media screen and (max-width: 767px) {
  form .form-text {
    font-size: 1.4rem;
  }
}
form .form-text sup {
  color: #BD2C20;
}
form .form-select {
  position: relative;
}
form .form-select::before {
  content: "";
  top: 50%;
  right: 1.6rem;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  pointer-events: none;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  background-image: url("../../assets/images/icons/icon-chevron.svg");
}
form input {
  height: 4.8rem;
}
form textarea {
  resize: none;
  height: 10rem;
}
form select {
  padding: 1.2rem 4.8rem 1.2rem 2.4rem;
}
form input,
form textarea {
  padding: 1.2rem 2.4rem;
}
@media screen and (max-width: 767px) {
  form input,
  form textarea {
    padding: 1.2rem 1.6rem;
  }
}
form input::placeholder,
form textarea::placeholder {
  color: #999;
  font-style: italic;
}
@media screen and (max-width: 576px) {
  form input::placeholder,
  form textarea::placeholder {
    font-size: 1.4rem;
  }
}
form input,
form select,
form textarea {
  border: 0;
  outline: 0;
  width: 100%;
  border-radius: 0;
  font-weight: 400;
  font-size: 1.6rem;
  transition: 0.4s ease-in-out;
  font-family: var(--font-pri);
  background-color: transparent;
  border-bottom: 0.1rem solid #999;
}

.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 {
  text-align: center;
  margin: 2rem 0 0 0 !important;
}
@media screen and (max-width: 1200px) {
  .wpcf7-response-output {
    font-size: 1.4rem !important;
    margin: 1.2rem 0 0 0 !important;
  }
}

.select2-results {
  box-shadow: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: white;
  border-radius: 0 !important;
  border: 0.1rem solid white;
}

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

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FCC300;
}
/*# sourceMappingURL=common.css.map */
