:root {
  --font-size-xxs: 16px;
  --font-size-xs: 18px;
  --font-size-sm: 21px;
  --font-size-md: 24px;
  --font-size-lg: 32px;
  --font-size-xl: 42px;
  --font-size-xxl: 48px;
  --font-size-xxxl: 56px;
  --font-size-xxxxl: 80px;
}

@media screen and (max-width: 1200px) {
  :root {
    --font-size-xxs: 12px;
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-md: 18px;
    --font-size-lg: 24px;
    --font-size-xl: 32px;
    --font-size-xxl: 36px;
    --font-size-xxxl: 42px;
    --font-size-xxxxl: 64px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --font-size-xxs: 10px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-xxl: 28px;
    --font-size-xxxl: 32px;
    --font-size-xxxxl: 56px;
  }
}
@font-face {
  font-family: "Galaxy Empire 2 Title";
  src: url("../fonts/GalaxyEmpire2Title/halaxy_empire_2_title.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay/helvetica-now-display.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay/helvetica-now-display-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay/helvetica-now-display-bold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay/helvetica-now-display-bold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/manrope-medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/manrope-regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "SF Mono";
  src: url("../fonts/SFMono/sf-mono-medium.otf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

p {
  margin-bottom: 1.5rem;
}

a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}
a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

button {
  transition: all 0.3s ease;
}

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

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

section {
  padding: 120px 0;
}

.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%;
}

.aboutbox {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 15, 23, 0) 80.96%, #0c0f17 100%), linear-gradient(180deg, #000309 0%, rgba(0, 3, 9, 0) 46.5%), url("../images/about_bg.png") lightgray 10%/cover no-repeat;
}

.founderbox {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 15, 23, 0) 80.96%, #0c0f17 100%), linear-gradient(180deg, #0c1017 0%, rgba(0, 3, 9, 0) 46.5%), url("../images/about_bg.png") lightgray 10%/cover no-repeat;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  section {
    padding: 80px 0;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  section {
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  section {
    padding: 60px 0;
  }

  .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;
  }

  section {
    padding: 60px 0;
  }
}
.light-btn {
  padding: 16px 33px;
  background-color: #fff;
  color: #0C0F17;
  text-align: center;
  font-family: Manrope;
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.light-btn:hover {
  background-color: #fff;
}

.dark-btn {
  padding: 13px 33px;
  border-radius: 100px;
  border: 1px solid #434c5b;
  color: #8892a3;
  font-size: var(--font-size-xxs);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  background-color: transparent;
}
.dark-btn:hover {
  background-color: #fff;
}

.card {
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.card::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  background: linear-gradient(to left, #fff, #fff) left top no-repeat, linear-gradient(to bottom, #fff, #fff) left top no-repeat, linear-gradient(to left, #fff, #fff) right top no-repeat, linear-gradient(to bottom, #fff, #fff) right top no-repeat, linear-gradient(to left, #fff, #fff) left bottom no-repeat, linear-gradient(to bottom, #fff, #fff) left bottom no-repeat, linear-gradient(to left, #fff, #fff) right bottom no-repeat, linear-gradient(to left, #fff, #fff) right bottom no-repeat;
  background-size: 2px 12px, 12px 2px, 2px 12px, 12px 2px;
}
.card__border {
  border: 1px solid #232831;
  box-sizing: border-box;
}
.card__bg {
  background: rgba(133, 147, 167, 0.2);
  backdrop-filter: blur(6px);
}

.title {
  color: #fff;
  font-family: Manrope;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 106.667% */
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0C0F17;
  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: Inter, Helvetica, Arial, Verdana, "Segoe UI", 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: #fff;
  color: #0C0F17;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter, Helvetica, Arial, Verdana, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mobile-drawer .drawer-header .drawer-close:hover {
  background: #e6e6e6;
}
.mobile-drawer .drawer-header .drawer-close .close-icon {
  width: 16px;
  height: 16px;
  color: #0C0F17;
  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: Inter, Helvetica, Arial, Verdana, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-drawer .drawer-content .drawer-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.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: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.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 {
  height: 120px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  height: 80px;
}
.header .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .header__logo {
  flex-shrink: 0;
}
.header .container .header__menu {
  flex: 1;
}
.header .container .header__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header .container .header__menu ul li {
  list-style: none;
}
.header .container .header__menu ul li a {
  color: #fff;
  font-size: var(--font-size-xxs);
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
  position: relative;
  transition: color 0.3s ease;
}
.header .container .header__menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.header .container .header__menu ul li a:hover {
  color: #fff;
}
.header .container .header__menu ul li a:hover::after {
  transform: scaleX(1);
}
.header .container .header__menu ul li a.active {
  color: #fff;
}
.header .container .header__menu ul li a.active::after {
  transform: scaleX(1);
}
.header .container .header__button {
  display: flex;
  align-items: center;
  gap: 37px;
}
.header .container .header__button button {
  background-color: transparent;
  border: none;
}
.header .container .header__button .button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header .container .header__button .button img {
  width: 28px;
  height: 28px;
}

/* Language button dropdown styles */
.language-btn {
  position: relative;
}

.language-btn .language-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 100px;
  overflow: hidden;
}

.language-btn:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
}

.language-btn .lang-option {
  padding: 10px 15px;
  text-align: center;
  display: block;
  font-family: "Helvetica Now Display";
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.language-btn .lang-option:last-child {
  border-bottom: none;
}

.language-btn .lang-option:hover {
  background-color: #163076;
  color:#fff;
}

.header .container .header__button .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 .mobile-menu-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.header .container .mobile-menu-btn .hamburger {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}
.header .container .mobile-menu-btn .hamburger::before, .header .container .mobile-menu-btn .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.header .container .mobile-menu-btn .hamburger::before {
  top: -8px;
}
.header .container .mobile-menu-btn .hamburger::after {
  top: 8px;
}
.header .container .mobile-menu-btn.active .hamburger {
  background: transparent;
}
.header .container .mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.header .container .mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 1200px) {
  .header .container {
    justify-content: space-between;
  }
  .header .container .header__logo {
    height: 30px;
  }
  .header .container .header__logo img {
    height: 100%;
  }
  .header .container .header__menu {
    display: none;
  }
  .header .container .header__button {
    gap: 20px;
  }
  .header .container .header__button .lng {
    display: none;
  }
  .header .container .header__button .btn {
    display: none;
  }
  .header .container .header__button .mobile-menu-btn {
    display: flex;
  }
}
.banner {
  width: 100%;
  height: 100vh;
  background-image: url("../images/bannerkv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner .scrollbtn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
}
.banner .scrollbtn img {
  width: 100%;
}
.banner .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner .container .banner__title {
  font-size: var(--font-size-xxxl);
  color: #fff;
  font-family: "Galaxy Empire 2 Title";
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  /* 114.286% */
  letter-spacing: 1.12px;
  text-transform: capitalize;
  width: 70%;
}
.banner .container .banner_subtitle {
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  width: 70%;
  margin-top: 28px;
  margin-bottom: 60px;
}
.banner .container .banner__button .arrow {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .container .banner__button .arrow img {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
    .card {
        padding: 30px;
    }
    .header{
        height:80px;
    }
    .header .container .header__button .button{
        display: none;
    }
  .banner .container {
    justify-content: center;
    align-items: center;
  }
 .banner .container .banner__title {
        width: 100%;
        margin-top: -20%;
    }
     .banner .container .banner_subtitle {
        width: 100%;
        font-size: 14px;
    }
    .banner .scrollbtn {
        bottom: 15%;
    }
    .aboutbox{
            background-position: center center
    }
}
.founder .container .founder__left {
  width: 40%;
  float: left;
}
.founder .container .founder__left .founder__title {
  color: #fff;
  font-family: Manrope;
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}
.founder .container .founder__left .founder__text {
  color: #8892a3;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.founder .container .founder__left .founder__text b {
  color: #fff;
}
.founder .container .founder__left .founder__button {
  margin-top: 40px;
}
.founder .container .founder__left .founder__button .dark-btn {
  padding: 13px 33px;
  border-radius: 100px;
  border: 1px solid #434c5b;
  color: #8892a3;
  font-size: var(--font-size-xxs);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  background-color: transparent;
}
.founder .container .founder__right {
  float: right;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 35%;
}
.founder .container .founder__right .card .founder__card_title {
  color: #9ea6b5;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
}
.founder .container .founder__right .card .founder__card_data {
  color: #FFF;
  font-family: Manrope;
  font-size: var(--font-size-xxxxl);
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
}
.founder .container .clear {
  clear: both;
}

@media screen and (max-width: 800px) {
  .founder .container .founder__left {
    width: 100%;
  }
  .founder .container .founder__right {
    width: 100%;
    margin-top: 40px;
  }
  .founder .container .founder__right .card .founder__card_data {
    line-height: 1.5;
}
}
.about .container .title {
  margin-bottom: 52px;
}
.about .container .about-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}
.about .container .about-content .about-content__left {
  width: 42%;
}
.about .container .about-content .about-content__left .about-content__left-title {
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.about .container .about-content .about-content__left .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.about .container .about-content .about-content__left .card .text {
  color: #8892a3;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.about .container .about-content .about-content__left .card .icon {
  flex-shrink: 0;
  width: 148px;
}
.about .container .about-content .about-content__left .card .icon img {
  width: 148px;
}
.about .container .about-content .about-content__right {
  width: 42%;
  display: flex;
  flex-direction: column;
}
.about .container .about-content .about-content__right .about-content__left-title {
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.about .container .about-content .about-content__right .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex: auto;
}
.about .container .about-content .about-content__right .card .text {
  color: #8892a3;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.about .container .about-content .about-content__right .card .icon {
  flex-shrink: 0;
  width: 148px;
}
.about .container .about-content .about-content__right .card .icon img {
  width: 148px;
}
.about .container .about-content .clear {
  clear: both;
}

@media screen and (max-width: 800px) {
  .about .container .about-content {
    flex-direction: column;
  }
  .about .container .about-content .about-content__left {
    width: 100%;
  }
  .about .container .about-content .about-content__right {
    width: 100%;
  }
  .about .container .about-content .about-content__left .card .icon {
        width: 80px;
    }
    .about .container .about-content .about-content__right .card .icon {
        width: 80px;
    }
}
.meet-founder .container .tip-title {
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.meet-founder .container .meet-founder__content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
  width: 100%;
  margin-top: 62px;
}
.meet-founder .container .meet-founder__content .meet-founder__content-left {
  flex-shrink: 0;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.meet-founder .container .meet-founder__content .meet-founder__content-left img {
  width: 351px;
}
.meet-founder .container .meet-founder__content .meet-founder__content-right {
  flex: auto;
}
.meet-founder .container .meet-founder__content .meet-founder__content-right .card .card__title {
  color: #fff;
  font-family: Manrope;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 114.286% */
  margin-bottom: 20px;
}
.meet-founder .container .meet-founder__content .meet-founder__content-right .card .card__text {
  color: #9ea6b5;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 155.556% */
}
.meet-founder .container .meet-founder__content .meet-founder__content-right .card .card__name {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  color: #fff;
  text-align: right;
  font-family: Manrope;
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  /* 171.429% */
  margin-top: 33px;
}
.meet-founder .container .meet-founder__content .meet-founder__content-right .card .card__name .line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 800px) {
  .meet-founder .container .meet-founder__content {
    flex-direction: column;
  }
}
.our-expertise .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-expertise .container .tip-title {
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 26px;
}
.our-expertise .container .cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  gap: 35px;
}
.our-expertise .container .cards .card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.our-expertise .container .cards .card .icon {
  width: 65px;
}
.our-expertise .container .cards .card .icon img {
  width: 100%;
}
.our-expertise .container .cards .card .card-title {
  flex: 1;
  margin-top: 35px;
  color: #fff;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 123.81% */
  text-transform: capitalize;
  width: 90%;
}
.our-expertise .container .cards .card .card-text {
  color: #959cab;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height:  1.4;
  /* 131.25% */
  text-transform: capitalize;
  margin-top: 30px;
  width: 90%;
}

@media screen and (max-width: 1200px) {
  .our-expertise .container .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .our-expertise .container .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.market .title-box {
  display: flex;
  justify-content: space-between;
}
.market .title-box .title-box__left {
  width: 30%;
}
.market .title-box .title-box__left .tip-title {
  color: #fff;
  font-family: "SF Mono";
  font-size: var(--font-size-xs);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
  margin-bottom: 16px;
}
.market .title-box .title-box__left .title {
  color: #fff;
  font-family: Manrope;
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 114.286% */
}
.market .title-box .title-box__right {
  width: 42%;
}
.market .title-box .title-box__right .text {
  color: #8892A3;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 152.381% */
  text-transform: capitalize;
}
.market .title-box .title-box__right .text b {
  color: #fff;
}
.market .cards {
  margin-top: 70px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.market .cards .card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.market .cards .card img {
  width: 150px;
}

@media screen and (max-width: 800px) {
  .market .title-box {
    flex-direction: column;
  }
  .market .title-box .title-box__left {
    width: 100%;
  }
  .market .title-box .title-box__right {
    width: 100%;
  }
  .market .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.spain-division .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.spain-division .container .spain-division__left {
  width: 452px;
}
.spain-division .container .spain-division__right {
  width: 45%;
}
.spain-division .container .spain-division__right .tip-title {
  color: #fff;
  font-family: "SF Mono";
  font-size: var(--font-size-xs);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
  margin-bottom: 20px;
}
.spain-division .container .spain-division__right .text {
  color: #8892a3;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 152.381% */
  margin-top: 20px;
  margin-bottom: 60px;
}
.spain-division .container .spain-division__right .text a {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .spain-division .container {
    flex-direction: column;
  }
  .spain-division .container .spain-division__left {
    width: 60%;
  }
  .spain-division .container .spain-division__right {
    width: 100%;
    margin-top: 40px;
  }
}
.cooperate .container {
  background-image: url(../images/contactus_wrapbg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cooperate .container .title {
  color: #fff;
  text-align: center;
  font-family: "Galaxy Empire 2 Title";
  font-size: var(--font-size-xxl);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  /* 116.667% */
  text-transform: capitalize;
}
.cooperate .container .desc {
  width: 50%;
  color: #9ea6b5;
  text-align: center;
  font-family: "Helvetica Now Display";
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 133.333% */
  margin-bottom: 40px;
}
.cooperate .container .location {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.cooperate .container .location img {
  width: 23px;
}
.cooperate .container .location span {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 500;
  line-height: 28.718px;
  /* 136.752% */
}
.cooperate .container .light-btn a {
  color: #000;
  font-size: var(--font-size-xs);
  text-transform: none;
}

@media screen and (max-width: 800px) {
  .cooperate {
    padding-bottom: 0;
  }
  .cooperate .container {
    height: 100%;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cooperate .container .title {
    width: 100%;
  }
  .cooperate .container .desc {
    width: 100%;
    margin-bottom:20px;
  }
  .cooperate .container .location {
    width: 100%;
  }
}
.footer {
  padding-top: 50px;
  padding-bottom: 150px;
  background-color: #000;
}
.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;
}
.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 */
