header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  z-index: 11;
  padding: 0 4rem;
  top: 4rem;
}
@media only screen and (max-width: 1370px) {
  header {
    padding: 0 1rem;
    top: 1rem;
  }
}
@media only screen and (max-width: 1370px) {
  header.light {
    padding: 0 1rem;
    top: 1rem;
  }
}
header.light nav {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  header.light nav {
    background: #191919;
  }
}
header.light nav:after {
  content: "";
  background: #fff;
  transform: translateY(0%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  header.light nav:after {
    background: #191919;
  }
}
header nav {
  width: 100%;
  height: 8rem;
  display: flex;
  padding: 0 4rem;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
header nav.acitve {
  background: #fff;
}
@media only screen and (max-width: 1370px) {
  header nav {
    padding: 0 2rem;
  }
}
header nav:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 1.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-clip: padding-box;
  top: 0;
  left: 0;
  transform: translateY(0%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: padding-box;
  top: -46px;
  left: 0;
  border-radius: 1.6rem;
  transform: translateY(-100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  header nav::after {
    display: none;
  }
}
header .logo {
  width: 12rem;
  height: 5.2rem;
  background: url(/assets/images/main/logo.svg) no-repeat center;
  background-size: 12rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header .right {
  display: flex;
  justify-content: flex-end;
}
header .right > div {
  display: flex;
  gap: 4rem;
  margin-left: 4rem;
}
@media only screen and (max-width: 1370px) {
  header .right > div {
    gap: 2rem;
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  header .right > div {
    gap: 2rem;
  }
}
header .right ul {
  display: flex;
  gap: 6rem;
  align-items: center;
}
@media only screen and (max-width: 1370px) {
  header .right ul {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  header .right ul {
    display: none;
  }
}
header .right a,
header .right i {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  gap: 1rem;
  mix-blend-mode: difference;
}
@media only screen and (max-width: 1370px) {
  header .right a,
  header .right i {
    font-size: 1.5rem;
  }
}
header .right a svg,
header .right i svg {
  fill: #fff;
}
header .right-nav {
  display: flex;
  align-items: center;
  gap: 4rem;
}
header.scrolled {
  height: 8rem;
}
header.scrolled nav ul li a {
  color: #fff !important;
}
header.scrollUp {
  top: -8rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  header.scrollUp .logo {
    width: 14rem;
    background-size: 13rem;
  }
}
header .checkbox-menu {
  position: absolute;
  display: block;
  height: 2.4rem;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
header .mobile-menu {
  position: relative;
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  header .mobile-menu {
    display: flex !important;
  }
}
header .mobile-menu .mobile-menu-close {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  cursor: pointer;
}
header .mobile-menu .mobile-menu-close.visible {
  z-index: 8;
}
header .hamburger-lines {
  display: block;
  height: 2.4rem;
  width: 2.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05rem;
}
header .hamburger-lines .line {
  display: block;
  height: 0.14rem;
  width: 2.4rem;
  background: #fff;
}
header .hamburger-lines .line1 {
  transform-origin: 0.4rem 0%;
  transition: transform 0.4s ease-in-out;
}
header .hamburger-lines .line3 {
  transform-origin: 0.2rem 100%;
  transition: transform 0.4s ease-in-out;
}
header input[type=checkbox]:checked ~ .menu-items {
  transform: translateX(0);
}
header input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
header input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
header input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 1024px) {
  header .lang-button {
    display: none !important;
  }
}

.hamburger-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.hamburger-menu .menu-top {
  width: 100%;
  position: absolute;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 4rem;
}
.hamburger-menu .hamburger-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 100;
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding-top: 14rem;
  z-index: 1000;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .hamburger-menu-content {
    background: #000;
  }
}
.hamburger-menu .hamburger-menu-content:before {
  content: "";
  position: absolute;
  min-width: 60vh;
  min-height: 60vh;
  background: url(/assets/images/main/menu-bg.svg) no-repeat;
  background-size: cover;
  bottom: 6rem;
  right: 10rem;
  opacity: 0.05;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .hamburger-menu-content:before {
    display: none;
  }
}
.hamburger-menu .hamburger-menu-content::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  background: url(/assets/images/main/menu-bg-orange.svg) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 2rem;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .hamburger-menu-content::after {
    display: flex;
  }
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar {
  width: 0;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-track {
  background-color: #000000;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transform: translateZ(0);
  background-color: #555555;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-button {
  background-color: #000000;
  background-image: url();
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-button:vertical:increment {
  background-position: -64px -16px;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-button:vertical:decrement {
  background-position: 0 -16px;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-button:horizontal:increment {
  background-position: -32px -16px;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-button:horizontal:decrement {
  background-position: -96px -16px;
}
.hamburger-menu .hamburger-menu-content::-webkit-scrollbar-corner {
  background-color: #000000;
}
.hamburger-menu .hamburger-menu-content .top-bar {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  border-top: solid #D8D8D8 0.1rem;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .hamburger-menu-content .top-bar {
    display: none;
  }
}
.hamburger-menu .hamburger-menu-content .top-bar .menu-close {
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  margin-top: 2rem;
  margin-right: 2rem;
}
.hamburger-menu .hamburger-menu-content .top-bar .menu-close svg {
  margin-right: 0.5rem;
}
.hamburger-menu .menu-items {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .menu-items {
    display: none;
  }
}
.hamburger-menu .menu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2rem 6vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10%);
}
.hamburger-menu .menu-tab {
  width: 100%;
  min-height: 50rem;
  max-height: 50rem;
}
.hamburger-menu .menu-tab .entry-content > *:not(:last-child) {
  margin-bottom: 1rem;
}
.hamburger-menu .menu-tab .tabs-container {
  padding: 2rem;
}
.hamburger-menu .menu-tab .main-menu {
  border-right: solid rgba(25, 25, 25, 0.2) 0.1rem;
  padding-right: 4rem;
  width: 35rem;
  margin-right: 4rem;
}
@media only screen and (max-width: 1920px) {
  .hamburger-menu .menu-tab .main-menu {
    width: 30rem;
  }
}
.hamburger-menu .menu-tab .tabs {
  display: flex;
  width: 100%;
  padding-bottom: 10rem;
  padding: 0 10vw;
}
@media only screen and (max-width: 1920px) {
  .hamburger-menu .menu-tab .tabs {
    padding: 0;
  }
}
.hamburger-menu .menu-tab .tabs > ul {
  list-style-type: none;
  flex-shrink: 0;
}
.hamburger-menu .menu-tab .tabs > ul a, .hamburger-menu .menu-tab .tabs > ul .tab-link {
  width: 100%;
  display: flex;
  font-size: clamp(2.2rem, 12vw, 2.4rem);
  color: rgba(25, 25, 25, 0.5);
  font-weight: bold;
  line-height: 1;
  height: 8rem;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1920px) {
  .hamburger-menu .menu-tab .tabs > ul a, .hamburger-menu .menu-tab .tabs > ul .tab-link {
    font-size: clamp(1.8rem, 12vw, 2rem);
  }
}
.hamburger-menu .menu-tab .tabs > ul a:hover, .hamburger-menu .menu-tab .tabs > ul a:focus, .hamburger-menu .menu-tab .tabs > ul a:active, .hamburger-menu .menu-tab .tabs > ul .tab-link:hover, .hamburger-menu .menu-tab .tabs > ul .tab-link:focus, .hamburger-menu .menu-tab .tabs > ul .tab-link:active {
  color: #191919;
}
.hamburger-menu .menu-tab .tabs > ul a:hover path, .hamburger-menu .menu-tab .tabs > ul a:focus path, .hamburger-menu .menu-tab .tabs > ul a:active path, .hamburger-menu .menu-tab .tabs > ul .tab-link:hover path, .hamburger-menu .menu-tab .tabs > ul .tab-link:focus path, .hamburger-menu .menu-tab .tabs > ul .tab-link:active path {
  stroke: #191919;
  opacity: 1;
}
.hamburger-menu .menu-tab .tabs > ul a.light, .hamburger-menu .menu-tab .tabs > ul .tab-link.light {
  font-weight: 300;
}
.hamburger-menu .menu-tab .tabs > ul a svg, .hamburger-menu .menu-tab .tabs > ul .tab-link svg {
  stroke-width: 1;
}
.hamburger-menu .menu-tab .tabs > ul a path, .hamburger-menu .menu-tab .tabs > ul .tab-link path {
  stroke: #191919;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger-menu .menu-tab .tabs > ul a:hover:not(.active), .hamburger-menu .menu-tab .tabs > ul .tab-link:hover:not(.active) {
  color: #191919;
}
.hamburger-menu .menu-tab .tabs > ul a > span, .hamburger-menu .menu-tab .tabs > ul .tab-link > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hamburger-menu .menu-tab .tabs > ul a > span.tab-label, .hamburger-menu .menu-tab .tabs > ul .tab-link > span.tab-label {
  display: none;
}
.hamburger-menu .menu-tab .tabs > ul a.active, .hamburger-menu .menu-tab .tabs > ul .tab-link.active {
  color: #191919;
}
.hamburger-menu .menu-tab .tabs > ul a.active path, .hamburger-menu .menu-tab .tabs > ul .tab-link.active path {
  stroke: #191919;
  opacity: 1;
}
.hamburger-menu .menu-tab .tabs section {
  display: none;
  word-wrap: break-word;
  margin-top: 1rem;
}
.hamburger-menu .menu-tab .tabs section figure {
  max-width: 20rem;
  height: 20rem;
  margin: 0;
}
@media only screen and (max-width: 1920px) {
  .hamburger-menu .menu-tab .tabs section figure {
    max-width: 18rem;
    height: 18rem;
  }
}
.hamburger-menu .menu-tab .tabs section figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 1rem;
  transform: translateZ(0);
}
.hamburger-menu .menu-tab .tabs section > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
}
.hamburger-menu .menu-tab .tabs section.active {
  display: flex;
}
.hamburger-menu .menu-tab .tabs section.active-content > * {
  opacity: 1;
  transform: translateY(0);
}
.hamburger-menu .mobile-menu-content {
  height: 100%;
  display: flex;
  height: 75vh;
  overflow-y: auto;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 3rem 8rem;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .hamburger-menu .mobile-menu-content {
    opacity: 1;
    visibility: visible;
  }
}
.hamburger-menu .mobile-menu-content .drilldown {
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hamburger-menu .mobile-menu-content .drilldown .drilldown-sub {
  display: none;
}
.hamburger-menu .mobile-menu-content .drilldown-root {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.hamburger-menu .mobile-menu-content .drilldown-root li:hover a {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger-menu .mobile-menu-content .drilldown-root li a {
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger-menu .mobile-menu-content .submenu {
  gap: 2.6rem;
}
.hamburger-menu .mobile-menu-content .submenu li a {
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hamburger-menu .mobile-menu-content .drilldown-back {
  width: fit-content;
  height: 4.8rem;
  display: flex;
  align-items: center;
  border: solid rgba(255, 255, 255, 0.2) 0.1rem;
  border-radius: 1.4rem;
  padding: 0 2rem;
}
.hamburger-menu .lang {
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tab-content {
  display: flex;
  flex-direction: column;
}
.tab-content li {
  margin-bottom: 0 !important;
}
.tab-content .tab-title a, .tab-content .link a {
  width: 100%;
  font-size: 1.8rem;
  color: rgba(25, 25, 25, 0.5);
  line-height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.tab-content .tab-title a svg, .tab-content .link a svg {
  stroke-width: 1;
}
.tab-content .tab-title a path, .tab-content .link a path {
  stroke: #191919;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.tab-content .tab-title a:hover, .tab-content .tab-title a:focus, .tab-content .tab-title a:active, .tab-content .link a:hover, .tab-content .link a:focus, .tab-content .link a:active {
  border-bottom: none;
  outline: 0;
}
.tab-content .tab-title a:hover path, .tab-content .tab-title a:focus path, .tab-content .tab-title a:active path, .tab-content .link a:hover path, .tab-content .link a:focus path, .tab-content .link a:active path {
  stroke: #191919;
  opacity: 1;
}
.tab-content .button-menu {
  border: solid #00AEEF 0.1rem !important;
  border-radius: 2rem;
  padding: 0 1.6rem;
  color: #00AEEF !important;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}
.tab-content .button-menu:first-child {
  margin-bottom: 2rem;
}
.tab-content .button-menu:hover {
  border: solid #00AEEF 0.1rem !important;
}
.tab-content .button-menu svg path {
  stroke: #00AEEF !important;
}

.vertical-tabs {
  position: relative;
}
.vertical-tabs .tabs-menu {
  position: relative;
  float: left;
  width: 30rem;
  padding-left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
}
.vertical-tabs .tabs-menu li {
  position: relative;
  list-style: none;
}
.vertical-tabs .tabs-menu li a {
  width: 100%;
  font-size: 1.8rem;
  color: rgba(25, 25, 25, 0.5);
  line-height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.vertical-tabs .tabs-menu li a svg {
  stroke-width: 1;
}
.vertical-tabs .tabs-menu li a path {
  stroke: #191919;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.vertical-tabs .tabs-menu li a:hover, .vertical-tabs .tabs-menu li a:focus, .vertical-tabs .tabs-menu li a:active {
  border-bottom: none;
  outline: 0;
}
.vertical-tabs .tabs-menu li a:hover path, .vertical-tabs .tabs-menu li a:focus path, .vertical-tabs .tabs-menu li a:active path {
  stroke: #191919;
  opacity: 1;
}
.vertical-tabs .tabs-menu li.active a {
  z-index: 2;
  color: #191919;
}
.vertical-tabs .tabs-content {
  display: flex;
}
.vertical-tabs .tabs-content .content {
  display: none;
  margin-left: 6rem;
  background: none;
}
.vertical-tabs .tabs-content .content ul {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.vertical-tabs .tabs-content .content ul li a {
  font-size: 1.8rem;
  color: #191919;
  line-height: 1.4;
  display: flex;
}
.vertical-tabs .tabs-content .content.active {
  display: block;
}
.vertical-tabs .tabs-content .content .button-menu {
  margin-bottom: 1rem;
}

.menu > .menu-item {
  position: relative;
  display: inline-block;
}
.menu > .menu-item > a {
  display: flex;
  font-weight: bold;
  line-height: inherit;
  height: 6rem;
  align-items: center;
  border: none;
  outline: none;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.35rem;
  pointer-events: none;
  border: none;
  outline: none;
  display: none;
}
.menu > .menu-item > a .expand:before, .menu > .menu-item > a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.menu > .menu-item:hover > a {
  color: #fff;
  opacity: 0.5;
}
.menu > .menu-item:hover > a .expand::before, .menu > .menu-item:hover > a .expand::after {
  background: var(--color-pink-700);
}
.menu > .menu-item > a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}
.menu > .menu-item > .sub-menu {
  padding: 1rem 2rem;
  position: absolute;
  top: 100%;
  left: -50%;
  min-width: 35rem;
  height: auto;
  background: #fff;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 1rem;
  flex-direction: column;
  align-items: baseline;
  gap: 0;
  -webkit-box-shadow: 0 6.5px 10.5px -1px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 6.5px 10.5px -1px rgba(0, 0, 0, 0.12);
  box-shadow: 0 6.5px 10.5px -1px rgba(0, 0, 0, 0.12);
}
.menu > .menu-item > .sub-menu > .menu-item {
  display: flex;
  border-bottom: solid rgba(25, 25, 25, 0.1) 0.1rem;
}
.menu > .menu-item > .sub-menu > .menu-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  height: 6rem;
  line-height: inherit;
  color: #fff;
}
.menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #fff;
}
.menu > .menu-item > .sub-menu > .menu-item:last-child {
  border: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media only screen and (min-width: 1024px) {
  .header .menu > .menu-item-child:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .header .menu > .menu-item-child:hover > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media only screen and (max-width: 1024px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
  .header .menu {
    width: 100%;
    height: auto;
    margin: 1rem 0;
    background: #fff;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-child > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    padding: 0.625rem 1.25rem;
    color: var(--color-black);
  }
  .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
    background: var(--color-black);
  }
  .header .menu > .menu-item-child.active > a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 0.625rem 2rem;
    color: var(--color-black);
  }
  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.search-open {
  cursor: pointer;
}

.search-content {
  padding: 10rem 10rem;
  position: fixed;
  width: 100%;
  height: 70vh;
  top: -100%;
  left: 0;
  z-index: 10;
  background: #191919;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  .search-content {
    padding: 10rem 4rem;
  }
}
.search-content.visible {
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.search-content .search {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: solid rgba(216, 216, 216, 0.3) 0.1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.search-content .search form {
  width: 100%;
}
.search-content .search form input {
  width: 100%;
  height: auto;
  background: none;
  font-size: 6rem;
  color: #fff;
  border: none;
}
@media only screen and (max-width: 1024px) {
  .search-content .search form input {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .search-content .search form input {
    font-size: 2rem;
  }
}
.search-content .search button {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.search-content .search button:hover {
  background: #F79A33;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.search-content .fadeup {
  opacity: 0;
  visibility: hidden;
}
.search-content .search-close {
  cursor: pointer;
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .search-content .search-close {
    top: -8rem;
  }
}
.search-content .search-close svg {
  width: 2.6rem;
  fill: #fff;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 6rem 4rem;
  position: relative;
  will-change: transform;
  border-top: solid #D8D8D8 0.1rem;
}
@media only screen and (max-width: 1370px) {
  footer {
    padding: 6rem 1rem;
  }
}
footer .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .item {
    flex-direction: column;
  }
}
footer .item .logo {
  max-width: 15rem;
}
footer .nav {
  display: flex;
  width: 100%;
}
footer .nav span {
  font-size: 2rem;
  color: #191919;
  margin-bottom: 3rem;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  footer .nav span {
    font-size: 1.7rem;
  }
}
footer .nav .menu {
  display: flex;
  gap: 10rem;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  footer .nav .menu {
    gap: 6rem;
    margin: 4rem 0 0;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  footer .nav .menu {
    flex-direction: column;
  }
}
footer .nav .menu ul {
  display: flex;
  flex-direction: column;
}
footer .nav .menu ul li a {
  font-size: 1.8rem;
  color: #191919;
  line-height: 3rem;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  footer .nav .menu ul li a {
    font-size: 1.6rem;
  }
}
footer .nav .menu ul li a:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #F79A33;
}
footer .nav .menu .social {
  display: flex;
  flex-direction: row;
}
footer .nav .menu .social i svg {
  width: 1.8rem;
}
footer .newsletter {
  margin-left: 6rem;
  max-width: 34rem;
}
@media only screen and (max-width: 768px) {
  footer .newsletter {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
footer .newsletter small {
  font-size: 1.2rem;
}
footer .newsletter form {
  display: flex;
  flex-direction: row;
  background: #F2F2F2;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
footer .newsletter form input {
  background: none;
  border: solid transparent 0.1rem;
}
footer .newsletter form input:focus {
  border: solid transparent 0.1rem;
}
footer .newsletter form .button {
  border-radius: 2rem;
  padding: 0 2.4rem;
}
footer .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  footer .bottom {
    flex-direction: column;
    gap: 1.2rem;
  }
}
footer .bottom li {
  font-size: 1.6rem;
  color: #191919;
}
footer .bottom li a {
  font-size: 1.6rem;
  color: #191919;
  text-decoration: underline;
}

body,
html {
  font-family: "Manrope";
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  list-style: none;
  box-shadow: none;
}

a,
a:active,
a:focus {
  outline: none;
}

img {
  width: 100%;
  vertical-align: middle;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}
body.no-scroll {
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
}

hr {
  width: 100%;
  height: 0.1rem;
  display: flex;
  background: #D8D8D8;
  margin-bottom: 8rem;
}

@keyframes fadein {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    right: 0;
  }
}
.fadein {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.fadein-inner {
  opacity: 0;
  transition: opacity 0.1s 0.5s;
}
.fadein.active .fadein-inner {
  opacity: 1;
}
.fadein.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F79A33;
  top: 0;
  z-index: 100;
  animation: fadein 1s ease-in-out forwards;
}

.center {
  margin: auto;
}

a figure {
  overflow: hidden;
  position: relative;
}
a figure img {
  transform: scale(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
a figure:hover img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transform: scale(1.2);
}

figure {
  overflow: hidden;
  position: relative;
}
figure.image-v {
  height: 50rem;
}
figure.image-v-l {
  height: 70rem;
}
@media only screen and (max-width: 768px) {
  figure.image-v-l {
    height: 50vh;
  }
}
figure.image-v-l-2 {
  height: 80rem;
  border-radius: 5rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  figure.image-v-l-2 {
    height: auto;
    border-radius: 2rem;
  }
}
figure.image-v-l-2 figcaption span {
  font-size: clamp(5.6rem, 12vw, 8rem);
}
@media only screen and (max-width: 768px) {
  figure.image-v-l-2 figcaption span {
    font-size: clamp(4.2rem, 12vw, 4rem);
  }
}
figure.image-h {
  height: 50rem;
}
@media only screen and (max-width: 1920px) {
  figure.image-h {
    height: 35rem;
  }
}
@media only screen and (max-width: 768px) {
  figure.image-h {
    height: 50vh;
  }
}
figure.square {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
figure.cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
figure.parallax img {
  position: absolute;
  width: 100%;
  height: 140%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.before:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.before figcaption {
  z-index: 2;
}

.start-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .start-content {
    height: 85dvh;
  }
}
.start-content .slideup {
  width: 100%;
  height: 100%;
}
.start-content video,
.start-content figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .start-content .video-content .caption .info {
    padding-top: 10rem;
  }
}
.start-content .caption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  padding: 16rem 5vw 0;
  color: #fff;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .start-content .caption {
    padding: 0 2rem;
    bottom: 6rem;
  }
}
.start-content .caption .small-head {
  margin-bottom: 4rem;
}
.start-content .caption .bottom {
  margin-top: 10rem;
}
.start-content .caption .info {
  max-width: 66rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.start-content .caption h1 {
  max-width: 82rem;
  font-size: clamp(5.6rem, 12vw, 9rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 1370px) {
  .start-content .caption h1 {
    font-size: clamp(5.6rem, 12vw, 6.2rem);
    max-width: 70rem;
  }
}
@media only screen and (max-width: 768px) {
  .start-content .caption h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    max-width: 70rem;
  }
}
.start-content .caption p {
  line-height: 1.2;
  text-align: center;
  margin: 4rem 0;
}
.start-content .caption .contact-services {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: solid #fff 0.1rem;
  border-radius: 5rem;
  padding: 3rem;
}
.start-content .caption .contact-services span,
.start-content .caption .contact-services a {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .start-content .caption .contact-services span,
  .start-content .caption .contact-services a {
    font-size: 2rem;
  }
}
.start-content .caption .contact-services a {
  margin-top: 1rem;
}
.start-content .caption .contact-services a:hover {
  text-decoration: underline;
}
.start-content .bottom {
  position: relative;
  z-index: 1;
  margin: 0 5vw 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .start-content .bottom {
    margin: 0 5vw 4rem;
  }
}
.start-content .bottom .scroll {
  cursor: pointer;
  height: 9rem;
}
.start-content .bottom .scroll:hover svg rect {
  fill: #000;
}
.start-content .bottom .scroll:hover svg path {
  fill: #fff;
  stroke: #fff;
}
.start-content .bottom .scroll svg rect {
  fill: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.start-content .bottom .scroll svg path {
  fill: #000;
  stroke: #000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.start-content .breadcrumb {
  display: flex;
  gap: 0 2rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  .start-content .breadcrumb {
    display: none;
  }
}
.start-content .breadcrumb li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.start-content .breadcrumb li a {
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.start-content .breadcrumb li a:hover {
  opacity: 0.5;
}
.start-content .breadcrumb li svg {
  margin-left: 2rem;
}
.start-content .caption-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.start-content .caption-content .caption {
  padding: 0 5vw 0;
}
.start-content .caption-content small {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.faq {
  width: 100%;
  display: flex;
}
.faq .faq-content {
  width: 100%;
}
.faq small {
  width: 40rem;
  font-size: clamp(1rem, 12vw, 1.6rem);
  font-weight: 500;
  color: #fff;
}
.faq h6 {
  font-size: clamp(6rem, 12vw, 9rem);
  letter-spacing: -3.41667px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
  .faq h6 {
    font-size: clamp(5rem, 12vw, 7rem);
    margin-top: 2rem;
  }
}
.faq .link {
  background: #e2ecea;
  margin-bottom: 1rem;
  overflow: hidden;
  width: 100%;
  height: 10.6rem;
  display: flex;
  align-items: center;
  padding-left: 4rem;
  letter-spacing: -1.2375px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .faq .link {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}
.faq .link svg {
  margin-left: 3rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.faq .link:hover svg {
  margin-left: 4rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.faq .faq-content .button {
  margin-bottom: 6rem;
}
.faq .accordion-menu {
  width: 100%;
}
.faq .accordion-menu li {
  overflow: hidden;
  border-top: solid #979797 0.1rem;
}
.faq .accordion-menu li:last-child {
  border-bottom: solid #979797 0.1rem;
}
.faq .accordion-menu li.open .dropdownlink i .icon-open {
  display: none;
}
.faq .accordion-menu li.open .dropdownlink i .icon-close {
  display: flex;
}
.faq .accordion-menu .dropdownlink {
  cursor: pointer;
  display: flex;
  font-size: clamp(2rem, 6vw, 3rem);
  color: #191919;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease-out;
  min-height: 9rem;
  align-items: center;
  padding: 4rem 0 4rem 0;
}
@media only screen and (max-width: 1024px) {
  .faq .accordion-menu .dropdownlink {
    padding: 2rem 6rem 2rem 2rem;
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
}
.faq .accordion-menu .dropdownlink .plus {
  position: absolute;
  width: 5.8rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 4rem;
  font-size: 1.8rem;
  background: #393939;
  border-radius: 100vmax;
}
@media only screen and (max-width: 768px) {
  .faq .accordion-menu .dropdownlink .plus {
    right: 1rem;
  }
}
.faq .accordion-menu .dropdownlink .plus svg {
  fill: #fff;
}
@media only screen and (max-width: 1024px) {
  .faq .accordion-menu .dropdownlink .plus svg {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.faq .accordion-menu .dropdownlink .plus .icon-open {
  display: flex;
}
.faq .accordion-menu .dropdownlink .plus .icon-close {
  display: none;
}
.faq .accordion-menu .dropdownlink .icon {
  width: 5rem;
  margin-right: 4rem;
  display: flex;
  justify-content: center;
}
.faq .accordion-menu .ion-ios-arrow-down {
  right: 2rem;
  left: auto;
}
.faq .submenuItems {
  display: none;
}
.faq .submenuItems li {
  padding: 1rem 4rem 4rem;
  position: relative;
  border: none;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .faq .submenuItems li {
    padding: 1rem 2rem 2rem;
  }
}
.faq .submenuItems p {
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  color: #191919;
  line-height: 2.2rem;
  margin-right: 1.4rem;
}
.faq .submenuItems p a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .faq .submenuItems p {
    font-size: clamp(1.4rem, 6vw, 1.6rem);
  }
}
.faq .submenuItems p strong {
  font-weight: 500;
}

.arge {
  position: relative;
  padding-bottom: 8rem !important;
}
.arge:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70vh;
  background: #191919;
  left: 0;
  bottom: 0;
}
.arge .cards .fadein {
  border-radius: 2rem;
}

.tags {
  display: flex;
  gap: 2rem;
}
.tags li {
  font-size: 1.6rem;
  font-weight: 500;
  color: #191919;
}
.tags li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #191919;
}

.news {
  border-top: solid #191919 0.1rem;
  border-bottom: solid #191919 0.1rem;
  display: flex;
  padding-left: 5vw;
}
.news h5 {
  margin: 6rem 0;
  padding-right: 10rem;
}
.news small {
  font-size: 1.4rem;
}
.news .item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 0;
}
.news .item img {
  border-radius: 2rem;
}

.blog-content {
  border-radius: 0 0 2rem 2rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

.contact-content {
  background: #F79A33;
  height: 70rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
  margin: 0 0 8rem;
}
@media only screen and (max-width: 1024px) {
  .contact-content {
    height: auto;
    padding: 8rem 1rem;
  }
}
.contact-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5rem;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 0 0 2rem 2rem;
}
.contact-content::before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 10rem;
  background: url(/assets/images/main/contact-bg-logo.svg) no-repeat right bottom;
  opacity: 0.1;
}
@media only screen and (max-width: 1024px) {
  .contact-content::before {
    background-size: contain;
    right: 0;
    width: 30rem;
  }
}
.contact-content .caption {
  max-width: 90rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: relative;
}
.contact-content .caption p {
  margin: 4rem;
}
.contact-content form {
  max-width: 80rem;
  width: 100%;
  display: flex;
}
.contact-content form .items {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-content form .items {
    flex-direction: column;
  }
}
.contact-content form .items .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-content form .items .item .ns {
    flex-direction: column;
  }
}
.contact-content form .items .item div {
  display: flex;
  gap: 1rem;
}
.contact-content form .items .item input,
.contact-content form .items .item textarea {
  width: 100%;
  border: none;
}
.contact-content form .items .item textarea {
  height: 100%;
}
.contact-content form button {
  margin-left: auto;
  margin-top: 1rem;
}

.content-list {
  margin: 4rem 0;
}
.content-list.row {
  gap: 0 8rem;
}
@media only screen and (max-width: 1024px) {
  .content-list.row {
    gap: 4rem 0;
  }
}
.content-list .item {
  display: flex;
  margin-bottom: 5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1024px) {
  .content-list .item {
    margin-bottom: 0;
  }
}
.content-list .item i {
  width: 4rem;
  height: 4rem;
  background: #F79A33;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  flex-shrink: 0;
  margin-right: 2rem;
}
.content-list .item .caption {
  display: flex;
  flex-direction: column;
}
.content-list .item .caption span {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1024px) {
  .content-list .item .caption span {
    font-size: 2rem;
  }
}
.content-list .item .caption p {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  .content-list .item .caption p {
    font-size: 1.6rem;
  }
}
.content-list .item .caption a {
  color: #F79A33;
}

.content-doc-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content-doc-list li {
  width: 100%;
  border: solid #C3C3C3 0.1rem;
}
.content-doc-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #191919;
  min-height: 10rem;
}
@media only screen and (max-width: 1024px) {
  .content-doc-list li a {
    font-size: 1.4rem;
    min-height: 6rem;
  }
}
.content-doc-list li a i svg {
  width: 3rem;
}
@media only screen and (max-width: 1024px) {
  .content-doc-list li a i svg {
    width: 2.6rem;
  }
}

.contact-card {
  max-width: 72rem;
  margin: auto;
  border: solid #DEDEDE 0.1rem;
  border-radius: 2rem;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 2.8rem;
  gap: 2rem;
}
.contact-card a {
  color: #191919;
  font-weight: bold;
}
.contact-card svg {
  width: 3rem;
  fill: #00AEEF;
}

.detail-start {
  display: flex;
  flex-direction: column;
  padding: 14rem 5rem 0;
}
@media only screen and (max-width: 1024px) {
  .detail-start {
    padding: 10rem 1rem 0;
  }
}
.detail-start.grey {
  background: #F2F2F2;
  padding: 14rem 5rem 8rem !important;
}
.detail-start.dark .breadcrumb li a {
  color: #fff;
}
.detail-start.head figure {
  height: 70rem;
}
@media only screen and (max-width: 1024px) {
  .detail-start.head figure {
    height: 100%;
    margin-bottom: 4rem;
  }
}
.detail-start.head figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .detail-start.head figcaption {
    padding-top: 8rem;
  }
}
.detail-start.head img {
  display: none;
}
.detail-start.head.image {
  position: relative;
  padding: 0;
}
.detail-start.head.image img {
  display: block;
}
.detail-start.head.image figure {
  position: relative;
  overflow: hidden;
}
.detail-start.head.image figure:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.detail-start.head.image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-start.head.image figure figcaption {
  top: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.detail-start.head.image figure figcaption h1 {
  color: #fff;
  text-align: left;
}
.detail-start .breadcrumb {
  display: flex;
  gap: 0 2rem;
}
@media only screen and (max-width: 1024px) {
  .detail-start .breadcrumb {
    display: none;
  }
}
.detail-start .breadcrumb li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.detail-start .breadcrumb li a {
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.detail-start .breadcrumb li a:hover {
  color: #F79A33;
}
.detail-start .breadcrumb li svg {
  margin-left: 2rem;
}
.detail-start .heading {
  margin: 6rem auto 0 auto;
  position: relative;
  z-index: 3;
}
.detail-start .heading form {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  width: 100%;
}
.detail-start .heading .selectbox-items {
  padding-top: 0;
}
.detail-start .heading.center {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 120rem;
  width: 100%;
  gap: 5rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .detail-start .heading.center {
    gap: 3rem;
  }
}
.detail-start .heading.center h1 {
  width: 100%;
  margin: 0;
  justify-content: center;
}
.detail-start .heading.center p {
  font-size: 2.2rem;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .detail-start .heading.center p {
    font-size: 1.6rem;
  }
}
.detail-start .heading h1 {
  display: flex;
  padding: 0;
  margin-bottom: 4rem;
  font-weight: 400;
  text-align: center;
}
.detail-start .heading p {
  max-width: 70rem;
  color: #191919;
  line-height: 1.3;
}
.detail-start .buttons {
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .detail-start .buttons {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2rem;
  }
}
.detail-start .search {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  position: relative;
  background: #F2F2F2;
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 1024px) {
  .detail-start .search {
    margin-top: 2rem;
    padding: 1rem;
  }
}
.detail-start .search input {
  width: 100%;
  background: none;
  font-size: 4rem;
  color: #191919;
}
@media only screen and (max-width: 1024px) {
  .detail-start .search input {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .detail-start .search input {
    font-size: 2rem;
  }
}
.detail-start .search button {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.detail-start .search button:hover {
  background: #F79A33;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.product-detail .start {
  display: flex;
  gap: 8rem;
}
@media only screen and (max-width: 1024px) {
  .product-detail .start {
    flex-direction: column-reverse;
    margin-top: 2rem;
    gap: 2rem;
  }
}
.product-detail .start .item,
.product-detail .start figure {
  flex: 1;
}
.product-detail .start .caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-detail .start .caption h1 {
  padding: 0 0 4rem;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .product-detail .start .caption h1 {
    padding: 0 0 2rem;
  }
}
.product-detail .start .caption .button {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .product-detail .start .caption .button {
    margin-top: 1.4rem;
    width: 100%;
    justify-content: space-between;
  }
}
.product-detail .start figure {
  background: #F2F2F2;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
@media only screen and (max-width: 1024px) {
  .product-detail .start figure {
    height: 50vh;
  }
}
.product-detail .start figure img {
  max-width: 70rem;
}
@media only screen and (max-width: 1024px) {
  .product-detail .start figure img {
    max-width: 50rem;
  }
}

.history-content {
  position: relative;
}
.history-content:before {
  content: "";
  position: absolute;
  height: 40rem;
  inset: auto 0 0 0;
  background: #F2F2F2;
}

.load-more {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}

.technicial-spec {
  display: flex;
  flex-direction: column;
  margin-bottom: 14rem;
}
@media only screen and (max-width: 1024px) {
  .technicial-spec {
    margin-bottom: 4rem;
  }
}
.technicial-spec .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 4rem;
}
@media only screen and (max-width: 1370px) {
  .technicial-spec .items .item {
    padding: 0;
  }
}
.technicial-spec .items i {
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .technicial-spec .items i {
    height: 6rem;
  }
}
@media only screen and (max-width: 1024px) {
  .technicial-spec .items i svg {
    height: 6rem;
  }
}
.technicial-spec .items span {
  font-size: 3.4rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
@media only screen and (max-width: 1370px) {
  .technicial-spec .items span {
    font-size: 2rem;
  }
}
.technicial-spec .items p {
  font-size: 1.8rem;
  line-height: 1.3;
  color: rgba(25, 25, 25, 0.5);
}
@media only screen and (max-width: 1370px) {
  .technicial-spec .items p {
    font-size: 1.4rem;
  }
}

.docs-list {
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
}
@media only screen and (max-width: 1024px) {
  .docs-list {
    padding: 0;
  }
}
.docs-list .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6rem 2rem;
  border: solid #D8D8D8 0.1rem;
  border-radius: 1rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 2rem;
}
.docs-list .item:hover {
  border: solid #D8D8D8 0.1rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #FAFAFA;
}
.docs-list .item span {
  font-size: 2rem;
  font-weight: 500;
  color: #191919;
}
@media only screen and (max-width: 1024px) {
  .docs-list .item span {
    font-size: 1.6rem;
  }
}
.docs-list .item i svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: #000000;
}

.subscription {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.questioning {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .questioning {
    flex-direction: column-reverse;
  }
}
.questioning .speed-status {
  width: 40rem;
  border: solid #D8D8D8 0.1rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem 2rem;
}
@media only screen and (max-width: 768px) {
  .questioning .speed-status {
    width: 100%;
    padding: 2rem;
  }
}
.questioning .speed-status video {
  width: 24rem;
  height: 14rem;
  object-fit: cover;
  margin: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .questioning .speed-status video {
    margin: 2rem 0;
    width: 15rem;
    height: 8rem;
  }
}
.questioning .speed-status span {
  font-size: 3.4rem;
  line-height: 1.2;
  color: #191919;
}
@media only screen and (max-width: 768px) {
  .questioning .speed-status span {
    font-size: 2.6rem;
  }
}
.questioning .speed-status span strong {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .questioning .speed-status span strong {
    font-size: 3rem;
  }
}
.questioning .speed-status small {
  font-size: 1.2rem;
  color: rgba(25, 25, 25, 0.65);
  margin: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .questioning .speed-status small {
    margin: 2rem 0;
  }
}
.questioning .speed-status small mark {
  background: none;
  color: #2ac152;
}

.blog-detail.container {
  margin: 0;
}
.blog-detail .blog-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid #D8D8D8 0.1rem;
  padding: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .blog-detail .blog-info {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.blog-detail .blog-info span {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(25, 25, 25, 0.5);
}
.blog-detail .blog-info .right {
  display: flex;
  gap: 10rem;
  align-items: center;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .blog-detail .blog-info .right {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 648px) {
  .blog-detail .blog-info .right {
    flex-direction: column;
    gap: 1rem;
  }
}
.blog-detail .blog-info .right .share {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.blog-detail .blog-info .right .share span {
  color: #191919;
}
.blog-detail .blog-info .right .share ul {
  display: flex;
  gap: 1rem;
}
.blog-detail .blog-info .right .share ul li i {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: solid #191919 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.blog-detail .video {
  position: relative;
  padding-bottom: 56.25%;
}
.blog-detail .video iframe {
  position: absolute;
  height: 100% !important;
}
.blog-detail article {
  max-width: 130rem;
  display: flex;
  flex-direction: column;
  margin: 5rem auto;
  gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .blog-detail article {
    padding-right: 0;
    margin-left: 0;
    padding-top: 6rem;
    margin: 0 auto;
  }
}
.blog-detail article img {
  border-radius: 2rem;
}
.blog-detail article a {
  color: #0092c9;
}
.blog-detail article h6 {
  font-weight: bold;
}
.blog-detail article h5 {
  font-size: clamp(2.8rem, 12vw, 3rem);
  font-weight: 500;
}
.blog-detail article h4 {
  font-size: clamp(3.4rem, 12vw, 3.8rem);
  font-weight: 500;
}
.blog-detail article h3 {
  font-size: clamp(3.4rem, 12vw, 4.4rem);
  font-weight: 500;
}
.blog-detail article h2 {
  font-size: clamp(4rem, 12vw, 4.8rem);
  font-weight: 500;
}
.blog-detail article p {
  line-height: 1.4;
}
.blog-detail article p img {
  margin-top: 2rem;
}
.blog-detail article ol, .blog-detail article ul {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.blog-detail article ol li, .blog-detail article ul li {
  font-size: 1.6rem;
  list-style: circle;
  margin-left: 2rem;
}
.blog-detail .next-link {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.blog-detail .next-link span {
  font-size: 8rem;
  color: #191919;
  font-weight: 500;
}
.blog-detail .next-link small {
  font-size: 2.6rem;
  color: #191919;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-detail .next-link small svg {
  width: 2.4rem;
}

#sticky-nav-menu {
  z-index: 100 !important;
  width: 100%;
  border-radius: 1rem;
  z-index: 11 !important;
  padding: 0px 5vw;
  margin-top: 10rem;
}
@media only screen and (max-width: 1370px) {
  #sticky-nav-menu {
    padding: 0 1rem;
  }
}
#sticky-nav-menu.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  bottom: 2rem;
}
#sticky-nav-menu ul {
  height: 8rem;
  background: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 4rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 1370px) {
  #sticky-nav-menu ul {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  #sticky-nav-menu ul {
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 2rem 2rem 1rem;
  }
}
#sticky-nav-menu ul li {
  border-bottom: solid transparent 0.2rem;
  text-align: center;
}
#sticky-nav-menu ul li.active {
  border-bottom: solid #F79A33 0.2rem;
}
#sticky-nav-menu ul li.active a {
  color: #F79A33;
}
#sticky-nav-menu ul li a {
  font-size: 2rem;
  color: #191919;
  font-weight: 500;
  height: 5rem;
  display: flex;
  align-items: center;
  border-bottom: solid transparent 0.2rem;
}
@media only screen and (max-width: 1024px) {
  #sticky-nav-menu ul li a {
    font-size: 1.6rem;
  }
}
#sticky-nav-menu ul li a.active {
  color: #F79A33;
  border-bottom: solid #F79A33 0.2rem;
}

.features-content {
  display: flex;
}
.features-content .accordion-menu-content {
  width: 100%;
  gap: 4rem;
}
.features-content figure {
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
}

.docs {
  border-bottom: solid #D8D8D8 0.1rem;
  padding-bottom: 6rem;
}
.docs.row {
  gap: 2rem;
}
.docs a {
  border: solid #191919 0.1rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  color: #191919;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 1rem;
}
.docs a:hover {
  background: #191919;
  color: #fff;
}
.docs a:hover svg {
  fill: #fff;
}
.docs a svg {
  fill: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.share-content {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 1024px) {
  .share-content {
    flex-direction: column;
  }
}
.share-content .share-text {
  max-width: 40rem;
  width: 100%;
  border: solid #D8D8D8 0.1rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .share-content .share-text {
    max-width: 100%;
    padding: 6rem;
  }
}
.share-content .share-image {
  max-width: 77rem;
  width: 100%;
  border: solid #D8D8D8 0.1rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  padding: 6rem 0;
}
@media only screen and (max-width: 1024px) {
  .share-content .share-image {
    max-width: 100%;
  }
}
.share-content .share-image img {
  max-width: 70rem;
}
@media only screen and (max-width: 1024px) {
  .share-content .share-image img {
    max-width: 100%;
  }
}

.list-content {
  max-width: 140rem;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 4rem;
}
.list-content .items {
  width: 100%;
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .list-content .items {
    flex-direction: column;
  }
}
.list-content .items .item {
  flex: 1;
}
.list-content .items .headline {
  margin-bottom: 2rem;
}
.list-content .items .headline span {
  font-size: 3.4rem;
  font-weight: 500;
  margin-top: 2rem;
  display: flex;
}
.list-content .items ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.list-content .items ul.list li {
  padding: 2rem;
}
@media only screen and (max-width: 1024px) {
  .list-content .items ul.list li {
    padding: 1rem;
  }
}
.list-content .items ul.list li:hover, .list-content .items ul.list li:focus {
  pointer-events: none;
  background: none;
}
.list-content .items ul li {
  width: 100%;
  border: solid #D8D8D8 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-content .items ul li .doc {
  display: flex;
  align-items: center;
}
.list-content .items ul li .doc i svg {
  width: 3.6rem;
  margin-right: 2rem;
}
.list-content .items ul li .doc svg path {
  fill: #000;
}
.list-content .items ul li:hover {
  background: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-content .items ul li:hover rect {
  fill: #fff;
}
.list-content .items ul li:hover path {
  fill: #191919;
  stroke: #191919;
}
.list-content .items ul li:hover span {
  color: #fff;
}
.list-content .items ul li:hover .doc {
  display: flex;
  align-items: center;
}
.list-content .items ul li:hover .doc i svg path {
  fill: #fff;
}
.list-content .items ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-content .items ul li rect {
  fill: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-content .items ul li path {
  fill: #fff;
  stroke: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-content .items ul li span {
  font-size: 1.8rem;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-content .items ul li .rate {
  font-size: 7rem;
  font-weight: 500;
  color: #191919;
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 1024px) {
  .list-content .items ul li .rate {
    font-size: 4rem;
  }
}
.list-content .items ul li .rate sup {
  font-size: 4rem;
}
@media only screen and (max-width: 1024px) {
  .list-content .items ul li .rate sup {
    font-size: 2rem;
  }
}
.list-content .items ul li .date {
  background: #F79A33;
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 4rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .list-content .items ul li .date {
    width: 5rem;
    height: 8rem;
    font-size: 2.4rem;
  }
}
.list-content .items ul li .date small {
  font-size: 1.6rem;
}
@media only screen and (max-width: 1024px) {
  .list-content .items ul li .date small {
    font-size: 1.2rem;
  }
}
.list-content .items .button {
  margin-left: auto;
}

.list-card-content {
  max-width: 140rem;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
.list-card-content .items {
  width: 100%;
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .list-card-content .items {
    flex-direction: column;
    gap: 2rem;
  }
}
.list-card-content .items .item {
  flex: 1;
}
.list-card-content .items ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.list-card-content .items ul li:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.list-card-content .items ul li:hover a span {
  width: 100%;
}
.list-card-content .items ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #F2F2F2;
  padding: 4rem;
  border-radius: 2rem;
  gap: 8rem;
  position: relative;
  overflow: hidden;
}
.list-card-content .items ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 4rem;
  background: url(/assets/images/main/menu-bg.svg) no-repeat right;
  background-size: 16rem;
  opacity: 0.02;
}
.list-card-content .items ul li a span {
  width: 98%;
  font-size: 2rem;
  font-weight: 600;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  justify-content: space-between;
}
.list-card-content .items ul li a .date {
  font-size: 1.6rem;
  color: #191919;
  opacity: 0.5;
}
.list-card-content .items .button {
  margin-left: auto;
}
.list-card-content .buttons a {
  margin-left: auto;
}

.error-content {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20rem 0 6rem;
  gap: 4rem;
}
.error-content h1 {
  text-align: center;
  color: #F79A33;
  font-weight: 500;
}
.error-content h1 strong {
  font-weight: bold;
}
.error-content p {
  max-width: 70rem;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.cookies-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 1.6rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-clip: padding-box;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 2rem 2rem 0 0;
}
@media only screen and (max-width: 1024px) {
  .cookies-bar {
    padding: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .cookies-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
.cookies-bar.disable {
  display: none;
}
.cookies-bar span {
  font-size: 1.8rem;
  max-width: 70%;
  width: 100%;
}
.cookies-bar span a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .cookies-bar span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .cookies-bar span {
    max-width: 100%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .cookies-bar .button {
    height: 4rem;
  }
}

.sticky-content-menu {
  position: fixed;
  top: 0;
  left: 5vw !important;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  top: 50%;
  transform: translateY(50%);
  z-index: 1;
  max-width: 70rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .sticky-content-menu {
    left: 1rem !important;
  }
}
.sticky-content-menu .sticky-menu-button {
  width: auto;
  height: 5.6rem;
  padding: 0 2rem;
  background: #191919;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #fff;
  gap: 2rem;
  cursor: pointer;
  position: relative;
}
.sticky-content-menu .sticky-menu-button .checkbox {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.sticky-content-menu .sticky-menu-button .hamburger-lines {
  display: block;
  height: 2.4rem;
  width: 2.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05rem;
}
.sticky-content-menu .sticky-menu-button .hamburger-lines .line {
  display: block;
  height: 0.14rem;
  width: 2.4rem;
  background: #fff;
}
.sticky-content-menu .sticky-menu-button .hamburger-lines .line1 {
  transform-origin: 0.4rem 0%;
  transition: transform 0.4s ease-in-out;
}
.sticky-content-menu .sticky-menu-button .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
.sticky-content-menu .sticky-menu-button .hamburger-lines .line3 {
  transform-origin: 0.2rem 100%;
  transition: transform 0.4s ease-in-out;
}
.sticky-content-menu .sticky-menu-button input[type=checkbox]:checked ~ .menu-items {
  transform: translateX(0);
}
.sticky-content-menu .sticky-menu-button input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
.sticky-content-menu .sticky-menu-button input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
.sticky-content-menu .sticky-menu-button input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
.sticky-content-menu .sticky-menu-items {
  padding: 2rem 2rem 2rem 2rem;
  background: #191919;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  top: calc(100% + 2.4rem);
  border-radius: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  will-change: transform;
}
@media only screen and (max-width: 1024px) {
  .sticky-content-menu .sticky-menu-items {
    flex-direction: column;
    height: 25rem;
    overflow: auto;
    flex-wrap: nowrap;
  }
}
.sticky-content-menu .sticky-menu-items.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  top: calc(100% + 0.5rem);
  will-change: transform;
}
.sticky-content-menu .sticky-menu-items li {
  width: 33%;
  border-left: dashed rgba(255, 255, 255, 0.15) 0.1rem;
  padding-left: 2rem;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .sticky-content-menu .sticky-menu-items li {
    width: 100%;
  }
}
.sticky-content-menu .sticky-menu-items li:hover::before {
  color: #00AEEF;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.sticky-content-menu .sticky-menu-items li:hover a {
  color: #00AEEF;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.sticky-content-menu .sticky-menu-items li::before {
  content: ".";
  position: absolute;
  top: -12px;
  left: -5px;
  width: auto;
  height: 100%;
  font-size: 4rem;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.sticky-content-menu .sticky-menu-items li a {
  display: flex;
  font-size: 1.6rem;
  color: #fff;
  line-height: 4rem;
  margin: 0.6rem 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.toast-message {
  display: none;
}

.detail-content {
  padding: 0 15vw;
}
@media only screen and (max-width: 768px) {
  .detail-content {
    padding: 0 5vw;
  }
}
@media only screen and (max-width: 768px) {
  .detail-content .pin-spacer {
    height: auto !important;
    padding: 0px 0px 700px !important;
  }
}
.detail-content > div {
  margin-bottom: 7rem;
}
@media only screen and (max-width: 768px) {
  .detail-content > div {
    margin-bottom: 4rem;
  }
}
.detail-content h6 {
  font-size: clamp(3rem, 12vw, 3rem);
  margin-bottom: 1.4rem;
}
.detail-content p {
  font-size: clamp(1.6rem, 12vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.5px;
  padding: 0;
  text-indent: 0;
  margin-top: 0;
}
.detail-content p a {
  color: #191919;
}
.detail-content p strong {
  font-weight: 500;
}
.detail-content.doc > div {
  margin-bottom: 8rem;
}
.detail-content.doc ol, .detail-content.doc ul {
  display: list-item;
  padding-left: 2rem;
  margin: 2rem 0;
}
.detail-content.doc ol li, .detail-content.doc ul li {
  font-size: clamp(1.6rem, 12vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: -0.5px;
  list-style: circle;
  padding: 0.5rem 0;
}
.detail-content.doc ol li a, .detail-content.doc ul li a {
  color: #191919;
}
.detail-content.doc p {
  margin-bottom: 2rem;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content table {
  width: 100%;
  margin: 18px 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.detail-content table tr {
  margin-bottom: 2px;
}
.detail-content table th {
  background-color: #eee;
  padding: 1rem 0 1rem 1rem;
}
.detail-content table td {
  padding: 1rem 0 1rem 1rem;
}
.detail-content .bottom {
  display: flex;
  flex-direction: column;
}
.detail-content .bottom h6 {
  width: 100%;
  text-align: center;
}
.detail-content .bottom p {
  max-width: 80%;
}
@media only screen and (max-width: 768px) {
  .detail-content .bottom p {
    max-width: 100%;
  }
}

.map {
  width: 100%;
  height: 80vh;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .map {
    height: 60vh;
  }
}
.map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: grayscale(1);
}

.selectbox-items {
  max-width: 80rem;
  padding-top: 6rem;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.authorized-dealer {
  position: relative;
  z-index: 10;
}
.authorized-dealer p {
  max-width: 80rem;
  margin: auto;
  text-align: center;
}
.authorized-dealer .button.dark {
  margin: 4rem auto;
}
.authorized-dealer .items {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  gap: 2rem;
}
.authorized-dealer .items .item {
  width: 100%;
  padding: 4rem 2rem;
  border: solid #C3C3C3 0.1rem;
  font-size: 2rem;
  line-height: 2;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .authorized-dealer .items .item {
    font-size: 1.6rem;
  }
}
.authorized-dealer .items .item span {
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .authorized-dealer .items .item span {
    font-size: 2rem;
  }
}
.authorized-dealer .items .item .certificate {
  display: flex;
  margin-top: 4rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .authorized-dealer .items .item .certificate {
    flex-direction: column;
    align-items: flex-start;
  }
}
.authorized-dealer .items .item .certificate img {
  width: 10rem;
}
@media only screen and (max-width: 768px) {
  .authorized-dealer .items .item .certificate img {
    width: 6rem;
  }
}
.authorized-dealer .items .item .certificate p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
  max-width: 50rem;
  padding-left: 2rem;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .authorized-dealer .items .item .certificate p {
    padding-left: 0;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}

.managers-list.row {
  gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .managers-list.row {
    gap: 2rem;
  }
}
.managers-list .item {
  border: solid #C3C3C3 0.1rem;
  border-radius: 2rem;
  padding: 4rem;
  height: fit-content;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .managers-list .item {
    padding: 2rem;
  }
}
.managers-list .item.bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/assets/images/main/symbol.svg) no-repeat top;
  background-size: 80%;
  background-position: 2rem 2rem;
  z-index: -1;
}
@media only screen and (max-width: 1920px) {
  .managers-list .item.bg::before {
    background-position: 1rem 1rem;
  }
}
.managers-list .item figure {
  border-radius: 2rem;
}
.managers-list .item figure img {
  height: 70rem;
  object-fit: cover;
}
@media only screen and (max-width: 1920px) {
  .managers-list .item figure img {
    height: 40rem;
  }
}
.managers-list .item .caption {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.managers-list .item .caption span {
  font-size: 2.8rem;
  font-weight: bold;
  color: #191919;
}
.managers-list .item .caption small {
  font-size: 2rem;
  color: #191919;
  margin-top: 1rem;
}
.managers-list .item .mail {
  border-top: solid #D8D8D8 0.1rem;
  border-bottom: solid #D8D8D8 0.1rem;
  color: #7F7F7F;
  height: 5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list .item .mail:hover {
  border-top: solid #191919 0.1rem;
  border-bottom: solid #191919 0.1rem;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list .item .social {
  margin-top: 2rem;
}
.managers-list .item .social i {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: solid #191919 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list .item .social i:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #191919;
}
.managers-list .item .social i:hover svg {
  fill: #fff;
}
.managers-list .item .social i svg {
  width: 2rem;
}

.managers-list-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 1500px) {
  .managers-list-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .managers-list-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.managers-list-content.type-2 {
  display: flex;
  margin-bottom: 4rem;
  justify-content: center;
}
.managers-list-content.type-2 .item {
  width: 32.2%;
}
@media only screen and (max-width: 1500px) {
  .managers-list-content.type-2 .item {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .managers-list-content.type-2 .item {
    width: 100%;
  }
}
.managers-list-content .item {
  grid-column: span 1;
  border: solid #00AEEF 0.1rem;
  border-radius: 1.2rem;
  padding: 4rem;
  height: fit-content;
  position: relative;
  display: flex;
  gap: 2rem;
  max-width: 100%;
}
.managers-list-content .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 101%;
  top: -2px;
  left: -1px;
  background: url(/assets/images/icons/line.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1920px) {
  .managers-list-content .item {
    padding: 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .managers-list-content .item {
    padding: 2rem 2rem 4rem;
  }
}
.managers-list-content .item figure {
  flex-shrink: 0;
  padding-right: 2rem;
  overflow: visible;
  cursor: pointer;
}
.managers-list-content .item figure:hover img {
  transform: scale(1);
}
@media only screen and (max-width: 1920px) {
  .managers-list-content .item figure {
    padding-right: 6rem;
  }
}
@media only screen and (max-width: 1024px) {
  .managers-list-content .item figure {
    padding-right: 4rem;
  }
}
.managers-list-content .item figure img {
  width: 24rem;
  height: 30rem;
  object-fit: cover;
  border-radius: 2rem;
  filter: grayscale(1);
}
@media only screen and (max-width: 1920px) {
  .managers-list-content .item figure img {
    width: 20rem;
    height: 25rem;
  }
}
@media only screen and (max-width: 1024px) {
  .managers-list-content .item figure img {
    width: 15rem;
    height: 21rem;
  }
}
.managers-list-content .item .text-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.managers-list-content .item .text-caption .caption {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.managers-list-content .item .text-caption .caption span {
  font-size: 2.8rem;
  font-weight: bold;
  color: #191919;
}
@media only screen and (max-width: 1920px) {
  .managers-list-content .item .text-caption .caption span {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .managers-list-content .item .text-caption .caption span {
    font-size: 1.8rem;
  }
}
.managers-list-content .item .text-caption .caption small {
  font-size: 2rem;
  color: #191919;
  margin-top: 1rem;
}
@media only screen and (max-width: 1024px) {
  .managers-list-content .item .text-caption .caption small {
    font-size: 1.6rem;
  }
}
.managers-list-content .item .text-caption .mail {
  border-top: solid #D8D8D8 0.1rem;
  border-bottom: solid #D8D8D8 0.1rem;
  color: #7F7F7F;
  height: 5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list-content .item .text-caption .mail:hover {
  border-top: solid #191919 0.1rem;
  border-bottom: solid #191919 0.1rem;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list-content .item .text-caption .social {
  margin-top: 2rem;
}
.managers-list-content .item .text-caption .social i {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: solid #191919 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.managers-list-content .item .text-caption .social i:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #191919;
}
.managers-list-content .item .text-caption .social i:hover svg {
  fill: #fff;
}
.managers-list-content .item .text-caption .social i svg {
  width: 2rem;
  fill: #000;
}

.manager-detail {
  max-width: 180rem;
  width: 100%;
  display: flex;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .manager-detail {
    flex-direction: column;
  }
}
.manager-detail figure {
  width: 50rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .manager-detail figure {
    width: 40rem;
  }
}
@media only screen and (max-width: 768px) {
  .manager-detail figure {
    width: 100%;
  }
}
.manager-detail figure img {
  height: 50vh;
  object-fit: cover;
  border-radius: 2rem;
}
@media only screen and (max-width: 1024px) {
  .manager-detail figure img {
    height: 60rem;
  }
}
@media only screen and (max-width: 768px) {
  .manager-detail figure img {
    height: 40vh;
  }
}
.manager-detail .content {
  padding-left: 10rem;
}
@media only screen and (max-width: 1920px) {
  .manager-detail .content {
    padding-left: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .manager-detail .content {
    padding-left: 0;
  }
}
.manager-detail .caption {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.manager-detail .caption span {
  font-size: 5rem;
  font-weight: bold;
  color: #191919;
}
@media only screen and (max-width: 768px) {
  .manager-detail .caption span {
    font-size: 3rem;
  }
}
.manager-detail .caption small {
  font-size: 2.8rem;
  color: #191919;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .manager-detail .caption small {
    font-size: 1.8rem;
  }
}
.manager-detail .mail {
  border-top: solid #D8D8D8 0.1rem;
  border-bottom: solid #D8D8D8 0.1rem;
  color: #7F7F7F;
  height: 5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .manager-detail .mail {
    font-size: 1.4rem;
  }
}
.manager-detail .mail:hover {
  border-top: solid #191919 0.1rem;
  border-bottom: solid #191919 0.1rem;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.manager-detail .social {
  margin-top: 2rem;
}
.manager-detail .social i {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: solid #191919 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.manager-detail .social i:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #191919;
}
.manager-detail .social i:hover svg {
  fill: #fff;
}
.manager-detail .social i svg {
  width: 2rem;
}
.manager-detail article {
  margin-top: 6rem;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .manager-detail article {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.approval-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 16rem 4rem;
}
@media only screen and (max-width: 1024px) {
  .approval-content {
    height: auto;
    padding: 12rem 1rem;
  }
}
.approval-content .caption {
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #F79A33;
  color: #fff;
  position: relative;
  border-radius: 2rem;
  padding: 10rem 4rem;
}
.approval-content .caption::before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 10rem;
  background: url(/assets/images/main/contact-bg-logo.svg) no-repeat right bottom;
  opacity: 0.1;
}
@media only screen and (max-width: 1024px) {
  .approval-content .caption::before {
    background-size: contain;
    right: 0;
    width: 30rem;
  }
}
.approval-content .caption p {
  margin: 4rem;
}
.approval-content form {
  max-width: 80rem;
  width: 100%;
  display: flex;
}
.approval-content form .items {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .approval-content form .items {
    flex-direction: column;
  }
}
.approval-content form .items .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .approval-content form .items .item .ns {
    flex-direction: column;
  }
}
.approval-content form .items .item div {
  display: flex;
  gap: 1rem;
}
.approval-content form .items .item input,
.approval-content form .items .item textarea {
  width: 100%;
  border: none;
}
.approval-content form .items .item textarea {
  height: 100%;
}
.approval-content form button {
  margin-left: auto;
  margin-top: 1rem;
}

.search-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-list li a {
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid #D8D8D8 0.1rem;
  font-size: 2rem;
  color: #191919;
}
@media only screen and (max-width: 768px) {
  .search-list li a {
    font-size: 1.6rem;
  }
}
.search-list li a:hover i {
  background: #F79A33;
}
.search-list li a i {
  width: 5rem;
  height: 5rem;
  background: #000;
  border-radius: 1rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 2rem;
}
.search-list li a i svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: #fff;
}
.search-list li a i:hover {
  background: #F79A33;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.sustainability-logos {
  max-width: 180rem;
  margin: auto;
  padding: 6rem 2rem;
}

.content-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}
.content-breadcrumb .breadcrumb {
  display: flex;
  gap: 0 2rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  .content-breadcrumb .breadcrumb {
    display: none;
  }
}
.content-breadcrumb .breadcrumb li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  color: #191919;
}
.content-breadcrumb .breadcrumb li a {
  color: #979797;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.content-breadcrumb .breadcrumb li a:hover {
  opacity: 0.5;
}
.content-breadcrumb .breadcrumb li svg {
  margin-left: 2rem;
}

.youtube-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

.message-content {
  padding: 0 !important;
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .message-content {
    flex-direction: column;
    gap: 0;
  }
}
.message-content figure {
  width: 75rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 1920px) {
  .message-content figure {
    width: 45rem;
  }
}
@media only screen and (max-width: 1024px) {
  .message-content figure {
    width: 100%;
  }
}
.message-content figure img {
  width: 100%;
  height: 80rem;
  border-radius: 2rem;
  object-fit: cover;
  filter: grayscale(1);
  object-position: center;
}
@media only screen and (max-width: 1920px) {
  .message-content figure img {
    height: 50rem;
  }
}
@media only screen and (max-width: 1024px) {
  .message-content figure img {
    aspect-ratio: 16/9;
  }
}
.message-content .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .message-content .content {
    padding: 4rem 0;
  }
}
.message-content .content .icon {
  display: flex;
  margin-left: 0;
  margin: 0 0 2rem;
}
.message-content .content .icon img {
  width: 10rem;
  transform: scaleX(-1);
}
@media only screen and (max-width: 1920px) {
  .message-content .content .icon img {
    width: 6rem;
  }
}
.message-content .content .icon.type-2 {
  margin-left: auto;
}
.message-content .content .icon.type-2 img {
  width: 16rem;
  transform: scaleX(1);
  transform: rotate(90deg);
}
@media only screen and (max-width: 1920px) {
  .message-content .content .icon.type-2 img {
    width: 6rem;
  }
}
@media only screen and (max-width: 1024px) {
  .message-content .content article {
    padding: 0;
  }
}
.message-content .content article p {
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  .message-content .content article p {
    font-size: 1.8rem;
  }
}

.cards-fw {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  z-index: 100;
}
.cards-fw .items {
  padding: 5vw;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items {
    padding: 6rem 2rem;
  }
}
.cards-fw .items.reverse {
  flex-direction: row-reverse;
}
.cards-fw .items.reverse .item:nth-child(even) {
  flex-direction: row-reverse;
}
.cards-fw .items.reverse .item:nth-child(even) .caption {
  padding-left: 0;
  padding-right: 4rem;
}
.cards-fw .items:nth-child(odd) {
  background: #F4F4F4;
}
.cards-fw .items:nth-child(even) .head {
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items:nth-child(even) .head {
    text-align: left;
  }
}
.cards-fw .items:nth-child(even) .item {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items:nth-child(even) .item {
    flex-direction: column-reverse;
  }
}
.cards-fw .items .head {
  font-size: clamp(5.6rem, 12vw, 7.2rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items .head {
    font-size: clamp(3.6rem, 12vw, 4.2rem);
  }
}
.cards-fw .items .item {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items .item {
    flex-direction: column-reverse;
  }
}
.cards-fw .items .caption {
  max-width: 40rem;
  padding-right: 4rem;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items .caption {
    max-width: 100%;
  }
}
.cards-fw .items .caption span {
  font-size: clamp(1.6rem, 12vw, 3rem);
  font-weight: 500;
}
.cards-fw .items .caption p {
  margin-bottom: 8rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items .caption p {
    margin-bottom: 0;
  }
}
.cards-fw .items .caption .button-border {
  width: 100%;
}
.cards-fw .items .image {
  width: 60%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .cards-fw .items .image {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.image-card {
  width: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
  z-index: 100;
}
@media only screen and (max-width: 1024px) {
  .image-card {
    height: auto;
  }
}
.image-card figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 5vw;
  overflow: hidden;
  will-change: transform;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption {
    position: relative;
  }
}
.image-card figcaption.bottom {
  justify-content: flex-end;
  padding: 5vw 5vw 5rem;
}
.image-card figcaption.bottom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(30, 32, 34);
  background: linear-gradient(0deg, rgb(30, 32, 34) 0%, rgba(30, 32, 34, 0) 100%);
  z-index: -1;
  will-change: transform;
}
.image-card figcaption.bottom .caption {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin-top: 8rem;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption.bottom .caption {
    flex-direction: column;
  }
}
.image-card figcaption.bottom .caption .button-border {
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption.bottom .caption .button-border {
    margin: 0;
  }
}
.image-card figcaption p {
  max-width: 50%;
  line-height: 1.2;
  margin: 0 auto;
  padding: 4rem 0;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption p {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}
.image-card figcaption span {
  font-size: 3.4rem;
  font-weight: bold;
}
.image-card figcaption h3 {
  max-width: 60%;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption h3 {
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
.image-card figcaption .content-headline {
  margin-bottom: 0;
}
.image-card figcaption .caption {
  max-width: 70rem;
  margin-left: auto;
}
.image-card figcaption .caption p {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
  .image-card figcaption .caption p {
    margin-bottom: 20vh;
  }
}
.image-card .fadein {
  border-radius: 0;
}

.content {
  background: #fff;
}
.content.radius {
  border-radius: 0 0 2rem 2rem;
}

.cards {
  align-items: flex-start;
}
.cards .item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.cards .item figcaption {
  position: absolute;
  inset: 0 0 0 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 6rem;
  text-align: center;
}
.cards .item figcaption .title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.cards .item figcaption p {
  line-height: 1.4;
  margin-bottom: 4rem;
}
.cards .item figcaption p a {
  color: #fff;
}
.cards .item figcaption p a:hover {
  text-decoration: underline;
}
.cards .item figcaption hr {
  margin-bottom: 5rem;
  opacity: 0.2;
}
.cards figure {
  overflow: hidden;
}
.cards .caption {
  display: flex;
  flex-direction: column;
  padding: 2rem 0 4rem;
  gap: 1.2rem;
}
.cards .caption span {
  font-size: 3rem;
  font-weight: bold;
  color: #191919;
  padding: 2rem 0 0;
}
@media only screen and (max-width: 1024px) {
  .cards .caption span {
    font-size: 2rem;
  }
}
.cards .caption .title {
  font-size: 2rem;
  font-weight: 500;
  color: #191919;
  margin-bottom: 1rem;
}
.cards .caption small {
  font-size: 1.4rem;
  color: #191919;
}
.cards .caption p {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #191919;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.cards.image-caption .item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cards.image-caption .item:hover .info .info-caption {
  transform: none;
  bottom: 0;
  height: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition: all 0.7s cubic-bezier(0.6, 0.15, 0.25, 0.9);
  -moz-transition: all 0.7s cubic-bezier(0.6, 0.15, 0.25, 0.9);
  will-change: transform;
}
.cards.image-caption .item figure {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
@media only screen and (max-width: 1370px) {
  .cards.image-caption .item figure.image-v {
    height: 40rem;
  }
}
.cards.image-caption .item figure .info {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
}
.cards.image-caption .item figure .info .title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 4rem;
  display: flex;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .cards.image-caption .item figure .info .title {
    margin-bottom: 2.6rem;
    font-size: 2.6rem;
  }
}
.cards.image-caption .item figure .info p {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .cards.image-caption .item figure .info p {
    margin-bottom: 2rem;
  }
}
.cards.image-caption .item figure .info .info-caption {
  width: 100%;
  color: #fff;
  padding: 4rem;
  position: absolute;
  left: 0;
  top: auto;
  transform: translateY(calc(100% - 12rem));
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition: all 0.7s cubic-bezier(0.6, 0.15, 0.25, 0.9);
  -moz-transition: all 0.7s cubic-bezier(0.6, 0.15, 0.25, 0.9);
  will-change: transform;
}
@media only screen and (max-width: 1024px) {
  .cards.image-caption .item figure .info .info-caption {
    padding: 6rem 2rem 4rem;
  }
}
.cards.adjoined {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.cards.adjoined .item {
  display: flex;
}
.cards.adjoined .item figure, .cards.adjoined .item .caption {
  width: 50%;
  display: flex;
}
.cards.reverse {
  align-items: center;
}
.cards.reverse .card-item {
  display: flex;
}
.cards.reverse .card-item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .cards.reverse .card-item:nth-child(odd) {
    flex-direction: column;
  }
}
.cards.reverse .card-item:nth-child(odd) .caption {
  padding-left: 0;
  padding-right: 5rem;
}
@media only screen and (max-width: 1024px) {
  .cards.reverse .card-item:nth-child(odd) .caption {
    padding-right: 0;
  }
}
.cards.reverse .card-item .caption {
  max-width: 78rem;
  padding-left: 5rem;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .cards.reverse .card-item .caption {
    max-width: 100%;
    padding-left: 0;
  }
}
.cards.reverse .card-item .caption span {
  font-size: 4.4rem;
  line-height: 1;
  margin-top: 2rem;
}
.cards.reverse .card-item .caption p {
  margin: 4rem 0;
  line-height: 1.6;
  -webkit-line-clamp: unset;
  font-weight: 500;
}
.cards .card-item {
  display: flex;
  position: relative;
  margin-bottom: 4rem;
  align-items: center;
  max-width: 128rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 1024px) {
  .cards .card-item {
    flex-direction: column;
    max-width: 100%;
    align-items: baseline;
    width: 100%;
  }
}
.cards .card-item:last-child {
  margin-bottom: 0;
}
.cards .card-item .caption {
  width: 78%;
  display: flex;
  flex-direction: column;
  padding-left: 10rem;
}
@media only screen and (max-width: 1024px) {
  .cards .card-item .caption {
    width: 100%;
    padding-right: 0;
  }
}
.cards .card-item .caption span {
  font-size: 4rem;
  font-weight: 500;
}
.cards .card-item .caption p {
  margin: 4rem 0;
  line-height: 1.6;
  -webkit-line-clamp: unset;
  font-weight: 600;
}
.cards .card-item .caption .date {
  font-size: 1.4rem;
  margin: 1.6rem 0;
}
.cards.border.type-01 .item {
  padding: 4rem;
}
@media only screen and (max-width: 1370px) {
  .cards.border.type-01 .item {
    padding: 2rem;
  }
}
.cards.border.type-01 .item .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.cards.border.type-01 .item .info > div {
  justify-content: space-between;
}
.cards.border.type-01 .item .info > div span {
  font-size: 4rem;
  font-weight: bold;
  color: #191919;
}
@media only screen and (max-width: 1370px) {
  .cards.border.type-01 .item .info > div span {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-01 .item .info > div span {
    font-size: 2.4rem;
  }
}
.cards.border.type-01 .item .info > div ol {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.cards.border.type-01 .item .info > div ol li {
  font-size: 1.8rem;
  color: #191919;
  display: flex;
  list-style: circle;
  margin: 0.4rem 0;
}
@media only screen and (max-width: 1370px) {
  .cards.border.type-01 .item .info > div ol li {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1370px) {
  .cards.border.type-01 .item .info figure svg {
    width: 10rem;
    height: 10rem;
  }
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-01 .item .info figure svg {
    width: 5rem;
    height: 5rem;
  }
}
.cards.border.type-02 .item {
  padding: 0 4rem 4rem;
  align-items: center;
  color: #191919;
}
.cards.border.type-02 .item .title {
  background: #979797;
  height: 5rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  border-radius: 0 0 1rem 1rem;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .title {
    font-size: 1.4rem;
    height: 4rem;
  }
}
.cards.border.type-02 .item .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .info {
    margin: 2rem 0;
  }
}
.cards.border.type-02 .item .info span {
  font-size: 4rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .info span {
    font-size: 2.8rem;
  }
}
.cards.border.type-02 .item .info small {
  font-size: 3rem;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .info small {
    font-size: 1.8rem;
  }
}
.cards.border.type-02 .item .price {
  font-size: clamp(5.6rem, 12vw, 7.2rem);
  font-weight: bold;
  display: flex;
  align-items: baseline;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .price {
    font-size: clamp(3.6rem, 12vw, 4.2rem);
    margin-bottom: 4rem;
  }
}
.cards.border.type-02 .item .price sup {
  font-size: 3rem;
}
@media only screen and (max-width: 1024px) {
  .cards.border.type-02 .item .price sup {
    font-size: 2rem;
  }
}
.cards.border .item {
  display: flex;
  flex-direction: column;
  border: solid #D8D8D8 0.1rem;
}
.cards .buttons {
  display: flex;
  gap: 0 1rem;
}
.cards .item-news-bar {
  display: flex;
  gap: 10rem;
  border-top: solid #D8D8D8 0.1rem;
  border-radius: 0;
  padding: 6rem 0;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .cards .item-news-bar {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.cards .item-news-bar:last-child {
  border-bottom: solid #D8D8D8 0.1rem;
}
.cards .item-news-bar.type02 {
  border-top: solid #D8D8D8 0.1rem !important;
  flex-direction: column-reverse;
  gap: 2rem;
  border: none;
  padding-top: 6rem;
}
.cards .item-news-bar.type02 figure {
  height: 70rem;
}
.cards .item-news-bar.type02 .caption {
  padding: 0;
}
.cards .item-news-bar.type02 .image {
  width: 100%;
}
.cards .item-news-bar .caption {
  justify-content: space-between;
}
@media only screen and (max-width: 1370px) {
  .cards .item-news-bar .caption {
    padding: 0;
  }
}
.cards .item-news-bar .caption p {
  font-size: clamp(3rem, 12vw, 4rem);
  line-height: 1.2;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .cards .item-news-bar .caption p {
    font-size: clamp(2rem, 12vw, 2.6rem);
  }
}
.cards .item-news-bar .image {
  width: 50rem;
  display: flex;
  flex-shrink: 0;
}
@media only screen and (max-width: 1370px) {
  .cards .item-news-bar .image {
    width: 40rem;
  }
}
@media only screen and (max-width: 768px) {
  .cards .item-news-bar .image {
    width: 100%;
  }
}
.cards .item-news-bar .image figure {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .cards figure.square {
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .cards .image-item {
    width: 100%;
  }
}

.products.list {
  gap: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.products.list .item {
  max-width: 31.2% !important;
}
@media only screen and (max-width: 1920px) {
  .products.list .item {
    max-width: 30.2% !important;
  }
}
@media only screen and (max-width: 1024px) {
  .products.list .item {
    max-width: 47% !important;
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .products.list .item {
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 1024px) {
  .products {
    gap: 2rem;
  }
}
.products .item {
  max-width: 100% !important;
  padding: 4rem;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .products .item {
    max-width: 30.2%;
  }
}
@media only screen and (max-width: 1024px) {
  .products .item {
    max-width: 47%;
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .products .item {
    max-width: 100%;
  }
}
.products .item figure {
  aspect-ratio: 1/1;
  margin-bottom: 2rem;
}
.products .item span {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: bold;
  color: #191919;
  height: 10rem;
}
@media only screen and (max-width: 1920px) {
  .products .item span {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 1370px) {
  .products .item span {
    font-size: 2.4rem;
    height: 8rem;
  }
}

.products-list {
  gap: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .products-list {
    gap: 2rem;
  }
}
.products-list .item {
  max-width: 31.2%;
  padding: 4rem;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .products-list .item {
    max-width: 30.2%;
  }
}
@media only screen and (max-width: 1024px) {
  .products-list .item {
    max-width: 47%;
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .products-list .item {
    max-width: 100%;
  }
}
.products-list .item figure {
  aspect-ratio: 1/1;
  margin-bottom: 2rem;
}
.products-list .item span {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: bold;
  color: #191919;
  height: 8rem;
}
@media only screen and (max-width: 1920px) {
  .products-list .item span {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 1370px) {
  .products-list .item span {
    font-size: 2.4rem;
    height: 8rem;
  }
}
.products-list .item .button {
  margin-top: 2rem;
}

.slider-card figure {
  position: relative;
}
.slider-card figure:before {
  content: "";
  inset: 0;
  background: rgba(25, 25, 25, 0.5);
  position: absolute;
  z-index: 1;
}
.slider-card figure figcaption {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}
.slider-card figure figcaption span {
  max-width: 35rem;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .slider-card figure figcaption span {
    max-width: 100%;
    font-size: 2rem;
    padding: 0 2rem;
  }
}
.slider-card figure figcaption p {
  max-width: 35rem;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .slider-card figure figcaption p {
    max-width: 100%;
    font-size: 1.4rem;
    padding: 0 2rem;
  }
}

.contact-info-cards.row {
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .contact-info-cards.row {
    gap: 2rem;
  }
}
.contact-info-cards .item {
  border: solid #C3C3C3 0.1rem;
  border-radius: 2rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .contact-info-cards .item {
    padding: 2rem;
  }
}
.contact-info-cards .item span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .contact-info-cards .item span {
    font-size: 2.2rem;
  }
}
.contact-info-cards .item p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .contact-info-cards .item p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.contact-info-cards .item ul {
  display: flex;
  flex-direction: column;
  border-top: solid #DCDCDC 0.1rem;
}
.contact-info-cards .item ul li {
  font-size: 2.2rem;
  color: #959595;
  display: flex;
  align-items: center;
  height: 7rem;
  border-bottom: solid #DCDCDC 0.1rem;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .contact-info-cards .item ul li {
    font-size: 1.8rem;
  }
}
.contact-info-cards .item ul li a {
  color: #959595;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-info-cards .item ul li a:hover {
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-info-cards .item .location {
  width: 4.5rem;
  height: 4.5rem;
  border: solid #191919 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.contact-info-cards .item .location svg {
  width: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
  width: 6rem !important;
  height: 6rem !important;
  background: #191919;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-pagination-bullets span {
  background: #191919;
}

.slider .swiper {
  height: 100dvh;
}
.slider .swiper .swiper-slide {
  overflow: hidden;
}
.slider .swiper .swiper-pagination {
  color: #fff;
  font-size: 1.6rem;
  bottom: 3rem;
}
.slider .swiper .swiper-pagination .swiper-pagination-current {
  opacity: 0.8;
}
.slider .swiper .swiper-pagination .swiper-pagination-total {
  opacity: 0.5;
}

.carousel-slider {
  overflow: hidden;
}
.carousel-slider .swiper-slide {
  border-radius: 2rem;
  overflow: hidden;
}

.content-slider {
  background: #191919;
}
.content-slider .swiper-slide {
  height: 86vh;
}
.content-slider .swiper-slide figure {
  width: 100%;
  height: 100%;
}
.content-slider .swiper-slide figure figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .content-slider .swiper-slide figure figcaption {
    padding: 2rem;
  }
}
.content-slider .swiper-slide figure figcaption .number .swiper-pagination {
  font-size: 1.6rem;
  font-weight: 500;
  color: transparent;
}
.content-slider .swiper-slide figure figcaption .number .swiper-pagination .swiper-pagination-current {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #191919;
}
.content-slider .swiper-slide figure figcaption p {
  max-width: 110rem;
  color: #fff;
  font-size: clamp(3rem, 12vw, 3.6rem);
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .content-slider .swiper-slide figure figcaption p {
    font-size: clamp(1.8rem, 12vw, 2.4rem);
  }
}
.content-slider .swiper-slide .profile {
  display: flex;
  margin-top: 6rem;
}
.content-slider .swiper-slide .profile .image {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.content-slider .swiper-slide .profile .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-left: 2rem;
}
.content-slider .swiper-slide .profile .info span {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1024px) {
  .content-slider .swiper-slide .profile .info span {
    font-size: 1.8rem;
  }
}
.content-slider .swiper-slide .profile .info small {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1024px) {
  .content-slider .swiper-slide .profile .info small {
    font-size: 1.4rem;
  }
}
.content-slider .swiper-slide figcaption p,
.content-slider .swiper-slide figcaption .number {
  opacity: 0;
  transform: translateY(4rem) scale(1);
  transition: 1.8s ease;
}
.content-slider .swiper-slide .bg > img {
  transform: scale(1.4);
  transition: 4s ease;
}
.content-slider .swiper-slide .profile {
  opacity: 0;
  transform: translateX(8rem) scale(1);
  transition: 1.8s ease;
}
.content-slider .swiper-slide-active figcaption p,
.content-slider .swiper-slide-active figcaption .number {
  opacity: 1;
  transform: translateY(0%) scale(1);
  transition: 1.8s ease;
}
.content-slider .swiper-slide-active .bg > img {
  transform: scale(1);
  transition: 4s ease;
}
.content-slider .swiper-slide-active .profile {
  opacity: 1;
  transform: translateX(0%) scale(1);
  transition: 1.8s ease;
}
.content-slider .control-info {
  display: flex;
  justify-content: space-between;
  padding: 0 10rem;
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 100%;
  height: 8rem;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .content-slider .control-info {
    padding: 0 2rem;
  }
}
.content-slider .control-info .right {
  width: 70%;
  display: flex;
  justify-content: flex-start;
  margin-left: auto;
}
.content-slider .control-info .control {
  display: flex;
  width: 13rem;
  position: relative;
  justify-content: space-between;
}
.content-slider .control-info .swiper-button-next,
.content-slider .control-info .swiper-button-prev {
  width: 6rem !important;
  height: 6rem !important;
  background: #fff;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  left: auto;
  right: auto;
}
@media only screen and (max-width: 1024px) {
  .content-slider .control-info .swiper-button-next,
  .content-slider .control-info .swiper-button-prev {
    display: none !important;
  }
}
.content-slider .control-info .swiper-button-next:hover,
.content-slider .control-info .swiper-button-prev:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.content-slider .control-info .swiper-button-next::after,
.content-slider .control-info .swiper-button-prev::after {
  display: none;
}
.content-slider .swiper-pagination {
  position: relative;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  bottom: 0;
  width: auto;
  display: flex;
  align-items: center;
}
.content-slider .caption {
  width: 70%;
  max-width: 70%;
  margin-left: auto;
}

.carousel-slider-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .carousel-slider-content {
    padding: 4rem 0;
  }
}
.carousel-slider-content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .carousel-slider-content .head {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .carousel-slider-content .head div:first-child {
    display: none;
  }
}
.carousel-slider-content .head div a {
  margin-left: auto;
}
.carousel-slider-content .head .number {
  margin-bottom: 2rem;
}
.carousel-slider-content .swiper-wrapper .swiper-slide {
  height: auto;
}
.carousel-slider-content .swiper-wrapper .swiper-slide:last-child {
  padding-right: 3rem;
}
.carousel-slider-content .image-h {
  aspect-ratio: 3/2;
  position: relative;
}
.carousel-slider-content figure {
  border-radius: 2rem;
  transform: translateZ(0);
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .carousel-slider-content figure img {
    aspect-ratio: auto;
  }
}
.carousel-slider-content .caption {
  padding: 3rem;
  border-top: solid #000 0.1rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 1920px) {
  .carousel-slider-content .caption {
    padding: 3rem 0 0;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .carousel-slider-content .caption {
    padding: 1rem 0 0;
  }
}
.carousel-slider-content .caption .date {
  font-size: 1.2rem;
  letter-spacing: 2.18182px;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #191919;
}
@media only screen and (max-width: 768px) {
  .carousel-slider-content .caption .date {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.carousel-slider-content .caption p {
  max-width: 75%;
  font-size: clamp(2rem, 12vw, 3.4rem);
  letter-spacing: 0.303703px;
  text-transform: uppercase;
  color: #191919;
}
@media only screen and (max-width: 1920px) {
  .carousel-slider-content .caption p {
    font-size: clamp(1.6rem, 12vw, 2.2rem);
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .carousel-slider-content .caption p {
    font-size: clamp(1.4rem, 12vw, 1.6rem);
  }
}
.carousel-slider-content .slide-control {
  position: absolute;
  width: 100%;
  top: 45%;
}
.carousel-slider-content .history {
  color: #fff;
  position: relative;
  margin-bottom: 8rem;
}
.carousel-slider-content .history::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50rem;
  background: #F2F2F2;
}
.carousel-slider-content .history .slide-control .swiper-button-next, .carousel-slider-content .history .slide-control .swiper-button-prev {
  background: #fff;
}
.carousel-slider-content .history .slide-control .swiper-button-next svg, .carousel-slider-content .history .slide-control .swiper-button-prev svg {
  fill: #000;
}
.carousel-slider-content .history .slide-control .swiper-button-next svg path, .carousel-slider-content .history .slide-control .swiper-button-prev svg path {
  fill: #000;
}
.carousel-slider-content .history figcaption {
  position: absolute;
  inset: auto 2rem 6rem 2rem;
  overflow: hidden;
  max-height: 40rem;
}
.carousel-slider-content .history figcaption .year {
  font-size: clamp(6rem, 12vw, 8.2rem);
  font-weight: bold;
}
.carousel-slider-content .history figcaption p {
  font-size: 1.8rem;
  line-height: 1.2;
}

.news-slider-content {
  display: flex;
  padding-left: 5vw;
}
@media only screen and (max-width: 768px) {
  .news-slider-content {
    flex-direction: column-reverse;
    padding-left: 1rem;
  }
}
.news-slider-content .caption {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 10rem;
  overflow: hidden;
  padding-right: 8rem;
}
@media only screen and (max-width: 768px) {
  .news-slider-content .caption {
    padding-right: 1rem;
  }
}
.news-slider-content .caption h5 {
  font-size: 3.4rem;
  line-height: 1.2;
  margin-top: 4rem;
  margin-bottom: 6rem;
  color: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news-slider-content .caption h5:hover {
  color: #00AEEF;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .news-slider-content .caption h5 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.news-slider-content .news-slider-items {
  width: 65%;
  margin-right: 4rem;
}
@media only screen and (max-width: 768px) {
  .news-slider-content .news-slider-items {
    width: 100%;
  }
}
.news-slider-content .news-thumbs-items {
  width: 35%;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1370px) {
  .news-slider-content .news-thumbs-items {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .news-slider-content .news-thumbs-items {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .news-slider-content .news-thumbs-items figure.image-h {
    height: inherit;
  }
}
@media only screen and (max-width: 1024px) {
  .news-slider-content .news-thumbs-items figure.image-h {
    height: 50vh;
  }
}
.news-slider-content .news-thumbs-items .swiper-slide {
  transform: scale(0.95);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news-slider-content .news-thumbs-items .swiper-slide-active {
  transform: scale(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news-slider-content .card {
  border-radius: 2rem;
  overflow: hidden;
}
.news-slider-content .slide-control {
  width: 13rem;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.news-slider-content .slide-control .swiper-button-next,
.news-slider-content .slide-control .swiper-button-prev {
  position: relative;
  right: auto;
  left: auto;
  top: auto;
}

.gallery-content figure {
  width: 100%;
  height: 70vh;
  border-radius: 2rem;
  overflow: hidden;
}

.menu-swiper-content {
  max-width: 120rem;
  margin: auto;
}
.menu-swiper-content .swiper {
  display: block;
}
.menu-swiper-content .menu-swiper-items {
  padding: 0 3rem;
  position: relative;
  display: flex;
}
.menu-swiper-content .menu-swiper-items.no-padding {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .menu-swiper-content .menu-swiper-items {
    padding: 0;
  }
}
.menu-swiper-content .menu-swiper-items .menu-swiper .swiper-slide {
  width: auto;
}
.menu-swiper-content .menu-swiper-items .menu-swiper button {
  white-space: nowrap;
}
.menu-swiper-content .slide-control .swiper-button-prev,
.menu-swiper-content .slide-control .swiper-button-next {
  background: none;
  top: 0;
  margin: 0;
}
.menu-swiper-content .slide-control .swiper-button-prev {
  left: -2rem;
}
.menu-swiper-content .slide-control .swiper-button-next {
  right: -2rem;
}

.carousel-swiper-type-2 .slider-card .swiper-slide {
  padding: 0;
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .carousel-swiper-type-2 .slider-card .swiper-slide figure {
    height: 40vh;
  }
}
.carousel-swiper-type-2 .slider-card .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-slider {
  position: relative;
  overflow: hidden;
  max-width: 140rem;
  width: 100%;
  margin: auto;
}
.reference-slider .swiper {
  margin: 0 5rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 768px) {
  .reference-slider .swiper {
    margin: 0;
    padding: 0;
  }
}
.reference-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reference-slider .swiper-slide img {
  width: 15rem;
}
.reference-slider .swiper-button-prev {
  left: 0;
}
.reference-slider .swiper-button-next {
  right: 0;
}

.button,
button {
  width: fit-content;
  height: 6rem;
  padding: 0 4rem;
  cursor: pointer;
  transform: translateZ(0);
  -webkit-border-radius: 100vmax;
  -moz-border-radius: 100vmax;
  -ms-border-radius: 100vmax;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .button,
  button {
    height: 4.8rem;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
.button.dark,
button.dark {
  background: #191919;
  color: #fff;
}
.button.dark i,
button.dark i {
  position: relative;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.dark i svg,
button.dark i svg {
  fill: #fff;
  stroke: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.dark:hover,
button.dark:hover {
  background: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #191919;
}
.button.dark:hover i svg,
button.dark:hover i svg {
  fill: #191919;
  stroke: #191919;
}
.button.blue,
button.blue {
  background: #00AEEF;
  border: solid #00AEEF 0.02rem;
  color: #fff;
}
.button.blue i,
button.blue i {
  position: relative;
  display: flex;
}
.button.blue i svg,
button.blue i svg {
  fill: #fff;
  stroke: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.blue:hover,
button.blue:hover {
  background: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #00AEEF;
}
.button.blue:hover i,
button.blue:hover i {
  position: relative;
  display: flex;
}
.button.blue:hover i svg,
button.blue:hover i svg {
  fill: #00AEEF;
  stroke: #00AEEF;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.light,
button.light {
  background: #fff;
  color: #191919;
}
.button.light i,
button.light i {
  position: relative;
  display: flex;
}
.button.light i svg,
button.light i svg {
  fill: #191919;
  stroke: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.light:hover,
button.light:hover {
  background: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}
.button.light:hover i,
button.light:hover i {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.light:hover i svg,
button.light:hover i svg {
  fill: #fff;
  stroke: #fff;
}
.button.border,
button.border {
  background: #fff;
  border: solid #191919 0.02rem;
  color: #191919;
}
.button.border i,
button.border i {
  position: relative;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border i svg,
button.border i svg {
  fill: #191919;
  stroke: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border:hover,
button.border:hover {
  background: #191919;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}
.button.border:hover i,
button.border:hover i {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border:hover i svg,
button.border:hover i svg {
  fill: #fff;
  stroke: #fff;
}
.button.border.light,
button.border.light {
  background: transparent;
  border: solid #fff 0.02rem;
  color: #fff;
}
.button.border.light i svg,
button.border.light i svg {
  stroke: #fff;
}
.button.border-inverse,
button.border-inverse {
  background: #191919;
  border: solid #191919 0.02rem;
  color: #fff;
}
.button.border-inverse i,
button.border-inverse i {
  position: relative;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border-inverse i svg,
button.border-inverse i svg {
  fill: #fff;
  stroke: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border-inverse:hover,
button.border-inverse:hover {
  background: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #191919;
}
.button.border-inverse:hover i,
button.border-inverse:hover i {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button.border-inverse:hover i svg,
button.border-inverse:hover i svg {
  fill: #191919;
  stroke: #191919;
}

.button-border {
  width: fit-content;
  font-size: clamp(1.8rem, 12vw, 2.4rem);
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
@media only screen and (max-width: 1024px) {
  .button-border {
    font-size: clamp(1.6rem, 12vw, 1.8rem);
  }
}
.button-border.dark {
  color: #191919;
  border-bottom: solid #191919 0.1rem;
}
.button-border.dark svg {
  fill: #191919;
  stroke: #191919;
}
.button-border.light {
  color: #fff;
  border-bottom: solid #fff 0.1rem;
}
.button-border.light svg {
  fill: #fff;
  stroke: #fff;
}

.social {
  display: flex;
  gap: 1rem;
}
.social .button {
  width: 4rem;
  height: 4rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.social .button.dark {
  background: #191919;
  border: solid #191919 0.02rem;
}
.social .button.dark span {
  color: #fff;
}
.social .button.dark i {
  position: relative;
  display: flex;
  margin: 0;
}
.social .button.dark i svg {
  fill: #fff;
  stroke: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.social .button.dark:hover {
  background: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.social .button.dark:hover i {
  margin: 0;
}
.social .button.dark:hover i svg {
  fill: #191919;
  stroke: none;
}
.social .button.dark:hover span {
  color: #191919;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}
.selectric-wrapper.selectric-open .button:after {
  transform: rotate(180deg);
}
.selectric-wrapper.selectric-open .selectric-items {
  top: 6.2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  visibility: visible;
  display: flex;
}
.selectric-wrapper .selectric {
  border: solid rgba(25, 25, 25, 0.15) 0.1rem;
  border-radius: 1rem;
  height: 5.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.6rem;
}
.selectric-wrapper .selectric span {
  font-size: 1.6rem;
}
.selectric-wrapper .selectric .button {
  background-color: transparent;
  color: transparent;
  height: 100%;
  width: auto;
  gap: 0;
  padding: 0;
}
.selectric-wrapper .selectric .button:after {
  content: " ";
  position: relative;
  width: 2rem;
  height: 100%;
  border: none;
  color: transparent;
  background: transparent url(../../assets/images/icons/arrow.svg) no-repeat center center;
}
.selectric-wrapper .selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 1rem;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px -6px;
  box-shadow: 0 0 10px -6px;
}
.selectric-wrapper .selectric-items .selectric-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.selectric-wrapper .selectric-items .selectric-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.selectric-wrapper .selectric-items .selectric-scroll::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.selectric-wrapper .selectric-items .selectric-scroll::-webkit-scrollbar-thumb {
  background-color: #000000;
}
.selectric-wrapper .selectric-items .selectric-scroll ul {
  padding: 0.4rem;
}
.selectric-wrapper .selectric-items .selectric-scroll ul li {
  height: 4rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0 1rem;
  border-radius: 0.5rem;
}
.selectric-wrapper .selectric-items .selectric-scroll ul li:hover {
  background: rgba(25, 25, 25, 0.05);
}
.selectric-wrapper .selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  background: none;
  color: #666;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectric-wrapper .selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-wrapper .selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-wrapper .selectric-items .selectric-group li {
  padding-left: 25px;
}

.selectric-responsive {
  width: 100%;
}

.selectric-focus .selectric {
  border-color: #191919;
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #c4c4c4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.flatpickr-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}
.flatpickr-wrapper input {
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.flatpickr-calendar {
  font-size: 13px;
  background-color: white;
  color: #333;
  border-radius: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 3px;
  opacity: 0;
  padding: 3px;
  border: 1px solid #ddd;
  max-height: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: opacity 550ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 550ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.flatpickr-calendar table {
  border-collapse: collapse;
  padding: 0;
  width: 100%;
}
.flatpickr-calendar thead {
  font-size: 90%;
}
.flatpickr-calendar th {
  text-align: center;
  padding: 5px;
  font-weight: bold;
  color: #999;
}
.flatpickr-calendar .slot {
  cursor: pointer;
}
.flatpickr-calendar td:hover .flatpickr-day {
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.open .flatpickr-calendar {
  max-height: 286px;
  z-index: 100;
  opacity: 1;
  width: 100%;
}

.flatpickr-months {
  color: black;
  padding: 2px;
  text-align: center;
  font-size: 135%;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  padding: 0 0.4em;
  cursor: pointer;
}

.flatpickr-prev-month {
  float: left;
}

.flatpickr-next-month {
  float: right;
}

.flatpickr-current-month {
  padding: 0 0.5em;
  font-weight: 300;
}
.flatpickr-current-month span {
  font-weight: 700;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #f64747;
}

.flatpickr-calendar th,
.flatpickr-calendar td {
  width: 14.3%;
}

.flatpickr-day {
  border: 1px solid transparent;
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0;
  text-align: center;
  width: 32px;
  border-radius: 0;
  margin: 1px;
}

.today .flatpickr-day {
  background-color: #F79A33;
  color: #fff;
}

td.today:hover .flatpickr-day {
  border-color: #F79A33;
  background-color: #F79A33;
  color: white;
}

.selected .flatpickr-day {
  border-color: #F79A33;
  background-color: #F79A33;
  color: #fff;
}

.flatpickr-calendar .disabled,
.flatpickr-calendar .disabled .flatpickr-day,
.flatpickr-calendar .disabled:hover .flatpickr-day {
  background: transparent;
  border-color: transparent;
  color: #ddd;
  cursor: default;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

form {
  display: flex;
  flex-direction: column;
}
form.general {
  max-width: 80rem;
  width: 100%;
  gap: 3rem 2rem;
}
form.general .row {
  gap: 3rem;
}
form.general .options {
  border: solid #D8D8D8 0.1rem;
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  form.general .options {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }
}
form.general .options .checkbox {
  margin: 0;
  flex-grow: 0;
}
form .form-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form .form-item .date {
  display: flex;
  position: relative;
}
form .form-item .date i {
  position: absolute;
  width: 5rem;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
form .form-item .date input {
  padding: 0 2rem 0 5rem;
}
form label {
  font-size: 1.4rem;
  color: #191919;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  form label {
    font-size: 1.6rem;
  }
}
form small {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.5;
}
form input,
form textarea {
  width: 100%;
  height: 5.6rem;
  padding: 0;
  font-size: 1.4rem;
  color: #191919;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid #D8D8D8 0.1rem;
  border-radius: 1rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transform: translateZ(0);
  padding-left: 1rem;
}
form input:focus,
form textarea:focus {
  background: #fff;
  border: solid #191919 0.1rem;
}
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  /* Edge */
  color: #191919;
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #191919;
}
form input::placeholder,
form textarea::placeholder {
  color: #191919;
}
form textarea {
  font-family: "Manrope";
  resize: none;
  padding: 2rem 1rem;
  overflow: hidden;
  min-height: 10rem;
  max-height: 15rem;
}
form .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
form .bottom .button {
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  form .bottom .button {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  form .bottom .button {
    width: 100%;
    justify-content: center;
  }
}
form .select-check {
  display: flex;
}
form .verification-code {
  max-width: 15rem;
  justify-content: end;
}
form .message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
form .message h1 {
  color: #fff;
}
form .message h1:before {
  background: #fff;
}
form .message p {
  color: #fff;
}
form .message span {
  font-size: clamp(2rem, 12vw, 3.4rem);
  letter-spacing: -1.88889px;
  color: #fff;
  text-align: center;
  margin-top: 4rem;
}

/*#region Checkbox */
.checkbox {
  display: flex;
  flex-grow: 1;
  max-width: 100%;
  margin: 1.5rem 0 1.5rem;
}
.checkbox:last-child {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .checkbox {
    max-width: 100%;
  }
}
.checkbox .link {
  text-align: left;
  font-size: 1.5rem;
}
.checkbox .link a {
  color: #191919;
  text-decoration: underline;
  cursor: pointer;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
  position: relative;
}
.checkbox input:checked + :after {
  content: "";
  background: url(../images/main/check.svg) no-repeat center center;
  background-size: 1.6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 100%;
  text-align: center;
}
.checkbox input:checked + :before {
  border: solid #191919 0.1rem;
}
.checkbox input:checked + label {
  color: #191919;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #191919;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .checkbox label {
    font-size: 1.6rem;
  }
}
.checkbox label a {
  color: #191919;
  text-decoration: underline;
}
.checkbox label:before {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  flex-basis: 2.5rem;
  content: "";
  -webkit-appearance: none;
  border: solid #BCBFC5 0.1rem;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1rem;
  border-radius: 0.5rem;
  transform: translateZ(0);
}

.pagination {
  display: flex;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  padding: 4rem 0 8rem;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1024px) {
  .pagination {
    gap: 0;
  }
}
.pagination .link {
  min-width: 6rem;
  height: 4rem;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #191919;
  font-size: 1.6rem;
  border-radius: 100vmax;
  padding: 0 2rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: solid transparent 0.1rem;
}
@media only screen and (max-width: 1024px) {
  .pagination .link {
    padding: 0 1rem;
  }
}
.pagination .link:hover, .pagination .link.active {
  background: #EEEDEE;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  .pagination .link {
    font-size: 1.6rem;
    margin: 0;
    min-width: 4rem;
  }
}
.pagination .link.prev, .pagination .link.next {
  margin: 0 2rem;
}
.pagination .link span {
  padding: 0 1.5rem;
  font-size: 1.4rem;
}
.pagination .link:hover {
  color: #191919;
}
.pagination .link:hover svg {
  fill: #191919;
}
.pagination .page-prev,
.pagination .page-next {
  width: 5rem;
  height: 5rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #191919 0.1rem;
  border-radius: 1rem;
  padding: 0 1rem;
  background: #191919;
}
.pagination .page-prev:hover,
.pagination .page-next:hover {
  border: solid #191919 0.1rem;
  background: none;
  color: #191919;
}
.pagination .page-prev:hover svg,
.pagination .page-next:hover svg {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  fill: #191919;
  stroke: #191919;
}
.pagination .page-prev:hover .icon,
.pagination .page-next:hover .icon {
  fill: none;
  stroke: #191919;
}
.pagination .page-prev svg,
.pagination .page-next svg {
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  fill: #fff;
  stroke: #fff;
}
.pagination .page-prev .stroke,
.pagination .page-next .stroke {
  opacity: 0.5;
  fill: none;
  stroke: #0C0C0E;
  stroke-width: 1.2;
  enable-background: new;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.pagination .page-prev .icon,
.pagination .page-next .icon {
  fill: none;
  stroke: #0C0C0E;
}

.accordion-menu-content {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content {
    flex-direction: column;
  }
}
.accordion-menu-content .accordion-menu .dropdownlink {
  cursor: pointer;
}
.accordion-menu-content .category {
  width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content .category {
    width: 100%;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
.accordion-menu-content .category li:hover a, .accordion-menu-content .category li.active a {
  color: #191919;
  text-decoration: underline;
}
.accordion-menu-content .category li a {
  font-size: 2.4rem;
  color: rgba(25, 25, 25, 0.35);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content .category li a {
    font-size: 1.8rem;
  }
}
.accordion-menu-content.large {
  margin-bottom: 8rem;
}
.accordion-menu-content.large .accordion-menu {
  width: 100%;
}
.accordion-menu-content.large .accordion-menu li {
  border: solid #D8D8D8 0.1rem;
  margin-bottom: 1rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large .accordion-menu li {
    padding: 0 1rem;
  }
}
.accordion-menu-content.large .accordion-menu li.open .dropdownlink i .icon-open {
  display: none;
}
.accordion-menu-content.large .accordion-menu li.open .dropdownlink i .icon-close {
  display: flex;
}
.accordion-menu-content.large .accordion-menu .dropdownlink {
  cursor: pointer;
  display: flex;
  font-size: clamp(2rem, 6vw, 2.2rem);
  font-weight: 500;
  color: #191919;
  position: relative;
  transition: all 0.4s ease-out;
  min-height: 7rem;
  align-items: center;
  padding: 2rem 0;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large .accordion-menu .dropdownlink {
    padding: 2rem 6rem 2rem 1rem;
    font-size: clamp(1.4rem, 6vw, 1.7rem);
    padding: 2rem 6rem 2rem 0;
  }
}
.accordion-menu-content.large .accordion-menu .dropdownlink i {
  width: 5rem;
  height: 5rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  font-size: 1.8rem;
  background: #000;
  border-radius: 1.6rem;
}
.accordion-menu-content.large .accordion-menu .dropdownlink i svg {
  width: 1.2rem;
  height: 1.2rem;
}
.accordion-menu-content.large .accordion-menu .dropdownlink i .icon-open {
  display: flex;
}
.accordion-menu-content.large .accordion-menu .dropdownlink i .icon-close {
  display: none;
}
.accordion-menu-content.large .accordion-menu .ion-ios-arrow-down {
  right: 2rem;
  left: auto;
}
.accordion-menu-content.large .submenuItems {
  display: none;
}
.accordion-menu-content.large .submenuItems li {
  padding: 0 0 1.5rem;
  position: relative;
  border: none;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large .submenuItems li {
    padding: 1rem 0 2rem;
  }
}
.accordion-menu-content.large .submenuItems ul, .accordion-menu-content.large .submenuItems ol {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 2rem;
  margin: 2rem 0 4rem;
  padding-left: 3rem;
}
.accordion-menu-content.large .submenuItems ul:last-child, .accordion-menu-content.large .submenuItems ol:last-child {
  margin: 2rem 0 0;
}
.accordion-menu-content.large .submenuItems ul li, .accordion-menu-content.large .submenuItems ol li {
  display: list-item;
  list-style: inside disc;
  font-size: 1.6rem;
  padding: 0;
  position: relative;
  overflow: visible;
}
.accordion-menu-content.large .submenuItems ul li span, .accordion-menu-content.large .submenuItems ol li span {
  display: flex;
  gap: 0.5rem;
}
.accordion-menu-content.large .submenuItems ol li {
  list-style: inside decimal;
}
.accordion-menu-content.large .submenuItems p {
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  color: #191919;
  line-height: 2.2rem;
  margin-right: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large .submenuItems p {
    font-size: clamp(1.4rem, 6vw, 1.6rem);
  }
}
.accordion-menu-content.large .submenuItems p strong {
  font-weight: 500;
}
.accordion-menu-content.large .submenuItems i svg {
  width: 4rem;
}
.accordion-menu-content.large .submenuItems .info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large .submenuItems .info {
    flex-direction: column;
    align-items: baseline;
  }
}
.accordion-menu-content.large .submenuItems .info .caption {
  padding-left: 6rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large .submenuItems .info .caption {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.accordion-menu-content.large .submenuItems .info ul {
  max-width: 80rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large .submenuItems .info ul {
    max-width: 100%;
  }
}
.accordion-menu-content.large .submenuItems .info ul li {
  width: 20rem;
  padding: 0;
  margin: 1.4rem 0;
  display: flex;
}
.accordion-menu-content.large .submenuItems .info ul li:hover a {
  text-decoration: underline;
}
.accordion-menu-content.large .submenuItems .info ul li a {
  font-size: 1.8rem;
  color: #191919;
  display: flex;
  padding-right: 4rem;
}
.accordion-menu-content.large.grey {
  border: none;
}
.accordion-menu-content.large.grey .accordion-menu {
  width: 100%;
}
.accordion-menu-content.large.grey .accordion-menu li {
  border: none;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: inherit;
}
.accordion-menu-content.large.grey .accordion-menu li.open .dropdownlink i .icon-open {
  display: none;
}
.accordion-menu-content.large.grey .accordion-menu li.open .dropdownlink i .icon-close {
  display: flex;
}
.accordion-menu-content.large.grey .accordion-menu .dropdownlink {
  cursor: pointer;
  display: flex;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 500;
  color: #191919;
  position: relative;
  transition: all 0.4s ease-out;
  height: 6rem;
  align-items: center;
  padding: 4rem 6rem 4rem 0;
  background: #F2F2F2;
  padding-left: 2rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large.grey .accordion-menu .dropdownlink {
    padding: 2rem 6rem 2rem 2rem;
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
}
.accordion-menu-content.large.grey .accordion-menu .dropdownlink .number {
  margin-right: 2rem;
}
.accordion-menu-content.large.grey .accordion-menu .dropdownlink i {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  right: 4rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.large.grey .accordion-menu .dropdownlink i {
    right: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large.grey .accordion-menu .dropdownlink i svg {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.accordion-menu-content.large.grey .accordion-menu .dropdownlink i .icon-open {
  display: flex;
}
.accordion-menu-content.large.grey .accordion-menu .dropdownlink i .icon-close {
  display: none;
}
.accordion-menu-content.large.grey .accordion-menu .ion-ios-arrow-down {
  right: 2rem;
  left: auto;
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems {
  padding-top: 4rem;
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items {
  display: flex;
  gap: 0 8rem;
  padding: 0 4vw;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large.grey .accordion-menu .submenuItems .items {
    flex-direction: column;
    padding: 0;
  }
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item {
  display: flex;
  flex-direction: column;
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item span {
  font-size: 4rem;
  color: #191919;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item span {
    font-size: 2.4rem;
  }
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol {
    margin-bottom: 0;
  }
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol:first-child, .accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol:last-child {
  margin-bottom: 0;
}
.accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol li {
  font-size: 1.8rem;
  margin: 1rem 0;
  padding: 0;
  list-style: outside;
  border-radius: 0;
  display: flex;
  padding-right: 2rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.large.grey .accordion-menu .submenuItems .items .item ol li {
    font-size: 1.6rem;
  }
}
.accordion-menu-content.small {
  padding-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.small {
    padding-bottom: 4rem;
  }
}
.accordion-menu-content.small.dark .accordion-menu li {
  background: #fff;
  border-bottom: solid rgba(25, 25, 25, 0.15) 0.1rem;
}
.accordion-menu-content.small.dark .accordion-menu li:last-child {
  border: none;
}
.accordion-menu-content.small.dark .accordion-menu .open {
  background: #191919;
}
.accordion-menu-content.small.dark .accordion-menu .open li {
  background: #191919;
}
.accordion-menu-content.small.dark .accordion-menu .open .dropdownlink {
  color: #fff;
}
.accordion-menu-content.small.dark .accordion-menu .open .dropdownlink i .icon-open {
  display: none;
}
.accordion-menu-content.small.dark .accordion-menu .dropdownlink {
  height: 8rem;
  color: #191919;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  align-items: center;
  padding-left: 2rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.small.dark .accordion-menu .dropdownlink {
    font-size: 1.6rem;
  }
}
.accordion-menu-content.small.dark .accordion-menu .dropdownlink i {
  position: relative;
  width: 5rem;
  height: 100%;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
.accordion-menu-content.small .accordion-menu {
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.small .accordion-menu {
    width: 100%;
  }
}
.accordion-menu-content.small .accordion-menu ul li {
  margin-bottom: 1rem;
  overflow: hidden;
  background: #F2F2F2;
  border-radius: 1rem;
}
.accordion-menu-content.small .accordion-menu ul .open {
  background: #F79A33;
}
.accordion-menu-content.small .accordion-menu ul .open li {
  background: #F79A33;
}
.accordion-menu-content.small .accordion-menu ul .open .dropdownlink {
  color: #fff;
}
.accordion-menu-content.small .accordion-menu ul .open .dropdownlink i .icon-open {
  display: none;
}
.accordion-menu-content.small .accordion-menu ul .open .dropdownlink i .icon-close {
  display: flex;
}
.accordion-menu-content.small .accordion-menu ul .dropdownlink {
  cursor: pointer;
  display: flex;
  font-size: clamp(2rem, 6vw, 2.2rem);
  color: #191919;
  position: relative;
  transition: all 0.4s ease-out;
  min-height: 6rem;
  align-items: center;
  padding-left: 2rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.small .accordion-menu ul .dropdownlink {
    padding: 2rem 6rem 2rem 2rem;
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
}
.accordion-menu-content.small .accordion-menu ul .dropdownlink i {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  right: 4rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content.small .accordion-menu ul .dropdownlink i {
    right: 1rem;
  }
}
.accordion-menu-content.small .accordion-menu ul .dropdownlink i .icon-open {
  display: flex;
}
.accordion-menu-content.small .accordion-menu ul .dropdownlink i .icon-close {
  display: none;
}
.accordion-menu-content.small .accordion-menu ul .ion-ios-arrow-down {
  right: 2rem;
  left: auto;
}
.accordion-menu-content.small .accordion-menu .button {
  margin-top: 4rem;
}
.accordion-menu-content.small .submenuItems {
  display: none;
  padding-left: 2rem;
}
.accordion-menu-content.small .submenuItems li {
  padding: 0 0 4rem;
  position: relative;
  border: none;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.small .submenuItems li {
    padding: 1rem 2rem 2rem;
  }
}
.accordion-menu-content.small .submenuItems p {
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  color: #fff;
  font-weight: 500;
  line-height: 2.2rem;
  margin-right: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content.small .submenuItems p {
    font-size: clamp(1.4rem, 6vw, 1.6rem);
  }
}
.accordion-menu-content.small .submenuItems p strong {
  font-weight: 500;
}

.accordion-menu-content02 {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
.accordion-menu-content02 .accordion-menu02 {
  width: 100%;
}
.accordion-menu-content02 .accordion-menu02 .item {
  background: #fff;
  border-radius: 1rem;
  border: solid #191919 0.1rem !important;
  margin: 0;
  padding: 0 !important;
}
.accordion-menu-content02 .accordion-menu02 li {
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-menu-content02 .accordion-menu02 .open02 {
  border: solid #D8D8D8 0.1rem;
}
.accordion-menu-content02 .accordion-menu02 .open02 > li {
  background: #fff;
  border-radius: 1rem;
  border: solid #D8D8D8 0.1rem !important;
}
.accordion-menu-content02 .accordion-menu02 .open02 .dropdownlink {
  color: #fff;
}
.accordion-menu-content02 .accordion-menu02 .open02 .dropdownlink i .icon-open {
  display: none;
}
.accordion-menu-content02 .accordion-menu02 .open02 .dropdownlink i .icon-close {
  display: flex;
}
.accordion-menu-content02 .accordion-menu02 .dropdownlink02 {
  cursor: pointer;
  display: flex;
  font-size: clamp(2rem, 6vw, 2.2rem);
  color: #191919;
  position: relative;
  transition: all 0.4s ease-out;
  min-height: 6rem;
  align-items: center;
  padding-left: 2rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content02 .accordion-menu02 .dropdownlink02 {
    padding: 2rem 6rem 2rem 2rem;
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
}
.accordion-menu-content02 .accordion-menu02 .dropdownlink02 i {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  right: 4rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .accordion-menu-content02 .accordion-menu02 .dropdownlink02 i {
    right: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content02 .accordion-menu02 .dropdownlink02 i svg {
    width: 2rem;
    height: 2rem;
  }
}
.accordion-menu-content02 .accordion-menu02 .dropdownlink02 i .icon-open {
  display: flex;
}
.accordion-menu-content02 .accordion-menu02 .dropdownlink02 i .icon-close {
  display: none;
}
.accordion-menu-content02 .accordion-menu02 .ion-ios-arrow-down {
  right: 2rem;
  left: auto;
}
.accordion-menu-content02 .submenuItems02 {
  display: none;
  padding: 4rem 2rem 0;
}
.accordion-menu-content02 .submenuItems02 li {
  position: relative;
  border: none;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content02 .submenuItems02 li {
    padding: 1rem 2rem 2rem;
  }
}
.accordion-menu-content02 .submenuItems02 p {
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  color: #fff;
  font-weight: 500;
  line-height: 2.2rem;
  margin-right: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .accordion-menu-content02 .submenuItems02 p {
    font-size: clamp(1.4rem, 6vw, 1.6rem);
  }
}
.accordion-menu-content02 .submenuItems02 p strong {
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .scroll {
    width: 100%;
    cursor: default;
    overflow: scroll hidden;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
  }
}

.filter {
  background: #fff;
}
.filter form {
  margin-bottom: 4rem;
}
.filter .item {
  flex: 1;
}

.selectbox-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .selectbox-items {
    gap: 2rem;
  }
}
.selectbox-items .selectbox-item {
  flex: auto;
}
@media only screen and (max-width: 1024px) {
  .selectbox-items .selectbox-item {
    width: 50%;
  }
}
.selectbox-items .selectbox {
  width: 100%;
}

.checkbox-items {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.checkbox-items .title {
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.checkbox-items .item {
  margin-bottom: 2rem;
}
.checkbox-items .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox-items .bottom .button {
  margin: auto;
}

.tab-menu {
  max-width: 100rem;
  width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.tab-menu ul {
  display: flex;
  gap: 2rem;
}
.tab-menu ul li.active .button {
  background: #191919;
  color: #fff;
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip:hover .tooltip-item {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.tooltip i {
  cursor: pointer;
}
.tooltip i svg {
  width: 2rem !important;
}
.tooltip .tooltip-item {
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: #fff;
  text-align: left;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 3rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  width: 40rem;
  padding: 1rem;
}
@media only screen and (max-width: 1024px) {
  .tooltip .tooltip-item {
    width: 26rem;
  }
}

ul {
  overflow: visible;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 1370px) {
  .steps {
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 1024px) {
  .steps {
    align-items: normal;
  }
}
.steps .item {
  font-size: 2rem;
  color: #A2A2A2;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1370px) {
  .steps .item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .steps .item {
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    text-align: center;
    padding: 0 1.6rem;
    font-size: 1.4rem;
  }
}
.steps .item.active {
  color: #F79A33;
}
.steps .item.active i {
  background: #F79A33;
}
.steps .item:last-child::after, .steps .item:last-child::before {
  display: none;
}
.steps .item:after {
  content: "";
  width: 10rem;
  height: 0.1rem;
  background: #A2A2A2;
  margin: 0 4rem;
}
@media only screen and (max-width: 1370px) {
  .steps .item:after {
    width: 6rem;
    margin: 0 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .steps .item:after {
    width: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .steps .item:after {
    display: none;
  }
}
.steps .item:before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background: #A2A2A2;
  position: absolute;
  right: 0;
  display: none;
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .steps .item:before {
    display: flex;
  }
}
.steps .item i {
  width: 3.8rem;
  height: 3.8rem;
  background: #A2A2A2;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.6rem;
  color: #fff;
  font-style: normal;
  margin-right: 2rem;
}
@media only screen and (max-width: 768px) {
  .steps .item i {
    margin-right: 0;
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
  }
}

.tab-menu-content {
  display: flex;
  flex-direction: column;
  background: #F2F2F2;
  padding: 6rem 4rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .tab-menu-content {
    padding: 4rem 1rem;
  }
}
.tab-menu-content .tabs {
  display: flex;
  margin: 0;
  padding: 0;
  padding: 2rem;
  gap: 2rem;
  transition: all 0.5s ease-in-out;
  justify-content: center;
  white-space: nowrap;
  counter-reset: li;
}
@media only screen and (max-width: 1024px) {
  .tab-menu-content .tabs {
    justify-content: flex-start;
  }
}
.tab-menu-content .tabs li {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding: 0 2.4rem;
  border-bottom: solid transparent 0.1rem;
  padding-bottom: 0.6rem;
  color: #F79A33;
}
.tab-menu-content .tabs li:before {
  content: counter(li);
  counter-increment: li;
  position: relative;
  width: 4rem;
  height: 4rem;
  background: #F79A33;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.tab-menu-content .tabs li.current {
  color: #F79A33;
  border-bottom: solid #F79A33 0.1rem;
}
@media only screen and (max-width: 768px) {
  .tab-menu-content .tabs li {
    font-size: 1.4rem;
  }
}
.tab-menu-content .tabs li:first-child {
  border-radius: 0.5rem 0 0;
  transform: translateZ(0);
}
.tab-menu-content .tabs li:last-child {
  border-radius: 0 0.5rem 0 0;
  transform: translateZ(0);
}
.tab-menu-content .tab-link {
  transition: all 0.5s ease-in-out;
}
.tab-menu-content .tab-content {
  display: none;
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  padding: 4rem;
}
@media only screen and (max-width: 1024px) {
  .tab-menu-content .tab-content {
    padding: 1rem;
  }
}
.tab-menu-content .tab-content.current {
  display: flex;
  animation: fade 0.3s ease-in-out both;
}
.tab-menu-content .tab-content img {
  max-width: 100%;
  border-radius: 0.5rem;
  transform: translateZ(0);
}
.tab-menu-content .tab-content a {
  color: #F79A33;
}
.tab-menu-content .tab-content span {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.tab-menu-content .tab-content p {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #6E6E6E;
}
@media only screen and (max-width: 1024px) {
  .tab-menu-content .tab-content p {
    font-size: 1.6rem;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-menu-content .item .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 4rem 5vw;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .tab-menu-content .item .caption {
    padding: 2rem;
  }
}
.tab-menu-content .item .caption span {
  font-size: clamp(3.2rem, 12vw, 4.4rem);
  letter-spacing: 0.477248px;
}
@media only screen and (max-width: 768px) {
  .tab-menu-content .item .caption span {
    font-size: clamp(3rem, 12vw, 3.2rem);
  }
}
.tab-menu-content .item .caption p {
  font-size: clamp(1.6rem, 12vw, 2rem);
  margin: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .tab-menu-content .item .caption p {
    font-size: clamp(1.4rem, 12vw, 1.6rem);
    margin: 2.8rem 0;
  }
}
.tab-menu-content .item figure {
  width: 100%;
  height: 60rem;
  border-radius: 1rem;
  transform: translateZ(0);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .tab-menu-content .item figure {
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .iti-container {
    left: 0 !important;
  }
}

.phone-code {
  width: 100%;
}

.intl-tel-input {
  width: 100%;
  display: flex !important;
  gap: 0 !important;
}
.intl-tel-input .flag-container {
  width: 8rem !important;
  position: relative !important;
  background: #fff;
  border-radius: 1rem 0 0 1rem;
}
.intl-tel-input input {
  padding: 0 2rem 0 0 !important;
  border-radius: 0 1rem 1rem 0 !important;
}
.intl-tel-input .iti-flag {
  background-image: url(../../assets/images/main/flags.png) !important;
  background-repeat: no-repeat;
}
.intl-tel-input .country {
  display: flex;
}
.intl-tel-input .country-list {
  border-radius: 1rem;
}
.intl-tel-input .country-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15) !important;
}
.intl-tel-input .country-list::-webkit-scrollbar {
  width: 4px;
  background: rgba(255, 255, 255, 0.15);
}
.intl-tel-input .country-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
}
.intl-tel-input .country-list .country {
  padding: 15px 10px !important;
}
.intl-tel-input .country-list .country-name {
  font-size: 1.2rem;
  color: #191919;
}
.intl-tel-input .country-list li {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.intl-tel-input .country-list li:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}
.intl-tel-input .divider {
  border-bottom: solid rgba(255, 255, 255, 0.2) 0.12rem !important;
}

.modalbox {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 1rem;
}
.modalbox.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.modalbox:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 25, 0.5);
}
.modalbox .modalbox-content {
  max-width: 113rem;
  width: 100%;
  min-height: 50vh;
  max-height: calc(100dvh - 2rem);
  background: #2B2B2B;
  border-radius: 2rem;
  overflow: hidden;
  padding: 12rem 7rem;
  position: relative;
  display: flex;
}
.modalbox .modalbox-content.light {
  background: #fff;
}
@media only screen and (max-width: 1920px) {
  .modalbox .modalbox-content {
    padding: 6rem;
  }
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content {
    padding: 12rem 7rem 7rem;
  }
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content {
    flex-direction: column;
    padding: 2rem 2rem 4rem;
  }
}
.modalbox .modalbox-content .modalbox-container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .modalbox-container {
    flex-direction: column;
    overflow: auto;
  }
}
.modalbox .modalbox-content .modalbox-container .media {
  width: 40%;
  height: 40rem;
  overflow: hidden;
  border-radius: 2rem;
  position: relative;
  display: flex;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content .modalbox-container .media {
    width: 100%;
    margin-bottom: 6rem;
    height: 25rem;
  }
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .modalbox-container .media {
    margin-bottom: 2rem;
  }
}
.modalbox .modalbox-content .modalbox-container .media video,
.modalbox .modalbox-content .modalbox-container .media figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.modalbox .modalbox-content .modalbox-container .info {
  width: 60%;
  padding-left: 5rem;
  padding-right: 10rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .modalbox-container .info {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    gap: 0;
  }
}
.modalbox .modalbox-content .modalbox-container .info span {
  font-size: 3.4rem;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content .modalbox-container .info span {
    font-size: 2.8rem;
  }
}
.modalbox .modalbox-content .modalbox-container .info p {
  font-size: 2rem;
  color: #fff;
  opacity: 0.5;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content .modalbox-container .info p {
    font-size: 1.8rem;
  }
}
.modalbox .modalbox-content .modalbox-container form {
  margin-top: 6rem;
}
@media only screen and (max-width: 1920px) {
  .modalbox .modalbox-content .modalbox-container form {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content .modalbox-container form {
    margin-top: 2rem;
  }
}
.modalbox .modalbox-content .modalbox-container form .row {
  gap: 3rem;
}
@media only screen and (max-width: 1920px) {
  .modalbox .modalbox-content .modalbox-container form .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .modalbox-container form .row {
    gap: 3rem 0;
  }
}
.modalbox .modalbox-content .modalbox-container form label {
  color: #fff;
}
.modalbox .modalbox-content .modalbox-container form input, .modalbox .modalbox-content .modalbox-container form textarea {
  background: none;
  border: solid #6E6E6E 0.1rem;
  color: #fff;
}
@media only screen and (max-width: 1920px) {
  .modalbox .modalbox-content .modalbox-container form input {
    height: 5rem;
  }
}
@media only screen and (max-width: 1920px) {
  .modalbox .modalbox-content .modalbox-container form textarea {
    min-height: 8rem;
  }
}
.modalbox .modalbox-content .profile {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .profile {
    flex-direction: column;
    margin-top: 24px;
  }
}
.modalbox .modalbox-content .profile figure {
  position: relative;
  overflow: visible;
}
.modalbox .modalbox-content .profile figure img {
  width: 40rem;
  height: 50rem;
  object-fit: cover;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .profile figure img {
    width: 100%;
    height: auto;
    margin-top: 16px;
    max-height: 400px;
    object-fit: cover;
  }
}
.modalbox .modalbox-content .profile .text-caption {
  display: flex;
  flex-direction: column;
  padding-left: 6rem;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .profile .text-caption {
    padding-left: 0;
  }
}
.modalbox .modalbox-content .profile .text-caption span {
  font-size: 2.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .modalbox .modalbox-content .profile .text-caption span {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
.modalbox .modalbox-content .profile .text-caption small {
  font-size: 1.8rem;
}
.modalbox .modalbox-content .profile .text-caption .social {
  margin-top: 2rem;
}
.modalbox .modalbox-content .profile .text-caption .social i {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: solid #191919 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.modalbox .modalbox-content .profile .text-caption .social i:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #191919;
}
.modalbox .modalbox-content .profile .text-caption .social i:hover svg {
  fill: #fff;
}
.modalbox .modalbox-content .profile .text-caption .social i svg {
  width: 2rem;
}
.modalbox .modalbox-content .profile .text-caption .information-about {
  max-height: 30rem;
  overflow: auto;
}
@media only screen and (max-width: 768px) {
  .modalbox .modalbox-content .profile .text-caption .information-about {
    max-height: 15rem;
  }
}
.modalbox .modalbox-content .profile .text-caption p {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 2rem;
}
.modalbox .modalbox-content .close-modalbox svg {
  width: 3rem;
  opacity: 0.2;
}
.modalbox .close-modalbox {
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1920px) {
  .modalbox .close-modalbox svg {
    width: 5rem;
    height: 5rem;
  }
}

.faq-tabmenu .tabmenu-content {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tabmenu-content {
    flex-direction: column;
  }
}
.faq-tabmenu .tab-content {
  width: 100%;
  display: none;
}
.faq-tabmenu .tab-content.current {
  display: flex;
  animation: fade 0.3s ease-in-out both;
}
.faq-tabmenu .tabs {
  width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tabs {
    width: 100%;
    cursor: default;
    overflow: scroll hidden;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    flex-direction: row;
    height: 4rem;
    margin-bottom: 2rem;
  }
}
.faq-tabmenu .tabs li {
  font-size: 2rem;
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  white-space: nowrap;
}
.faq-tabmenu .tabs li.current {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.faq-tabmenu .accordion-menu-content {
  width: 100%;
}
.faq-tabmenu .accordion-menu-content .accordion-menu {
  width: 100%;
}
.faq-tabmenu .accordion-menu-content .accordion-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-tabmenu .tab-menu-content {
  display: flex;
  flex-direction: column;
  background: #F2F2F2;
  padding: 6rem 4rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tab-menu-content {
    padding: 4rem 1rem;
  }
}
.faq-tabmenu .tab-menu-content .tabs {
  display: flex;
  margin: 0;
  padding: 0;
  padding: 2rem;
  gap: 2rem;
  transition: all 0.5s ease-in-out;
  justify-content: center;
  white-space: nowrap;
  counter-reset: li;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .tab-menu-content .tabs {
    justify-content: flex-start;
  }
}
.faq-tabmenu .tab-menu-content .tabs li {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding: 0 2.4rem;
  border-bottom: solid transparent 0.1rem;
  padding-bottom: 0.6rem;
  color: #F79A33;
}
.faq-tabmenu .tab-menu-content .tabs li:before {
  content: counter(li);
  counter-increment: li;
  position: relative;
  width: 4rem;
  height: 4rem;
  background: #F79A33;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.faq-tabmenu .tab-menu-content .tabs li.current {
  color: #F79A33;
  border-bottom: solid #F79A33 0.1rem;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tab-menu-content .tabs li {
    font-size: 1.4rem;
  }
}
.faq-tabmenu .tab-menu-content .tabs li:first-child {
  border-radius: 0.5rem 0 0;
  transform: translateZ(0);
}
.faq-tabmenu .tab-menu-content .tabs li:last-child {
  border-radius: 0 0.5rem 0 0;
  transform: translateZ(0);
}
.faq-tabmenu .tab-menu-content .tab-link {
  transition: all 0.5s ease-in-out;
}
.faq-tabmenu .tab-menu-content .tab-content {
  display: none;
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  padding: 4rem;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .tab-menu-content .tab-content {
    padding: 1rem;
  }
}
.faq-tabmenu .tab-menu-content .tab-content.current {
  display: flex;
  animation: fade 0.3s ease-in-out both;
}
.faq-tabmenu .tab-menu-content .tab-content img {
  max-width: 100%;
  border-radius: 0.5rem;
  transform: translateZ(0);
}
.faq-tabmenu .tab-menu-content .tab-content a {
  color: #F79A33;
}
.faq-tabmenu .tab-menu-content .tab-content span {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.faq-tabmenu .tab-menu-content .tab-content p {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #6E6E6E;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .tab-menu-content .tab-content p {
    font-size: 1.6rem;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-tabmenu .tab-menu-content .item .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 4rem 5vw;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .tab-menu-content .item .caption {
    padding: 2rem;
  }
}
.faq-tabmenu .tab-menu-content .item .caption span {
  font-size: clamp(3.2rem, 12vw, 4.4rem);
  letter-spacing: 0.477248px;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tab-menu-content .item .caption span {
    font-size: clamp(3rem, 12vw, 3.2rem);
  }
}
.faq-tabmenu .tab-menu-content .item .caption p {
  font-size: clamp(1.6rem, 12vw, 2rem);
  margin: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .faq-tabmenu .tab-menu-content .item .caption p {
    font-size: clamp(1.4rem, 12vw, 1.6rem);
    margin: 2.8rem 0;
  }
}
.faq-tabmenu .tab-menu-content .item figure {
  width: 100%;
  height: 60rem;
  border-radius: 1rem;
  transform: translateZ(0);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .tab-menu-content .item figure {
    height: auto;
  }
}
.faq-tabmenu .accordion-menu-content {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .accordion-menu-content {
    flex-direction: column;
  }
}
.faq-tabmenu .accordion-menu-content .accordion-menu .dropdownlink {
  cursor: pointer;
}
.faq-tabmenu .accordion-menu-content .category {
  width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .accordion-menu-content .category {
    width: 100%;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
.faq-tabmenu .accordion-menu-content .category li:hover a, .faq-tabmenu .accordion-menu-content .category li.active a {
  color: #191919;
  text-decoration: underline;
}
.faq-tabmenu .accordion-menu-content .category li a {
  font-size: 2.4rem;
  color: rgba(25, 25, 25, 0.35);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .faq-tabmenu .accordion-menu-content .category li a {
    font-size: 1.8rem;
  }
}

main {
  width: 100%;
  position: relative;
  z-index: 100;
  background: #fff;
  will-change: transform;
}

section {
  will-change: transform;
  position: relative;
  margin: 4rem 0;
}
@media only screen and (max-width: 1024px) {
  section {
    margin: 3rem 0;
  }
}
section:first-child {
  margin: 0;
}
section.np {
  padding: 0;
}

section.dark {
  background: #191919;
  color: #fff;
  margin: 0;
  padding-bottom: 8rem;
}
section.dark.cards {
  padding: 0;
}
section.dark.cards::before {
  content: "";
  position: absolute;
  height: 10vh;
  background: #fff;
  inset: auto 0 0 0;
}
@media only screen and (max-width: 1024px) {
  section.dark.cards::before {
    height: auto;
  }
}
section.dark .number {
  background: #fff;
  color: #191919;
}
section.dark .content-headline {
  padding-top: 8rem;
}
section.dark .content-headline p {
  color: #fff;
}
section.dark .bottom {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}
section.dark .bottom .button {
  border: solid #fff 0.1rem;
}
section.orange .number {
  background: #F79A33;
}
section.orange h4 {
  color: #F79A33;
}
section.radius {
  border-radius: 0 0 2rem 2rem;
}

.container {
  padding: 0 5vw;
}
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}
.container.content {
  max-width: 160rem;
  width: 100%;
  margin: auto;
}

[class*=col-] {
  display: grid;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.row.cards {
  gap: 4rem;
}
@media only screen and (max-width: 1370px) {
  .row.cards {
    gap: 2rem;
  }
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}
@media only screen and (max-width: 1024px) {
  .col-3 {
    grid-column: span 6;
  }
}

.col-4 {
  grid-column: span 4;
}
@media only screen and (max-width: 1024px) {
  .col-4 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 768px) {
  .col-4 {
    grid-column: span 12;
  }
}

.col-5 {
  grid-column: span 5;
}
@media only screen and (max-width: 1024px) {
  .col-5 {
    grid-column: span 12;
  }
}

.col-6 {
  grid-column: span 6;
}
@media only screen and (max-width: 1024px) {
  .col-6 {
    grid-column: span 12;
  }
}

.col-7 {
  grid-column: span 7;
}
@media only screen and (max-width: 1024px) {
  .col-7 {
    grid-column: span 12;
  }
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 9;
}

.col-12 {
  grid-column: span 12;
}

.split-line,
.split-parent,
.textanimated {
  overflow: hidden;
}

h1 {
  font-size: clamp(6rem, 12vw, 9.2rem);
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 1920px) {
  h1 {
    font-size: clamp(5rem, 12vw, 7.6rem);
  }
}
@media only screen and (max-width: 1370px) {
  h1 {
    font-size: clamp(4rem, 12vw, 5rem);
  }
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: clamp(3rem, 12vw, 3.8rem);
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: clamp(3rem, 12vw, 3.2rem);
  }
}

h3 {
  font-size: clamp(5.6rem, 12vw, 7.2rem);
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: clamp(3rem, 12vw, 4rem);
  }
}

h4 {
  font-size: clamp(5.6rem, 12vw, 6.2rem);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 1370px) {
  h4 {
    font-size: clamp(4rem, 12vw, 4.2rem);
  }
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }
}

h5 {
  font-size: clamp(2.6rem, 12vw, 5.4rem);
  font-weight: bold;
  line-height: 1.1;
}
@media only screen and (max-width: 1370px) {
  h5 {
    font-size: clamp(4rem, 12vw, 4.2rem);
  }
}
@media only screen and (max-width: 1024px) {
  h5 {
    font-size: clamp(2.6rem, 12vw, 3.2rem);
  }
}

h6 {
  font-size: clamp(2.6rem, 12vw, 3.2rem);
  font-weight: 500;
}

p {
  font-size: clamp(1.6rem, 12vw, 2rem);
  font-family: "Manrope";
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  p {
    font-size: clamp(1.6rem, 12vw, 1.8rem);
    line-height: 1.2;
  }
}

.content-headline {
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 0 8rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .content-headline {
    flex-direction: column;
  }
}
.content-headline.type02 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content-headline.type02 .head-caption {
  display: flex;
  align-items: center;
}
.content-headline .small-head {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
  .content-headline .small-head {
    margin-bottom: 3rem;
  }
}
.content-headline .number {
  margin-bottom: 4rem;
}
.content-headline .head-caption {
  width: 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .content-headline .head-caption {
    width: 100%;
    max-width: 100%;
  }
}
.content-headline .head-caption > div {
  display: flex;
  justify-content: space-between;
}
.content-headline .head-caption > div .button {
  margin-top: 0;
}
.content-headline .head-caption p {
  line-height: 1.4;
  margin: 2rem 0;
}
.content-headline .head-caption .button, .content-headline .head-caption button {
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .content-headline .head-caption .button, .content-headline .head-caption button {
    margin-top: 2rem;
  }
}
.content-headline .head-caption small {
  font-size: 1.6rem;
}
.content-headline .head-caption .date {
  font-size: 1.8rem;
}
.content-headline .image {
  max-width: 60rem;
  width: 100%;
}
.content-headline.center {
  justify-content: center;
}

.small-head {
  font-size: clamp(1.8rem, 12vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.number {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: #191919;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.6rem;
}
.number.light {
  background: #fff;
  color: #191919;
}

.headline-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-list {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 6rem;
}
.site-list img {
  width: 11rem;
}
.site-list .links ol {
  margin-top: 6rem;
}
.site-list .links ol li {
  margin: 2rem 0;
  list-style-type: decimal;
  font-size: 2rem;
  color: #191919;
  padding-left: 1rem;
}
.site-list .links ol li a {
  font-size: 2rem;
  color: #191919;
  display: flex;
  text-transform: capitalize;
}
.site-list .links ol li a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=layout.css.map */
