@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");
@import url("btn.css");
@import url("footer.css");
@import url("swiper-bundle.min.css");
@import url("swiper-custom.css");
@import url("scroller.css");
@import url("form.css");
@import url("preloader.css");
@import url("animation.css");
:root {
  /*Setting Color*/
  --white-color: #F8F8F8;
  --grey-color: #606060;
  --black-color: #202020;
  --darkblack-color: #11111150;
  --green-color: #00C488;
  --border-color: #E8E8E8;
  /*Setting Font*/
  --xxs-text: 12px;
  --xs-text: 16px;
  --regular-text: 1rem;
  --md-text: clamp(1.5rem, 2vw, 50px);
  --lg-text: clamp(2rem, 3vw, 75px);
  --xl-text: clamp(2.75rem, 6vw, 90px);
  --letter-spacing: 0.00rem;
  /*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, 6vw, 5rem);
  --xl-space: clamp(4rem, 10vw, 10rem);
  --header-height: 100px;
  --container-width: 2220px;
  --logo-width: 150px;
  /*Setting Btn and Form*/
  --btn-height: clamp(35px, 2vw, 50px);
  --btn-pad: clamp(12px, 1vw, 20px);
  --btn-text: clamp(14px, 1.5vw, 18px);
  --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*/
  --xs-img: 150px;
  --regular-img: 350px;
  --md-img: 550px;
  --lg-img: 750px;
  --xl-img: 850px;
}
html, body {
  padding: 0;
  margin: 0;
  color: var(--white-color);
  background: var(--black-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% - 0px);
  border-color: var(--border-color);
  margin: var(--md-space) auto;
  opacity: 1;
}
/**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);
}
.color-green {
  color: var(--green-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-first {
  padding-top: calc(var(--header-height) + 2rem);
}
section.section-first-page {
  padding-top: calc(var(--header-height) + 4rem);
}
.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;
}
@media screen and (max-width: 991px) {
	.row-scroller-m .row {
		width:1000px;
	}
	.row-scroller-big-m .row {
		width:1500px;
	}
	.row-scroller-m {
		overflow: auto;
	}
}
/**end grid setting*/
/**page**/
.bg-main {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="0.5" cy="0.5" r="2" fill="%23FFFFFF20"/></svg>');
  background-repeat: repeat;
  background-attachment: fixed;
}
.breadcrumb {
  font-size: 14px;
}
.breadcrumb a {
  margin-right: 10px;
}
.breadcrumb a.active {
  font-weight: 600;
  color: var(--green-color);
}
.breadcrumb a:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  opacity: 0.5;
}
/*
@media screen and (max-width: 767px) {
  section.section-bread {
    overflow: auto;
  }
  .breadcrumb {
    flex-wrap: nowrap;
    font-size: 12px;
    min-width: max-content;
  }
}
*/
.banner-hero {
  position: relative;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 2rem);
}
.banner-hero-inside {
  position: relative;
  width: 100%;
  padding: var(--medium-space) 0;
  margin-bottom: var(--medium-space);
}
.banner-hero-inside:last-child {
  margin: 0;
  padding: 0;
}
.banner-page {
  background-color: var(--darkblack-color);
  padding: var(--lg-space) var(--xl-space);
}
.banner-green {
  background-color: var(--green-color);
  padding: var(--md-space) var(--md-space);
  color: var(--white-color);
  max-width: 30vw;
}
@media screen and (max-width: 1450px) {
  .banner-green {
    max-width: 50vw;
  }
}
@media screen and (max-width: 991px) {
  .banner-green {
    max-width: 100%;
  }
}
.banner-green.banner-green-xs {
  padding: var(--regular-space);
  max-width: max-content;
}
.video-banner {
  width: 100%;
}
.banner-full {
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item0001 {
  position: relative;
  padding: var(--md-space);
  padding-right: var(--xl-space);
  background-color: var(--darkblack-color);
}
.item0001:not(:last-child) {
  margin-bottom: var(--regular-space);
}
.item-icon {
  height: 25px;
}
.item-icon-xs {
  height: 15px;
}
.item-title {
  color: var(--green-color);
  font-size: calc(var(--md-text) * 0.85);
  font-family: 'PPEditorialNew-Regular';
  font-family: 'PPEditorialNew-Ultralight';
  margin-bottom: var(--regular-space);
}
.item0002 {
  position: relative;
  padding: var(--xl-space);
}
.item0002 .item-title {
  position: relative;
  color: var(--white-color);
  font-size: calc(var(--md-text) * 0.85);
  z-index: 2;
}
.item0002::after, .item0002::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon/plus-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.item0002::before {
  left: auto;
  right: 0;
}
.item0002-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item0002-icon img {
  max-width: 40%;
  max-height: 80%;
  filter: blur(10px);
}
.item-list {
  position: relative;
  padding-bottom: 35px;
}
.item-list::after, .item-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon/plus-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.item-list::before {
  left: auto;
  right: 0;
}
.item0003 {
  position: relative;
  padding: var(--lg-space) 0;
}
.item0003 .row {
  position: relative;
  z-index: 2;
}
.item0003 .item-title {
  font-family: 'PPEditorialNew-Ultralight';
  font-size: var(--lg-text);
}
.item0003 .item-subtitle {
  position: relative;
  padding: var(--lg-space);
}
.item0003 .item-subtitle p {
  font-family: 'PPEditorialNew-Regular';
  font-family: 'PPEditorialNew-Ultralight';
  font-size: calc(var(--md-text) * 0.85);
}
.item0003-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item0003-icon img {
  max-width: 60%;
  max-height: 60%;
  filter: blur(5px);
  opacity: .5;
}
.item-sep {
  position: relative;
  margin: 0 auto;
  width: 1px;
  height: calc(var(--xl-space) * 1.5);
  margin-top: var(--lg-space);
  margin-bottom: var(--lg-space);
  border-left: 1px dashed var(--green-color);
}
.item0004 {
  position: relative;
  padding-left: var(--xl-space);
}
.item0004:not(:last-child) {
  margin-bottom: var(--xl-space);
}
.item0004 > * {
  position: relative;
  z-index: 2;
}
.item0004-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.item0004-icon img {
  max-width: calc(var(--xl-space) + 2rem);
  filter: blur(10px);
}
.product-grid {
  /* display: flex;
  flex-wrap: wrap;
  gap: 10px;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
}
.product {
  /*flex: 1 1 calc(20% - 20px);*/
  display: block;
  position: relative;
  padding: var(--md-space) 1.25rem;
  background-color: var(--darkblack-color);
  transition: background .3s;
}
.product-img {
  position: relative;
  height: 350px;
  width: 100%;
  margin-bottom: var(--md-space);
	/*visibility: hidden;*/
	
}
.product-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 90%;
  max-width: 80%;
  transform: translate(-50%, -50%);
}
.product-img img.img-under {
  transition: opacity .3s;
}
.product-img img.img-over {
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.product-text {
  display: block;
}
.product-title {
  color: var(--green-color);
  font-size: calc(var(--md-text) * 0.85);
  font-family: 'PPEditorialNew-Regular';
  font-family: 'PPEditorialNew-Ultralight';
  margin-bottom: var(--regular-space);
  transition: color .3s;
}
.product-text p {
  transition: color .3s;
}
@media screen and (min-width: 992px) {
  .product:hover {
    background-color: var(--white-color);
  }
  .product:hover p {
    color: var(--black-color);
  }
  .product:hover .product-img img.img-under {
    opacity: 0;
  }
  .product:hover .product-img img.img-over {
    opacity: 1;
  }
}
.item-client {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-client::after, .item-client::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon/plus-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.item-client::before {
  left: auto;
  right: 0;
}
.logo-client {
  max-width: 60%;
  max-height: 90px;
}
.logo-client-page {
  max-width: 50%;
  max-height: 40px;
}
.number {
  width: 100%;
  text-align: center;
}
.number span {
  display: inline;
  color: var(--green-color);
  font-family: 'PPEditorialNew-Ultralight';
  font-size: 3vw;
}
.number span:first-child {
  vertical-align: top;
}
.number span.number-big {
  font-size: 15vw;
  margin: 0 1.5rem;
}
/**end page**/
/*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*/
/*******global responsive*********/
@media screen and (max-width: 1920px) {
  :root {
    --header-height: 100px;
  }
  html, body {
    font-size: 20px;
  }
}
@media screen and (max-width: 1450px) {
  :root {
    --header-height: 80px;
  }
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --header-height: 80px;
  }
  html, body {
    font-size: 18px;
  }
  .hide-lg {
    display: none !important;
  }
  .align-center-lg {
    text-align: center !important;
  }
  .align-left-lg {
    text-align: left !important;
  }
  .m-top-lg-m {
    margin-top: var(--md-space) !important;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --header-height: 80px;
  }
  html, body {
    font-size: 18px;
  }
  .hide-md {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .align-center-md {
    text-align: center !important;
  }
  .align-left-md {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m {
    margin-top: var(--md-space) !important;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 70px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-sm {
    display: none !important;
  }
  .align-center-sm {
    text-align: center !important;
  }
  .align-left-sm {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m {
    margin-top: var(--lg-space) !important;
  }
  footer .m-top-sm-m {
    margin-top: var(--regular-space) !important;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --header-height: 70px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-xs {
    display: none !important;
  }
  .align-center-xs {
    text-align: center !important;
  }
  .align-left-xs {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m, .m-top-xs-m {
    margin-top: var(--lg-space) !important;
  }
  footer .m-top-sm-m {
    margin-top: var(--regular-space) !important;
  }
  footer .m-top-xs-m {
    margin-top: var(--regular-space) !important;
  }
}