@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://unpkg.com/lenis@1.3.4/dist/lenis.css");
@import url("typo.css");
@import url("header.css");
@import url("img.css?v=171125");
@import url("btn.css");
@import url("footer.css");
@import url("swiper-bundle.min.css");
@import url("swiper-custom.css");
@import url("preloader.css?v=171125");
:root {
  /*Setting Color*/
  --white-color: #FFFFFF;
  --grey-color: #404045;
  --lightgrey-color: #F3F3F3;
  --black-color: #000;
  --violet-color: #A291B1;
  --darkviolet-color: #3E2D56;
  --lightviolet-color: #FCE8F6;
  /*Setting Font*/
  --xxs-text: 0.5rem;
  --xs-text: 0.6rem;
  --regular-text: 1rem;
  --md-text: clamp(1.25rem, 2vw, 1.35rem);
  --lg-text: clamp(1.4rem, 2.5vw, 1.8rem);
  --xl-text: 2, 75rem;
  --letter-spacing: 0.07rem;
  /*Setting Space*/
  --xxs-space: 0.5rem;
  --xs-space: 0.75rem;
  --regular-space: 1rem;
  --md-space: clamp(1.25rem, 3vw, 2.5rem);
  --lg-space: clamp(2rem, 5vw, 4rem);
  --xl-space: clamp(4rem, 10vw, 10rem);
  --header-height: 100px;
  --container-width: 1920px;
  --logo-width: 70px;
  /*Setting Btn and Item and Form*/
  --btn-height: clamp(35px, 2vw, 50px);
  --btn-pad: clamp(12px, 1vw, 20px);
  --btn-text: clamp(14px, 1vw, 16px);
  --item-pad: clamp(var(--regular-space), 2vw, 3vw);
  --form-height: 50px;
  /*Setting Radius*/
  --regular-radius: 6px;
  --medium-radius: 10px;
  --big-radius: 30px;
  /*Setting Shadow*/
  --box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);
  /*Setting Img*/
}
html, body {
  padding: 0;
  margin: 0;
  color: var(--grey-color);
  background: var(--white-color);
  outline: none;
  scroll-behavior: auto !important;
}
* {
  outline: none !important;
}
/**utility**/
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul:last-child {
  margin-bottom: 0 !important;
}
li:last-child {
  margin-bottom: 0 !important;
}
div:last-child {
  margin-bottom: 0 !important;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}
.flex-center {
  align-items: center !important;
}
.flex-end {
  align-items: flex-end !important;
}
.over-hidden {
  overflow: hidden !important;
}
.over-show {
  overflow: visible !important;
}
/*margin - padding*/
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.noborder {
  border: 0 !important;
}
.m-top {
  margin-top: var(--regular-space) !important;
}
.m-top-xs {
  margin-top: var(--xs-space) !important;
}
.m-top-md {
  margin-top: var(--md-space) !important;
}
.m-top-lg {
  margin-top: var(--lg-space) !important;
}
.m-top-xl {
  margin-top: var(--xl-space) !important;
}
.m-bottom {
  margin-bottom: var(--regular-space) !important;
}
.m-bottom-xs {
  margin-bottom: var(--xs-space) !important;
}
.m-bottom-md {
  margin-bottom: var(--md-space) !important;
}
.m-bottom-lg {
  margin-bottom: var(--lg-space) !important;
}
.m-bottom-xl {
  margin-bottom: var(--xl-space) !important;
}
/*hr*/
hr {
  max-width: calc(100% - 30px);
  border-color: var(--grey-color);
  margin: var(--md-space) auto;
  opacity: 1;
}
hr.hrBig {
  margin: var(--xl-space) 0;
}
hr.hrMd {
  margin: var(--md-space) 0;
}
/**end utility**/
/**utility color**/
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-black {
  background-color: var(--black-color) !important;
}
.color-white {
  color: var(--white-color);
}
.color-black {
  color: var(--black-color);
}
/**end utility color**/
/**grid setting**/
.container-main {
  position: relative;
  z-index: 1;
}
section {
  position: relative;
  margin: 0 auto;
  margin-bottom: var(--xl-space);
}
section.section-pad {
  padding: var(--xl-space) 0;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
section.section-first {
  padding-top: calc(var(--header-height) + 0);
}
.container {
  position: relative;
  width: 95%;
  max-width: var(--container-width);
  margin: 0 auto;
  margin-bottom: var(--lg-space);
}
.container.container-full {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.container.container-mini {
  max-width: 1200px;
}
.row {
  margin-bottom: var(--md-space);
}
.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .container .row {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .container .row > .col, .container .row > [class*=col-] {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.row.margin-row {
  margin-bottom: -2rem !important;
}
.row.margin-row > .col, .row.margin-row > [class*=col-] {
  margin-bottom: 2rem !important;
}
.row.grid-project {
  margin-bottom: -10px !important;
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.row.grid-project > .col, .row.grid-project > [class*=col-] {
  margin-bottom: 10px !important;
  padding-right: 5px;
  padding-left: 5px;
}
/**end grid setting*/
/**page**/
.breadcrumb {
  font-size: var(--xs-text);
}
.breadcrumb-item, .breadcrumb-item + .breadcrumb-item::before {
  color: var(--grey-color);
}
.breadcrumb-item.active {
  color: var(--black-color);
}
.banner-hero {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 150px;
  text-align: center;
  color: var(--white-color);
  z-index: 3;
}
.banner-hero-inside {
  position: relative;
  padding-bottom: var(--medium-space);
  margin-bottom: var(--medium-space);
  border-bottom: 0;
}
.banner-hero-inside:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.scroll {
  position: absolute;
  width: 20px;
  height: 115px;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  z-index: 10;
}
.scroll::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  bottom: 0;
  left: 50%;
  background-color: var(--white-color);
}
.section-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item {
  position: relative;
  width: calc(50% - 1rem);
}
.swiper-slide .item {
  width: 100%;
}
.item.item-column {
  position: relative;
  width: calc(33.666% - 1rem);
}
.item figure {
  margin-bottom: 0 !important;
}
.item figure img {
  transition: transform 5s;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .item:hover figure img {
    transform: scale(1.05);
  }
}
.title-item {
  padding: 1.5rem 2rem;
}
.action-item {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1450px) {
  .item figure.img-big {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
@media screen and (max-width: 767px) {
  .item {
    width: 100%;
  }
  .item:not(:last-child) {
    margin-bottom: var(--md-space);
  }
  .item.item-column {
    width: 100%;
  }
  .item figure.img-big {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .action-item {
    padding: 1.5rem 15px;
    padding-bottom: 0;
  }
}
.icon-service {
  position: relative;
  display: block;
  margin: 0 auto;
  margin-bottom: var(--regular-space);
  width: auto;
  height: 40px;
}
.icon-service img {
  max-width: 100%;
  max-height: 100%;
}
.icon-text {
  font-family: 'Gala-Condensed';
  font-family: 'Satoshi-Medium';
  text-transform: uppercase;
  font-size: var(--xs-text);
  letter-spacing: var(--letter-spacing);
  text-align: center;
}
.focus {
  padding: var(--md-space);
  /*background-color: var(--lightviolet-color);*/
  /*background-color: var(--lightgrey-color);*/
  min-height: 100%;
  border: 1px solid var(--violet-color);
  border: 1px solid #CCC;
  border-top: 2px solid var(--violet-color);
  /*border-left: 2px solid var(--violet-color);*/
  border-radius: 6px;
  /*border-bottom-right-radius: 16px;*/
}
.focus h4, .focus h5 {
  /*color: var(--darkviolet-color);*/
}
.focus strong {
  /*color: var(--darkviolet-color);*/
}
.focus h5.subtitle {
  border-color: #CCC;
}
.focus-list li {
  position: relative;
  margin-bottom: 0.25rem;
  padding-left: 25px;
}
.focus-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(../img/icon/ok-circle-filled.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.focus-list-grey li::before {
  background-image: url(../img/icon/ok-circle-filled-grey.svg);
}
/**end page**/
/*accordion*/
.accordion {
  margin-bottom: 0;
  border-top: 1px solid #CCC;
}
.accordion:last-of-type {
  border-bottom: 1px solid #CCC;
}
.product-line .accordion, .product-line .accordion:last-of-type {
  border: 0;
}
.accordion-intro {
  cursor: pointer;
  padding: 30px 0;
  padding-right: 30px;
  transition: background 0.3s;
  background: rgba(0, 0, 0, 0);
  color: var(--grey-color);
  color: var(--darkviolet-color);
  font-family: 'Satoshi-Regular';
}
.product-line .accordion-intro {
  padding: 0;
}
.accordion-intro {
  display: block;
  position: relative;
}
.accordion-intro span.icon-plus {
  position: absolute;
  top: 0;
  right: 15px;
  width: 8px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icon/plus-grey.svg");
  background-size: contain;
}
.accordion-active .accordion-intro span.icon-plus {
  transform: rotate(-45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  background: rgba(0, 0, 0, 0);
}
.accordion-active .accordion-content {
  border-top: 1px solid #CCC;
  opacity: 1;
  padding-top: 30px;
  padding-bottom: 30px !important;
}
/*modal*/
.modal {
  z-index: 20000;
  overflow: hidden;
}
.modal-dialog {
  max-width: 860px;
  width: 100%;
}
.modal-dialog-centered {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
  width: 100%;
  max-width: 100% !important;
  padding: 0;
  margin: 0 !important;
}
.modal-body {
  height: 100vh;
  width: 103%;
  padding: 0 !important;
  border-radius: 0 !important;
}
.modal-content {
  width: 860px;
  max-width: 100%;
  border-radius: 0 !important;
}
.modal-header {
  padding: var(--regular-space) var(--regular-space);
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: white;
}
@media screen and (min-width: 1200px) {
  .modal-content {
    height: 80vh;
    height: auto;
    overflow: auto;
  }
}
/*scrollbar*/ ::-webkit-scrollbar {
  width: 8px;
  background: var(--white-color);
}
::-webkit-scrollbar-track {
  box-shadow: none;
}
::-webkit-scrollbar-thumb {
  background: var(--black-color);
  border-radius: 0;
}
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/