.section-label {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-left: 18px;
  position: relative;
}
.section-label::after {
  background: #FF0000;
  width: 13px;
  height: 13px;
  position: absolute;
  content: "";
  border-radius: 20px;
  left: 0;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-family: "Google Sans Flex", sans-serif;
  text-transform: capitalize;
}

body.sticky-scrolling {
  overflow: hidden;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
  width: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.w100 {
  width: 100%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
}
.navbar .nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.navbar .logo img {
  width: auto;
  height: 80px;
}
@media (max-width: 1024px) {
  .navbar .logo img {
    height: 60px;
  }
}
.navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  background: rgba(15, 15, 15, 0.26);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.navbar .nav-menu li {
  margin: 0;
}
.navbar .nav-menu a {
  cursor: pointer;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
  background: #ffffff;
  color: #000;
}
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
  }
}
.navbar .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 101;
}
.navbar .hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .navbar .hamburger-menu {
    display: flex;
  }
}
.navbar .mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  display: none;
  padding: 20px;
}
.navbar .mobile-nav-panel.active {
  display: flex;
}
.navbar .mobile-nav-panel .mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .mobile-nav-panel .mobile-nav-header .logo img {
  height: 40px;
  width: auto;
}
.navbar .mobile-nav-panel .mobile-nav-header .close-menu-btn {
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}
.navbar .mobile-nav-panel .mobile-nav-items {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .mobile-nav-panel .mobile-nav-items li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.navbar .mobile-nav-panel .mobile-nav-items li a {
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.navbar .mobile-nav-panel .mobile-nav-items li a:hover {
  color: #f4a261;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li {
  opacity: 1;
  transform: translateY(0);
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(1) {
  transition-delay: 0.2s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(2) {
  transition-delay: 0.3s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(3) {
  transition-delay: 0.4s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(4) {
  transition-delay: 0.5s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(5) {
  transition-delay: 0.6s;
}

/* Footer Section */
.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 100px 0 40px;
  font-family: "Inter", sans-serif;
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.footer-top .footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
.footer-logo img {
  height: 70px;
}
.footer-brand-desc {
  max-width: 280px;
}
.footer-brand-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
@media (max-width: 768px) {
  .footer-brand-desc p {
    text-align: center;
  }
}
.footer-main {
  margin-bottom: 80px;
}
.footer-main .footer-main-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: stretch;
  grid-template-columns: 1fr 3.5fr 1.6fr;
}
@media (max-width: 1024px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr;
  }
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-col {
    grid-column: span 1;
  }
}
.footer .business-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 480px) {
  .footer .business-subgrid {
    grid-template-columns: 1fr;
  }
}
.footer .follow-us {
  background: #191919;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  height: 45px;
}
@media (max-width: 1024px) {
  .footer .follow-us {
    justify-content: space-between;
  }
}
.footer .follow-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #D6D6D6;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer .follow-col {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer .follow-col {
    grid-column: span 1;
  }
}
.footer .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 20px;
}
.footer .social-icons a img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer .social-icons a:hover img {
  opacity: 1;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }
}

.nav-head {
  background-color: #fff;
  padding: 0px 2px;
  color: #0C0F26;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.innovation-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-image: url("../images/about/award.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}
.innovation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.innovation-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.innovation-section .innov-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  height: 85vh;
}
.innovation-section .innov-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .innovation-section .innov-content p {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .innovation-section .innov-content p {
    font-size: 1.2rem;
  }
}
.innovation-section .innov-content .btn-connect1 {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.innovation-section .innov-content .btn-connect1:hover {
  transform: translateY(-2px);
}
.innovation-section .innov-content .btn-connect1 .icon-arrow {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.innovation-section .innov-content .btn-connect1 .icon-arrow svg {
  width: 14px;
  height: 14px;
}

.cmn_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  display: inline-flex;
  background: transparent;
  color: #0a1128;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: gap 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cmn_btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
.cmn_btn span:first-child {
  background: #ffffff;
  padding: 14px 28px;
  height: 47px;
  border-radius: 5px;
  border: 1px solid #F6F6F6;
  line-height: 1;
}
.cmn_btn .arrow {
  background: #ffffff;
  border: 1px solid #F6F6F6;
  width: 44px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  border-radius: 5px;
  font-size: 1.5rem;
}
.cmn_btn .arrow .arrow-icon {
  transform: rotate(-45deg);
  display: block;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Life at Akbar Section */
.life-at-akbar {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .life-at-akbar {
    padding: 20px 0;
  }
}
.life-at-akbar .life-bg-container {
  margin: 0 auto;
  padding: 80px 60px;
  background: #0D0C32;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.life-at-akbar .life-bg-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/life-bg-noise.png");
  background-repeat: repeat;
  background-size: 380px 194px;
  background-position: top left;
  opacity: 0.33;
  pointer-events: none;
}
@media (max-width: 768px) {
  .life-at-akbar .life-bg-container {
    padding: 55px 28px;
    margin: 0 5px;
  }
}
.life-at-akbar .life-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr 1.2fr 1fr;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-content {
    gap: 0;
  }
}
.life-at-akbar .life-text {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}
.life-at-akbar .life-text .txt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt {
    order: 1;
    gap: 31px;
  }
}
.life-at-akbar .life-text .txt .section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 500;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt .section-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 10px;
  }
}
.life-at-akbar .life-text .txt .section-label::after {
  display: none;
}
.life-at-akbar .life-text .txt h2 {
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 50px;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 64px;
    line-height: 0.94;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: block;
  }
}
@media (max-width: 480px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 48px;
  }
}
.life-at-akbar .life-text .txt h2 .highlight {
  background: linear-gradient(69.3deg, #b5b4ff 38.225%, #6063ff 62.906%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .cmn_btn {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .cmn_btn {
    order: 4;
    margin-top: 40px;
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text {
    flex-wrap: wrap;
    display: contents;
  }
}
.life-at-akbar .life-image {
  position: relative;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-image {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-image {
    order: 2;
    max-width: 100%;
    margin: 0;
    margin-top: 66px;
  }
}
.life-at-akbar .life-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  grid-template-columns: repeat(4, 104px);
  grid-template-rows: repeat(2, 118px);
}
.life-at-akbar .life-image-grid img,
.life-at-akbar .life-image-grid video {
  width: 104px;
  height: 118px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
  border-radius: 8px 8px 0 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
  border-radius: 0 0 8px 8px;
}
.life-at-akbar .life-image-grid .empty-space {
  width: 104px;
  height: 118px;
  background: transparent;
}
@media (max-width: 768px) {
  .life-at-akbar .life-image-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 95px);
  }
  .life-at-akbar .life-image-grid img,
  .life-at-akbar .life-image-grid video {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid .empty-space {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
    border-radius: 4px 4px 0 0;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
    border-radius: 0 0 4px 4px;
  }
}
.life-at-akbar .life-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .life-at-akbar .life-description {
    order: 3;
    font-size: 14px;
    line-height: 2;
    margin-top: 80px;
  }
}
.life-at-akbar .life-description p {
  margin: 0;
}

@media (hover: none), (pointer: coarse) {
  .cmn_btn,
  .btn-connect,
  .btn-apply,
  .cta-button {
    transform: none !important;
  }
}
.form-status {
  display: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  gap: 14px;
  animation: formStatusReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}
.form-status.success {
  display: flex;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.08);
}
.form-status.error {
  display: flex;
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.06);
}
.form-status .status-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.form-status .status-icon svg {
  width: 18px;
  height: 18px;
}
.form-status.success .status-icon {
  background: rgba(34, 197, 94, 0.12);
}
.form-status.error .status-icon {
  background: rgba(239, 68, 68, 0.1);
}
.form-status span:not(.status-icon) {
  flex: 1;
}

@keyframes formStatusReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html, body {
  width: auto !important;
  overflow-x: visible !important;
}

.inner-banner {
  background-image: url("../images/group/inner-banner-group.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 480px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .inner-banner {
    height: 50vh;
  }
}
.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.inner-banner .container {
  position: relative;
  z-index: 5;
}
.inner-banner .banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  gap: 18px;
}
.inner-banner .section-label {
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-left: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.inner-banner .section-label::after {
  display: none;
}
.inner-banner .section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #FF0000;
  border-radius: 50%;
  margin-right: 10px;
}
.inner-banner h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  color: #ffffff;
  text-transform: none;
}
@media (max-width: 1024px) {
  .inner-banner h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .inner-banner h1 {
    font-size: 2.4rem;
  }
}
.inner-banner .banner-chips {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
.inner-banner .banner-chips .chip {
  position: absolute;
  width: 75px;
  height: 90px;
  background: #ffffff;
  border-radius: 14px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  transform: translateY(-50%);
  opacity: 0;
}
.inner-banner .banner-chips .chip img {
  width: 65px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
.inner-banner .banner-chips .chip-1 {
  left: -22%;
  top: 22%;
}
.inner-banner .banner-chips .chip-2 {
  left: -40%;
  top: 80%;
}
.inner-banner .banner-chips .chip-3 {
  right: -40%;
  top: 80%;
}
.inner-banner .banner-chips .chip-4 {
  right: -22%;
  top: 22%;
}
@media (max-width: 1024px) {
  .inner-banner .banner-chips .chip {
    width: 64px;
    height: 64px;
  }
  .inner-banner .banner-chips .chip img {
    width: 100%;
    height: 100%;
  }
  .inner-banner .banner-chips .chip-1 {
    left: -22%;
    top: 42%;
  }
  .inner-banner .banner-chips .chip-2 {
    left: -32%;
    top: 100%;
  }
  .inner-banner .banner-chips .chip-3 {
    right: -37%;
    top: 100%;
  }
  .inner-banner .banner-chips .chip-4 {
    right: -27%;
    top: 42%;
  }
}
@media (max-width: 768px) {
  .inner-banner .banner-chips {
    display: none;
  }
}

.sectors {
  padding: 120px 0;
  background: #F9F9F9;
  overflow: visible;
}
@media (max-width: 1024px) {
  .sectors {
    padding: 60px 0 0;
  }
}
.sectors .sectors-grid {
  display: flex;
  gap: 60px;
  align-items: start;
  overflow: visible;
}
@media (max-width: 1024px) {
  .sectors .sectors-grid {
    flex-direction: column;
  }
}
.sectors .sectors-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  flex: 0 0 360px;
  width: 360px;
}
.sectors .sectors-sidebar h2 {
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 150px 0;
  line-height: 1.05;
  color: #0C0F26;
}
@media (max-width: 1024px) {
  .sectors .sectors-sidebar h2 {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 768px) {
  .sectors .sectors-sidebar h2 {
    font-size: 32px;
  }
}
.sectors .sectors-sidebar .sectors-desc {
  color: #515151;
  margin-bottom: 24px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .sectors .sectors-sidebar .sectors-desc {
    max-width: 100%;
  }
}
.sectors .sectors-sidebar .btn-connect {
  background-color: #000000;
  width: 164px;
  height: 42px;
  border-radius: 4px;
  color: #C9C9C9;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .sectors .sectors-sidebar .btn-connect {
    margin: 0 auto;
  }
}
.sectors .sectors-right {
  position: relative;
  display: block;
  overflow: visible;
  flex: 1;
  min-width: 0;
}
.sectors .sectors-right .sector-card {
  background: #ffffff;
  margin-bottom: 40px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card {
    padding: 15px !important;
  }
}
.sectors .sectors-right .sector-card .card-inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 0;
  padding: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.sectors .sectors-right .sector-card .card-inner .card-text {
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  width: 475px;
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card .card-inner .card-text {
    padding: 10px;
  }
}
.sectors .sectors-right .sector-card .card-inner .card-text .card-number {
  color: #B6B6B6;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card .card-inner .card-text .card-number {
    margin-bottom: 10px;
  }
}
.sectors .sectors-right .sector-card .card-inner .card-text .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card .card-inner .card-text .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 31;
  }
}
.sectors .sectors-right .sector-card .card-inner .card-text .content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #0C0F26;
  line-height: 30px;
  text-transform: capitalize;
}
.sectors .sectors-right .sector-card .card-inner .card-text .content p {
  font-size: 15px;
  font-weight: 400;
  color: #0C0F26;
}
.sectors .sectors-right .sector-card .card-inner .card-text .card-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
}
.sectors .sectors-right .sector-card .card-inner .card-text .card-logos:hover {
  overflow-x: auto;
}
.sectors .sectors-right .sector-card .card-inner .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 490px;
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card .card-inner .card-image {
    height: 300px;
  }
}
.sectors .sectors-right .sector-card .card-inner .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sectors .sectors-right .sector-card .card-inner .card-image .image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 2px;
}
.sectors .sectors-right .sector-card .card-inner.reverse {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row-reverse;
  gap: 0;
}
@media (max-width: 1024px) {
  .sectors .sectors-right .sector-card {
    padding: 22px;
  }
  .sectors .sectors-right .sector-card .card-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .sectors .sectors-right .sector-card .card-inner .card-text,
  .sectors .sectors-right .sector-card .card-inner .card-image {
    width: 100%;
  }
  .sectors .sectors-right .sector-card .card-inner.reverse {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .sectors .sectors-right .sector-card .card-inner.reverse .card-text,
  .sectors .sectors-right .sector-card .card-inner.reverse .card-image {
    width: 100%;
  }
  .sectors .sectors-right .sector-card .card-number {
    top: 12px;
    left: 12px;
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .sectors .sectors-grid {
    grid-template-columns: 1fr;
  }
  .sectors .sectors-sidebar {
    position: static;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .sectors .sectors-sidebar {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    text-align: center;
    align-items: center;
  }
}/*# sourceMappingURL=group-companies.css.map */