@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Oxygen:wght@300;400;700&display=swap");
:root {
  --orangeColor: #e3654a;
  --greenColor: #0b5d61;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --grayColor: #3e3e3f;
  --fontMarcellus: "Marcellus", serif;
  --fontOxygen: "Oxygen", sans-serif;
}

body {
  font-family: var(--fontOxygen);
  color: var(--grayColor);
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

section {
  margin-bottom: 50px;
}

.title {
  font-family: var(--fontMarcellus);
  font-size: 25px;
  color: var(--orangeColor);
  position: relative;
  margin-bottom: 20px;
}
.title:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--greenColor);
  margin-top: 10px;
}

.title.whiteTitle {
  color: var(--whiteColor);
}
.title.whiteTitle:after {
  background: var(--whiteColor);
}

.titleCenter {
  text-align: center;
}
.titleCenter:after {
  margin: 0 auto;
}
.greenBg {
  background: var(--greenColor);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.logo {
  display: block;
  width: 150px;
}

.dpBtn {
  position: relative;
  font-family: var(--fontMarcellus);
  color: var(--whiteColor);
  display: flex;
  gap: 0 10px;
  padding: 5px 0;
  align-items: center;
  transition: all 0.3s ease;
}
.dpBtn:hover {
  padding: 5px 8px;
}
.dpBtn span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dpBtn span:after {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5' clip-rule='evenodd'/><path fill-rule='evenodd' d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
}

header.sticky .dpBtn span:after {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%233e3e3f' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5' clip-rule='evenodd'/><path fill-rule='evenodd' d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
}

header.sticky .dpBtn:hover span:after {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5' clip-rule='evenodd'/><path fill-rule='evenodd' d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.menuWrp ul li {
  color: var(--whiteColor);
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.menuWrp ul li a {
  display: block;
}

/* Swiper button */
.swiper-pagination {
  display: flex;
  gap: 0 5px;
}
.swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  background: var(--whiteColor);
  width: 10px;
  opacity: 0.3;
  transform: skewX(-50deg);
  transform-origin: 100% 0%;
  aspect-ratio: 2/1;
  height: auto;
  display: block;
  margin: 0 !important;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
/* Banner section */

.bannerWrp .bannerPic {
  position: relative;
}
.bannerWrp .bannerPic:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.bannerWrp .bannerPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bannerWrp .bannerTxt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.bannerWrp .bannerTxt h3 {
  color: var(--whiteColor);
  font-size: 24px;
  font-family: var(--fontMarcellus);
}
.bannerSwiper .bannerPagi {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.bannerSwiper .bannerPagi .swiper-pagination {
  position: relative;
  bottom: auto;
}

.bannerTxt h3 {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active .bannerTxt h3 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.3s;
}

.multiLine {
  position: relative;
}
.multiLine span {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.swiper-slide-active span {
  opacity: 1;
}
.swiper-slide-active .multiLine span:nth-child(1) {
  transition-delay: 1s;
}

.swiper-slide-active .multiLine span:nth-child(2) {
  transition-delay: 2s;
}

.swiper-slide-active .multiLine span:nth-child(3) {
  transition-delay: 3s;
}

/* Philosphy section */
.philosophySec {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.philosophySec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--orangeColor);
  z-index: -1;
}

.philosophyList li {
  position: relative;
}

.philosophyList li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 2/1;
  transform: skewX(130deg);
  transform-origin: 50% 50%;
  background: var(--orangeColor);
}

.philosophyList li:not(:last-child) {
  margin-bottom: 10px;
}
.philosophySwiper .swiper-slide {
  height: auto;
  padding: 0 0 10px 10px;
}

.box {
  position: relative;
  height: 100%;
  color: var(--grayColor);
  transition: all 0.3s ease;
}
.box:hover {
  color: var(--whiteColor);
}
.box .whiteBorder {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: -10px;
  left: -10px;
  margin: 0 !important;
  border: 1px solid var(--whiteColor);
  transition: all 0.3s 0.2s ease;
  z-index: -1;
}
.box:hover .whiteBorder {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  transition: all 0.3s 0s ease;
  z-index: 3;
}

.box .innerBox {
  text-align: center;
  height: 100%;
  border: 1px solid var(--orangeColor);
  background: var(--whiteColor);
  position: relative;
  z-index: 2;
  padding: 30px 15px;
}
.box .innerBox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--greenColor);
  width: 100%;
  transition: all 0.5s ease;
  z-index: -1;
}
.box:hover .innerBox:before {
  height: 100%;
}
.box .innerBox > * {
  margin-bottom: 20px;
}
.box .innerBox .iconWrp {
  margin-left: auto;
  margin-right: auto;
  width: 50px;
  aspect-ratio: 1/1;
  position: relative;
}
.box .innerBox .iconWrp img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.box .innerBox .iconWrp img:nth-child(2) {
  opacity: 0;
}
.box:hover .iconWrp img:nth-child(2) {
  opacity: 1;
}
.box .innerBox p {
  margin-bottom: 0;
}

.box .innerBox h4 {
  font-size: 16px;
  margin-bottom: 0;
  /* font-family: var(--fontMarcellus); */
}
.advantageRow .box {
  color: var(--blackColor);
}
.advantageRow .box:hover {
  color: var(--whiteColor);
}
.advantageRow .box .innerBox {
  border: 1px solid var(--greenColor);
}

.advantageRow .box .innerBox::before {
  background: var(--orangeColor);
}

.quantamSec {
  padding: 50px 0;
  color: var(--whiteColor);
}

.quantumMainCol {
  height: 100%;
  position: relative;
}

.quantumMainCol::before,
.quantumMainCol:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.quantumMainCol::before {
  right: 0;
  top: 0;
  transition-delay: 0.2s;
}
.quantumMainCol::after {
  left: 0;
  bottom: 0;
  transition-delay: 0.6s;
}

.quantumMainCol:hover::before,
.quantumMainCol:hover::after {
  width: 100%;
}

.quantumMainCol:hover::before {
  transition-delay: 0.8s;
}

.quantumMainCol:hover:after {
  width: 100%;
  transition-delay: 0.4s;
}

.quantumCol {
  border: 1px solid rgb(255 255 255 / 30%);
  height: 100%;
  font-size: 12px;
  position: relative;
  padding: 15px;
}

.quantumCol::before,
.quantumCol:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.quantumCol::before {
  transition-delay: 0s;
  left: 0;
  top: 0;
}
.quantumCol::after {
  transition-delay: 0.4s;
  right: 0;
  bottom: 0;
}

.quantumCol:hover::before,
.quantumCol:hover::after {
  height: 100%;
}

.quantumMainCol:hover .quantumCol::after {
  transition-delay: 0.6s;
}

.quantumCol h6 {
  font-weight: 700;
  color: var(--whiteColor);
  opacity: 0.3;
  font-size: 30px;
  margin-bottom: 80px;
  transition: all 0.3s ease;
}
.quantumCol:hover h6 {
  opacity: 1;
}
.quantumCol p:last-child {
  margin-bottom: 0;
}

/* Key Features */
.keyFeaturesRow {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 40px;
}
.kfBox {
  position: relative;
  height: 100%;
  background: rgba(11, 93, 97, 0.08);
  padding: 40px 20px 20px 20px;
}
.kfBox span {
  background: var(--orangeColor);
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  filter: drop-shadow(4px 6px 10px rgba(0, 0, 0, 0.4));
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  right: 20px;
}
.kfBox span img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}
.kfBox h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--fontMarcellus);
  color: var(--blackColor);
}
.kfBox p {
  margin-bottom: 0;
}

.chartWrp {
  height: 50vh;
}

.chartWrp canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Team */
.teamSec {
  padding: 50px 0;
  background: #f5f5f5;
}
.teamList {
  display: flex;
  justify-content: center;
}
.teamList li {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.35);
  font-family: var(--fontMarcellus);
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}
.teamList li.active {
  color: var(--blackColor);
}
.teamList li:not(:last-child) {
  border-right: 2px solid var(--greenColor);
  padding-right: 15px;
  margin-right: 15px;
}
.teamColRow {
  margin-top: 20px;
}
.teamBox {
  background: var(--whiteColor);
  height: 100%;
  position: relative;
}
.teamBox:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orangeColor);
}
.teamPic {
  border: 1px solid rgba(11, 93, 97, 0.1);
  background: #ebf2f2;
}
.teamPic img {
  display: block;
}
.teamTxt {
  padding: 15px;
}
.teamTxt h6 {
  color: var(--blackColor);
  font-family: var(--fontMarcellus);
}
.linkedin {
  display: block;
}
.teamTxt p {
  margin-bottom: 0;
}

.blackOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: none;
}

/* Footer */

footer {
  background: var(--greenColor);
  color: var(--whiteColor);
  padding: 50px 0;
}
footer .footHead {
  font-family: var(--fontMarcellus);
  position: relative;
  font-size: 18px;
  margin-bottom: 15px;
}
footer .footHead::after {
  content: "";
  display: block;
  background: var(--whiteColor);
  width: 30px;
  height: 2px;
  margin-top: 15px;
}
.footCol ul li {
  font-weight: 700;
  margin-bottom: 10px;
}
.footCol ul li:last-child {
  margin-bottom: 0;
}
.footCol h6 {
  font-weight: 700;
  font-size: 14px;
}
.footCol p:last-child {
  margin-bottom: 0;
}
.locWrp {
  position: relative;
}
.locWrp:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  aspect-ratio: 1/1;

  background-image: url("data:image/svg+xml,<svg viewBox='0 0 18 18' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M9 10.125C8.44374 10.125 7.89997 9.96005 7.43746 9.65101C6.97495 9.34197 6.61446 8.90272 6.40159 8.3888C6.18872 7.87488 6.13302 7.30938 6.24154 6.76381C6.35006 6.21824 6.61793 5.7171 7.01126 5.32376C7.4046 4.93043 7.90574 4.66256 8.45131 4.55404C8.99688 4.44552 9.56238 4.50122 10.0763 4.71409C10.5902 4.92696 11.0295 5.28745 11.3385 5.74996C11.6476 6.21247 11.8125 6.75624 11.8125 7.3125C11.8116 8.05815 11.515 8.773 10.9878 9.30025C10.4605 9.82751 9.74565 10.1241 9 10.125ZM9 5.625C8.66625 5.625 8.33998 5.72397 8.06248 5.9094C7.78497 6.09482 7.56868 6.35837 7.44095 6.66672C7.31323 6.97507 7.27981 7.31437 7.34493 7.64172C7.41004 7.96906 7.57076 8.26974 7.80676 8.50574C8.04276 8.74175 8.34344 8.90246 8.67079 8.96758C8.99813 9.03269 9.33743 8.99927 9.64578 8.87155C9.95413 8.74383 10.2177 8.52753 10.4031 8.25003C10.5885 7.97252 10.6875 7.64626 10.6875 7.3125C10.6871 6.86509 10.5091 6.43612 10.1928 6.11975C9.87638 5.80338 9.44742 5.62545 9 5.625Z' clip-rule='evenodd'/> <path fill-rule='evenodd' d='M9 16.875L4.25475 11.2787C4.18882 11.1947 4.12356 11.1101 4.059 11.025C3.24884 9.95704 2.811 8.65299 2.8125 7.3125C2.8125 5.67147 3.4644 4.09766 4.62478 2.93728C5.78516 1.7769 7.35898 1.125 9 1.125C10.641 1.125 12.2148 1.7769 13.3752 2.93728C14.5356 4.09766 15.1875 5.67147 15.1875 7.3125C15.1888 8.65235 14.7512 9.95574 13.9416 11.0233L13.941 11.025C13.941 11.025 13.7723 11.2466 13.7469 11.2764L9 16.875ZM4.95732 10.3472C4.95732 10.3472 5.08838 10.5204 5.11819 10.5576L9 15.1358L12.8869 10.5514C12.9116 10.5204 13.0433 10.3461 13.0438 10.3455C13.706 9.47315 14.0638 8.40771 14.0625 7.3125C14.0625 5.96984 13.5291 4.68217 12.5797 3.73277C11.6303 2.78337 10.3427 2.25 9 2.25C7.65735 2.25 6.36968 2.78337 5.42028 3.73277C4.47087 4.68217 3.9375 5.96984 3.9375 7.3125C3.93612 8.40842 4.29438 9.47452 4.95732 10.3472Z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100%;
}

.footLogo {
  display: block;
}

.footSocial {
  display: flex;
  width: 25px;
  aspect-ratio: 1/1;
}
.footSocial svg {
  width: 100%;
  height: 100%;
  fill: var(--whiteColor);
  transition: all 0.3s ease-in-out;
}

.footSocial a:hover svg {
  fill: var(--orangeColor);
}

#onLoadPopup .modal-content {
  border-radius: 0;
  padding: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
  color: var(--grayColor);
}
#onLoadPopup .modal-content::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--greenColor);
  z-index: -1;
}
#onLoadPopup .modal-content > *:not(:last-child) {
  margin-bottom: 20px;
}
#onLoadPopup .modal-content h6 {
  color: var(--greenColor);
  font-weight: 700;
  font-size: 15px;
}
#onLoadPopup .modal-content ul li {
  margin-bottom: 10px;
  position: relative;
}
#onLoadPopup .modal-content ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  margin-right: 5px;
  margin-top: -30px;
  aspect-ratio: 1/1;
  background: var(--grayColor);
  border-radius: 100%;
  vertical-align: 0.2em;
}
.agreeBtn {
  background: var(--greenColor);
  color: var(--whiteColor);
  padding: 10px;
  min-width: 200px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  font-family: var(--fontMarcellus);
}
.agreeBtn:hover {
  background: var(--orangeColor);
}
.vector {
  position: absolute;
  left: 100%;
  top: 50%;
  width: 50px;
  transform: translateY(-50%);
}

.popupWrp h6 {
  color: var(--greenColor);
  font-weight: 700;
  font-family: var(--fontMarcellus);
}
.popupWrp h6 a {
  text-decoration: underline;
}

.popupWrp ul li {
  position: relative;
  padding-left: 25px;
}

.popupWrp ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 15px;
  aspect-ratio: 2/1;
  transform: skewX(130deg);
  transform-origin: 50% 50%;
  background: var(--orangeColor);
}

.popupWrp ul li:not(:last-child) {
  margin-bottom: 10px;
}
.modal-backdrop {
  --bs-backdrop-opacity: 0.8;
}

.popupWrp .btn-close {
  cursor: pointer;
  opacity: 1;
  z-index: 9999;
  position: relative;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}
.popupWrp h6 {
  font-size: 16px;
}
.popupWrp p a {
  text-decoration: underline;
  color: var(--greenColor);
}

.popupWrp .modal-content {
  padding: 15px;
}
.popupWrp .modal-content > *:not(:last-child) {
  margin-bottom: 15px;
}

.popupWrp .form-check-input {
  border-color: var(--greenColor);
}

.form-check-input:checked[type="checkbox"] {
  background-color: var(--greenColor);
}

.disTxt {
  font-weight: 700;
}
