: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: 56px; } }

@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: 40px; } }

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

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

body {
  font-family: Inter, Helvetica, Arial, Verdana, "Segoe UI", sans-serif;
  color: #000; }

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

p {
  margin-bottom: 1.5rem; }

a {
  color: #000;
  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; }

.split {
  width: 100%;
  height: 4px;
  background-color: #F9F8FB; }

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

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

.button {
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Guardian Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }
  .button:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000; }
  .button.white {
    border: 1px solid #000;
    border-radius: 8px;
    border: 1px solid #747474;
    background: #fff;
    color: #000; }

@media screen and (max-width: 768px) {
  .button {
    padding: 5px 10px; } }

@media screen and (max-width: 480px) {
  .button {
    padding: 5px 10px; } }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%); }
  .mobile-drawer.active {
    transform: translateX(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: #000;
      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: #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: 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;
  display: none;
  transition: all 0.3s ease; }
  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block; }

.header {
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: #F9F8FB; }
  .header.scrolled {
    height: 80px; }
  .header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Noto Sans","Roboto", sans-serif; }
    .header .container .header__logo {
      width: 286px;
      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: #000;
            font-size: var(--font-size-xs);
            font-weight: 400;
            line-height: 18px;
            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: #000; }
              .header .container .header__menu ul li a:hover::after {
                transform: scaleX(1); }
            .header .container .header__menu ul li a.active {
              color: #991b26; }
              .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 .mobile-menu-btn {
      display: none;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease; }
      .header .container .mobile-menu-btn:hover {
        border-color: rgba(0, 0, 0, 0.4);
        background: rgba(0, 0, 0, 0.05); }
      .header .container .mobile-menu-btn .hamburger {
        width: 20px;
        height: 2px;
        background: #000;
        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: #000;
          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 {
    height: 100px; }
    .header.scrolled {
      height: 70px; }
    .header .container {
      justify-content: space-between; }
      .header .container .header__logo {
        width: 250px; }
        .header .container .header__logo img {
          height: auto; }
      .header .container .header__menu {
        display: none; }
      .header .container .header__button {
        gap: 25px; }
        .header .container .header__button .lng {
          display: none; }
        .header .container .header__button .btn {
          display: none; }
        .header .container .header__button .mobile-menu-btn {
          display: flex;
          width: 38px;
          height: 38px;
          border: 1px solid rgba(255, 255, 255, 0.2); }
          .header .container .header__button .mobile-menu-btn:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1); }
          .header .container .header__button .mobile-menu-btn .hamburger {
            width: 18px;
            height: 2px;
            background: #000; }
            .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
              width: 18px;
              height: 2px;
              background: #000; }
            .header .container .header__button .mobile-menu-btn .hamburger::before {
              top: -7px; }
            .header .container .header__button .mobile-menu-btn .hamburger::after {
              top: 7px; } }

@media (max-width: 1024px) {
  .header {
    height: 90px; }
    .header.scrolled {
      height: 65px; }
    .header .container .header__logo {
      width: 220px; }
    .header .container .header__button {
      gap: 20px; }
      .header .container .header__button .mobile-menu-btn {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.2); }
        .header .container .header__button .mobile-menu-btn:hover {
          border-color: rgba(255, 255, 255, 0.4);
          background: rgba(255, 255, 255, 0.1); }
        .header .container .header__button .mobile-menu-btn .hamburger {
          width: 16px;
          height: 2px;
          background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
            width: 16px;
            height: 2px;
            background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before {
            top: -6px; }
          .header .container .header__button .mobile-menu-btn .hamburger::after {
            top: 6px; } }

@media (max-width: 900px) {
  .header {
    height: 85px; }
    .header.scrolled {
      height: 60px; }
    .header .container .header__logo {
      width: 200px; }
    .header .container .header__button {
      gap: 18px; }
      .header .container .header__button .mobile-menu-btn {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.2); }
        .header .container .header__button .mobile-menu-btn:hover {
          border-color: rgba(255, 255, 255, 0.4);
          background: rgba(255, 255, 255, 0.1); }
        .header .container .header__button .mobile-menu-btn .hamburger {
          width: 15px;
          height: 2px;
          background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
            width: 15px;
            height: 2px;
            background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before {
            top: -5px; }
          .header .container .header__button .mobile-menu-btn .hamburger::after {
            top: 5px; } }

@media (max-width: 768px) {
  .header {
    height: 80px; }
    .header.scrolled {
      height: 55px; }
    .header .container .header__logo {
      width: 180px; }
    .header .container .header__button {
      gap: 15px; }
      .header .container .header__button .mobile-menu-btn {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(255, 255, 255, 0.2); }
        .header .container .header__button .mobile-menu-btn:hover {
          border-color: rgba(255, 255, 255, 0.4);
          background: rgba(255, 255, 255, 0.1); }
        .header .container .header__button .mobile-menu-btn .hamburger {
          width: 14px;
          height: 2px;
          background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
            width: 14px;
            height: 2px;
            background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before {
            top: -4px; }
          .header .container .header__button .mobile-menu-btn .hamburger::after {
            top: 4px; } }

@media (max-width: 480px) {
  .header {
    height: 75px; }
    .header.scrolled {
      height: 50px; }
    .header .container .header__logo {
      width: 160px; }
    .header .container .header__button {
      gap: 12px; }
      .header .container .header__button .mobile-menu-btn {
        width: 30px;
        height: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2); }
        .header .container .header__button .mobile-menu-btn:hover {
          border-color: rgba(255, 255, 255, 0.4);
          background: rgba(255, 255, 255, 0.1); }
        .header .container .header__button .mobile-menu-btn .hamburger {
          width: 20px;
          height: 2px;
          background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
            width: 20px;
            height: 2px;
            background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before {
            top: -6px; }
          .header .container .header__button .mobile-menu-btn .hamburger::after {
            top: 6px; } }

@media (max-width: 360px) {
  .header {
    height: 70px; }
    .header.scrolled {
      height: 45px; }
    .header .container .header__logo {
      width: 120px;
      height: 24px; }
    .header .container .header__button {
      gap: 10px; }
      .header .container .header__button .mobile-menu-btn {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, 0.2); }
        .header .container .header__button .mobile-menu-btn:hover {
          border-color: rgba(255, 255, 255, 0.4);
          background: rgba(255, 255, 255, 0.1); }
        .header .container .header__button .mobile-menu-btn .hamburger {
          width: 20px;
          height: 2px;
          background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before, .header .container .header__button .mobile-menu-btn .hamburger::after {
            width: 12px;
            height: 2px;
            background: #000; }
          .header .container .header__button .mobile-menu-btn .hamburger::before {
            top: -5px; }
          .header .container .header__button .mobile-menu-btn .hamburger::after {
            top: 5px; } }

.home {
  background-color: #fff;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/homebanner.svg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 20px; }
  .home .home-content {
    text-align: center;
    max-width: 1200px;
    margin-top: -10%;
    width: 100%; }
    .home .home-content h1 {
      color: #000;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 54px;
      font-style: normal;
      font-weight: 700;
      line-height: 56px;
      margin-bottom: 0; }
      @media (max-width: 1200px) {
        .home .home-content h1 {
          font-size: 48px;
          line-height: 52px; } }
      @media (max-width: 1024px) {
        .home .home-content h1 {
          font-size: 44px;
          line-height: 50px; } }
      @media (max-width: 900px) {
        .home .home-content h1 {
          font-size: 40px;
          line-height: 46px; } }
      @media (max-width: 768px) {
        .home .home-content h1 {
          font-size: 36px;
          line-height: 42px; } }
      @media (max-width: 480px) {
        .home .home-content h1 {
          font-size: 28px;
          line-height: 34px; } }
      @media (max-width: 360px) {
        .home .home-content h1 {
          font-size: 24px;
          line-height: 30px; } }
    .home .home-content .tip {
      color: #000;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      text-align: center;
      margin: 50px 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto; }
      .home .home-content .tip span {
        color: #991b26; }
      @media (max-width: 1200px) {
        .home .home-content .tip {
          font-size: 17px;
          line-height: 26px;
          margin: 45px 0; } }
      @media (max-width: 1024px) {
        .home .home-content .tip {
          font-size: 16px;
          line-height: 24px;
          margin: 40px 0; } }
      @media (max-width: 900px) {
        .home .home-content .tip {
          margin: 35px 0; } }
      @media (max-width: 768px) {
        .home .home-content .tip {
          font-size: 16px;
          line-height: 1.4;
          margin: 30px 0; } }
    .home .home-content .button {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      width: 140px; }
      .home .home-content .button .button-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0; }
        .home .home-content .button .button-icon img {
          width: 100%;
          height: 100%; }
      @media (max-width: 480px) {
        .home .home-content .button {
          gap: 15px; }
          .home .home-content .button .button-icon {
            width: 16px;
            height: 16px; } }
  @media (max-width: 768px) {
    .home {
      background-size: cover;
      background-position: center;
      min-height: 80vh; } }
  @media (max-width: 480px) {
    .home {
      min-height: 70vh;
      padding: 15px; } }

.unser-team {
  padding-top: 80px;
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .unser-team {
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .unser-team {
      padding-bottom: 80px; } }
  .unser-team .unser-team-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 84px; }
    .unser-team .unser-team-content .unser-team-content-left {
      flex-shrink: 0; }
      .unser-team .unser-team-content .unser-team-content-left img {
        width: 620px;
        height: 446px;
        object-fit: cover;
        border-radius: 16px; }
    .unser-team .unser-team-content .unser-team-content-right .title {
      width: 80%; }
      .unser-team .unser-team-content .unser-team-content-right .title h2 {
        color: #000;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 42px;
        font-style: normal;
        font-weight: 500;
        line-height: 48px; }
    .unser-team .unser-team-content .unser-team-content-right .text {
      margin-top: 42px;
      margin-bottom: 60px; }
      .unser-team .unser-team-content .unser-team-content-right .text p {
        color: rgba(0, 0, 0, 0.8);
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; }
        .unser-team .unser-team-content .unser-team-content-right .text p span {
          color: #991b26; }
    @media (max-width: 1200px) {
      .unser-team .unser-team-content {
        gap: 60px; }
        .unser-team .unser-team-content .unser-team-content-left img {
          width: 500px;
          height: 360px; }
        .unser-team .unser-team-content .unser-team-content-right .title {
          width: 85%; }
          .unser-team .unser-team-content .unser-team-content-right .title h2 {
            font-size: 38px;
            line-height: 44px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 35px;
          margin-bottom: 50px; }
          .unser-team .unser-team-content .unser-team-content-right .text p {
            font-size: 15px;
            line-height: 23px; } }
    @media (max-width: 1024px) {
      .unser-team .unser-team-content {
        flex-direction: column;
        gap: 40px;
        text-align: center; }
        .unser-team .unser-team-content .unser-team-content-left img {
          width: 100%;
          max-width: 500px;
          height: auto; }
        .unser-team .unser-team-content .unser-team-content-right .title {
          width: 100%; }
          .unser-team .unser-team-content .unser-team-content-right .title h2 {
            font-size: 36px;
            line-height: 42px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 30px;
          margin-bottom: 40px; }
          .unser-team .unser-team-content .unser-team-content-right .text p {
            font-size: 15px;
            line-height: 22px; } }
    @media (max-width: 900px) {
      .unser-team .unser-team-content {
        gap: 35px; }
        .unser-team .unser-team-content .unser-team-content-left img {
          max-width: 450px;
          height: 320px; }
        .unser-team .unser-team-content .unser-team-content-right .title h2 {
          font-size: 32px;
          line-height: 38px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 28px;
          margin-bottom: 35px; } }
    @media (max-width: 768px) {
      .unser-team .unser-team-content {
        gap: 30px; }
        .unser-team .unser-team-content .unser-team-content-left img {
          max-width: 100%;
          height: 300px; }
        .unser-team .unser-team-content .unser-team-content-right .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 25px;
          margin-bottom: 30px; } }
    @media (max-width: 480px) {
      .unser-team .unser-team-content {
        gap: 25px; }
        .unser-team .unser-team-content .unser-team-content-left img {
          height: 250px; }
        .unser-team .unser-team-content .unser-team-content-right .title h2 {
          font-size: 24px;
          line-height: 30px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 20px;
          margin-bottom: 25px; } }
    @media (max-width: 360px) {
      .unser-team .unser-team-content {
        gap: 20px; }
        .unser-team .unser-team-content .unser-team-content-left img {
          height: 200px; }
        .unser-team .unser-team-content .unser-team-content-right .title h2 {
          font-size: 20px;
          line-height: 26px; }
        .unser-team .unser-team-content .unser-team-content-right .text {
          margin-top: 15px;
          margin-bottom: 20px; }
          .unser-team .unser-team-content .unser-team-content-right .text p {
            font-size: 11px;
            line-height: 16px; } }
  .unser-team .unser-team-content-bottom {
    margin-top: 120px; }
    .unser-team .unser-team-content-bottom .title h2 {
      color: #000;
      text-align: center;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 500;
      line-height: 42px; }
    .unser-team .unser-team-content-bottom .text {
      margin-top: 20px; }
      .unser-team .unser-team-content-bottom .text p {
        color: rgba(0, 0, 0, 0.8);
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        max-width: 800px;
        margin: 0 auto; }
        .unser-team .unser-team-content-bottom .text p span {
          color: #991b26; }
    .unser-team .unser-team-content-bottom .datas {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
      margin-top: 74px; }
      .unser-team .unser-team-content-bottom .datas .data {
        padding: 27px 30px;
        border-radius: 16px;
        background: #f9f8f5; }
        .unser-team .unser-team-content-bottom .datas .data .icon {
          width: 40px;
          height: 40px; }
          .unser-team .unser-team-content-bottom .datas .data .icon img {
            width: 100%;
            height: 100%; }
        .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
          color: #991b26;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 52px;
          font-style: normal;
          font-weight: 500;
          line-height: normal;
          margin-top: 36px;
          margin-bottom: 24px; }
        .unser-team .unser-team-content-bottom .datas .data .data-content p {
          color: #737373;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal; }
    @media (max-width: 1200px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 100px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 34px;
          line-height: 40px; }
        .unser-team .unser-team-content-bottom .text p {
          font-size: 17px;
          line-height: 23px; }
        .unser-team .unser-team-content-bottom .datas {
          grid-template-columns: repeat(3, 1fr);
          gap: 25px;
          margin-top: 60px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 25px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 48px;
              margin-top: 30px;
              margin-bottom: 18px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content p {
              font-size: 15px; } }
    @media (max-width: 1024px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 80px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 32px;
          line-height: 38px; }
        .unser-team .unser-team-content-bottom .text p {
          font-size: 16px;
          line-height: 22px; }
        .unser-team .unser-team-content-bottom .datas {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          margin-top: 50px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 20px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 42px;
              margin-top: 25px;
              margin-bottom: 15px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content p {
              font-size: 16px; } }
    @media (max-width: 900px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 70px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 30px;
          line-height: 36px; }
        .unser-team .unser-team-content-bottom .text p {
          font-size: 15px;
          line-height: 21px; }
        .unser-team .unser-team-content-bottom .datas {
          grid-template-columns: repeat(2, 1fr);
          gap: 18px;
          margin-top: 45px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 18px; }
            .unser-team .unser-team-content-bottom .datas .data .icon {
              margin: 0 auto; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 38px;
              margin-top: 22px;
              margin-bottom: 14px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content p {
              font-size: 15px; } }
    @media (max-width: 768px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 60px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .unser-team .unser-team-content-bottom .datas {
          grid-template-columns: 1fr;
          gap: 15px;
          margin-top: 40px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 20px;
            text-align: center; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 36px;
              margin-top: 20px;
              margin-bottom: 12px; } }
    @media (max-width: 480px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 50px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 24px;
          line-height: 30px; }
        .unser-team .unser-team-content-bottom .datas {
          gap: 12px;
          margin-top: 35px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 15px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 30px;
              margin-top: 15px;
              margin-bottom: 10px; } }
    @media (max-width: 360px) {
      .unser-team .unser-team-content-bottom {
        margin-top: 40px; }
        .unser-team .unser-team-content-bottom .title h2 {
          font-size: 20px;
          line-height: 26px; }
        .unser-team .unser-team-content-bottom .datas {
          gap: 10px;
          margin-top: 30px; }
          .unser-team .unser-team-content-bottom .datas .data {
            padding: 12px; }
            .unser-team .unser-team-content-bottom .datas .data .data-content h3 {
              font-size: 26px;
              margin-top: 12px;
              margin-bottom: 8px; } }

.compliance-und-lizenzen {
  padding-top: 120px;
  padding-bottom: 160px; }
  @media screen and (max-width: 768px) {
    .compliance-und-lizenzen {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .compliance-und-lizenzen {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .compliance-und-lizenzen .compliance-und-lizenzen-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .title {
      width: 80%; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .title h2 {
        color: #000;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 42px;
        font-style: normal;
        font-weight: 600;
        line-height: 48px; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .button {
      display: inline-block; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item {
      display: flex;
      gap: 18px; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-icon img {
          width: 100%;
          height: 100%; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content {
        width: 80%; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content p {
          color: #3b3b3b;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content p span {
            color: #991b26; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-right {
      width: 596px;
      height: auto;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-right img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    @media (max-width: 1024px) {
      .compliance-und-lizenzen .compliance-und-lizenzen-content {
        flex-direction: column;
        gap: 60px;
        text-align: center; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .title {
          width: 100%; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .title h2 {
            font-size: 36px;
            line-height: 42px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item {
          justify-content: center; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content {
            width: 100%; }
            .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content p {
              font-size: 15px;
              line-height: 22px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-right {
          width: 100%;
          max-width: 500px;
          height: 400px;
          margin: 0 auto; } }
    @media (max-width: 768px) {
      .compliance-und-lizenzen .compliance-und-lizenzen-content {
        gap: 40px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item {
          flex-direction: column;
          text-align: center;
          gap: 15px; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-icon {
            width: 35px;
            height: 35px;
            margin: 0 auto; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-left .tipbox .tipbox-item .tipbox-item-content p {
            font-size: 14px;
            line-height: 20px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content .compliance-und-lizenzen-content-right {
          height: 300px; } }
  .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    background-image: url(../images/globalwrap_bg.png);
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .title h2 {
      color: #000;
      text-align: center;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
      line-height: 42px; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text {
      width: 60%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 35px; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text p {
        color: rgba(0, 0, 0, 0.8);
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        margin-bottom: 24px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text p:first-child {
          width: 80%; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text p span {
          color: #991b26; }
    .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons {
      display: flex;
      gap: 70px;
      margin-top: 50px;
      align-items: center; }
      .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon {
        height: 80px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon:nth-child(2) {
          height: 54px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
    @media (max-width: 1024px) {
      .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom {
        margin-top: 100px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .title h2 {
          font-size: 32px;
          line-height: 38px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text {
          width: 80%; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text p {
            font-size: 15px;
            line-height: 20px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons {
          gap: 40px;
          margin-top: 50px; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon {
            height: 60px; }
            .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon:nth-child(2) {
              height: 40px; } }
    @media (max-width: 768px) {
      .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom {
        margin-top: 80px;
        padding-bottom: 60px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text {
          width: 90%;
          margin-top: 25px; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .text p {
            font-size: 15px;
            line-height: 1.3;
            margin-bottom: 20px; }
        .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons {
          flex-wrap: wrap;
          gap: 20px;
          margin-top: 40px;
          justify-content: center; }
          .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon {
            height: 50px;
            flex: 0 0 auto; }
            .compliance-und-lizenzen .compliance-und-lizenzen-content-bottom .icons .icon:nth-child(2) {
              height: 35px; } }

.optimizesystem {
  padding-top: 80px;
  padding-bottom: 80px; }
  @media (max-width: 768px) {
    .optimizesystem {
      padding: 40px 0px; } }
  .optimizesystem .optimizesystem-content .title {
    color: #000;
    text-align: center;
    font-family: "Noto Sans","Roboto", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 75px; }
  .optimizesystem .optimizesystem-content .cards {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .optimizesystem .optimizesystem-content .cards .card {
      padding: 27px 30px;
      border-radius: 16px;
      background: #f9f8f5; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop {
        display: flex;
        padding: 75px 100px; }
        .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
          flex-shrink: 0;
          width: 300px; }
        .optimizesystem .optimizesystem-content .cards .card.cardtop .content {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: flex-end;
          justify-content: center;
          gap: 24px; }
          .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
            width: 80%;
            color: #000;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 26px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px; }
          .optimizesystem .optimizesystem-content .cards .card.cardtop .content p {
            width: 80%;
            color: #737373;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .content p span {
              color: #991b26; }
    .optimizesystem .optimizesystem-content .cards .cards-row {
      display: flex;
      gap: 20px;
      align-items: stretch; }
      .optimizesystem .optimizesystem-content .cards .cards-row .card {
        flex: 1;
        margin: 0;
        display: flex;
        flex-direction: column; }
        .optimizesystem .optimizesystem-content .cards .cards-row .card .icon {
          flex-shrink: 0;
          width: 40px;
          height: 40px; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .icon img {
            width: 100%;
            height: 100%; }
        .optimizesystem .optimizesystem-content .cards .cards-row .card .data {
          flex: 1;
          display: flex;
          flex-direction: column; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
            color: #991b26;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 52px;
            font-weight: 500;
            margin-top: 56px;
            margin-bottom: 30px; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .data p {
            color: #737373;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            flex: 1; }
    .optimizesystem .optimizesystem-content .cards .cardbottom {
      margin-top: 0;
      display: flex;
      align-items: stretch;
      height: 684px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .left {
        flex: 1;
        flex-shrink: 0; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .left img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 16px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right {
        flex: 1;
        background-color: #f9f8f5;
        border-radius: 16px;
        padding: 34px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
          width: 358px;
          height: 358px; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon img {
            width: 100%;
            height: 100%; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .content {
          display: flex;
          flex-direction: column; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .title {
            width: 80%;
            text-align: left;
            color: #000;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 26px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            margin-bottom: 15px; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .text {
            color: #737373;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; }
            .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .text span {
              color: #991b26; }
  @media (max-width: 1200px) {
    .optimizesystem .optimizesystem-content .title {
      font-size: 30px;
      margin-bottom: 60px; }
    .optimizesystem .optimizesystem-content .cards .card.cardtop {
      padding: 60px 100px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
        width: 250px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
        font-size: 24px;
        line-height: 30px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .content p {
        font-size: 17px;
        line-height: 23px; }
    .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
      font-size: 48px;
      margin-top: 40px;
      margin-bottom: 25px; }
    .optimizesystem .optimizesystem-content .cards .cards-row .card .data p {
      font-size: 15px;
      line-height: 21px; }
    .optimizesystem .optimizesystem-content .cards .cardbottom {
      height: 600px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right {
        padding: 30px 40px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
          width: 300px;
          height: 300px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .title {
          font-size: 24px;
          line-height: 30px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .text {
          font-size: 17px;
          line-height: 23px; } }
  @media (max-width: 1024px) {
    .optimizesystem .optimizesystem-content .title {
      font-size: 28px;
      margin-bottom: 50px; }
    .optimizesystem .optimizesystem-content .cards .card.cardtop {
      flex-direction: column;
      padding: 40px;
      text-align: center; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
        width: 200px;
        margin: 0 auto 20px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .content {
        align-items: center; }
        .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
          width: 100%;
          font-size: 22px;
          line-height: 28px; }
        .optimizesystem .optimizesystem-content .cards .card.cardtop .content p {
          width: 100%;
          font-size: 16px;
          line-height: 22px; }
    .optimizesystem .optimizesystem-content .cards .cards-row {
      flex-direction: column;
      gap: 15px; }
      .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
        font-size: 42px;
        margin-top: 30px;
        margin-bottom: 20px; }
      .optimizesystem .optimizesystem-content .cards .cards-row .card .data p {
        font-size: 14px;
        line-height: 20px; }
    .optimizesystem .optimizesystem-content .cards .cardbottom {
      flex-direction: column;
      height: auto; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .left {
        height: 300px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right {
        padding: 30px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
          width: 200px;
          height: 200px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .title {
          width: 100%;
          font-size: 22px;
          line-height: 28px;
          text-align: center; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .text {
          font-size: 16px;
          line-height: 22px;
          text-align: center; } }
  @media (max-width: 900px) {
    .optimizesystem .optimizesystem-content .title {
      font-size: 26px;
      margin-bottom: 45px; }
    .optimizesystem .optimizesystem-content .cards .card.cardtop {
      padding: 35px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
        width: 180px; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
        font-size: 20px;
        line-height: 1.3; }
      .optimizesystem .optimizesystem-content .cards .card.cardtop .content p {
        font-size: 16px;
        line-height: 1.3; }
    .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
      font-size: 38px;
      margin-top: 25px;
      margin-bottom: 18px; }
    .optimizesystem .optimizesystem-content .cards .cards-row .card .data p {
      font-size: 15px;
      line-height: 1.3; }
    .optimizesystem .optimizesystem-content .cards .cardbottom .left {
      height: 280px; }
    .optimizesystem .optimizesystem-content .cards .cardbottom .right {
      padding: 25px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
        width: 180px;
        height: 180px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .title {
        font-size: 20px;
        line-height: 26px; }
      .optimizesystem .optimizesystem-content .cards .cardbottom .right .content .text {
        font-size: 15px;
        line-height: 21px; } }
  @media (max-width: 768px) {
    .optimizesystem .optimizesystem-content {
      padding-top: 30px;
      padding-bottom: 30px; }
      .optimizesystem .optimizesystem-content .title {
        font-size: 24px;
        margin-bottom: 40px; }
      .optimizesystem .optimizesystem-content .cards {
        gap: 15px; }
        .optimizesystem .optimizesystem-content .cards .card {
          padding: 20px; }
          .optimizesystem .optimizesystem-content .cards .card.cardtop {
            padding: 30px 20px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
              width: 150px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
              font-size: 20px;
              line-height: 1.3; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .content p {
              font-size: 15px;
              line-height: 1.3; }
        .optimizesystem .optimizesystem-content .cards .cards-row {
          gap: 10px; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
            font-size: 36px;
            margin-top: 20px;
            margin-bottom: 15px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .left {
          height: 250px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right {
          padding: 20px; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
            width: 150px;
            height: 150px; } }
  @media (max-width: 480px) {
    .optimizesystem .optimizesystem-content {
      padding-top: 30px;
      padding-bottom: 30px; }
      .optimizesystem .optimizesystem-content .title {
        font-size: 18px;
        margin-bottom: 30px; }
      .optimizesystem .optimizesystem-content .cards {
        gap: 12px; }
        .optimizesystem .optimizesystem-content .cards .card {
          padding: 15px;
          border-radius: 12px; }
          .optimizesystem .optimizesystem-content .cards .card.cardtop {
            padding: 25px 15px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
              width: 120px;
              margin-bottom: 15px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
              font-size: 18px;
              line-height: 24px;
              margin-bottom: 10px; }
        .optimizesystem .optimizesystem-content .cards .cards-row {
          gap: 8px; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
            font-size: 32px;
            margin-top: 15px;
            margin-bottom: 12px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .left {
          height: 200px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right {
          padding: 15px; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
            width: 120px;
            height: 120px;
            margin-bottom: 15px; } }
  @media (max-width: 360px) {
    .optimizesystem .optimizesystem-content {
      padding-top: 60px;
      padding-bottom: 60px; }
      .optimizesystem .optimizesystem-content .title {
        font-size: 20px;
        margin-bottom: 25px; }
      .optimizesystem .optimizesystem-content .cards {
        gap: 10px; }
        .optimizesystem .optimizesystem-content .cards .card {
          padding: 12px;
          border-radius: 10px; }
          .optimizesystem .optimizesystem-content .cards .card.cardtop {
            padding: 20px 12px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .icon {
              width: 100px;
              margin-bottom: 12px; }
            .optimizesystem .optimizesystem-content .cards .card.cardtop .content h2 {
              font-size: 16px;
              line-height: 22px;
              margin-bottom: 8px; }
        .optimizesystem .optimizesystem-content .cards .cards-row {
          gap: 6px; }
          .optimizesystem .optimizesystem-content .cards .cards-row .card .data h3 {
            font-size: 28px;
            margin-top: 12px;
            margin-bottom: 10px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .left {
          height: 180px; }
        .optimizesystem .optimizesystem-content .cards .cardbottom .right {
          padding: 12px; }
          .optimizesystem .optimizesystem-content .cards .cardbottom .right .icon {
            width: 100px;
            height: 100px;
            margin-bottom: 12px; } }

.europeanmarket {
  padding-top: 100px;
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .europeanmarket {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (max-width: 480px) {
    .europeanmarket {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .europeanmarket .europeanmarket-content {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
      display: flex;
      gap: 40px;
      align-items: stretch; }
      .europeanmarket .europeanmarket-content .section-top .left, .europeanmarket .europeanmarket-content .section-top .right, .europeanmarket .europeanmarket-content .section-bottom .left, .europeanmarket .europeanmarket-content .section-bottom .right {
        flex: 1; }
      .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
        width: 455px;
        height: 429px;
        object-fit: cover;
        border-radius: 16px; }
      .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
        width: 600px;
        height: 369px; }
      .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px; }
        .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
          color: #000;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 28px;
          font-style: normal;
          font-weight: 600;
          line-height: 36px;
          margin-bottom: 30px; }
        .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
          color: #737373;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
          margin-bottom: 20px; }
          .europeanmarket .europeanmarket-content .section-top .content .text span, .europeanmarket .europeanmarket-content .section-bottom .content .text span {
            color: #991b26;
            font-weight: 500; }
        .europeanmarket .europeanmarket-content .section-top .content .button, .europeanmarket .europeanmarket-content .section-bottom .content .button {
          width: fit-content; }
    @media (max-width: 1200px) {
      .europeanmarket .europeanmarket-content {
        gap: 35px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          gap: 35px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            width: 400px;
            height: 350px; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            width: 500px;
            height: 320px; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 35px; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 26px;
              line-height: 32px;
              margin-bottom: 25px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 15px;
              line-height: 23px;
              margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .europeanmarket .europeanmarket-content {
        gap: 30px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          flex-direction: column;
          gap: 30px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            width: 100%;
            max-width: 500px;
            height: 300px;
            margin: 0 auto;
            text-align: center;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .left, .europeanmarket .europeanmarket-content .section-top .right, .europeanmarket .europeanmarket-content .section-bottom .left, .europeanmarket .europeanmarket-content .section-bottom .right {
            text-align: center; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            width: 100%;
            max-width: 500px;
            height: 300px; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 30px;
            text-align: center; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 24px;
              line-height: 30px;
              margin-bottom: 20px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 15px;
              line-height: 22px;
              margin-bottom: 15px; }
            .europeanmarket .europeanmarket-content .section-top .content .button, .europeanmarket .europeanmarket-content .section-bottom .content .button {
              margin: 0 auto; } }
    @media (max-width: 900px) {
      .europeanmarket .europeanmarket-content {
        gap: 25px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          gap: 25px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            height: 280px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            height: 280px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 25px; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 22px;
              line-height: 1.4;
              margin-bottom: 18px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 14px;
              line-height: 1.3;
              margin-bottom: 14px; } }
    @media (max-width: 768px) {
      .europeanmarket .europeanmarket-content {
        gap: 20px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          gap: 20px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            height: 250px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            height: 250px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 20px; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 20px;
              line-height: 26px;
              margin-bottom: 15px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 13px;
              line-height: 19px;
              margin-bottom: 12px; } }
    @media (max-width: 480px) {
      .europeanmarket .europeanmarket-content {
        gap: 15px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          gap: 15px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            height: 200px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            height: 200px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 15px; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 18px;
              line-height: 24px;
              margin-bottom: 12px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 12px;
              line-height: 18px;
              margin-bottom: 10px; } }
    @media (max-width: 360px) {
      .europeanmarket .europeanmarket-content {
        gap: 12px; }
        .europeanmarket .europeanmarket-content .section-top, .europeanmarket .europeanmarket-content .section-bottom {
          gap: 12px; }
          .europeanmarket .europeanmarket-content .section-top img, .europeanmarket .europeanmarket-content .section-bottom img {
            height: 180px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .right img, .europeanmarket .europeanmarket-content .section-bottom .right img {
            height: 180px;
            object-fit: contain; }
          .europeanmarket .europeanmarket-content .section-top .content, .europeanmarket .europeanmarket-content .section-bottom .content {
            padding: 12px; }
            .europeanmarket .europeanmarket-content .section-top .content .title, .europeanmarket .europeanmarket-content .section-bottom .content .title {
              font-size: 16px;
              line-height: 22px;
              margin-bottom: 10px; }
            .europeanmarket .europeanmarket-content .section-top .content .text, .europeanmarket .europeanmarket-content .section-bottom .content .text {
              font-size: 11px;
              line-height: 16px;
              margin-bottom: 8px; } }

.visionwrap {
  position: relative;
  min-height: 700px;
  background-image: url("../images/visionwrap_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center; }
  .visionwrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; }
  .visionwrap .visionwrap-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px; }
    .visionwrap .visionwrap-content .content-overlay {
      text-align: center;
      color: white; }
      .visionwrap .visionwrap-content .content-overlay .title {
        color: #fff;
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.2; }
      .visionwrap .visionwrap-content .content-overlay .subtitle {
        color: #fff;
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.4;
        margin-top: 37px;
        margin-bottom: 46px; }
        .visionwrap .visionwrap-content .content-overlay .subtitle span {
          color: #fff;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 1.5; }
      .visionwrap .visionwrap-content .content-overlay .description {
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto; }
      .visionwrap .visionwrap-content .content-overlay .button {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        border-radius: 6px;
        padding: 15px 30px;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px; }
        .visionwrap .visionwrap-content .content-overlay .button:hover {
          background-color: white;
          color: black; }
  @media (max-width: 1024px) {
    .visionwrap {
      min-height: 600px; }
      .visionwrap .visionwrap-content {
        padding: 0 30px; }
        .visionwrap .visionwrap-content .content-overlay .title {
          font-size: 36px;
          line-height: 42px; }
        .visionwrap .visionwrap-content .content-overlay .subtitle {
          font-size: 20px;
          line-height: 28px;
          margin-top: 30px;
          margin-bottom: 35px; }
          .visionwrap .visionwrap-content .content-overlay .subtitle span {
            font-size: 20px;
            line-height: 28px; }
        .visionwrap .visionwrap-content .content-overlay .description {
          font-size: 16px;
          line-height: 24px;
          margin-bottom: 35px;
          max-width: 500px; }
        .visionwrap .visionwrap-content .content-overlay .button {
          padding: 12px 25px;
          font-size: 13px; } }
  @media (max-width: 768px) {
    .visionwrap {
      min-height: 500px; }
      .visionwrap .visionwrap-content {
        padding: 0 20px; }
        .visionwrap .visionwrap-content .content-overlay .title {
          font-size: 24px;
          line-height: 34px; }
        .visionwrap .visionwrap-content .content-overlay .subtitle {
          font-size: 18px;
          line-height: 24px;
          margin-top: 25px;
          margin-bottom: 30px; }
          .visionwrap .visionwrap-content .content-overlay .subtitle span {
            font-size: 18px;
            line-height: 24px; }
        .visionwrap .visionwrap-content .content-overlay .description {
          font-size: 14px;
          line-height: 20px;
          margin-bottom: 30px;
          max-width: 100%; }
        .visionwrap .visionwrap-content .content-overlay .button {
          padding: 10px 20px;
          font-size: 12px; } }
  @media (max-width: 480px) {
    .visionwrap {
      min-height: 400px; }
      .visionwrap .visionwrap-content {
        padding: 0 15px; }
        .visionwrap .visionwrap-content .content-overlay .title {
          font-size: 20px;
          line-height: 30px; }
        .visionwrap .visionwrap-content .content-overlay .subtitle {
          font-size: 14px;
          line-height: 22px;
          margin-top: 20px;
          margin-bottom: 25px; }
          .visionwrap .visionwrap-content .content-overlay .subtitle span {
            font-size: 14px;
            line-height: 22px; }
        .visionwrap .visionwrap-content .content-overlay .description {
          font-size: 13px;
          line-height: 18px;
          margin-bottom: 25px; }
        .visionwrap .visionwrap-content .content-overlay .button {
          padding: 8px 16px;
          font-size: 11px; } }

.grunder {
  padding-top: 160px;
  padding-bottom: 100px;
  background-color: #fff; }
  @media screen and (max-width: 768px) {
    .grunder {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .grunder {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .grunder .grunder-content .title {
    text-align: left;
    margin-bottom: 30px; }
    .grunder .grunder-content .title h2 {
      color: #000;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 42px;
      font-style: normal;
      font-weight: 600;
      line-height: 48px; }
  .grunder .grunder-content .description {
    margin-bottom: 50px;
    max-width: 1100px; }
    .grunder .grunder-content .description p {
      color: #737373;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px; }
  .grunder .grunder-content .founders-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; }
    .grunder .grunder-content .founders-grid .founder-card {
      flex: 1;
      background-color: #f9f8f5;
      border-radius: 0 0 16px 16px; }
      .grunder .grunder-content .founders-grid .founder-card .founder-image {
        margin-bottom: 25px;
        width: 100%; }
        .grunder .grunder-content .founders-grid .founder-card .founder-image img {
          width: 100%;
          height: auto;
          object-fit: cover; }
      .grunder .grunder-content .founders-grid .founder-card .founder-info {
        padding: 24px 70px;
        padding-bottom: 70px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
          color: #991b26;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 32px;
          font-style: normal;
          font-weight: 600;
          line-height: 56px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item {
          margin-top: 15px;
          color: #737373;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 28px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item.margin-small {
            margin-top: 5px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label {
            color: #000;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px; }
            .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label.label-item {
              font-size: 16px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item ul {
            margin: 5px 0 0 0;
            padding: 0;
            list-style: none; }
            .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item ul li {
              color: #737373;
              font-family: "Noto Sans","Roboto", sans-serif;
              font-size: 15px;
              font-style: normal;
              font-weight: 400;
              line-height: 1.4;
              margin-bottom: 3px; }
  @media (max-width: 1200px) {
    .grunder .grunder-content .title h2 {
      font-size: 38px;
      line-height: 44px; }
    .grunder .grunder-content .description p {
      font-size: 22px;
      line-height: 30px; }
    .grunder .grunder-content .founders-grid {
      gap: 25px; }
      .grunder .grunder-content .founders-grid .founder-card .founder-info {
        padding: 25px 50px;
        padding-bottom: 50px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
          font-size: 30px;
          line-height: 1.2; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item {
          font-size: 17px;
          line-height: 1.4; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label {
            font-size: 17px;
            line-height: 1.4; }
            .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label.label-item {
              font-size: 15px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item ul li {
            font-size: 15px;
            line-height: 1.3; } }
  @media (max-width: 1024px) {
    .grunder .grunder-content .title {
      text-align: center; }
      .grunder .grunder-content .title h2 {
        font-size: 36px;
        line-height: 42px; }
    .grunder .grunder-content .description {
      text-align: center;
      margin-bottom: 40px; }
      .grunder .grunder-content .description p {
        font-size: 20px;
        line-height: 28px; }
    .grunder .grunder-content .founders-grid {
      flex-direction: column;
      gap: 30px; }
      .grunder .grunder-content .founders-grid .founder-card .founder-info {
        padding: 20px 40px;
        padding-bottom: 40px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
          font-size: 28px;
          line-height: 36px;
          text-align: center; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item {
          font-size: 16px;
          line-height: 24px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label {
            font-size: 16px;
            line-height: 24px; }
            .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label.label-item {
              font-size: 14px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item ul li {
            font-size: 15px;
            line-height: 1.3; } }
  @media (max-width: 900px) {
    .grunder .grunder-content .title h2 {
      font-size: 32px;
      line-height: 38px; }
    .grunder .grunder-content .description p {
      font-size: 18px;
      line-height: 26px; }
    .grunder .grunder-content .founders-grid {
      gap: 25px; }
      .grunder .grunder-content .founders-grid .founder-card .founder-info {
        padding: 18px 35px;
        padding-bottom: 35px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
          font-size: 26px;
          line-height: 32px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item {
          font-size: 16px;
          line-height: 1.3; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label {
            font-size: 16px;
            line-height: 1.3; }
            .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item .label.label-item {
              font-size: 15px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .details .detail-item ul li {
            font-size: 14px;
            line-height: 1.3; } }
  @media (max-width: 768px) {
    .grunder .grunder-content {
      padding-top: 40px;
      padding-bottom: 40px; }
      .grunder .grunder-content .title {
        margin-bottom: 25px; }
        .grunder .grunder-content .title h2 {
          font-size: 28px;
          line-height: 34px; }
      .grunder .grunder-content .description {
        margin-bottom: 30px; }
        .grunder .grunder-content .description p {
          font-size: 16px;
          line-height: 24px; }
      .grunder .grunder-content .founders-grid {
        gap: 20px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info {
          padding: 15px 20px;
          padding-bottom: 30px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 20px; } }
  @media (max-width: 480px) {
    .grunder .grunder-content {
      padding-top: 30px;
      padding-bottom: 30px; }
      .grunder .grunder-content .title {
        margin-bottom: 20px; }
        .grunder .grunder-content .title h2 {
          font-size: 24px;
          line-height: 30px; }
      .grunder .grunder-content .description {
        margin-bottom: 25px; }
        .grunder .grunder-content .description p {
          font-size: 14px;
          line-height: 20px; }
      .grunder .grunder-content .founders-grid {
        gap: 15px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info {
          padding: 12px 15px;
          padding-bottom: 25px; } }
  @media (max-width: 360px) {
    .grunder .grunder-content {
      padding-top: 60px;
      padding-bottom: 60px; }
      .grunder .grunder-content .title {
        margin-bottom: 15px; }
        .grunder .grunder-content .title h2 {
          font-size: 20px;
          line-height: 26px; }
      .grunder .grunder-content .description {
        margin-bottom: 20px; }
        .grunder .grunder-content .description p {
          font-size: 12px;
          line-height: 18px; }
      .grunder .grunder-content .founders-grid {
        gap: 12px; }
        .grunder .grunder-content .founders-grid .founder-card .founder-info {
          padding: 10px 12px;
          padding-bottom: 20px; }
          .grunder .grunder-content .founders-grid .founder-card .founder-info .name {
            font-size: 18px;
            line-height: 24px; } }

.futureGoals {
  padding-top: 130px;
  padding-bottom: 130px;
  background: url(../images/futuregoals_img.png) top center no-repeat;
  background-size: contain;
  height: 760px; }
  @media screen and (max-width: 768px) {
    .futureGoals {
      padding-top: 60px;
      padding-bottom: 40px;
      height: auto;
      background: none; } }
  @media screen and (max-width: 480px) {
    .futureGoals {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .futureGoals .futureGoals-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px; }
    .futureGoals .futureGoals-content .futureGoals-content-left .title {
      width: 80%; }
      .futureGoals .futureGoals-content .futureGoals-content-left .title h2 {
        color: #000;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 42px;
        font-style: normal;
        font-weight: 600;
        line-height: 48px; }
    .futureGoals .futureGoals-content .futureGoals-content-left .button {
      display: inline-block; }
    .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item {
      display: flex;
      gap: 18px; }
      .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0; }
        .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-icon img {
          width: 100%;
          height: 100%; }
      .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content {
        width: 80%; }
        .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content p {
          color: #3b3b3b;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 1.2;
          margin-bottom: 6px; }
          .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content p span {
            font-size: 21px; }
    .futureGoals .futureGoals-content .futureGoals-content-right {
      width: 596px;
      height: auto;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0; }
      .futureGoals .futureGoals-content .futureGoals-content-right img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    @media (max-width: 1024px) {
      .futureGoals .futureGoals-content {
        flex-direction: column;
        gap: 60px;
        text-align: center; }
        .futureGoals .futureGoals-content .futureGoals-content-left .title {
          width: 100%; }
          .futureGoals .futureGoals-content .futureGoals-content-left .title h2 {
            font-size: 36px;
            line-height: 42px; }
        .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item {
          justify-content: center; }
          .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content {
            width: 100%; }
            .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content p {
              font-size: 15px;
              line-height: 22px; }
        .futureGoals .futureGoals-content .futureGoals-content-right {
          width: 100%;
          max-width: 500px;
          height: auto;
          margin: 0 auto; } }
    @media (max-width: 768px) {
      .futureGoals .futureGoals-content {
        gap: 40px; }
        .futureGoals .futureGoals-content .futureGoals-content-left .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item {
          flex-direction: column;
          text-align: center;
          gap: 15px; }
          .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-icon {
            width: 35px;
            height: 35px;
            margin: 0 auto; }
          .futureGoals .futureGoals-content .futureGoals-content-left .tipbox .tipbox-item .tipbox-item-content p {
            font-size: 14px;
            line-height: 20px; }
        .futureGoals .futureGoals-content .futureGoals-content-right {
          height: auto; } }
  .futureGoals .futureGoals-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    background-image: url(../images/globalwrap_bg.png);
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .futureGoals .futureGoals-content-bottom .title h2 {
      color: #000;
      text-align: center;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
      line-height: 42px; }
    .futureGoals .futureGoals-content-bottom .text {
      width: 60%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 35px; }
      .futureGoals .futureGoals-content-bottom .text p {
        color: rgba(0, 0, 0, 0.8);
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        margin-bottom: 24px; }
        .futureGoals .futureGoals-content-bottom .text p:first-child {
          width: 80%; }
        .futureGoals .futureGoals-content-bottom .text p span {
          color: #991b26; }
    .futureGoals .futureGoals-content-bottom .icons {
      display: flex;
      gap: 70px;
      margin-top: 50px;
      align-items: center; }
      .futureGoals .futureGoals-content-bottom .icons .icon {
        height: 80px; }
        .futureGoals .futureGoals-content-bottom .icons .icon:nth-child(2) {
          height: 54px; }
        .futureGoals .futureGoals-content-bottom .icons .icon img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
    @media (max-width: 1024px) {
      .futureGoals .futureGoals-content-bottom {
        margin-top: 100px; }
        .futureGoals .futureGoals-content-bottom .title h2 {
          font-size: 32px;
          line-height: 38px; }
        .futureGoals .futureGoals-content-bottom .text {
          width: 80%; }
          .futureGoals .futureGoals-content-bottom .text p {
            font-size: 15px;
            line-height: 20px; }
        .futureGoals .futureGoals-content-bottom .icons {
          gap: 40px;
          margin-top: 50px; }
          .futureGoals .futureGoals-content-bottom .icons .icon {
            height: 60px; }
            .futureGoals .futureGoals-content-bottom .icons .icon:nth-child(2) {
              height: 40px; } }
    @media (max-width: 768px) {
      .futureGoals .futureGoals-content-bottom {
        margin-top: 80px;
        padding-bottom: 60px; }
        .futureGoals .futureGoals-content-bottom .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .futureGoals .futureGoals-content-bottom .text {
          width: 90%;
          margin-top: 25px; }
          .futureGoals .futureGoals-content-bottom .text p {
            font-size: 15px;
            line-height: 1.3;
            margin-bottom: 20px; }
        .futureGoals .futureGoals-content-bottom .icons {
          flex-wrap: wrap;
          gap: 20px;
          margin-top: 40px;
          justify-content: center; }
          .futureGoals .futureGoals-content-bottom .icons .icon {
            height: 50px;
            flex: 0 0 auto; }
            .futureGoals .futureGoals-content-bottom .icons .icon:nth-child(2) {
              height: 35px; } }

.talentProgram {
  padding-top: 40px;
  padding-bottom: 160px; }
  @media screen and (max-width: 768px) {
    .talentProgram {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (max-width: 480px) {
    .talentProgram {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .talentProgram .talentProgram-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; }
    .talentProgram .talentProgram-content .talentProgram-content-left .title {
      width: 100%; }
      .talentProgram .talentProgram-content .talentProgram-content-left .title h2 {
        color: #000;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.2; }
    .talentProgram .talentProgram-content .talentProgram-content-left .button {
      display: inline-block; }
    .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item {
      display: flex;
      gap: 18px; }
      .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0; }
        .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-icon img {
          width: 100%;
          height: 100%; }
      .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content {
        width: 80%; }
        .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content p {
          color: #3b3b3b;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 1.2;
          margin-bottom: 12px; }
          .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content p span {
            font-size: 21px; }
    .talentProgram .talentProgram-content .talentProgram-content-right {
      width: 596px;
      height: auto;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0; }
      .talentProgram .talentProgram-content .talentProgram-content-right img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    @media (max-width: 1024px) {
      .talentProgram .talentProgram-content {
        flex-direction: column;
        gap: 60px;
        text-align: center; }
        .talentProgram .talentProgram-content .talentProgram-content-left .title {
          width: 100%; }
          .talentProgram .talentProgram-content .talentProgram-content-left .title h2 {
            font-size: 28px;
            line-height: 1.2; }
        .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item {
          justify-content: center; }
          .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content {
            width: 100%; }
            .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content p {
              font-size: 15px;
              line-height: 22px; }
        .talentProgram .talentProgram-content .talentProgram-content-right {
          width: 100%;
          max-width: 500px;
          height: 400px;
          margin: 0 auto; } }
    @media (max-width: 768px) {
      .talentProgram .talentProgram-content {
        gap: 40px; }
        .talentProgram .talentProgram-content .talentProgram-content-left .title h2 {
          font-size: 24px;
          line-height: 1.23; }
        .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item {
          flex-direction: column;
          text-align: center;
          gap: 15px; }
          .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-icon {
            width: 35px;
            height: 35px;
            margin: 0 auto; }
          .talentProgram .talentProgram-content .talentProgram-content-left .tipbox .tipbox-item .tipbox-item-content p {
            font-size: 14px;
            line-height: 20px; }
        .talentProgram .talentProgram-content .talentProgram-content-right {
          height: 300px; } }
  .talentProgram .talentProgram-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    background-image: url(../images/globalwrap_bg.png);
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .talentProgram .talentProgram-content-bottom .title h2 {
      color: #000;
      text-align: center;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
      line-height: 42px; }
    .talentProgram .talentProgram-content-bottom .text {
      width: 60%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 35px; }
      .talentProgram .talentProgram-content-bottom .text p {
        color: rgba(0, 0, 0, 0.8);
        text-align: center;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        margin-bottom: 24px; }
        .talentProgram .talentProgram-content-bottom .text p:first-child {
          width: 80%; }
        .talentProgram .talentProgram-content-bottom .text p span {
          color: #991b26; }
    .talentProgram .talentProgram-content-bottom .icons {
      display: flex;
      gap: 70px;
      margin-top: 50px;
      align-items: center; }
      .talentProgram .talentProgram-content-bottom .icons .icon {
        height: 80px; }
        .talentProgram .talentProgram-content-bottom .icons .icon:nth-child(2) {
          height: 54px; }
        .talentProgram .talentProgram-content-bottom .icons .icon img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
    @media (max-width: 1024px) {
      .talentProgram .talentProgram-content-bottom {
        margin-top: 100px; }
        .talentProgram .talentProgram-content-bottom .title h2 {
          font-size: 32px;
          line-height: 38px; }
        .talentProgram .talentProgram-content-bottom .text {
          width: 80%; }
          .talentProgram .talentProgram-content-bottom .text p {
            font-size: 15px;
            line-height: 20px; }
        .talentProgram .talentProgram-content-bottom .icons {
          gap: 40px;
          margin-top: 50px; }
          .talentProgram .talentProgram-content-bottom .icons .icon {
            height: 60px; }
            .talentProgram .talentProgram-content-bottom .icons .icon:nth-child(2) {
              height: 40px; } }
    @media (max-width: 768px) {
      .talentProgram .talentProgram-content-bottom {
        margin-top: 80px;
        padding-bottom: 60px; }
        .talentProgram .talentProgram-content-bottom .title h2 {
          font-size: 28px;
          line-height: 34px; }
        .talentProgram .talentProgram-content-bottom .text {
          width: 90%;
          margin-top: 25px; }
          .talentProgram .talentProgram-content-bottom .text p {
            font-size: 15px;
            line-height: 1.3;
            margin-bottom: 20px; }
        .talentProgram .talentProgram-content-bottom .icons {
          flex-wrap: wrap;
          gap: 20px;
          margin-top: 40px;
          justify-content: center; }
          .talentProgram .talentProgram-content-bottom .icons .icon {
            height: 50px;
            flex: 0 0 auto; }
            .talentProgram .talentProgram-content-bottom .icons .icon:nth-child(2) {
              height: 35px; } }

.teamleader {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff; }
  @media screen and (max-width: 768px) {
    .teamleader {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .teamleader {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .teamleader .teamleader-content .title {
    text-align: center;
    margin-bottom: 60px; }
    .teamleader .teamleader-content .title h2 {
      color: #000;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 42px;
      font-style: normal;
      font-weight: 600;
      line-height: 48px;
      margin: 0; }
  .teamleader .teamleader-content .teamleader-profile {
    display: flex;
    gap: 60px;
    align-items: flex-start; }
    .teamleader .teamleader-content .teamleader-profile .profile-left {
      flex-shrink: 0; }
      .teamleader .teamleader-content .teamleader-profile .profile-left .profile-image {
        width: 543px;
        height: 730px; }
        .teamleader .teamleader-content .teamleader-profile .profile-left .profile-image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .teamleader .teamleader-content .teamleader-profile .profile-right {
      flex: 1;
      padding: 20px;
      border-radius: 16px;
      max-width: 700px; }
      .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .name {
        color: #991b26;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 50px; }
      .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item {
        margin-top: 50px;
        color: #737373;
        font-family: "Noto Sans","Roboto", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item.margin-small {
          margin-top: 5px; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item.margin-small .label {
            font-size: 16px; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item.black {
          color: #000 !important; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .label {
          color: #000;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 21px;
          font-style: normal;
          font-weight: 400;
          line-height: 1.5; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .detail-text {
          color: #737373;
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 1.3; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item ul {
          margin: 8px 0 0 0;
          padding: 0;
          list-style: none; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item ul li {
            color: #737373;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 10px; }
  @media (max-width: 1024px) {
    .teamleader .teamleader-content .title {
      margin-bottom: 40px; }
      .teamleader .teamleader-content .title h2 {
        font-size: 36px;
        line-height: 42px; }
    .teamleader .teamleader-content .teamleader-profile {
      flex-direction: column;
      gap: 40px;
      align-items: center; }
      .teamleader .teamleader-content .teamleader-profile .profile-left .profile-image {
        width: 100%;
        max-width: 400px;
        height: 500px; }
      .teamleader .teamleader-content .teamleader-profile .profile-right {
        max-width: 100%;
        padding: 30px; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .name {
          font-size: 28px;
          line-height: 34px;
          margin-bottom: 30px;
          text-align: center; }
        .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item {
          margin-top: 30px;
          font-size: 15px;
          line-height: 1.4; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .label {
            font-size: 18px;
            line-height: 26px; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .detail-text {
            font-size: 15px;
            line-height: 1.4; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item ul li {
            font-size: 14px;
            line-height: 1.4; } }
  @media (max-width: 768px) {
    .teamleader .teamleader-content {
      padding-top: 40px;
      padding-bottom: 40px; }
      .teamleader .teamleader-content .title {
        margin-bottom: 30px; }
        .teamleader .teamleader-content .title h2 {
          font-size: 28px;
          line-height: 34px; }
      .teamleader .teamleader-content .teamleader-profile {
        gap: 30px; }
        .teamleader .teamleader-content .teamleader-profile .profile-left .profile-image {
          height: 400px; }
        .teamleader .teamleader-content .teamleader-profile .profile-right {
          padding: 20px; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .name {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 25px; }
          .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item {
            margin-top: 20px;
            font-size: 14px;
            line-height: 20px; }
            .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .label {
              font-size: 16px;
              line-height: 22px; }
            .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item .detail-text {
              font-size: 14px;
              line-height: 20px; }
            .teamleader .teamleader-content .teamleader-profile .profile-right .profile-info .details .detail-item ul li {
              font-size: 14px;
              line-height: 1.3; } }

.msblicense {
  padding-top: 100px;
  padding-bottom: 180px;
  background-color: #fff; }
  @media screen and (max-width: 768px) {
    .msblicense {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .msblicense {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .msblicense .msblicense-content .title {
    text-align: center;
    margin-bottom: 80px; }
    .msblicense .msblicense-content .title h2 {
      color: #000;
      text-align: center;
      font-family: "Noto Sans","Roboto", sans-serif;
      font-size: 42px;
      font-style: normal;
      font-weight: 600;
      line-height: 42px; }
  .msblicense .msblicense-content .msblicense-main {
    display: flex;
    gap: 60px;
    align-items: flex-start; }
    .msblicense .msblicense-content .msblicense-main .msblicense-left {
      flex-shrink: 0; }
      .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image {
        position: relative;
        width: 635.343px;
        height: 487px;
        border-radius: 16px;
        overflow: hidden; }
        .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
          padding: 40px 30px 30px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay .license-title {
            color: #fff;
            font-family: "Noto Sans","Roboto", sans-serif;
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            text-align: center; }
    .msblicense .msblicense-content .msblicense-main .msblicense-right {
      flex: 1; }
      .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block {
        margin-bottom: 20px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block p {
          color: rgba(0, 0, 0, 0.8);
          font-family: "Noto Sans","Roboto", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block p span {
            color: #991b26;
            font-weight: 500; }
      .msblicense .msblicense-content .msblicense-main .msblicense-right .content .button {
        margin-top: 58px;
        display: inline-block; }
  @media (max-width: 1024px) {
    .msblicense .msblicense-content .title {
      margin-bottom: 60px; }
      .msblicense .msblicense-content .title h2 {
        font-size: 36px;
        line-height: 42px; }
    .msblicense .msblicense-content .msblicense-main {
      flex-direction: column;
      gap: 40px;
      align-items: center; }
      .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image {
        width: 100%;
        max-width: 500px;
        height: 350px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay {
          padding: 30px 20px 20px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay .license-title {
            font-size: 28px;
            line-height: 36px; }
      .msblicense .msblicense-content .msblicense-main .msblicense-right .content {
        text-align: center; }
        .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block {
          margin-bottom: 15px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block p {
            font-size: 16px;
            line-height: 22px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-right .content .button {
          margin-top: 40px; } }
  @media (max-width: 768px) {
    .msblicense .msblicense-content {
      padding-top: 40px;
      padding-bottom: 40px; }
      .msblicense .msblicense-content .title {
        margin-bottom: 40px; }
        .msblicense .msblicense-content .title h2 {
          font-size: 28px;
          line-height: 34px; }
      .msblicense .msblicense-content .msblicense-main {
        gap: 30px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image {
          height: 250px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay {
            padding: 20px 15px 15px; }
            .msblicense .msblicense-content .msblicense-main .msblicense-left .license-image .license-overlay .license-title {
              font-size: 24px;
              line-height: 30px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block {
          margin-bottom: 12px; }
          .msblicense .msblicense-content .msblicense-main .msblicense-right .content .text-block p {
            font-size: 14px;
            line-height: 20px; }
        .msblicense .msblicense-content .msblicense-main .msblicense-right .content .button {
          margin-top: 30px; } }

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 40px; }
  .footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px; }
    .footer .footer-content .footer-section {
      flex: 1; }
      .footer .footer-content .footer-section .section-title {
        color: #fff;
        font-family: "TWK Lausanne";
        font-size: 21px;
        font-style: normal;
        font-weight: 500;
        line-height: 21px;
        /* 100% */
        margin-bottom: 30px; }
      .footer .footer-content .footer-section .section-subtitle {
        display: block;
        margin-bottom: 20px;
        color: #fff; }
      .footer .footer-content .footer-section .section-links {
        list-style: none;
        padding: 0;
        margin: 0; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 8px; }
          .footer .footer-content .footer-section .section-links li a {
            color: #fff;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.5; }
            .footer .footer-content .footer-section .section-links li a:hover {
              color: #fff; }
      .footer .footer-content .footer-section .contact-info .contact-item {
        color: #fff;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 160% */
        margin-bottom: 8px; }
      .footer .footer-content .footer-section .social-icons {
        display: flex;
        gap: 16px; }
        .footer .footer-content .footer-section .social-icons .social-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          color: rgba(255, 255, 255, 0.7);
          transition: color 0.3s ease; }
          .footer .footer-content .footer-section .social-icons .social-icon:hover {
            color: #fff; }
          .footer .footer-content .footer-section .social-icons .social-icon svg {
            width: 24px;
            height: 24px; }
  .footer .footer-slogan {
    text-align: center; }
    .footer .footer-slogan p {
      font-size: 16px;
      color: white; }
  .footer .footer-divider {
    height: 0px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0px 0 30px; }
  .footer .sbailogo {
    margin-top: 30px;
    margin-bottom: 30px; }
    .footer .sbailogo img {
      width: 120px; }
  .footer .footer-bottom {
    text-align: left;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #3f3f3f; }
    .footer .footer-bottom .footer-copyright {
      color: white;
      leading-trim: both;
      text-edge: cap;
      font-family: Arial;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal; }
  @media (max-width: 1200px) {
    .footer {
      padding: 50px 0 35px; }
      .footer .footer-content .footer-section .section-title {
        font-size: 19px;
        margin-bottom: 25px; }
      .footer .footer-content .footer-section .section-links li {
        margin-bottom: 6px; }
        .footer .footer-content .footer-section .section-links li a {
          font-size: 15px;
          line-height: 22px; }
      .footer .footer-content .footer-section .contact-info .contact-item {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 6px; }
      .footer .footer-content .footer-section .social-icons {
        gap: 14px; }
        .footer .footer-content .footer-section .social-icons .social-icon {
          width: 36px;
          height: 36px; }
          .footer .footer-content .footer-section .social-icons .social-icon svg {
            width: 22px;
            height: 22px; }
      .footer .footer-bottom {
        padding-bottom: 40px; }
        .footer .footer-bottom .footer-copyright {
          font-size: 15px; } }
  @media (max-width: 1024px) {
    .footer {
      padding: 45px 0 30px; }
      .footer .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px; }
        .footer .footer-content .footer-section .section-title {
          font-size: 18px;
          margin-bottom: 20px; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 5px; }
          .footer .footer-content .footer-section .section-links li a {
            font-size: 15px;
            line-height: 20px; }
        .footer .footer-content .footer-section .contact-info .contact-item {
          font-size: 15px;
          line-height: 20px;
          margin-bottom: 5px; }
        .footer .footer-content .footer-section .social-icons .social-icon {
          width: 32px;
          height: 32px; }
          .footer .footer-content .footer-section .social-icons .social-icon svg {
            width: 20px;
            height: 20px; }
      .footer .footer-bottom {
        padding-bottom: 40px;
        text-align: center; }
        .footer .footer-bottom .footer-copyright {
          font-size: 15px; } }
  @media (max-width: 900px) {
    .footer {
      padding: 40px 0 25px; }
      .footer .footer-content {
        gap: 35px;
        margin-bottom: 40px; }
        .footer .footer-content .footer-section .section-title {
          font-size: 17px;
          margin-bottom: 18px; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 4px; }
          .footer .footer-content .footer-section .section-links li a {
            font-size: 15px;
            line-height: 1.5; }
        .footer .footer-content .footer-section .contact-info .contact-item {
          font-size: 15px;
          line-height: 1.5;
          margin-bottom: 4px; }
        .footer .footer-content .footer-section .social-icons .social-icon {
          width: 30px;
          height: 30px; }
      .footer .footer-bottom {
        padding-bottom: 40px; }
        .footer .footer-bottom .footer-copyright {
          font-size: 11px; } }
  @media (max-width: 768px) {
    .footer {
      padding: 35px 0 20px; }
      .footer .footer-content {
        gap: 30px;
        margin-bottom: 40px; }
        .footer .footer-content .footer-section .section-title {
          font-size: 16px;
          margin-bottom: 15px; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 3px; }
          .footer .footer-content .footer-section .section-links li a {
            font-size: 15px;
            line-height: 1.5; }
        .footer .footer-content .footer-section .contact-info .contact-item {
          font-size: 15px;
          line-height: 1.5;
          margin-bottom: 3px; }
      .footer .footer-bottom {
        padding-bottom: 40px; }
        .footer .footer-bottom .footer-copyright {
          font-size: 15px; } }
  @media (max-width: 480px) {
    .footer {
      padding: 30px 0 15px; }
      .footer .footer-content {
        gap: 25px;
        margin-bottom: 30px; }
        .footer .footer-content .footer-section .section-title {
          font-size: 15px;
          margin-bottom: 12px; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 2px; }
          .footer .footer-content .footer-section .section-links li a {
            font-size: 15px;
            line-height: 1.4; }
        .footer .footer-content .footer-section .contact-info .contact-item {
          font-size: 15px;
          line-height: 1.3;
          margin-bottom: 2px; }
      .footer .footer-bottom {
        padding-bottom: 30px; }
        .footer .footer-bottom .footer-copyright {
          font-size: 15px; } }
  @media (max-width: 360px) {
    .footer {
      padding: 25px 0 10px; }
      .footer .footer-content {
        gap: 20px;
        margin-bottom: 40px; }
        .footer .footer-content .footer-section .section-title {
          font-size: 15px;
          margin-bottom: 10px; }
        .footer .footer-content .footer-section .section-links li {
          margin-bottom: 1px; }
          .footer .footer-content .footer-section .section-links li a {
            font-size: 15px;
            line-height: 1.3; }
        .footer .footer-content .footer-section .contact-info .contact-item {
          font-size: 15px;
          line-height: 1.3;
          margin-bottom: 1px; }
      .footer .footer-bottom {
        padding-bottom: 25px; }
        .footer .footer-bottom .footer-copyright {
          font-size: 15px; } }
