@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("typo.css");
@import url("header.css");
@import url("img.css?v=0001");
@import url("btn.css");
@import url("form.css");
@import url("footer.css");
@import url("swiper-bundle.min.css");
@import url("swiper-custom.css");
@import url("preloader.css");
/*@import url("preloader.css");*/ :root {
  /*Setting Color*/
  --white-color: #FFFFFF;
  --green-color: #008166;
  --orange-color: #B2391C;
  --black-color: #111111;
  /*Setting Font*/
  --little-text: 0.6rem;
  --regular-text: 1rem;
  --medium-text: 2.5rem;
  --big-text: 3.5rem;
  /*Setting Space*/
  --little-space: 0.75rem;
  --regular-space: 1rem;
  --medium-space: 4em;
  --big-space: 8rem;
  --header-height: 200px;
  --container-width: 1920px;
  --logo-width: 160px;
  /*Setting Btn*/
  --btn-space: 0.5rem 1.25rem;
  --btn-space-little: 0.25rem 0.75rem;
  /*Setting Radius*/
  --btn-radius: 3px;
  --regular-radius: 3px;
  --medium-radius: 10px;
  --big-radius: 30px;
  /*Setting Shadow*/
  --box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);
}
html, body {
  padding: 0;
  margin: 0;
  color: var(--white-color);
  background: var(--green-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;
}
.d-block {
  display: block !important;
  width: 100%;
}
.d-flex {
  display: flex !important;
}
.flex-center {
  align-items: center !important;
}
.flex-end {
  align-items: flex-end !important;
}
.over-hidden {
  overflow: hidden !important;
}
.over-show {
  overflow: visible !important;
}
.hide-desktop {
  display: none;
}
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.sticky-top {
  top: 2rem;
}
.m-top {
  margin-top: calc(var(--regular-space) * 1.5) !important;
}
.m-top-xs {
  margin-top: var(--little-space) !important;
}
.m-top-md {
  margin-top: var(--medium-space) !important;
}
.m-top-xl {
  margin-top: var(--big-space) !important;
}
.m-top-extra {
  margin-top: calc(var(--big-space) * 3) !important;
}
.m-bottom {
  margin-bottom: calc(var(--regular-space) * 1.5) !important;
}
.m-bottom-xs {
  margin-bottom: var(--little-space) !important;
}
.m-bottom-md {
  margin-bottom: var(--medium-space) !important;
}
.m-bottom-xl {
  margin-bottom: var(--big-space) !important;
}
.m-left {
  margin-left: var(--regular-space) !important;
}
.m-right {
  margin-right: var(--regular-space) !important;
}
.p-top {
  padding-top: var(--regular-space) !important;
}
.p-bottom {
  padding-bottom: var(--regular-space) !important;
}
.p-left {
  padding-left: var(--regular-space) !important;
}
.p-right {
  padding-right: var(--regular-space) !important;
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-green {
  background-color: var(--black-color) !important;
}
.bg-orange {
  background-color: var(--orange-color) !important;
}
.color-white {
  color: var(--white-color);
}
.color-green {
  color: var(--green-color);
}
.color-orange {
  color: var(--orange-color);
}
/**end utility**/
/**grid setting**/
.container-main {
  z-index: 1;
}
section {
  position: relative;
  margin: 0 auto;
  margin-bottom: var(--big-space);
  z-index: 2;
}
section.section-pad {
  padding-top: var(--big-space);
  padding-bottom: var(--big-space);
}
section.section-hero {
  padding-top: 0;
  border-bottom: 3px solid var(--white-color);
}
section.section-border {
  border-top: 3px solid var(--white-color);
  border-bottom: 3px solid var(--white-color);
}
.container {
  position: relative;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  margin-bottom: var(--big-space);
}
.container.container-full {
  width: 100%;
  max-width: 100%;
}
.container.container-mini {
  max-width: 1200px;
}
.row {
  margin-bottom: calc(var(--medium-space) * 1);
}
.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;
}
@media screen and (min-width: 1200px) {
  .row.margin-row {
    margin-bottom: -4rem !important;
  }
  .row.margin-row > .col, .row.margin-row > [class*=col-] {
    margin-bottom: 4rem !important;
  }
  .row.margin-row.margin-row-prod {
    margin-bottom: -2rem !important;
  }
  .row.margin-row.margin-row-prod > .col, .row.margin-row > [class*=col-] {
    margin-bottom: 2rem !important;
  }
}
.row.grid-project {
  margin-right: -10px !important;
  margin-left: -10px !important;
}
.row.grid-project > .col, .row.grid-project > [class*=col-] {
  margin-bottom: 20px !important;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 1751px) {
  .col-pad {
    padding-left: 4rem;
  }
}
/**end grid setting*/
/**page**/
.border-page-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  border-bottom: 3px solid var(--white-color);
  background-color: var(--orange-color);
  z-index: 99999;
}
.border-page-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 42px;
  height: 100vh;
  height: 100svh;
  border-left: 3px solid var(--white-color);
  background-color: var(--orange-color);
  z-index: 1;
}
.banner-hero {
  position: absolute;
  width: 100%;
  top: 100vh;
  color: var(--white-color);
  transform: translate(0, -100%);
  z-index: 3;
  /**/
  pointer-events: none;
  /**/
  filter: drop-shadow(rgba(0, 0, 0, .1) 1rem 1rem 10px);
}
.banner-hero-inside {
  padding: 0 2rem;
  padding-bottom: 2rem;
}
.box {
  padding: var(--medium-space) var(--medium-space);
  border: 3px solid var(--white-color);
  border-left: 10px solid var(--white-color);
  border-bottom: 10px solid var(--white-color);
  background-color: var(--orange-color);
}
.box ul {
  list-style: decimal-leading-zero;
  font-size: calc(var(--regular-text) * 1.5);
  font-weight: 700;
}
.box ul li {
  margin-left: 25px;
  padding-left: 15px;
}
.box ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
a.scroll {
  position: absolute;
  display: block;
  width: 30px;
  height: 35vh;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  z-index: 10;
}
a.scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 2px;
  height: calc(100%);
  background: var(--white-color);
}
@media screen and (max-width: 1199px) {
  a.scroll {
    display: none;
  }
}
/*anime*/
.zoom-in-out-element {
  animation: zoom-in-zoom-out 40s ease 4;
  /*animation: zoom-in-zoom-out 40s ease infinite;*/
}
@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 120%;
  }
  100% {
    scale: 100%;
  }
}
/*scrollbar*/ ::-webkit-scrollbar {
  width: 8px;
  background: var(--black-color);
}
::-webkit-scrollbar-track {
  box-shadow: none;
}
::-webkit-scrollbar-thumb {
  background: var(--white-color);
  border-radius: 0;
}
/*end scrollbar*/
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/