html {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875rem;
}

:root,
body {
  margin: 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.875rem;
  background-color: #f5f5f5;
}

p {
  margin-bottom: 0;
  padding-bottom: 1rem;
}

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

img {
  max-width: 100%;
}

#breathing-circle {
  transform-origin: center;
  animation: breathing 2s ease-in-out infinite;
}
@keyframes breathing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn {
  border: none;
  outline: none;
  min-width: 222px;
  padding: 12px 32px;
}

.btn-primary {
  background-color: #fff;
  color: #640414 !important;
  --bs-btn-color: #640414;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #640414;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #640414;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #640414;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
}
.btn-primary:hover, .btn-primary.active {
  background-color: rgb(242.25, 242.25, 242.25) !important;
}

.btn-secondary {
  background-color: #640414;
  color: #fff !important;
}
.btn-secondary:hover, .btn-secondary.active {
  background-color: rgb(75.4807692308, 3.0192307692, 15.0961538462) !important;
}

.btn-dark {
  background-color: #1d1d1d;
  color: #fff !important;
}
.btn-dark:hover, .btn-dark.active {
  background-color: rgb(16.25, 16.25, 16.25) !important;
}

.btn-red {
  background-color: #da001a;
  color: #fff !important;
}
.btn-red:hover, .btn-red.active {
  background-color: rgb(192.5, 0, 22.9587155963) !important;
}

.btn-darksealred {
  background-color: #820014;
  color: #fff !important;
}
.btn-darksealred:hover, .btn-darksealred.active {
  background-color: rgb(104.5, 0, 16.0769230769) !important;
}

.btn-browngold {
  background-color: #82613c;
  color: #fff !important;
}
.btn-browngold:hover, .btn-browngold.active {
  background-color: rgb(112.5526315789, 83.9815789474, 51.9473684211) !important;
}

.back-to-top {
  display: none;
  position: fixed;
  border: unset;
  outline: unset;
  background-color: #82613c;
  border-radius: 50%;
  padding: 10px;
  bottom: 2%;
  right: 2%;
  width: 50px;
  height: 50px;
  z-index: 9999;
}
.back-to-top.active {
  display: block;
}
@media (max-width: 576px) {
  .back-to-top {
    display: none !important;
  }
}

.lb-details {
  display: none;
}

header {
  padding: 9px 24px;
}
header .navbar-brand {
  max-width: 172px;
}
header .navbar-nav {
  padding: 13px 23px;
  border-radius: 10px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .navbar-nav .dropdown {
  position: unset;
}
header .navbar-nav .dropdown .dropdown-toggle {
  padding: 7.5px 5px;
  display: flex;
  align-items: center;
  color: #640414;
  font-weight: 500;
  font-size: 0.75rem;
}
header .navbar-nav .dropdown .dropdown-toggle:after {
  border: none;
  content: "";
  background: url("/default/Icon/icon-naviarrow.svg") center/contain no-repeat;
  width: 10px;
  height: 6px;
  margin-left: 10px;
}
header .navbar-nav .dropdown .dropdown-toggle.show {
  font-weight: 600;
  color: #000;
}
header .navbar-nav .dropdown .dropdown-toggle.show:after {
  transform: rotate(180deg);
}
header .navbar-nav .dropdown .dropdown-menu {
  width: 650px;
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.1490196078);
  border: unset;
  margin: 7px 0 0 0;
  padding: 0;
  overflow: hidden;
}
header .navbar-nav .dropdown .dropdown-menu .navi-ctn {
  padding: 24px 32px;
  background-color: #fff;
  row-gap: 18px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  header .navbar-nav .dropdown .dropdown-menu .navi-ctn {
    padding: 20px;
  }
}
header .navbar-nav .dropdown .dropdown-menu .navi-ctn .name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2a2a2a;
}
header .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn a.link {
  margin-bottom: 5px;
  display: block;
}
header .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn a.link .title {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  color: #292929;
}
header .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn .article {
  font-size: 0.688rem;
  font-weight: 500;
  line-height: 0.875rem;
  color: #787878;
  font-family: "Poppins", sans-serif;
}
header .navbar-nav .dropdown .dropdown-menu .intro-ctn {
  padding: 24px 32px;
}
@media (max-width: 1440px) {
  header .navbar-nav .dropdown .dropdown-menu .intro-ctn {
    padding: 20px;
  }
}
header .navbar-nav .dropdown .dropdown-menu .intro-ctn {
  background-color: #f5f5f5;
  border-radius: 10px;
}
header .navbar-nav .dropdown .dropdown-menu .intro-ctn .intro .thumbnail {
  border-radius: 5px;
  overflow: hidden;
}
header .navbar-nav .dropdown .dropdown-menu .intro-ctn .intro .article {
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-top: 5px;
}
header .navbar-nav .dropdown:nth-child(1) .dropdown-menu, header .navbar-nav .dropdown:nth-child(2) .dropdown-menu {
  left: 0;
}
header .navbar-nav .dropdown:nth-child(3) .dropdown-menu, header .navbar-nav .dropdown:nth-child(4) .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}
header .navbar-nav .dropdown:nth-child(5) .dropdown-menu, header .navbar-nav .dropdown:nth-child(6) .dropdown-menu {
  left: unset;
  right: 0;
}
header .navbar-nav .transparent-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -10;
}
@media (max-width: 991px) {
  header .navbar-nav {
    display: none;
  }
}
header .lang-nav {
  position: absolute;
  right: -24px;
  display: flex;
  -moz-column-gap: 28px;
       column-gap: 28px;
  padding: 12px 24px;
  border-radius: 10px 0 0 10px;
}
header .lang-nav .quote-ctn {
  display: flex;
}
header .lang-nav .quote-ctn .quote-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #483323;
}
header .lang-nav .quote-ctn .quote-item svg {
  margin-left: 12px;
}
header .lang-nav .quote-ctn .bd-lt {
  border-left: 1px solid #787878;
  height: 18px;
  margin: 0 12px;
  align-self: center;
}
header .lang-nav .lang-item .dropdown-menu {
  border: unset;
}
header .lang-nav .dropdown-toggle:after {
  display: none;
}
@media (max-width: 1366px) {
  header .lang-nav {
    flex-direction: column;
    padding: 12px;
    align-items: flex-end;
    top: -9px;
  }
  header .lang-nav .quote-ctn {
    flex-direction: column;
  }
  header .lang-nav .quote-ctn .bd-lt {
    display: none;
  }
}
header.scrolled .navbar-brand {
  opacity: 0;
}
header.scrolled .lang-nav {
  background-color: #483323;
}
header.scrolled .lang-nav .quote-ctn .quote-item {
  color: #fff;
}
header.scrolled .lang-nav .lang-item {
  display: none;
}
@media (max-width: 991px) {
  header.scrolled .lang-nav {
    top: 5px;
  }
}

.mobile-navi {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2vh;
  z-index: 10000;
}
.mobile-navi .navbar-nav {
  flex-direction: row;
  padding: 13px;
  border-radius: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-family: "Montserrat", sans-serif;
}
.mobile-navi .navbar-nav .dropdown {
  position: unset;
}
.mobile-navi .navbar-nav .dropdown .dropdown-toggle {
  padding: 7.5px 0px;
  display: flex;
  align-items: center;
  color: #640414;
  font-weight: 500;
  font-size: 0.625rem;
}
.mobile-navi .navbar-nav .dropdown .dropdown-toggle:after {
  display: none;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu {
  width: 252px;
  transform: unset !important;
  top: unset !important;
  bottom: 70px !important;
  border: unset;
  margin: 7px 0 0 0;
  padding: 0;
  overflow: auto;
  height: 45vh;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu .navi-ctn {
  padding: 24px 16px;
  background-color: #fff;
  row-gap: 24px;
  display: flex;
  flex-direction: column;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu .navi-ctn .name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2a2a2a;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn a.link {
  margin-bottom: 5px;
  display: block;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn a.link .title {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  color: #292929;
}
.mobile-navi .navbar-nav .dropdown .dropdown-menu .navi-ctn .link-ctn .article {
  font-size: 0.688rem;
  font-weight: 500;
  line-height: 0.875rem;
  color: #787878;
  font-family: "Poppins", sans-serif;
}
.mobile-navi .navbar-nav .dropdown:nth-child(1) .dropdown-menu, .mobile-navi .navbar-nav .dropdown:nth-child(2) .dropdown-menu {
  left: 0 !important;
}
.mobile-navi .navbar-nav .dropdown:nth-child(3) .dropdown-menu, .mobile-navi .navbar-nav .dropdown:nth-child(4) .dropdown-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.mobile-navi .navbar-nav .dropdown:nth-child(5) .dropdown-menu, .mobile-navi .navbar-nav .dropdown:nth-child(6) .dropdown-menu {
  left: unset !important;
  right: 0 !important;
}
.mobile-navi .navbar-nav .transparent-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -10;
}
@media (min-width: 991px) {
  .mobile-navi {
    display: none;
  }
}

footer {
  background-color: #640414;
  color: #fff;
  padding-top: 65px;
  padding-bottom: 38px;
}
footer .footer-contact-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 576px) {
  footer .footer-contact-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
footer .footer-contact-section .title {
  max-width: 921px;
  margin-bottom: 57px;
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 4rem;
  line-height: 6rem;
}
@media (max-width: 767px) {
  footer .footer-contact-section .title {
    font-size: 2rem;
    line-height: 3rem;
  }
}
footer .footer-contact-section .article {
  max-width: 684px;
  font-weight: 700;
}
footer .footer-contact-section .contact-link-ctn {
  margin-top: 57px;
  display: flex;
  -moz-column-gap: 82px;
       column-gap: 82px;
}
footer .footer-contact-section .contact-link-ctn img {
  margin-right: 10px;
}
@media (max-width: 991px) {
  footer .footer-contact-section .contact-link-ctn {
    flex-direction: column;
    margin-top: 20px;
  }
  footer .footer-contact-section .contact-link-ctn a {
    margin-bottom: 20px;
  }
}
footer .footer-social-section .footer-social {
  margin-bottom: 36px;
  display: flex;
  -moz-column-gap: 64px;
       column-gap: 64px;
  justify-content: center;
}
@media (max-width: 991px) {
  footer .footer-social-section .footer-social {
    margin-bottom: 45px;
  }
}
@media (min-width: 576px) {
  footer .footer-navigation-section {
    padding-top: 64px;
  }
}
footer .footer-navigation-section .navi-ctn .intro-ctn {
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  footer .footer-navigation-section .navi-ctn .intro-ctn {
    margin-bottom: 20px;
  }
}
footer .footer-navigation-section .navi-ctn .intro-ctn .title {
  margin-bottom: 16px;
  color: #82613c;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
footer .footer-navigation-section .navi-ctn .intro-ctn .article {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
footer .footer-navigation-section .navi-ctn .footer-navi {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
footer .footer-navigation-section .navi-ctn .footer-navi .title {
  text-transform: uppercase;
  margin-bottom: 16px;
  border: unset;
  outline: unset;
  background: unset;
  text-align: start;
  color: #fff;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
@media (min-width: 991px) {
  footer .footer-navigation-section .navi-ctn .footer-navi .title {
    cursor: pointer;
    pointer-events: none;
  }
}
@media (max-width: 991px) {
  footer .footer-navigation-section .navi-ctn .footer-navi .title {
    display: flex;
    align-items: center;
  }
  footer .footer-navigation-section .navi-ctn .footer-navi .title::after {
    content: "";
    background: url("/default/Icon/btn-plus.svg") no-repeat center/cover;
    display: flex;
    width: 19px;
    height: 19px;
    margin-left: auto;
  }
  footer .footer-navigation-section .navi-ctn .footer-navi .title.active::after {
    background: url("/default/Icon/btn-minus.svg") no-repeat center/contain;
  }
}
footer .footer-navigation-section .navi-ctn .footer-navi .navi-item-ctn .item-ctn {
  display: flex;
  flex-direction: column;
}
footer .footer-navigation-section .navi-ctn .footer-navi .navi-item-ctn .item-ctn .navi-item {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  footer .footer-navigation-section .navi-ctn .footer-navi .navi-item-ctn {
    display: none;
  }
}
@media (max-width: 991px) {
  footer .footer-navigation-section .navi-ctn .footer-navi {
    margin-bottom: 24px;
  }
}
@media (min-width: 991px) {
  footer .footer-navigation-section .navi-ctn {
    justify-content: space-between;
  }
}
footer .footer-bottom-section {
  padding-top: 38px;
}
footer .footer-bottom-section .footer-logo {
  margin-bottom: 96px;
}
footer .footer-bottom-section .footer-logo img {
  width: 100%;
}
@media (max-width: 991px) {
  footer .footer-bottom-section .footer-logo {
    margin-bottom: 45px;
  }
}
footer .footer-legal-section {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-decoration: underline;
}
@media (max-width: 991px) {
  footer .footer-legal-section {
    margin-bottom: 70px;
  }
}

.home-s1 {
  position: relative;
  overflow: hidden;
}
.home-s1 #background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}
@media (max-width: 576px) {
  .home-s1 #background-video {
    transform: translate(-50%, -70%);
  }
}
.home-s1 #background-video::-webkit-media-controls {
  display: none !important;
}
.home-s1 .container-xxl {
  z-index: 1;
  position: relative;
}
.home-s1 .content-ctn {
  display: flex;
  margin-bottom: 66px;
  margin-top: 20px;
}
.home-s1 .content-ctn .content {
  width: 55%;
}
.home-s1 .content-ctn .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .home-s1 .content-ctn .content .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.home-s1 .content-ctn .content .title {
  margin-bottom: 26px;
}
.home-s1 .content-ctn .content .article {
  color: #483323;
}
.home-s1 .content-ctn .content .direction-ctn {
  display: flex;
  margin-bottom: 32px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.home-s1 .content-ctn .content .direction-ctn .btn img {
  margin-right: 10px;
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .content .direction-ctn {
    flex-direction: column;
    row-gap: 20px;
  }
}
.home-s1 .content-ctn .content .tick-list {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #82613c;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  margin-bottom: 18px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 16px;
  display: flex;
  flex-wrap: wrap;
}
.home-s1 .content-ctn .content .tick-list .tick-item {
  width: 49%;
  display: flex;
}
.home-s1 .content-ctn .content .tick-list .tick-item p {
  padding-bottom: unset;
  align-content: center;
}
.home-s1 .content-ctn .content .tick-list .tick-item img {
  margin-right: 12px;
  width: 27px;
  align-self: flex-start;
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .content .tick-list .tick-item {
    width: 100%;
  }
  .home-s1 .content-ctn .content .tick-list .tick-item img {
    align-self: unset;
  }
}
.home-s1 .content-ctn .content .logo-container {
  position: relative;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
}
.home-s1 .content-ctn .content .logo-container .logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-s1 .content-ctn .content .logo-container .logo-row img {
  height: 60px;
  width: auto;
  animation: flashScale 10s ease-in-out infinite;
  animation-delay: 0s;
}
@keyframes flashScale {
  0%, 40% {
    opacity: 1;
    transform: scale(1);
  }
  45% {
    opacity: 0.1;
    transform: scale(0.3);
  }
  50% {
    opacity: 0;
    transform: scale(0.1);
  }
  55% {
    opacity: 0.1;
    transform: scale(0.3);
  }
  60%, 100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .content {
    width: 100%;
  }
}
.home-s1 .content-ctn .image-ctn {
  width: 45%;
  position: relative;
}
.home-s1 .content-ctn .image-ctn .image {
  position: absolute;
  overflow: hidden;
}
.home-s1 .content-ctn .image-ctn .image img {
  border-radius: 10px;
}
.home-s1 .content-ctn .image-ctn .image:nth-child(1) {
  top: 0;
  right: 0;
  width: 358px;
  height: 502px;
  z-index: 100;
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .image-ctn .image:nth-child(1) {
    width: 80%;
    aspect-ratio: 1.17;
    height: auto;
    display: flex;
    margin-left: auto;
  }
  .home-s1 .content-ctn .image-ctn .image:nth-child(1) img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.home-s1 .content-ctn .image-ctn .image:nth-child(2) {
  left: 0;
  bottom: 0;
  width: 363px;
  height: 310px;
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .image-ctn .image:nth-child(2) {
    width: 60%;
    aspect-ratio: 1.31;
    height: auto;
    display: flex;
    margin-top: -20%;
  }
  .home-s1 .content-ctn .image-ctn .image:nth-child(2) img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .image-ctn .image {
    position: relative;
  }
}
@media (max-width: 991px) {
  .home-s1 .content-ctn .image-ctn {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .home-s1 .content-ctn {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .home-s1 {
    margin-bottom: 50px;
  }
}

.home-s2 {
  margin-top: 66px;
  margin-bottom: 66px;
}
.home-s2 .content-ctn {
  display: flex;
  align-items: center;
  max-width: 1062px;
  margin: 0 auto 108px;
  -moz-column-gap: 13px;
       column-gap: 13px;
}
.home-s2 .content-ctn .title {
  width: 40%;
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 4rem;
  line-height: 6rem;
}
@media (max-width: 767px) {
  .home-s2 .content-ctn .title {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.home-s2 .content-ctn .article {
  width: 60%;
  color: #818181;
  font-weight: 700;
}
@media (max-width: 991px) {
  .home-s2 .content-ctn {
    flex-direction: column;
  }
  .home-s2 .content-ctn .title,
  .home-s2 .content-ctn .article {
    width: 100%;
  }
  .home-s2 .content-ctn .title {
    margin-bottom: 24px;
  }
}
.home-s2 .rotate-ctn {
  display: flex;
  -moz-column-gap: 1.333%;
       column-gap: 1.333%;
}
.home-s2 .rotate-ctn .rotate-item {
  width: 24%;
  text-align: center;
}
.home-s2 .rotate-ctn .rotate-item .title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  line-height: 1.875rem;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .home-s2 .rotate-ctn .rotate-item .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.home-s2 .rotate-ctn .rotate-item .number {
  font-family: "Poppins", sans-serif;
  font-size: 4.625rem;
  font-weight: 275;
  line-height: 4.625rem;
  display: inline-block;
  min-height: 4.625rem;
  color: #e15856;
}
.home-s2 .rotate-ctn .rotate-item .counter-value {
  display: inline-block;
}
.home-s2 .rotate-ctn .rotate-item .article {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
}
@media (max-width: 991px) {
  .home-s2 .rotate-ctn .rotate-item .article {
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
@media (max-width: 991px) {
  .home-s2 .rotate-ctn .rotate-item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 991px) {
  .home-s2 .rotate-ctn {
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 24px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .home-s2 {
    margin-bottom: 120px;
  }
}

.home-s3 {
  position: relative;
  overflow: hidden;
}
.home-s3 .content-ctn {
  text-align: center;
  justify-items: center;
}
.home-s3 .content-ctn .sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  .home-s3 .content-ctn .sub-title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.home-s3 .content-ctn .sub-title {
  margin-bottom: 10px;
}
.home-s3 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .home-s3 .content-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.home-s3 .content-ctn .title {
  margin-bottom: 45px;
}
.home-s3 .content-ctn .article {
  max-width: 582px;
  font-weight: 700;
  margin: auto auto 75px;
  color: #404040;
}
.home-s3 .image-ctn {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.home-s3 .image-ctn .marquee-ctn {
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}
.home-s3 .image-ctn .marquee-ctn .print-list .print-item {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
}
.home-s3 .image-ctn .marquee-ctn .print-list .print-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 368/330;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.home-s3 .image-ctn .marquee-ctn .print-list .print-item:hover img {
  scale: 1.05;
}
.home-s3 .image-ctn .marquee-ctn .print-list:first-child {
  margin-bottom: 10px;
}
.home-s3 .direction-ctn {
  position: relative;
  z-index: 2;
  margin: 55px auto auto;
  width: -moz-fit-content;
  width: fit-content;
}
.home-s3 .bottom-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 350px;
  background-color: #640414;
  background: url("/default/bg-bubble.png") no-repeat center/cover, linear-gradient(180deg, rgba(100, 4, 20, 0) 0%, #640414 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 991px) {
  .home-s3 .bottom-gradient {
    background: linear-gradient(180deg, rgba(100, 4, 20, 0) 0%, #640414 100%);
  }
}

.home-s4 {
  padding-top: 132px;
  color: #fff;
  background: url("/default/bg-bubble.png") no-repeat center/cover, #640414;
}
.home-s4 .content-ctn .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 4rem;
  line-height: 6rem;
}
@media (max-width: 767px) {
  .home-s4 .content-ctn .content .title {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.home-s4 .content-ctn .content .title {
  letter-spacing: 0;
}
.home-s4 .content-ctn .content .article {
  font-weight: 700;
}
.home-s4 .content-ctn .content {
  margin-bottom: 79px;
}
.home-s4 .content-ctn .direction-ctn .direction-item {
  padding-bottom: 48px;
  border-bottom: 2px dashed rgba(160, 160, 160, 0.5019607843);
}
.home-s4 .content-ctn .direction-ctn .direction-item .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .home-s4 .content-ctn .direction-ctn .direction-item .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.home-s4 .content-ctn .direction-ctn .direction-item .title {
  margin-bottom: 16px;
}
.home-s4 .content-ctn .direction-ctn .direction-item .article {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.home-s4 .content-ctn .direction-ctn .direction-item .btn-browngold {
  border-radius: 16px;
  padding: 4px 24px;
  min-width: unset;
}
.home-s4 .content-ctn .direction-ctn .direction-item:not(:first-child) {
  padding-top: 48px;
}
@media (max-width: 991px) {
  .home-s4 .content-ctn .direction-ctn .direction-item:last-child {
    border-bottom: unset;
  }
}
.home-s4 .image-ctn {
  z-index: 1;
  margin-top: 96px;
  top: 100px;
}
.home-s4 .image-ctn.sticky-top {
  position: sticky;
}
.home-s4 .image-ctn img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .home-s4 .image-ctn {
    display: none;
  }
}
@media (min-width: 991px) {
  .home-s4 {
    padding-bottom: 150px;
  }
}

.home-s5 {
  background: #190a00;
  color: #fff;
}
.home-s5 .content-ctn {
  position: relative;
  background: url("/default/bg-home-s5.png") no-repeat center/cover;
  padding-top: 82px;
  padding-bottom: 155px;
}
.home-s5 .content-ctn .content {
  position: relative;
  z-index: 2;
  max-width: 972px;
}
.home-s5 .content-ctn .content .article {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .home-s5 .content-ctn .content .article {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.home-s5 .content-ctn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (max-width: 991px) {
  .home-s5 .content-ctn {
    background-position: right;
    padding-top: 66px;
    padding-bottom: 66px;
  }
}
.home-s5 .list {
  margin-top: 100px;
}
@media (991px) {
  .home-s5 .list {
    margin-top: 50px;
  }
}
.home-s5 .list .list-item {
  display: flex;
}
.home-s5 .list .list-item .number {
  width: 38px;
  margin-right: 20px;
  color: #e60000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .home-s5 .list .list-item .number {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.home-s5 .list .list-item .item-content .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .home-s5 .list .list-item .item-content .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.home-s5 .list .list-item .item-content .title {
  margin-bottom: 18px;
}
.home-s5 .list .list-item .item-content .article {
  font-size: 1.125rem;
}
.home-s5 .image-ctn {
  z-index: 1;
  margin-top: 132px;
}
.home-s5 .image-ctn.sticky-top {
  top: 100px;
}
.home-s5 .image-ctn img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .home-s5 .image-ctn {
    display: none;
  }
}
.home-s5 .direction-ctn {
  margin-top: 102px;
  justify-items: center;
}
.home-s5 .direction-ctn .article {
  max-width: 742px;
  font-size: 1.125rem;
  margin: auto auto 40px;
  text-align: center;
}
.home-s5 .direction-ctn .direction-link {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: center;
}
@media (max-width: 991px) {
  .home-s5 .direction-ctn .direction-link {
    flex-direction: column;
    row-gap: 20px;
  }
}

.home-s6 {
  padding-top: 93px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 116px;
}
.home-s6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #190a00;
  z-index: 1;
}
.home-s6 .content-ctn {
  position: relative;
  z-index: 2;
}
.home-s6 .content-ctn .article {
  max-width: 1055px;
  justify-self: center;
  color: #ababab;
  letter-spacing: 0;
  margin: auto 20px 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 4rem;
  line-height: 6rem;
}
@media (max-width: 767px) {
  .home-s6 .content-ctn .article {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.home-s6 .splide {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.home-s6 .splide .splide__arrow {
  background: #fff;
  color: #81623d;
}
.home-s6 .splide .splide__arrow svg {
  fill: #e60000;
  width: 1.5rem;
  height: 1.5rem;
}
.home-s6 .splide .item {
  aspect-ratio: 330/440;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 25px 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.home-s6 .splide .item .shadow {
  background: linear-gradient(0deg, #210000 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.home-s6 .splide .item .content-ctn {
  margin-top: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}
.home-s6 .splide .item .content-ctn .cate {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.home-s6 .splide .item .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .home-s6 .splide .item {
    height: 257px;
  }
}
@media (max-width: 576px) {
  .home-s6 .splide .item {
    aspect-ratio: unset;
  }
}

.home-s7 {
  margin-bottom: 62px;
}
.home-s7 .conten-ctn .article {
  font-size: 0.875rem;
}
.home-s7 .logo-ctn {
  color: #81623d;
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}
.home-s7 .logo-ctn .bd-lt {
  margin-left: 22px;
  margin-right: 22px;
  width: 1px;
  border-left: 1px currentColor solid;
  height: -webkit-fill-available;
  max-height: 40px;
}
.home-s7 .logo-ctn .text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
}
.home-s7 .image-ctn {
  row-gap: 30px;
}
.home-s7 .image-ctn a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-s7 .image-ctn a .image {
  width: 50%;
}
.home-s7 .image-ctn a .image img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .home-s7 {
    margin-bottom: 20px;
  }
  .home-s7 .logo-ctn .bd-lt {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.print-s1 {
  margin-top: 75px;
}
.print-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.print-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .print-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.print-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.print-s1 .article-ctn {
  background: url("/default/print-s1.png") no-repeat center/cover;
  padding-top: 113px;
  padding-bottom: 83px;
}
.print-s1 .article-ctn .article {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 2.75rem;
  font-weight: 275;
  letter-spacing: 0;
  text-align: center;
  max-width: 1032px;
  margin: auto auto;
  justify-self: center;
}
@media (max-width: 991px) {
  .print-s1 .article-ctn .article {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}

.print-s2 {
  margin-top: 100px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .print-s2 {
    margin-top: 50px;
  }
}
.print-s2 .container-xxl .list {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.print-s2 .container-xxl .list .list-item {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}
.print-s2 .container-xxl .list .list-item .title {
  font-size: 3.5rem;
  line-height: 3.675rem;
  color: rgba(0, 0, 0, 0.1882352941);
}
@media (max-width: 991px) {
  .print-s2 .container-xxl .list .list-item .title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.print-s2 .container-xxl .list .list-item .mobile-sticky-image {
  display: none;
}
.print-s2 .container-xxl .list .list-item.active .title {
  color: #e51310;
}
@media (max-width: 991px) {
  .print-s2 .container-xxl .list .list-item {
    position: relative;
  }
  .print-s2 .container-xxl .list .list-item.active .mobile-sticky-image {
    display: block;
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    bottom: -155px;
    left: 0;
    z-index: 10;
    background: #fff;
  }
  .print-s2 .container-xxl .list .list-item.active .mobile-sticky-image .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 250px;
    height: 187px;
  }
}
@media (max-width: 991px) {
  .print-s2 .container-xxl .list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.print-s2 .sticky-image-container {
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .print-s2 .sticky-image-container {
    display: none;
  }
}
.print-s2 .sticky-image-container .sticky-image {
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: scale(0.95);
  display: none;
  flex-direction: column;
  gap: 20px;
}
.print-s2 .sticky-image-container .sticky-image .image {
  width: 100%;
  aspect-ratio: 384/215;
  overflow: hidden;
  background: #fff;
  display: flex;
  padding: 10px 20px;
}
.print-s2 .sticky-image-container .sticky-image .image img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.print-s2 .sticky-image-container .sticky-image .logo-ctn {
  display: flex;
  -moz-column-gap: 7%;
       column-gap: 7%;
}
.print-s2 .sticky-image-container .sticky-image .logo-ctn .logo {
  width: 20%;
}
.print-s2 .sticky-image-container .sticky-image.active {
  opacity: 1;
  display: flex;
  transform: scale(1);
}

.print-s3 {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .print-s3 {
    padding-top: 110px;
  }
}
.print-s3.coreservice-s3 {
  padding-top: 50px;
}
.print-s3.service-s3 {
  padding-top: 30px;
}
.print-s3 .filter-ctn {
  display: flex;
  margin-bottom: 48px;
}
.print-s3 .filter-ctn .labels-ctn {
  max-width: 1072px;
}
.print-s3 .filter-ctn .labels-ctn .title {
  color: #818181;
  margin-bottom: 7px;
}
.print-s3 .filter-ctn .labels-ctn .label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.print-s3 .filter-ctn .labels-ctn .label-list .label-item {
  position: relative;
}
.print-s3 .filter-ctn .labels-ctn .label-list .label-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  border-radius: 16px;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.16s ease;
}
.print-s3 .filter-ctn .labels-ctn .label-list .label-item label:hover {
  background: #640414;
  color: #fff;
}
.print-s3 .filter-ctn .labels-ctn .label-list .label-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
}
.print-s3 .filter-ctn .labels-ctn .label-list .label-item input:checked + label {
  background: #640414;
  border-color: #640414;
  color: #fff;
}
.print-s3 .filter-ctn .select-ctn {
  max-width: 230px;
  width: 100%;
  flex-grow: 1;
  height: 25px;
}
.print-s3 .filter-ctn .select-ctn .title {
  color: #818181;
  margin-bottom: 7px;
}
.print-s3 .filter-ctn .select-ctn .select-wrap {
  position: relative;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.15s;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-header .selected-value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-header .arrow {
  font-size: 0.8rem;
  width: 8px;
  margin-left: 3px;
  transition: transform 0.25s;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list {
  position: relative;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.18s ease;
  pointer-events: none;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .hr {
  width: 182px;
  border-top: 1px solid #000000;
  margin: auto;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .dropdown-item {
  position: relative;
  padding: 10px 24px;
  transition: all 0.12s;
  white-space: unset;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .dropdown-item label {
  width: 100%;
  cursor: pointer;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .dropdown-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
}
.print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .dropdown-item:hover, .print-s3 .filter-ctn .select-ctn .select-wrap .dropdown-list .dropdown-item.active {
  background: #640414;
  color: #fff;
}
.print-s3 .filter-ctn .select-ctn .select-wrap.active .dropdown-header {
  border-radius: 16px 16px 0 0;
}
.print-s3 .filter-ctn .select-ctn .select-wrap.active .dropdown-header .arrow {
  transform: rotate(180deg);
}
.print-s3 .filter-ctn .select-ctn .select-wrap.active .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  max-width: 230px;
}
@media (max-width: 991px) {
  .print-s3 .filter-ctn {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
}
.print-s3 .list .item {
  color: #4e4e4e;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 60px;
}
.print-s3 .list .item .image-ctn a {
  display: block;
  width: 100%;
  height: 100%;
}
.print-s3 .list .item .image-ctn .carousel-image {
  border-radius: 10px;
}
.print-s3 .list .item .image-ctn .placeholder-image {
  border-radius: 10px;
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.1490196078);
  width: 100%;
  aspect-ratio: 1.33/1;
}
.print-s3 .list .item .project-name {
  margin-top: 10px;
}
.print-s3 .list .item .client-name {
  margin-bottom: 10px;
  color: #180a00;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.print-s3 .list .item .tag-ctn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.print-s3 .list .item .tag-ctn .tag {
  background-color: #fff;
  color: #000;
  padding: 4px 24px;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
  border-radius: 16px;
}
.print-s3 .list .item .intro {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.print-s3 .list .item .details .span-text {
  display: block;
  width: 76px;
  color: #000;
}
.print-s3 .list .item .details .finished-size,
.print-s3 .list .item .details .binding,
.print-s3 .list .item .details .paper,
.print-s3 .list .item .details .finishing {
  display: flex;
}
.print-s3 .list .item .details .finished-size p,
.print-s3 .list .item .details .binding p,
.print-s3 .list .item .details .paper p,
.print-s3 .list .item .details .finishing p {
  width: calc(100% - 76px);
  padding-bottom: 8px;
}
.print-s3 .list .no-match {
  margin-top: 187px;
  margin-bottom: 215px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.print-s3 .list .no-match .text {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .print-s3 .list .no-match .text {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.print-s3 .list .no-match .text .red {
  color: #da001a;
}
.print-s3 .list .no-match .btn {
  width: 159px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-s3 .list .no-match .btn img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.print-s3 .print-pagination .a {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.print-s3 .print-pagination li {
  margin: 0 4px;
}
.print-s3 .print-pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: all 0.2s;
}
.print-s3 .print-pagination .paginationjs-page:not(.active) a {
  color: #333333;
}
.print-s3 .print-pagination .paginationjs-page.active a {
  font-weight: bold;
}
.print-s3 .print-pagination .paginationjs-ellipsis {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #666;
  font-size: 16px;
}
.print-s3 .print-pagination.disabled a {
  color: #666;
  background: #f5f5f5;
  border-color: #ddd;
  cursor: not-allowed;
  pointer-events: none;
}

.machinery-s1 {
  margin-top: 75px;
}
.machinery-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.machinery-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .machinery-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.machinery-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.machinery-s1 .article-ctn {
  background: url("/default/machinery-s1.png") no-repeat center/cover;
  padding-top: 113px;
  padding-bottom: 83px;
}
.machinery-s1 .article-ctn .article {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 2.75rem;
  font-weight: 275;
  letter-spacing: 0;
  text-align: center;
  max-width: 1032px;
  margin: auto auto;
  justify-self: center;
}

.machinery-s2 {
  padding-top: 146px;
  background-color: #fff;
}
.machinery-s2 .content-ctn {
  display: flex;
}
.machinery-s2 .content-ctn .partner-list {
  margin-top: -91px;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 80%;
}
.machinery-s2 .content-ctn .partner-list .partner-item {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.machinery-s2 .content-ctn .partner-list .partner-item .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .machinery-s2 .content-ctn .partner-list .partner-item .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.machinery-s2 .content-ctn .partner-list .partner-item .title {
  color: #640414;
}
.machinery-s2 .content-ctn .partner-list .partner-item .logo {
  padding: 20px 20px 0px;
  align-self: start;
}
.machinery-s2 .content-ctn .partner-list .partner-item .logo img {
  max-width: 250px;
  height: 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .machinery-s2 .content-ctn .partner-list .partner-item .logo img {
    max-width: 175px;
  }
}
@media (max-width: 576px) {
  .machinery-s2 .content-ctn .partner-list .partner-item .logo {
    padding: 10px 10px 0px;
  }
  .machinery-s2 .content-ctn .partner-list .partner-item .logo img {
    max-width: 100px;
  }
}
.machinery-s2 .content-ctn .partner-list .partner-item .image {
  max-width: 329px;
  max-height: 340px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.machinery-s2 .content-ctn .partner-list .partner-item .image img {
  width: 100%;
}
@media (max-width: 576px) {
  .machinery-s2 .content-ctn .partner-list .partner-item .image {
    max-width: 70%;
  }
}
.machinery-s2 .content-ctn .partner-list .partner-item:first-child {
  justify-content: center;
}
.machinery-s2 .content-ctn .partner-list .partner-item:nth-child(n+2):nth-child(-n+4) {
  background-color: #820014;
}
.machinery-s2 .content-ctn .partner-list .partner-item:nth-child(n+5):nth-child(-n+8) {
  background-color: #82613c;
}
@media (max-width: 991px) {
  .machinery-s2 .content-ctn .partner-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 991px) {
  .machinery-s2 .content-ctn {
    padding-bottom: 132px;
  }
}

.machinery-s3 {
  margin-top: 63px;
  margin-bottom: 40px;
}
.machinery-s3 .content-ctn {
  padding-top: 64px;
  padding-bottom: 64px;
}
.machinery-s3 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .machinery-s3 .content-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.machinery-s3 .content-ctn .article {
  margin-bottom: 40px;
}
.machinery-s3 .content-ctn .bf-ctn {
  display: flex;
}
.machinery-s3 .content-ctn .bf-ctn .bf {
  width: 175px;
  font-weight: 700;
}
.machinery-s3 .content-ctn .bf-ctn .bf-article {
  width: calc(100% - 187px);
}
.machinery-s3 .content-ctn .image {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
.machinery-s3 .content-ctn .image img {
  width: 100%;
}
.machinery-s3 .content-ctn .direction-ctn {
  display: flex;
  align-items: center;
}
.machinery-s3 .content-ctn .direction-ctn .direction-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.machinery-s3 .content-ctn .direction-ctn .direction-link {
  margin-left: auto;
}
.machinery-s3 .content-ctn:not(:last-child) {
  border-bottom: 1px solid #818181;
}

.machinery-s4 {
  background-color: #fff;
  padding-top: 102px;
  padding-bottom: 33px;
}
.machinery-s4 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .machinery-s4 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.machinery-s4 .title {
  font-weight: 275;
  max-width: 886px;
  text-align: center;
  margin: auto;
}
.machinery-s4 .intro-ctn .intro-collapse {
  text-align: start !important;
  padding: 64px 0;
  width: 100%;
  border: unset;
  outline: unset;
  background-color: unset;
  position: relative;
}
.machinery-s4 .intro-ctn .intro-collapse .btn-name {
  width: 483px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .machinery-s4 .intro-ctn .intro-collapse .btn-name {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse .btn-name {
    width: 100%;
    padding-right: 30px;
  }
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn {
  display: none;
  position: relative;
  z-index: 10;
  width: calc(100% - 509px);
  margin-left: auto;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content {
  margin-top: -50px;
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content {
    margin-top: 20px;
  }
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .article {
  margin-bottom: 40px;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .feature-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 40px;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .feature-list .feature-item {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .feature-list .feature-item .feature {
  width: 175px;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .feature-list .feature-item .benefit {
  width: calc(100% - 187px);
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn {
  display: flex;
  align-items: center;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn .direction-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn .direction-link {
  margin-left: auto;
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn {
    flex-direction: column;
  }
  .machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn .direction-link {
    margin-left: unset;
    margin-top: 16px;
  }
  .machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn .content .direction-ctn .direction-link a {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse .cust-cl-ctn {
    width: 100%;
    margin-left: unset;
    margin-top: 20px;
  }
}
.machinery-s4 .intro-ctn .intro-collapse::after {
  content: "";
  display: block;
  background: url("/default/Icon/icon-collaspe.svg") no-repeat center/cover;
  width: 52px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse::after {
    width: 26px;
    height: 13px;
  }
}
.machinery-s4 .intro-ctn .intro-collapse.active .cust-cl-ctn {
  display: flex;
}
.machinery-s4 .intro-ctn .intro-collapse.active::after {
  top: 13%;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .machinery-s4 .intro-ctn .intro-collapse.active::after {
    top: 50%;
  }
}
.machinery-s4 .intro-ctn:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.digitalprint-s1 {
  margin-top: 75px;
  margin-bottom: 84px;
}
.digitalprint-s1 .title-ctn {
  max-width: 709px;
  margin-bottom: 124px;
}
.digitalprint-s1 .title-ctn .title {
  font-family: "Poppins", sans-serif;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .digitalprint-s1 .title-ctn .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.digitalprint-s1 .title-ctn .title {
  font-weight: 400;
}
.digitalprint-s1 .title-ctn .sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .digitalprint-s1 .title-ctn .sub-title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 991px) {
  .digitalprint-s1 .title-ctn {
    margin-bottom: 60px;
  }
}
.digitalprint-s1 .intro-ctn {
  max-width: 1191px;
  margin: auto;
}
.digitalprint-s1 .intro-ctn .intro-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .digitalprint-s1 .intro-ctn .intro-title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.digitalprint-s1 .intro-ctn .intro .article {
  margin-bottom: 40px;
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-title {
  color: #640414;
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-title .feature {
  width: 175px;
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-title .benefit {
  width: calc(100% - 187px);
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-item {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-item .feature {
  width: 175px;
}
.digitalprint-s1 .intro-ctn .intro .feature-list .feature-item .benefit {
  width: calc(100% - 187px);
}
.digitalprint-s1 .direction-ctn {
  display: flex;
  align-items: center;
}
.digitalprint-s1 .direction-ctn .direction-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.digitalprint-s1 .direction-ctn .direction-link {
  margin-left: auto;
}
.digitalprint-s1 .direction-ctn .direction-link .btn {
  min-width: unset;
}
@media (max-width: 991px) {
  .digitalprint-s1 {
    margin-bottom: 42px;
  }
}

.digitalprint-s2 {
  padding-top: 103px;
  padding-bottom: 103px;
  background-color: #640414;
  overflow: hidden;
}
.digitalprint-s2 .title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .digitalprint-s2 .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.digitalprint-s2 .article {
  color: #fff;
}
.digitalprint-s2 .slide-ctn {
  margin-top: 65px;
  position: relative;
  container-type: inline-size;
  max-width: 1032px;
}
.digitalprint-s2 .slide-ctn .splide .splide__slide .item {
  height: 100%;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 15px 17px;
  position: relative;
  border-radius: 10px;
  aspect-ratio: 1;
}
.digitalprint-s2 .slide-ctn .splide .splide__slide .item .gallery-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.digitalprint-s2 .slide-ctn .splide .splide__slide:nth-child(odd) .item {
  color: #000;
}

.digitalprint-s3 {
  margin-top: 53px;
  margin-bottom: 129px;
}
.digitalprint-s3 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .digitalprint-s3 .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.digitalprint-s3 .title {
  margin-bottom: 20px;
}
.digitalprint-s3 .content-ctn .function-item {
  margin-bottom: 47px;
}
.digitalprint-s3 .content-ctn .function-item .title {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #da001a;
  margin-bottom: 6px;
}

.coreservice-s1 {
  margin-top: 75px;
  margin-bottom: 91px;
}
.coreservice-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.coreservice-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .coreservice-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.coreservice-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.coreservice-s1 .slide-ctn {
  max-width: 1440px;
  margin: auto;
}
.coreservice-s1 .slide-ctn .splide .splide__track {
  padding: 0 40px !important;
}
.coreservice-s1 .slide-ctn .splide .splide__arrow {
  background: #fff;
  color: #81623d;
}
.coreservice-s1 .slide-ctn .splide .splide__arrow svg {
  fill: #e60000;
  width: 1.5rem;
  height: 1.5rem;
}
.coreservice-s1 .slide-ctn {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.coreservice-s1 .slide-ctn .services-list .service-item {
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  aspect-ratio: 0.7518;
  overflow: hidden;
  min-width: 208px;
}
@media (max-width: 767px) {
  .coreservice-s1 .slide-ctn .services-list .service-item {
    min-width: unset;
  }
}
@media (max-width: 576px) {
  .coreservice-s1 .slide-ctn .services-list .service-item {
    aspect-ratio: unset;
  }
}
.coreservice-s1 .slide-ctn .services-list .service-item .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.coreservice-s1 .slide-ctn .services-list .service-item .content .page-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: 1rem;
  line-height: 1.25rem;
  height: 60px;
}
.coreservice-s1 .slide-ctn .services-list .service-item .content .article {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-size: 0.75rem;
  height: 120px;
}
.coreservice-s1 .slide-ctn .services-list .service-item .content .direction-link {
  height: 30px;
  border-bottom: 1.5px dashed #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.coreservice-s1 .slide-ctn .services-list .service-item .content .direction-link .service-link {
  font-weight: 500;
  display: flex;
}
.coreservice-s1 .slide-ctn .services-list .service-item .content .direction-link .service-link img {
  margin-left: 4px;
}
.coreservice-s1 .slide-ctn .services-list .service-item:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.coreservice-s2 {
  padding-top: 64px;
  padding-bottom: 64px;
  background: url("/default/bg-service-s2.png") no-repeat center/cover;
  color: #fff;
  position: relative;
}
.coreservice-s2 .content-ctn {
  position: relative;
  z-index: 2;
  max-width: 80%;
}
@media (max-width: 991px) {
  .coreservice-s2 .content-ctn {
    max-width: unset;
  }
}
.coreservice-s2 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .coreservice-s2 .content-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.coreservice-s2 .content-ctn .title {
  margin-bottom: 40px;
}
.coreservice-s2 .content-ctn .article {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.coreservice-s2::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.service-s1 {
  margin-top: 75px;
  margin-bottom: 64px;
}
.service-s1 .title-ctn {
  margin-bottom: 64px;
}
.service-s1 .title-ctn .title-keyword-ctn {
  display: flex;
}
.service-s1 .title-ctn .title-keyword-ctn .title {
  max-width: 909px;
  font-family: "Poppins", sans-serif;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .service-s1 .title-ctn .title-keyword-ctn .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.service-s1 .title-ctn .title-keyword-ctn .title {
  font-weight: 400;
}
.service-s1 .title-ctn .title-keyword-ctn .keyword {
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 275;
  max-width: 400px;
}
@media (max-width: 576px) {
  .service-s1 .title-ctn .title-keyword-ctn {
    flex-wrap: wrap-reverse;
  }
}
.service-s1 .title-ctn .sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.service-s1 .article-ctn {
  background: url("/default/servicechild-s1.png") no-repeat center/cover;
  padding-top: 113px;
  padding-bottom: 83px;
}
@media (max-width: 991px) {
  .service-s1 .article-ctn {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.service-s1 .article-ctn .article {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 2.75rem;
  font-weight: 275;
  letter-spacing: 0;
  text-align: center;
  max-width: 1032px;
  margin: auto auto;
  justify-self: center;
}

.service-s2 {
  margin-bottom: 45px;
}
.service-s2 .section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .service-s2 .section-title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.service-s2 .section-title {
  margin-bottom: 50px;
}
.service-s2 .offer-list {
  display: flex;
  -moz-column-gap: 1.25%;
       column-gap: 1.25%;
  row-gap: 20px;
  margin-bottom: 20px;
}
.service-s2 .offer-list .offer-item {
  width: 19%;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.service-s2 .offer-list .offer-item .backdrop {
  background: #000000;
  opacity: 40%;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.service-s2 .offer-list .offer-item .content {
  position: relative;
  z-index: 2;
  padding: 15px 12.5px;
}
.service-s2 .offer-list .offer-item .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  height: 56px;
}
.service-s2 .offer-list .offer-item .content .article {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .service-s2 .offer-list {
    flex-wrap: wrap;
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
  .service-s2 .offer-list .offer-item {
    width: 49%;
  }
}
@media (max-width: 576px) {
  .service-s2 .offer-list .offer-item {
    width: 100%;
  }
}
.service-s2 .article {
  margin-bottom: 40px;
}
.service-s2 .image-gallery {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.5714%;
       column-gap: 0.5714%;
  row-gap: 20px;
}
.service-s2 .image-gallery .logo {
  width: 12%;
  padding: 10px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.service-s2 .image-gallery .logo img {
  max-width: 68px;
  max-height: 42px;
}
@media (max-width: 991px) {
  .service-s2 .image-gallery .logo {
    width: 32%;
  }
}
@media (max-width: 576px) {
  .service-s2 .image-gallery {
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
  .service-s2 .image-gallery .logo {
    width: 49%;
  }
}

.service-s3 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .service-s3 .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.service-s3 .title {
  margin-bottom: 30px;
}

.business-s1 {
  margin-top: 75px;
  margin-bottom: 20px;
}
.business-s1 .title-ctn {
  margin-bottom: 74px;
}
.business-s1 .title-ctn .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.business-s1 .title-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .business-s1 .title-ctn .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.business-s1 .title-ctn .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.business-s1 .block-list .block-item {
  display: flex;
  flex-wrap: wrap;
}
.business-s1 .block-list .block-item .block-ctn {
  width: 50%;
  aspect-ratio: 1;
}
.business-s1 .block-list .block-item.first {
  background: url("/default/bg-business-s1.jpg") no-repeat center/cover;
}
.business-s1 .block-list .block-item.first .block-ctn {
  position: relative;
  padding: 208px 77px 0 74px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .business-s1 .block-list .block-item.first .block-ctn {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.business-s1 .block-list .block-item.first .block-ctn {
  font-weight: 600;
  line-height: 2.75rem;
}
.business-s1 .block-list .block-item.first .block-ctn .article {
  position: relative;
  z-index: 2;
}
.business-s1 .block-list .block-item.first .block-ctn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #640014;
  opacity: 0.5;
  z-index: 1;
}
@media (max-width: 991px) {
  .business-s1 .block-list .block-item.first .block-ctn {
    width: 100%;
    padding: 76px 20px;
  }
}
.business-s1 .block-list .block-item.second .block-ctn {
  font-size: 1.125rem;
  line-height: 2.25rem;
}
.business-s1 .block-list .block-item.second .block-ctn:first-child {
  padding: 208px 128px 0 74px;
  background: url("/default/bg-bubble-wh.png") no-repeat center/cover;
}
@media (max-width: 1440px) {
  .business-s1 .block-list .block-item.second .block-ctn:first-child {
    padding: 104px 128px 0 74px;
  }
}
@media (max-width: 991px) {
  .business-s1 .block-list .block-item.second .block-ctn:first-child {
    padding: 76px 20px;
  }
}
.business-s1 .block-list .block-item.second .block-ctn:last-child a:hover {
  opacity: 0.8;
}
.business-s1 .block-list .block-item.second .block-ctn:last-child img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  aspect-ratio: 1;
}
@media (max-width: 991px) {
  .business-s1 .block-list .block-item.second .block-ctn {
    width: 100%;
  }
}

.business-s2 {
  background-color: #fff;
  padding-top: 107px;
  padding-bottom: 89px;
}
.business-s2 .title-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .business-s2 .title-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.business-s2 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .business-s2 .content-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.business-s2 .content-ctn .title {
  margin-bottom: 16px;
}
.business-s2 .content-ctn .image {
  width: 40%;
  margin: 20px auto;
}
.business-s2 .content-ctn .contact-ctn {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.business-s2 .content-ctn .contact-ctn .contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .business-s2 .content-ctn .contact-ctn .contact-title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.business-s2 .content-ctn .contact-ctn .contact-title {
  font-weight: 275;
}
.business-s2 .content-ctn .contact-ctn .contact-content {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 576px) {
  .business-s2 .content-ctn .contact-ctn .contact-content .address-ctn {
    width: 100%;
  }
}
.business-s3 {
  margin-top: 64px;
  margin-bottom: 103px;
}
.business-s3 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .business-s3 .content-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.business-s3 .content-ctn .title {
  margin-bottom: 16px;
}
.business-s3 .content-ctn .article {
  margin-bottom: 16px;
}
.business-s3 .content-ctn .splide-ctn {
  margin-bottom: 80px;
}
.business-s3 .content-ctn .splide-ctn .splide .image img {
  aspect-ratio: 856/481;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.business-s3 .content-ctn .splide-ctn .splide .splide__pagination {
  margin-top: 16px;
  margin-bottom: 16px;
  position: unset;
}
.business-s3 .content-ctn .splide-ctn .splide .splide__pagination .splide__pagination__page {
  border-radius: 3px;
  width: 7px;
  height: 15px;
  background-color: #b5b5b5;
}
.business-s3 .content-ctn .splide-ctn .splide .splide__pagination .splide__pagination__page.is-active {
  transform: unset;
  background-color: #da001a;
}
.business-s3 .content-ctn .splide-ctn .progress-ctn .splide__progress {
  background: #fff;
}
.business-s3 .content-ctn .splide-ctn .progress-ctn .splide__progress__bar {
  background: #da001a;
  height: 4px;
  transition: width 400ms ease;
  width: 0;
}
.business-s3 .content-ctn .contact-ctn {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.business-s3 .content-ctn .contact-ctn .contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .business-s3 .content-ctn .contact-ctn .contact-title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.business-s3 .content-ctn .contact-ctn .contact-title {
  font-weight: 275;
}
.business-s3 .content-ctn .contact-ctn .contact-content {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.business-s3 .content-ctn .contact-ctn .contact-content .address-title {
  font-weight: 700;
}
@media (max-width: 576px) {
  .business-s3 .content-ctn .contact-ctn .contact-content .address-ctn {
    width: 100%;
  }
}
.business-s3 .content-ctn .contact-ctn .contact-content .address-ctn .map {
  font-weight: 500;
}

.history-s1 {
  margin-top: 75px;
  margin-bottom: 115px;
}
.history-s1 .title-ctn {
  margin-bottom: 40px;
}
.history-s1 .title-ctn .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.history-s1 .title-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .history-s1 .title-ctn .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.history-s1 .title-ctn .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.history-s1 .title-ctn .article {
  max-width: 886px;
  margin: auto;
  text-align: center;
}
.history-s1 .banner-ctn {
  background-color: #640414;
  display: flex;
}
.history-s1 .banner-ctn .image {
  width: 30%;
}
.history-s1 .banner-ctn .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .history-s1 .banner-ctn .image {
    width: 100%;
  }
}
.history-s1 .banner-ctn .content-ctn {
  width: 70%;
  padding: 109px 66px 86px;
  color: #fff;
}
.history-s1 .banner-ctn .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .history-s1 .banner-ctn .content-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.history-s1 .banner-ctn .content-ctn .title {
  margin-bottom: 90px;
}
.history-s1 .banner-ctn .content-ctn .article-ctn {
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.history-s1 .banner-ctn .content-ctn .article-ctn .article {
  width: calc(50% - 24px);
}
@media (max-width: 991px) {
  .history-s1 .banner-ctn .content-ctn .article-ctn {
    flex-direction: column;
  }
  .history-s1 .banner-ctn .content-ctn .article-ctn .article {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .history-s1 .banner-ctn .content-ctn {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media (max-width: 991px) {
  .history-s1 .banner-ctn {
    flex-direction: column-reverse;
  }
}

.history-s2 {
  margin-top: 115px;
  margin-bottom: 155px;
}
.history-s2 .title-ctn .title {
  max-width: 503px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .history-s2 .title-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.history-s2 .title-ctn .title {
  margin-bottom: 24px;
}
.history-s2 .content-ctn .image {
  overflow: hidden;
  border-radius: 20px;
}
.history-s2 .milestone-list {
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}
.history-s2 .milestone-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 83.17%);
}
.history-s2 .milestone-list .milestones .milestone-item {
  display: flex;
}
.history-s2 .milestone-list .milestones .milestone-item .year-ctn {
  display: flex;
  width: 300px;
  height: 30px;
  margin-bottom: 16px;
  color: #818181;
}
.history-s2 .milestone-list .milestones .milestone-item .year-ctn .number {
  width: 30px;
  margin-left: auto;
  opacity: 0;
}
@media (max-width: 991px) {
  .history-s2 .milestone-list .milestones .milestone-item .year-ctn .number {
    margin-left: unset;
    opacity: 1;
  }
}
.history-s2 .milestone-list .milestones .milestone-item .year-ctn .year {
  width: 146px;
}
.history-s2 .milestone-list .milestones .milestone-item .year-ctn .year-line {
  width: 76px;
  height: 1px;
  align-self: center;
}
@media (max-width: 991px) {
  .history-s2 .milestone-list .milestones .milestone-item .year-ctn .year-line {
    display: none;
  }
}
@media (max-width: 991px) {
  .history-s2 .milestone-list .milestones .milestone-item .year-ctn {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #000;
    font-weight: 500;
  }
}
.history-s2 .milestone-list .milestones .milestone-item .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .history-s2 .milestone-list .milestones .milestone-item .content .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.history-s2 .milestone-list .milestones .milestone-item .content .title {
  font-weight: 275;
  margin-bottom: 10px;
}
.history-s2 .milestone-list .milestones .milestone-item.active .year-ctn {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #000;
  font-weight: 500;
}
.history-s2 .milestone-list .milestones .milestone-item.active .year-ctn .year-line {
  background-color: #000000;
}
.history-s2 .milestone-list .milestones .milestone-item.active .year-ctn .number {
  opacity: 1;
}
@media (max-width: 991px) {
  .history-s2 .milestone-list .milestones .milestone-item {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 991px) {
  .history-s2 .milestone-list .milestones .milestone-item .content {
    display: none;
  }
}
@media (min-width: 991px) {
  .history-s2 .milestone-list .milestones {
    border-right: 1.5px solid #000;
  }
}
.history-s2 .milestone-list .sticky-image-container .sticky-content {
  padding-left: 37px;
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: scale(0.95);
  display: none;
  flex-direction: column;
}
.history-s2 .milestone-list .sticky-image-container .sticky-content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .history-s2 .milestone-list .sticky-image-container .sticky-content .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.history-s2 .milestone-list .sticky-image-container .sticky-content .title {
  font-weight: 275;
  margin-bottom: 10px;
}
.history-s2 .milestone-list .sticky-image-container .sticky-content.active {
  opacity: 1;
  display: flex;
  transform: scale(1);
}
@media (max-width: 991px) {
  .history-s2 .milestone-list .sticky-image-container {
    display: none;
  }
}
@media (max-width: 991px) {
  .history-s2 .milestone-list {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}

.history-s3 {
  background-color: #fff;
  padding-top: 108px;
  padding-bottom: 87px;
}
.history-s3 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .history-s3 .content-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.history-s3 .article-ctn .object-list {
  display: flex;
}
.history-s3 .article-ctn .object-list .object-item {
  width: 50%;
}
.history-s3 .article-ctn .object-list .object-item .title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .history-s3 .article-ctn .object-list .object-item .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.history-s3 .article-ctn .object-list .object-item .title {
  font-weight: 275;
  color: #da001a;
  margin-bottom: 10px;
}
@media (min-width: 991px) {
  .history-s3 .article-ctn .object-list .object-item:nth-child(1) {
    padding-right: 55px;
    position: relative;
  }
  .history-s3 .article-ctn .object-list .object-item:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5px;
    height: calc(100% - 1rem);
    border-right: 1.5px solid #aeaeae;
  }
  .history-s3 .article-ctn .object-list .object-item:nth-child(2) {
    padding-left: 55px;
  }
}
@media (max-width: 991px) {
  .history-s3 .article-ctn .object-list .object-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .history-s3 .article-ctn .object-list {
    flex-direction: column;
  }
}

.history-s4 {
  margin-top: 133px;
  margin-bottom: 142px;
}
.history-s4 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .history-s4 .content-ctn .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.history-s4 .timeline-list .timeline-item {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  position: relative;
  transition: opacity 0.25s ease-out;
  will-change: opacity, transform;
  overflow: hidden;
}
.history-s4 .timeline-list .timeline-item .dot-ctn {
  position: relative;
}
.history-s4 .timeline-list .timeline-item .dot-ctn .dot {
  width: 13px;
  height: 13px;
  background: #000;
  border-radius: 50%;
  z-index: 2;
}
.history-s4 .timeline-list .timeline-item:not(:last-child) .dot-ctn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6.25px;
  width: 1px;
  height: 200px;
  background: #000;
  z-index: 1;
  transform: translateY(-50%);
}
.history-s4 .timeline-list .timeline-item:first-child .dot-ctn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6.25px;
  width: 1px;
  height: 200px;
  background: #000;
  z-index: 1;
  transform: translateY(0%);
}
.history-s4 .timeline-list .timeline-item:last-child .dot-ctn::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 6.25px;
  width: 1px;
  height: 10px;
  background: #000;
  z-index: 1;
  transform: translateY(-50%);
}
.history-s4 .timeline-list .timeline-item .year {
  width: 84px;
  font-weight: 500;
  font-size: 1.1rem;
  will-change: font-size;
}
@media (max-width: 991px) {
  .history-s4 .timeline-list .timeline-item .year {
    width: 64px;
  }
}
.history-s4 .timeline-list .timeline-item .event {
  font-weight: 400;
  font-size: 1.125rem;
  will-change: font-size;
  width: calc(100% - 167px);
  margin-left: 10px;
}
@media (max-width: 991px) {
  .history-s4 .timeline-list .timeline-item .event {
    width: calc(100% - 87px);
  }
}
.history-s4 .timeline-list .timeline-item.past .event {
  opacity: 0.85;
}
@media (min-width: 991px) {
  .history-s4 .timeline-list .timeline-item .year {
    margin-right: 23px;
  }
  .history-s4 .timeline-list .timeline-item .event {
    margin-left: 47px;
  }
}

.learnmore-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #82613c;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.learnmore-section .direction-ctn {
  margin: auto;
  max-width: 1129px;
  display: flex;
}
.learnmore-section .direction-ctn .direction-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .learnmore-section .direction-ctn .direction-text {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.learnmore-section .direction-ctn .direction-text {
  align-content: center;
  color: #fff;
}
.learnmore-section .direction-ctn .link-ctn {
  margin-left: auto;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.learnmore-section .direction-ctn .link-ctn a {
  min-width: unset;
}
@media (max-width: 767px) {
  .learnmore-section .direction-ctn .link-ctn {
    margin-left: 0;
    margin-top: 24px;
    row-gap: 16px;
  }
  .learnmore-section .direction-ctn .link-ctn a {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .learnmore-section .direction-ctn .link-ctn {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .learnmore-section .direction-ctn {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .learnmore-section.book-call .direction-ctn {
    flex-direction: column;
  }
  .learnmore-section.book-call .direction-ctn .link-ctn {
    margin-left: 0;
  }
}

.philosophy-s1 {
  margin-top: 75px;
  margin-bottom: 28px;
}
.philosophy-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.philosophy-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .philosophy-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.philosophy-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.philosophy-s1 .article-ctn {
  max-width: 1149px;
  margin: auto auto 30px;
}
.philosophy-s1 .image img {
  aspect-ratio: 3.285;
  -o-object-fit: cover;
     object-fit: cover;
}

.philosophy-s2 {
  background-color: #640414;
  color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
}
.philosophy-s2 .title-ctn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .philosophy-s2 .title-ctn {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 991px) {
  .philosophy-s2 .title-ctn {
    margin-bottom: 16px;
  }
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5019607843);
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item .title {
  width: 48%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .philosophy-s2 .content-ctn .pillar-list .pillar-item .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item .title {
  font-weight: 300;
  display: flex;
  flex-wrap: nowrap;
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item .title .number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .philosophy-s2 .content-ctn .pillar-list .pillar-item .title .number {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item .title .number {
  font-weight: 300;
  width: 50px;
  margin-right: 12px;
}
.philosophy-s2 .content-ctn .pillar-list .pillar-item .article {
  width: 48%;
}
@media (max-width: 991px) {
  .philosophy-s2 .content-ctn .pillar-list .pillar-item {
    flex-direction: column;
  }
  .philosophy-s2 .content-ctn .pillar-list .pillar-item .title,
  .philosophy-s2 .content-ctn .pillar-list .pillar-item .article {
    width: 100%;
  }
  .philosophy-s2 .content-ctn .pillar-list .pillar-item .title {
    margin-bottom: 16px;
  }
}

.philosophy-s3 {
  margin-top: 145px;
  margin-bottom: 122px;
}
.philosophy-s3 .content-ctn .image img {
  aspect-ratio: 1.8235;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .philosophy-s3 .content-ctn .image {
    margin-bottom: 16px;
  }
}
.exportcorner-s1 {
  margin-top: 75px;
  margin-bottom: 50px;
}
.exportcorner-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.exportcorner-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .exportcorner-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.exportcorner-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}

.exportcorner-s2 {
  margin-bottom: 128px;
}
.exportcorner-s2 .list {
  row-gap: 64px;
}
.exportcorner-s2 .list .item .content .thumbnail {
  border-radius: 10px;
  overflow: hidden;
}
.exportcorner-s2 .list .item .content .thumbnail img {
  aspect-ratio: 2.72;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .exportcorner-s2 .list .item .content .thumbnail img {
    aspect-ratio: 1.33;
  }
}
.exportcorner-s2 .list .item .content .cate {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.exportcorner-s2 .list .item .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  .exportcorner-s2 .list .item .content .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.exportcorner-s2 .list .item .content .title {
  font-weight: 500;
}
.exportcorner-s2 .list .item:not(:first-child) .content .thumbnail img {
  aspect-ratio: 1.33;
}

.guide-s1 {
  margin-top: 75px;
  margin-bottom: 64px;
}
.guide-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .guide-s1 .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.guide-s1 .title {
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 33px;
}
.guide-s1 .article {
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  line-height: 2.5rem;
  max-width: 1120px;
  margin-bottom: 33px;
}
@media (max-width: 991px) {
  .guide-s1 .article {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.guide-s1 .banner-ctn img {
  width: 100%;
  border-radius: 10px;
}

.guide-s2 {
  margin-bottom: 111px;
}
.guide-s2 .intro-ctn {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.guide-s2 .intro-ctn .intro-collapse {
  text-align: start !important;
  padding: 64px 0;
  width: 100%;
  border: unset;
  outline: unset;
  background-color: unset;
  position: relative;
}
.guide-s2 .intro-ctn .intro-collapse .btn-name {
  width: 483px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .guide-s2 .intro-ctn .intro-collapse .btn-name {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 991px) {
  .guide-s2 .intro-ctn .intro-collapse .btn-name {
    width: 100%;
    padding-right: 30px;
  }
}
.guide-s2 .intro-ctn .intro-collapse::after {
  content: "";
  display: block;
  background: url("/default/Icon/icon-collaspe.svg") no-repeat center/cover;
  width: 52px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .guide-s2 .intro-ctn .intro-collapse::after {
    width: 26px;
    height: 13px;
  }
}
.guide-s2 .intro-ctn .cust-cl-ctn {
  display: none;
  position: relative;
  z-index: 10;
  width: calc(100% - 509px);
  margin-left: auto;
}
.guide-s2 .intro-ctn .cust-cl-ctn .content .article {
  margin-bottom: 40px;
}
.guide-s2 .intro-ctn .cust-cl-ctn .content .intro {
  display: flex;
}
.guide-s2 .intro-ctn .cust-cl-ctn .content .intro .intro-title {
  width: 175px;
  margin-right: 12px;
}
.guide-s2 .intro-ctn .cust-cl-ctn .content .intro .intro-article {
  width: calc(100% - 187px);
}
@media (max-width: 991px) {
  .guide-s2 .intro-ctn .cust-cl-ctn .content .intro {
    flex-direction: column;
  }
  .guide-s2 .intro-ctn .cust-cl-ctn .content .intro .intro-title {
    width: 100%;
    margin-right: unset;
  }
  .guide-s2 .intro-ctn .cust-cl-ctn .content .intro .intro-article {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .guide-s2 .intro-ctn .cust-cl-ctn {
    width: 100%;
    margin-left: unset;
    margin-top: 20px;
  }
}
.guide-s2 .intro-ctn.active .cust-cl-ctn {
  display: flex;
}
.guide-s2 .intro-ctn.active .intro-collapse::after {
  transform: rotate(180deg);
}

.guide-s3 {
  margin-top: 111px;
  margin-bottom: 111px;
}
.guide-s3 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .guide-s3 .content-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.guide-s3 .content-ctn .article {
  margin-bottom: 20px;
}
.guide-s3 .content-ctn .intro {
  display: flex;
}
.guide-s3 .content-ctn .intro .intro-title {
  width: 175px;
  margin-right: 12px;
}
.guide-s3 .content-ctn .intro .intro-article {
  width: calc(100% - 187px);
}
@media (max-width: 991px) {
  .guide-s3 .content-ctn .intro {
    flex-direction: column;
  }
  .guide-s3 .content-ctn .intro .intro-title {
    width: 100%;
    margin-right: unset;
  }
  .guide-s3 .content-ctn .intro .intro-article {
    width: 100%;
    margin-top: 20px;
  }
}

.knowchild-s0 {
  margin-top: 75px;
  margin-bottom: 50px;
}
.knowchild-s0 .title-ctn .cate {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .knowchild-s0 .title-ctn .cate {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.knowchild-s0 .title-ctn .cate {
  font-weight: 400;
}
.knowchild-s0 .title-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .knowchild-s0 .title-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.knowchild-s0 .title-ctn .title {
  font-size: 3rem;
  max-width: 951px;
}
@media (max-width: 767px) {
  .knowchild-s0 .title-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.knowchild-s1 {
  margin-bottom: 118px;
}
@media (max-width: 991px) {
  .knowchild-s1 {
    margin-bottom: 50px;
  }
}
.knowchild-s1 .banner-ctn {
  margin-bottom: 96px;
}
.knowchild-s1 .banner-ctn img {
  width: 100%;
  height: 543px;
  -o-object-fit: cover;
     object-fit: cover;
}
.knowchild-s1 .article {
  max-width: 1190px;
  margin: auto;
}

.knowchild-s2 {
  margin-bottom: 116px;
}
@media (max-width: 991px) {
  .knowchild-s2 {
    margin-bottom: 50px;
  }
}
.knowchild-s2 .content-ctn {
  max-width: 1190px;
  margin: auto;
}
.knowchild-s2 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .knowchild-s2 .content-ctn .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.knowchild-s2 .content-ctn .article a {
  color: #e51310;
}

.knowchild-s3 {
  margin-bottom: 55px;
}
.knowchild-s3 .content-ctn {
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.knowchild-s3 .content-ctn .link-list {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.knowchild-s3 .content-ctn .link-list .link-item {
  display: flex;
}
.knowchild-s3 .content-ctn .link-list .link-item .number {
  width: 20px;
  margin-right: 10px;
}
.knowchild-s3 .content-ctn .link-list .link-item a .name {
  text-decoration: underline;
}
.knowchild-s3 .content-ctn .link-list .link-item a img {
  margin-left: 10px;
  width: 13px;
  height: 13px;
}

.knowchild-sps {
  margin-bottom: 74px;
}
.knowchild-sps .splide {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.knowchild-sps .splide .splide__arrow {
  background: #fff;
  color: #81623d;
}
.knowchild-sps .splide .splide__arrow svg {
  fill: #e60000;
  width: 1.5rem;
  height: 1.5rem;
}
.knowchild-sps .splide .item {
  aspect-ratio: 330/440;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 25px 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.knowchild-sps .splide .item .shadow {
  background: linear-gradient(0deg, #210000 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.knowchild-sps .splide .item .content-ctn {
  margin-top: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}
.knowchild-sps .splide .item .content-ctn .cate {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.knowchild-sps .splide .item .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .knowchild-sps .splide .item {
    height: 257px;
  }
}
@media (max-width: 576px) {
  .knowchild-sps .splide .item {
    aspect-ratio: unset;
  }
}

.eco-s1 {
  margin-top: 75px;
}
.eco-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.eco-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .eco-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.eco-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.eco-s1 .article-ctn {
  background: url("/default/eco-s1.png") no-repeat center/cover;
  padding-top: 113px;
  padding-bottom: 83px;
}
.eco-s1 .article-ctn .article {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 2.75rem;
  font-weight: 275;
  letter-spacing: 0;
  text-align: center;
  max-width: 1032px;
  margin: auto auto;
  justify-self: center;
}

.eco-s2 {
  margin-bottom: 110px;
}
.eco-s2 .group-item {
  padding-top: 66px;
  padding-bottom: 66px;
}
@media (max-width: 991px) {
  .eco-s2 .group-item .logo {
    margin-bottom: 16px;
  }
}
.eco-s2 .group-item .content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.eco-s2 .group-item .content .title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .eco-s2 .group-item .content .title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.eco-s2 .group-item .content .description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .eco-s2 .group-item .content .description {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.eco-s2 .group-item .content .direction-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.eco-s2 .group-item .content .direction-link {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 991px) {
  .eco-s2 .group-item .content .direction-link a {
    width: 100%;
  }
}
.eco-s2 .group-item .content:nth-child(even) {
  background-color: #fff;
}

.visit-s1 {
  margin-top: 75px;
}
.visit-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.visit-s1 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .visit-s1 .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.visit-s1 .title {
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  max-width: 886px;
  margin: auto auto 40px;
}
.visit-s1 .content-ctn {
  display: flex;
}
.visit-s1 .content-ctn .content {
  width: 50%;
  padding-top: 83px;
  padding-bottom: 83px;
  padding-right: 30px;
}
.visit-s1 .content-ctn .content .section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .visit-s1 .content-ctn .content .section-title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.visit-s1 .content-ctn .content .section-title {
  font-weight: 275;
  margin-bottom: 32px;
}
.visit-s1 .content-ctn .content .contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.visit-s1 .content-ctn .content .contact {
  margin-bottom: 32px;
}
.visit-s1 .content-ctn .content .contact .addr,
.visit-s1 .content-ctn .content .contact .tel,
.visit-s1 .content-ctn .content .contact .fax,
.visit-s1 .content-ctn .content .contact .email {
  display: flex;
}
.visit-s1 .content-ctn .content .contact .addr .name,
.visit-s1 .content-ctn .content .contact .tel .name,
.visit-s1 .content-ctn .content .contact .fax .name,
.visit-s1 .content-ctn .content .contact .email .name {
  min-width: 50px;
  margin-right: 5px;
}
.visit-s1 .content-ctn .content .contact .addr .address {
  width: calc(100% - 50px);
  display: flex;
}
.visit-s1 .content-ctn .content .contact .addr .address .btn-primary {
  min-width: unset;
  padding: 4px 24px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 10px;
  border-radius: 10px;
  min-width: 180px;
  margin-left: auto;
}
.visit-s1 .content-ctn .content .contact .addr .address .btn-primary img {
  width: 13px;
}
@media (max-width: 991px) {
  .visit-s1 .content-ctn .content .contact .addr .address {
    flex-direction: column;
  }
  .visit-s1 .content-ctn .content .contact .addr .address .btn-primary {
    margin-top: 5px;
    margin-bottom: 10px;
    width: 107px;
    margin-left: 0px;
  }
}
.visit-s1 .content-ctn .image {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
}
.visit-s1 .content-ctn .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 991px) {
  .visit-s1 .content-ctn {
    flex-direction: column-reverse;
  }
  .visit-s1 .content-ctn .content,
  .visit-s1 .content-ctn .image {
    width: 100%;
    padding: unset;
  }
  .visit-s1 .content-ctn .image {
    margin-bottom: 32px;
  }
}

.visit-s2 {
  margin-bottom: 99px;
}
.visit-s2 .title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .visit-s2 .title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.visit-s2 .title {
  font-weight: 275;
  margin-bottom: 37px;
}
.visit-s2 .content-ctn .content {
  display: flex;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1.5px solid #000;
}
.visit-s2 .content-ctn .content .position-ctn {
  width: 50%;
}
.visit-s2 .content-ctn .content .position-ctn .position {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
}
.visit-s2 .content-ctn .content .person-list {
  width: 50%;
}
.visit-s2 .content-ctn .content .person-list .person-item {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.visit-s2 .content-ctn .content .person-list .person-item .name {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .visit-s2 .content-ctn .content .person-list .person-item .name {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.visit-s2 .content-ctn .content .person-list .person-item .name {
  font-weight: 275;
}
.visit-s2 .content-ctn .content .person-list .person-item .role {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
}
.visit-s2 .content-ctn .content .person-list .person-item .whatsapp {
  display: flex;
}
.visit-s2 .content-ctn .content .person-list .person-item .whatsapp .link {
  margin-left: 10px;
  text-decoration: underline;
}
.visit-s2 .content-ctn .content:first-child {
  border-top: 1.5px solid #000;
}
@media (max-width: 991px) {
  .visit-s2 .content-ctn .content {
    flex-direction: column;
  }
  .visit-s2 .content-ctn .content .position-ctn,
  .visit-s2 .content-ctn .content .person-list {
    width: 100%;
  }
  .visit-s2 .content-ctn .content .position-ctn {
    margin-bottom: 32px;
  }
}

.bookcall-s1 {
  margin-top: 75px;
  margin-bottom: 100px;
}
.bookcall-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 37px;
}
.bookcall-s1 .form-ctn {
  padding: 33px 31px;
  background-color: #fff;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 20px;
  margin-bottom: 24px;
}
.bookcall-s1 .form-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .bookcall-s1 .form-ctn .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.bookcall-s1 .form-ctn .article {
  max-width: 360px;
  margin-bottom: 27px;
}
.bookcall-s1 .form-ctn .form-input-ctn {
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.bookcall-s1 .form-ctn .form-input-ctn .input-half {
  width: 49%;
}
.bookcall-s1 .form-ctn .form-input-ctn .input {
  width: 100%;
}
.bookcall-s1 .form-ctn .form-input-ctn .input-half,
.bookcall-s1 .form-ctn .form-input-ctn .input {
  margin-bottom: 27px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.bookcall-s1 .form-ctn .form-input-ctn .input-half input,
.bookcall-s1 .form-ctn .form-input-ctn .input input {
  width: 100%;
  border: 1px solid #a0a0a0;
  padding: 18.5px 24px;
  font-size: 0.875rem;
  line-height: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
}
@media (max-width: 991px) {
  .bookcall-s1 .form-ctn .form-input-ctn {
    flex-direction: column;
  }
  .bookcall-s1 .form-ctn .form-input-ctn .input-half {
    width: 100%;
  }
}
.bookcall-s1 .form-ctn .form-select-ctn {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 27px;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-ctn {
  height: 55px;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap {
  position: relative;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #a0a0a0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18.5px 24px;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.15s;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header .selected-value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header .arrow {
  font-size: 0.8rem;
  width: 8px;
  margin-left: 3px;
  transition: transform 0.25s;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list {
  display: none;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #a0a0a0;
  border-top: none;
  position: relative;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.18s ease;
  pointer-events: none;
  z-index: 10;
  padding-bottom: 10px;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item {
  position: relative;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.12s;
  white-space: unset;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item:hover, .bookcall-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item.active {
  background: #640414;
  color: #fff;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-header {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-header .arrow {
  transform: rotate(180deg);
}
.bookcall-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-list {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.bookcall-s1 .form-ctn .btn {
  display: flex;
  justify-content: center;
  background-color: #da001a;
  margin-left: auto;
}
.bookcall-s1 .form-ctn .btn:hover {
  background-color: rgb(192.5, 0, 22.9587155963) !important;
}
.bookcall-s1 .visit-ctn {
  margin-left: 15px;
}
.bookcall-s1 .visit-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .bookcall-s1 .visit-ctn .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.bookcall-s1 .visit-ctn .title {
  margin-bottom: 47px;
}
.bookcall-s1 .visit-ctn .contact-list .contact {
  margin-bottom: 32px;
}
.bookcall-s1 .visit-ctn .contact-list .contact .contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .bookcall-s1 .visit-ctn .contact-list .contact .contact-title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.bookcall-s1 .visit-ctn .contact-list .contact .contact-title {
  font-weight: 275;
  margin-bottom: 10px;
}
.bookcall-s1 .visit-ctn .contact-list .contact .addr,
.bookcall-s1 .visit-ctn .contact-list .contact .tel,
.bookcall-s1 .visit-ctn .contact-list .contact .fax,
.bookcall-s1 .visit-ctn .contact-list .contact .email {
  display: flex;
}
.bookcall-s1 .visit-ctn .contact-list .contact .addr .name,
.bookcall-s1 .visit-ctn .contact-list .contact .tel .name,
.bookcall-s1 .visit-ctn .contact-list .contact .fax .name,
.bookcall-s1 .visit-ctn .contact-list .contact .email .name {
  min-width: 50px;
  margin-right: 5px;
}
.bookcall-s1 .visit-ctn .contact-list .contact .addr .address {
  width: calc(100% - 50px);
  display: flex;
}
.bookcall-s1 .visit-ctn .contact-list .contact .addr .address .btn-primary {
  min-width: unset;
  padding: 4px 24px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 10px;
  border-radius: 10px;
  min-width: 107px;
  margin-left: auto;
}
.bookcall-s1 .visit-ctn .contact-list .contact .addr .address .btn-primary img {
  width: 13px;
}
@media (max-width: 991px) {
  .bookcall-s1 .visit-ctn .contact-list .contact .addr .address {
    flex-direction: column;
  }
  .bookcall-s1 .visit-ctn .contact-list .contact .addr .address .btn-primary {
    margin-top: 5px;
    margin-bottom: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: unset;
  }
}

.getquote-s1 {
  margin-top: 75px;
  margin-bottom: 28px;
}
.getquote-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.getquote-s1 .form-ctn .section {
  margin-bottom: 96px;
}
.getquote-s1 .form-ctn .section .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .getquote-s1 .form-ctn .section .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.getquote-s1 .form-ctn .section .title .red {
  color: #da001a;
}
.getquote-s1 .form-ctn .section .required {
  color: #da001a;
}
.getquote-s1 .form-ctn .section .direction-ctn {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.getquote-s1 .form-ctn .section .direction-ctn a#book-meeting-btn {
  color: #da001a;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .getquote-s1 .form-ctn .section .direction-ctn {
    flex-direction: column;
  }
  .getquote-s1 .form-ctn .section .direction-ctn a.btn-browngold {
    margin-left: unset;
    margin-top: 16px;
  }
}
.getquote-s1 .form-ctn .form-input-ctn {
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.getquote-s1 .form-ctn .form-input-ctn .input-50 {
  width: 49%;
}
.getquote-s1 .form-ctn .form-input-ctn .input-70 {
  width: 69%;
}
.getquote-s1 .form-ctn .form-input-ctn .input-30 {
  width: 29%;
}
.getquote-s1 .form-ctn .form-input-ctn .input {
  width: 100%;
}
.getquote-s1 .form-ctn .form-input-ctn .input-70,
.getquote-s1 .form-ctn .form-input-ctn .input-30,
.getquote-s1 .form-ctn .form-input-ctn .input-50,
.getquote-s1 .form-ctn .form-input-ctn .input {
  margin-bottom: 27px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.getquote-s1 .form-ctn .form-input-ctn .input-70 input,
.getquote-s1 .form-ctn .form-input-ctn .input-30 input,
.getquote-s1 .form-ctn .form-input-ctn .input-50 input,
.getquote-s1 .form-ctn .form-input-ctn .input input {
  width: 100%;
  border: unset;
  padding: 18.5px 24px;
  font-size: 0.875rem;
  line-height: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
}
@media (max-width: 576px) {
  .getquote-s1 .form-ctn .form-input-ctn {
    flex-direction: column;
  }
  .getquote-s1 .form-ctn .form-input-ctn .input-50,
  .getquote-s1 .form-ctn .form-input-ctn .input-70,
  .getquote-s1 .form-ctn .form-input-ctn .input-30 {
    width: 100%;
  }
}
.getquote-s1 .form-ctn .form-select-group-ctn {
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.getquote-s1 .form-ctn .form-select-group-ctn .form-select-ctn.half-item {
  width: 49%;
}
@media (max-width: 576px) {
  .getquote-s1 .form-ctn .form-select-group-ctn {
    flex-direction: column;
  }
  .getquote-s1 .form-ctn .form-select-group-ctn .form-select-ctn.half-item {
    width: 100%;
  }
}
.getquote-s1 .form-ctn .form-select-ctn {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-select-ctn .select-ctn {
  height: 55px;
}
.getquote-s1 .form-ctn .form-select-ctn .select-ctn.mw-510 {
  max-width: 510px;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap {
  position: relative;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18.5px 24px;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.15s;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header .selected-value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-header .arrow {
  font-size: 0.8rem;
  width: 8px;
  margin-left: 3px;
  transition: transform 0.25s;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list {
  display: none;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-top: none;
  position: relative;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.18s ease;
  pointer-events: none;
  z-index: 10;
  padding-bottom: 10px;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item {
  position: relative;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.12s;
  white-space: unset;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item:hover, .getquote-s1 .form-ctn .form-select-ctn .select-wrap .dropdown-list .dropdown-item.active {
  background: #640414;
  color: #fff;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-header {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-header .arrow {
  transform: rotate(180deg);
}
.getquote-s1 .form-ctn .form-select-ctn .select-wrap.active .dropdown-list {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn {
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn .tag-list .tag-item {
  position: relative;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn .tag-list .tag-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn .tag-list .tag-item input:checked + label {
  background: #640414;
  border-color: #640414;
  color: #fff;
}
.getquote-s1 .form-ctn .form-checkboxlist-ctn .tag-list .tag-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  border-radius: 16px;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.16s ease;
}
.getquote-s1 .form-ctn .form-textarea-ctn {
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-textarea-ctn .textarea-ctn {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-textarea-ctn .textarea-ctn textarea {
  outline: unset;
  border: unset;
  border-radius: 16px;
  width: 100%;
  padding: 10px;
}
.getquote-s1 .form-ctn .form-radio-ctn {
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn.radio-multi {
  display: flex;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .getquote-s1 .form-ctn .form-radio-ctn .radio-ctn.radio-multi {
    flex-direction: column;
  }
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn.radio-multi .multi-label {
  width: 70px;
  margin-right: 5px;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item {
  display: flex;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item.full-textarea {
  flex-wrap: wrap;
  width: 100%;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item.full-textarea textarea {
  margin-top: 5px;
  width: 100%;
  outline: unset;
  border: unset;
  border-radius: 16px;
  padding: 10px;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item.full-textarea textarea:disabled {
  background-color: rgba(129, 129, 129, 0.1882352941);
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item input[type=text] {
  margin-left: 10px;
  width: 120px;
  border: unset;
  padding: 4px 12px;
  font-size: 0.875rem;
  line-height: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 4px;
}
.getquote-s1 .form-ctn .form-radio-ctn .radio-ctn .radio-list .radio-item input[type=text]:disabled {
  background-color: rgba(129, 129, 129, 0.1882352941);
}
.getquote-s1 .form-ctn .form-finished-ctn {
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-finished-ctn .finished-ctn .finished-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 43px;
       column-gap: 43px;
}
.getquote-s1 .form-ctn .form-finished-ctn .finished-ctn .finished-list .finished-size input {
  width: 61px;
  border: unset;
  padding: 4px 12px;
  font-size: 0.875rem;
  line-height: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 4px;
}
.getquote-s1 .form-ctn .form-finished-ctn .finished-ctn .finished-list .finished-size input::-moz-placeholder {
  font-size: 0.625rem;
}
.getquote-s1 .form-ctn .form-finished-ctn .finished-ctn .finished-list .finished-size input::placeholder {
  font-size: 0.625rem;
}
.getquote-s1 .form-ctn .form-date-ctn {
  margin-bottom: 27px;
}
.getquote-s1 .form-ctn .form-date-ctn .date-item .date-input {
  position: relative;
  max-width: 510px;
  width: 100%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.15s;
  border: unset;
}
.getquote-s1 .form-ctn .form-date-ctn .date-item .date-input input {
  border: unset;
  width: 100%;
}
.getquote-s1 .form-ctn .form-date-ctn .date-item .date-input input.mw-510 {
  max-width: 510px;
  width: 100%;
}
.getquote-s1 .form-ctn .form-date-ctn .date-item .date-input input::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.getquote-s1 .form-ctn .btn-primary {
  display: flex;
  justify-content: center;
  background-color: #da001a;
  margin-left: auto;
}
.getquote-s1 .form-ctn .btn-primary:hover {
  background-color: rgb(192.5, 0, 22.9587155963) !important;
}
.getquote-s1 .form-ctn .btn-secondary {
  margin-top: 27px;
  display: flex;
  justify-content: center;
  background-color: #da001a;
}
.getquote-s1 .form-ctn .btn-secondary:hover {
  background-color: rgb(192.5, 0, 22.9587155963) !important;
}

.result-s1 {
  margin-top: 75px;
  margin-bottom: 28px;
}
.result-s1 .sub-title {
  color: #818181;
  text-align: center;
  margin-bottom: 10px;
}
.result-s1 .content-ctn .title {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 3.125rem;
  line-height: 4.688rem;
}
@media (max-width: 767px) {
  .result-s1 .content-ctn .title {
    font-size: 1.563rem;
    line-height: 2.344rem;
  }
}
.result-s1 .content-ctn .title {
  text-align: center;
}
.result-s1 .content-ctn .article {
  font-family: "Poppins", sans-serif;
  font-weight: 275;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  .result-s1 .content-ctn .article {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.result-s1 .content-ctn .article {
  font-weight: 300;
  color: #656565;
  text-align: center;
}
.result-s1 .content-ctn .btn-dark {
  display: flex;
  justify-content: center;
  background-color: #da001a;
  margin-left: auto;
}
.result-s1 .content-ctn .btn-dark:hover {
  background-color: rgb(192.5, 0, 22.9587155963) !important;
}
.result-s1 .person-list {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  row-gap: 20px;
}
.result-s1 .person-list .person-item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.333%;
       column-gap: 1.333%;
  row-gap: 10px;
}
.result-s1 .person-list .person-item .name {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .result-s1 .person-list .person-item .name {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.result-s1 .person-list .person-item .name {
  font-weight: 275;
}
.result-s1 .person-list .person-item .role {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
}
.result-s1 .person-list .person-item .whatsapp {
  display: flex;
}
.result-s1 .person-list .person-item .whatsapp .link {
  margin-left: 10px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .result-s1 .person-list .person-item {
    flex-direction: column;
    justify-content: unset;
  }
}

@keyframes carouselFade {
  0%, 18% {
    opacity: 1;
  }
  22%, 82% {
    opacity: 0;
  }
  86%, 100% {
    opacity: 1;
  }
}
@keyframes carouselBright {
  0%, 18% {
    filter: brightness(1);
  }
  22%, 82% {
    filter: brightness(0.6);
  }
  86%, 100% {
    filter: brightness(1);
  }
}
#bookmeeting [id="00N5g00000SEgn5"],
#bookmeeting [id="00Ne20000036I29"],
#bookmeeting [id=lead_source],
#bookmeeting [id=currency],
#bookmeeting [id=recordType],
#bookmeeting [id=company],
#bookmeeting [id="00Ne20000036K5Z"],
#bookmeeting [id="00Ne2000003EYRV"] {
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  position: absolute;
}

#getquote [id=lead_source],
#getquote [id=currency],
#getquote [id=recordType],
#getquote [id="00Ne20000036I29"],
#getquote [id="00N5g00000SEgn5"],
#getquote [id="00N5g00000SCy2h"],
#getquote [id=industry],
#getquote [id="00N5g00000SCy2X"],
#getquote [id="00Ne20000035p9p"],
#getquote [id="00Ne20000035o45"],
#getquote [id="00Ne20000035oSH"],
#getquote [id="00Ne20000035oTt"],
#getquote [id="00Ne20000035oYj"],
#getquote [id="00Ne20000035ofB"],
#getquote [id="00Ne20000035pY1"],
#getquote [id="00Ne20000035pcr"] {
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  position: absolute;
}

.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
}

.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox .checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 4px;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.custom-checkbox:hover .checkmark {
  background-color: #e0e0e0;
  border-color: #666;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #640414;
  border-color: #640414;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked + .checkmark:after {
  display: block;
}

.custom-checkbox input:focus-visible + .checkmark {
  outline: 2px solid #2196f3;
  outline-offset: 2px;
}