* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: "Poppins", -apple-system,BlinkMacSystemFont,Inter,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji",sans-serif;
  color: #fff;
  background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #C8F81B;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 5px 24px;
  border-radius: 6px;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 31.268px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  border: 1px solid #c8f81b;
  background: linear-gradient(180deg, #85c329 0%, #c8f81b 100%), linear-gradient(117deg, #141510 3.24%, #0e1008 50.31%, #1c2400 97.38%);
  position: relative;
  overflow: hidden;
}
.btn--primary:hover::before {
  transform: translateX(100%);
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: transform 0.6s ease;
}
.btn--plain {
  background-color: transparent;
  color: #C8F81B;
  border: 2px solid #C8F81B;
  position: relative;
  overflow: hidden;
}
.btn--plain:hover::before {
  transform: translateX(100%);
}
.btn--plain::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: transform 0.6s ease;
}
.btn--secondary {
  background-color: #6c757d;
  color: white;
  position: relative;
  overflow: hidden;
}
.btn--secondary:hover::before {
  transform: translateX(100%);
}
.btn--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: transform 0.6s ease;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #6c757d;
  border-radius: 4px;
  font-size: 16px;
}
.form-control:focus {
  outline: none;
  border-color: #C8F81B;
  box-shadow: 0 0 0 2px rgba(200, 248, 27, 0.2);
}

.card {
  width: 100%;
  padding: 26px 38px;
  border-radius: 18px;
  background-image: url("../img/cardbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.card .card-title {
  color: #fff;
  font-family: Poppins;
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 88px;
  /* 122.222% */
  margin-bottom: 11px;
  transition: color 0.4s ease;
}
.card .card-title b {
  color: #C8F81B;
  transition: color 0.4s ease;
}
.card .card-tips {
  color: #fff;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 152.381% */
  opacity: 0.6;
  margin-bottom: 40px;
  transition: all 0.4s ease;
  flex: auto;
}
.card .card-icon {
  width: 64px;
  height: 64px;
  background-color: #242424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.card .card-icon img {
  width: 56px;
  transition: all 0.4s ease;
}
.card:hover {
  background-image: none;
  background: linear-gradient(135deg, #C8F81B 0%, #98c106 100%);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200, 248, 27, 0.3);
  border-color: rgba(200, 248, 27, 0.3);
}
.card:hover .card-title {
  color: #000;
}
.card:hover .card-title b {
  color: #000;
}
.card:hover .card-tips {
  color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}
.card:hover .card-icon {
  background-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.card:hover .card-icon img {
  filter: brightness(0) invert(1);
}
.card:active {
  transform: translateY(-4px);
  transition: transform 0.1s ease;
}
.card:focus {
  outline: 2px solid #C8F81B;
  outline-offset: 2px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.main {
  padding-top: 76px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}
.col--1 {
  flex: 0 0 8.333333%;
}
.col--2 {
  flex: 0 0 16.666667%;
}
.col--3 {
  flex: 0 0 25%;
}
.col--4 {
  flex: 0 0 33.333333%;
}
.col--6 {
  flex: 0 0 50%;
}
.col--8 {
  flex: 0 0 66.666667%;
}
.col--9 {
  flex: 0 0 75%;
}
.col--12 {
  flex: 0 0 100%;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .col {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .main {
    padding-top: 76px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .main {
    padding-top: 76px;
  }
}
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #C8F81B;
}

.text-secondary {
  color: #6c757d;
}

.text-success {
  color: #28a745;
}

.text-danger {
  color: #dc3545;
}

.text-warning {
  color: #ffc107;
}

.text-info {
  color: #17a2b8;
}

.bg-primary {
  background-color: #C8F81B;
}

.bg-secondary {
  background-color: #6c757d;
}

.bg-success {
  background-color: #28a745;
}

.bg-danger {
  background-color: #dc3545;
}

.bg-warning {
  background-color: #ffc107;
}

.bg-info {
  background-color: #17a2b8;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.m-5 {
  margin: 3rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
}
.mobile-drawer.active {
  left: 0;
}
.mobile-drawer .drawer-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #333;
}
.mobile-drawer .drawer-header .drawer-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-drawer .drawer-header .drawer-close {
  width: 100%;
  padding: 1.5rem;
  background: #C8F81B;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mobile-drawer .drawer-header .drawer-close:hover {
  background: #acd907;
}
.mobile-drawer .drawer-header .drawer-close .close-icon {
  width: 16px;
  height: 16px;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.mobile-drawer .drawer-content {
  padding: 1.5rem;
}
.mobile-drawer .drawer-content .drawer-menu {
  margin-bottom: 2rem;
}
.mobile-drawer .drawer-content .drawer-menu ul {
  list-style: none;
}
.mobile-drawer .drawer-content .drawer-menu ul li {
  margin-bottom: 0;
  border-bottom: 1px solid #333;
}
.mobile-drawer .drawer-content .drawer-menu ul li:last-child {
  border-bottom: none;
}
.mobile-drawer .drawer-content .drawer-menu ul li a {
  display: block;
  padding: 2rem 1.5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-drawer .drawer-content .drawer-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  width: 0;
  height: 2px;
  background: #C8F81B;
  transition: all 0.3s ease;
}

.mobile-drawer .drawer-content .drawer-menu ul li a:hover::after,
.mobile-drawer .drawer-content .drawer-menu ul li a.active::after {
  width: calc(100% - 3rem);
}

.mobile-drawer .drawer-content .drawer-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #C8F81B;
}
.mobile-drawer .drawer-content .drawer-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #C8F81B;
}
.mobile-drawer .drawer-content .drawer-footer {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
}
.mobile-drawer .drawer-content .drawer-footer .language-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mobile-drawer .drawer-content .drawer-footer .language-selector .lang-option {
  padding: 1rem 1.5rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-drawer .drawer-content .drawer-footer .language-selector .lang-option:hover, .mobile-drawer .drawer-content .drawer-footer .language-selector .lang-option.active {
  border-color: #C8F81B;
  background: rgba(200, 248, 27, 0.1);
  color: #C8F81B;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header {
  width: 100%;
  height: 76px;
  background-color: #000;
  color: #fff;
  border-bottom: 1px solid #222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .container {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.header .container .logo {
  height: 40px;
  flex-shrink: 0;
}
.header .container .logo img {
  width: auto;
  height: 40px;
}
.header .container .menu {
  flex: auto;
  display: flex;
  justify-content: center;
  height: 100%;
}
.header .container .menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .container .menu ul li {
  height: 100%;
}
.header .container .menu ul li a {
  height: 100%;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
  text-decoration-line: none;
}

.header .container .menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C8F81B;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header .container .menu ul li a:hover::after,
.header .container .menu ul li a.active::after {
  width: 100%;
}

.header .container .menu ul li a:hover {
  color: #C8F81B;
}
.header .container .nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .container .nav-right .lng-dropdown {
  position: relative;
}

.header .container .nav-right .lng-dropdown .lng {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header .container .nav-right .lng .lng-icon {
  width: 24px;
  height: 24px;
}
.header .container .nav-right .lng .lng-icon img {
  width: 100%;
  height: 100%;
}
.header .container .nav-right .lng .lng-text {
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.header .container .nav-right .lng-dropdown .lng-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
}

.header .container .nav-right .lng-dropdown:hover .lng-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header .container .nav-right .lng-dropdown .lng-dropdown-menu .lng-option {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.header .container .nav-right .lng-dropdown .lng-dropdown-menu .lng-option:last-child {
  border-bottom: none;
}

.header .container .nav-right .lng-dropdown .lng-dropdown-menu .lng-option:hover {
  background: #f8f9fa;
  color: #C8F81B;
}

.header .container .nav-right .lng-dropdown .lng-dropdown-menu .lng-option.active {
  background: #C8F81B;
  color: #000;
}
.header .container .nav-right .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #C8F81B;
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .container .nav-right .btn:hover {
  background: #acd907;
}
.header .container .nav-right .mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .container .nav-right .mobile-menu-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.header .container .nav-right .mobile-menu-btn .hamburger {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}
.header .container .nav-right .mobile-menu-btn .hamburger::before, .header .container .nav-right .mobile-menu-btn .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.header .container .nav-right .mobile-menu-btn .hamburger::before {
  top: -8px;
}
.header .container .nav-right .mobile-menu-btn .hamburger::after {
  top: 8px;
}
.header .container .nav-right .mobile-menu-btn.active .hamburger {
  background: transparent;
}
.header .container .nav-right .mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.header .container .nav-right .mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 1200px) {
  .header .container {
    justify-content: space-between;
  }
  .header .container .logo {
    height: 30px;
  }
  .header .container .logo img {
    height: 100%;
  }
  .header .container .menu {
    display: none;
  }
  .header .container .nav-right {
    gap: 20px;
  }
  .header .container .nav-right .lng {
    display: none;
  }
  .header .container .nav-right .btn {
    display: none;
  }
  .header .container .nav-right .mobile-menu-btn {
    display: flex;
  }
}
.home {
  height: 900px;
  background-image: url("../img/bannerkv_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
}
.home .container .scroll-down {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.home .container .scroll-down img {
  width: 100%;
}
.home .container .kv-text .kv-text-1 {
  color: #C8F81B;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}
.home .container .kv-text .kv-text-2 {
  line-height: 56px;
  color: #fff;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
.home .container .kv-text .kv-text-2-1 {
  color: #C8F81B;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
.home .container .kv-text .kv-text-2-2 {
  color: #fff;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
.home .container .kv-text .kv-text-3 {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 144.444% */
  width: 100%;
  display: inline-block;
}
.home .container .kv-text .btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.home .container .kvimg {
  width: 45%;
  flex-shrink: 0;
}
.home .container .kvimg img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .home {
    padding-top: 40px;
    height: auto;
  }
  .home .container .scroll-down {
    bottom: 0%;
  }
  .home .container .kv-text {
    width: 100%;
  }
  .home .container .kv-text .kv-text-2 {
    font-size: 36px;
    line-height: 40px;
  }
  .home .container .kv-text .kv-text-2-1 {
    font-size: 30px;
    line-height: 40px;
  }
  .home .container .kv-text .kv-text-2-2 {
    font-size: 30px;
    line-height: 40px;
  }
  .home .container .kvimg {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .home .container {
    flex-direction: column;
  }
  .home .container .kvimg {
    width: 100%;
  }
  .home .container .kv-text {
    width: 100%;
  }
}
.about {
  padding-top: 120px;
  padding-bottom: 236px;
  background-image: url("../img/aboutus_conbg.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
.about .container .text-1 {
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
  margin-bottom: 15px;
}
.about .container .title-box .text-2 {
  width: 52%;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}
.about .container .title-box .text-2 b {
  color: #C8F81B;
}
.about .container .title-box .text-3 {
  width: 38%;
  color: rgba(255, 255, 255, 0.6);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 144.444% */
}
.about .container .title-box .text-3 b {
  color: #fff;
}
.about .container .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  margin-top: 150px;
}
.about .container .cards .card {
  width: 100%;
}

@media (max-width: 1200px) {
  .about .container .title-box {
    flex-direction: column;
    gap: 30px;
  }
  .about .container .title-box .text-2 {
    width: 100%;
  }
  .about .container .title-box .text-3 {
    width: 100%;
  }
  .about .container .cards {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .about .container .cards .card {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .about .container .title-box .text-2 {
    font-size: 24px;
	line-height: 1.3;
  }
  .about .container .title-box .text-3 {
    font-size: 16px;
  }
  .about .container .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .about .container .cards .card {
    width: 100%;
  }
}
.global-presence {
  padding-top: 107px;
  padding-bottom: 46px;
  background: linear-gradient(180deg, #75b21b 0%, #c8f81b 110.81%), linear-gradient(117deg, #141510 3.24%, #0e1008 50.31%, #1c2400 97.38%);
}
.global-presence .container .text-box .text-1 {
  color: #000;
  font-family: Steppe;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 100% */
  float: left;
}
.global-presence .container .text-box .text-2 {
  color: #000;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 133.333% */
  float: right;
  width: 40%;
}
.global-presence .container .text-box .text-2 b {
  font-weight: 700;
}
.global-presence .container .text-box .clear {
  clear: both;
}
.global-presence .container .map {
  margin-top: 58px;
}
.global-presence .container .map img {
  width: 100%;
}

@media (max-width: 1200px) {
  .global-presence .container .text-box .text-1 {
    float: none;
    width: 100%;
  }
  .global-presence .container .text-box .text-2 {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .global-presence .container .text-box .text-2 {
    width: 100%;
    margin-top: 40px;
  }
}
.investment-strategy {
  padding-top: 105px;
  padding-bottom: 212px;
  position: relative;
}
.investment-strategy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../img/investment_strategy_bg.svg");
  height: 115%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.investment-strategy .container .text-box .text-1 {
  color: #fff;
  font-family: Steppe;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  float: left;
}
.investment-strategy .container .text-box .text-1 b {
  font-weight: 700;
  color: #C8F81B;
}
.investment-strategy .container .text-box .text-2 {
  color: rgba(255, 255, 255, 0.6);
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  float: right;
  width: 40%;
}
.investment-strategy .container .text-box .text-2 b {
  color: #fff;
  font-weight: 400;
}
.investment-strategy .container .text-box .clear {
  clear: both;
}
.investment-strategy .container .card-box {
  margin-top: 100px;
}
.investment-strategy .container .card-box .card-box-title {
  color: #fff;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 108%;
  text-align: center;
}
.investment-strategy .container .card-box .card-box-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.investment-strategy .container .card-box .card-box-content .card {
  justify-content: space-between;
}
.investment-strategy .container .card-box .card-box-content .card .card-icon {
  background-color: transparent;
  width: 86px;
  height: 86px;
}
.investment-strategy .container .card-box .card-box-content .card .card-icon img {
  width: 100%;
  height: 100%;
}
.investment-strategy .container .card-box .card-box-content .card:hover .card-icon img{
     filter: brightness(0) invert(0);
}

.investment-strategy .container .card-box .card-box-content .card .card-title {
  font-size: 24px;
  line-height: 28px;
  margin-top: 21px;
  flex: 1;
}
.investment-strategy .container .card-box .card-box-content .card .card-tips {
  font-size: 18px;
  margin-bottom: 0;
  flex: none;
}

@media (max-width: 1200px) {
  .investment-strategy .container .text-box .text-1 {
    font-size: 36px;
    width: 100%;
    float: none;
  }
  .investment-strategy .container .text-box .text-2 {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .investment-strategy .container .text-box .text-1 {
    font-size: 36px;
  }
  .investment-strategy .container .text-box .text-2 {
    font-size: 16px;
  }
  .investment-strategy .container .card-box .card-box-title {
    font-size: 36px;
  }
  .investment-strategy .container .card-box .card-box-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .investment-strategy .container .card-box .card-box-content .card .card-tips{
  	  line-height: 1.4;
  	  font-size:16px;
  }
  .investment-strategy .container .card-box .card-box-content .card .card-tips br{
  	  display: none;
  }
}
.one-to-one-advisory {
  padding-top: 78px;
  padding-bottom: 17px;
}
.one-to-one-advisory .container {
  display: flex;
  gap: 119px;
  align-items: center;
}
.one-to-one-advisory .container .left {
  flex: 1;
}
.one-to-one-advisory .container .left .text-1 {
  color: #fff;
  font-family: Steppe;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}
.one-to-one-advisory .container .left .text-1 b {
  color: #C8F81B;
}
.one-to-one-advisory .container .left .menus {
  margin-top: 47px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.one-to-one-advisory .container .left .menus .menu {
  width: 100%;
  padding: 29px 44px;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #151515;
  display: flex;
  gap: 21px;
}
.one-to-one-advisory .container .left .menus .menu .menu-icon {
  width: 30px;
  height: 30px;
}
.one-to-one-advisory .container .left .menus .menu .menu-icon img {
  width: 100%;
  height: 100%;
}
.one-to-one-advisory .container .left .menus .menu .menu-title {
  color: rgba(255, 255, 255, 0.6);
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  width: 80%;
}
.one-to-one-advisory .container .left .menus .menu .menu-title span {
  word-wrap: break-word;
}
.one-to-one-advisory .container .left .menus .menu .menu-title b {
  color: #fff;
  font-weight: 500;
}
.one-to-one-advisory .container .right {
  width: 40%;
}
.one-to-one-advisory .container .right img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .one-to-one-advisory .container {
    flex-direction: column;
  }
  .one-to-one-advisory .container .left {
    width: 100%;
  }
  .one-to-one-advisory .container .right {
    width: 100%;
  }
}
.investor-testimonials {
  height: 794px;
  width: 100%;
  background: url("../img/investor_testimonials_bg.svg"), linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 25%, #85c329 100%);
  background-size: cover;
}
.investor-testimonials .swiper {
  width: 100%;
  height: 100%;
}
.investor-testimonials .swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.investor-testimonials .swiper .swiper-slide .text-1 {
  color: #fff;
  font-family: Steppe;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 100% */
}
.investor-testimonials .swiper .swiper-slide .avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 58px;
}
.investor-testimonials .swiper .swiper-slide .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-testimonials .swiper .swiper-slide .desc {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  /* 120.833% */
  position: relative;
  width: 35%;
  margin-top: 80px;
}
.investor-testimonials .swiper .swiper-slide .desc::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: url("../img/investor_ico.svg") no-repeat center center;
  background-size: 90px 90px;
}
.investor-testimonials .swiper .swiper-slide .user-name {
  color: white;
  font-family: Poppins;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
  position: relative;
}
.investor-testimonials .swiper .swiper-slide .user-name b {
  display: block;
  width: 60px;
  height: 1px;
  background: #fff;
}

@media (max-width: 1200px) {
  .investor-testimonials .swiper .swiper-slide .text-1 {
    font-size: 36px;
  }
  .investor-testimonials .swiper .swiper-slide .desc {
    font-size: 20px;
    width: 80%;
  }
  .investor-testimonials .swiper .swiper-slide .user-name {
    font-size: 14px;
  }
}
.customer-service-email {
  padding-top: 102px;
  padding-bottom: 124px;
  background: url("../img/footer_bg.svg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.customer-service-email .icon {
  width: 75px;
  height: 43px;
  margin-bottom: 29px;
}
.customer-service-email .text-1 {
  color: #fff;
  text-align: center;
  font-family: Steppe;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 80px;
}
.customer-service-email .btn {
  padding-left: 60px;
  padding-right: 60px;
}

.customer-service-email .btn a{
     color:#000;
}

@media screen and (max-width: 800px) {
  .customer-service-email .text-1 {
    font-size: 24px;
    width:80%;
  }
}
.footer {
  padding-top: 50px;
  padding-bottom: 150px;
}
.footer .container .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .container .footer-top .footer-top-right .footer-top-right-menu ul {
  display: flex;
  gap: 24px;
}
.footer .container .footer-top .footer-top-right .footer-top-right-menu ul li a {
  width: 24px;
  height: 24px;
}
.footer .container .footer-top .footer-top-right .footer-top-right-menu ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .container .footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .container .footer-bottom .footer-bottom-menu ul {
  display: flex;
  gap: 20px;
}
.footer .container .footer-bottom .footer-bottom-menu ul li a {
  color: #727272;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  transition: color 0.3s ease;
}

.footer .container .footer-bottom .footer-bottom-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8F81B;
  transition: all 0.3s ease;
}

.footer .container .footer-bottom .footer-bottom-menu ul li a:hover::after,
.footer .container .footer-bottom .footer-bottom-menu ul li a.active::after {
  width: 100%;
}

.footer .container .footer-bottom .footer-bottom-menu ul li a:hover {
  color: #C8F81B;
}
.footer .container .footer-bottom .footer-bottom-text span {
  color: #727272;
  text-align: right;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 800px) {
  .footer .container .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer .container .footer-bottom {
    flex-direction: column;
    gap: 40px;
  }
  .footer .container .footer-bottom .footer-bottom-menu {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
