.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.header.scrld {
  background-color: var(--light-color);
}
.header.scrld .hamburger-menu svg path {
  stroke: var(--primary-color);
  fill: var(--primary-color);
}
@media (min-width: 992px) {
  .header.scrld .top-wrap {
    background: var(--bg-4);
  }
  .header.scrld .nav-link {
    color: var(--primary-color);
  }
  .header.scrld .nav-link:hover {
    color: var(--primary-color);
  }
  .header.scrld .menu-item-has-children .sub-menu li a {
    color: rgba(15, 15, 35, 0.7);
  }
}
.header:not(.scrld) .logo-wrapper svg path {
  fill: var(--light-color);
}
.header .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}
@media (min-width: 768px) {
  .header .inner-wrapper {
    min-height: 80px;
  }
}
@media (min-width: 1600px) {
  .header .inner-wrapper {
    min-height: 101px;
  }
}
.header .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 12;
  flex-shrink: 0;
  max-width: 113px;
}
.header .logo-wrapper svg {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .header .logo-wrapper {
    max-width: 151px;
  }
}
@media (min-width: 992px) {
  .header .logo-wrapper {
    max-width: 180px;
  }
}
@media (min-width: 1200px) {
  .header .logo-wrapper {
    max-width: 151px;
  }
}
@media (min-width: 1600px) {
  .header .logo-wrapper {
    max-width: 190px;
  }
}
.header .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .nav-bar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--primary-color);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 72px 20px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .header .nav-bar {
    padding: 80px 38px 48px;
  }
}
@media (min-width: 992px) {
  .header .nav-bar {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0;
    overflow: visible;
  }
}
.header .top-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .header .top-wrap {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 8px 20px;
    background: var(--bg-2);
    border-radius: 30px;
    min-height: 48px;
  }
}
@media (min-width: 1200px) {
  .header .top-wrap {
    gap: 44px;
    padding: 12px 22px;
  }
}
@media (min-width: 1400px) {
  .header .top-wrap {
    gap: 56px;
    padding: 12px 28px;
  }
}
.header .menu-item {
  width: 100%;
}
.header .menu-item:first-child {
  display: none;
}
@media (min-width: 992px) {
  .header .menu-item {
    width: auto;
    position: relative;
  }
}
.header .nav-link {
  font-size: var(--font-size-3);
  color: var(--light-color);
  font-weight: 400;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
@media (min-width: 992px) {
  .header .nav-link {
    padding: 0;
    border-bottom: none;
  }
}
.header .nav-link:hover {
  color: var(--light-color);
}
.header .menu-item-has-children {
  padding-right: 24px;
  position: relative;
}
@media (min-width: 992px) {
  .header .menu-item-has-children {
    padding-right: 20px;
  }
}
.header .menu-item-has-children .drp-arrow {
  position: absolute;
  right: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .header .menu-item-has-children .drp-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}
.header .menu-item-has-children .drp-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.6)' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.header .menu-item-has-children .drp-arrow.expanded::after {
  transform: rotate(180deg);
}
.header .menu-item-has-children .sub-menu {
  height: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header .menu-item-has-children .sub-menu {
    height: auto;
    overflow: visible;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}
.header .menu-item-has-children .sub-menu li {
  padding: 6px 16px;
}
.header .menu-item-has-children .sub-menu li a {
  font-size: var(--font-size-2);
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}
.header .menu-item-has-children .sub-menu li a:hover {
  color: var(--light-color);
}
@media (min-width: 992px) {
  .header .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  .header .menu-item-has-children:hover .drp-arrow::after {
    transform: rotate(180deg);
  }
}
.header .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
@media (min-width: 992px) {
  .header .btn-wrapper {
    margin-top: 0;
    margin-left: 28px;
  }
}
@media (min-width: 1200px) {
  .header .btn-wrapper {
    margin-left: 36px;
  }
}
@media (min-width: 1600px) {
  .header .btn-wrapper {
    margin-left: 52px;
  }
}
.header .btn-wrapper .btn-typ1 {
  width: 100%;
}
@media (min-width: 992px) {
  .header .btn-wrapper .btn-typ1 {
    width: auto;
  }
}
.header .hamburger-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 12;
  background: none;
  border: none;
  max-width: 34px;
}
.header .hamburger-menu svg {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .header .hamburger-menu {
    display: none !important;
  }
}
.header .side-nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
}
@media (min-width: 768px) {
  .header .side-nav-close {
    top: 22px;
    right: 38px;
  }
}
@media (min-width: 992px) {
  .header .side-nav-close {
    display: none !important;
  }
}

.menu-open .header .nav-bar {
  right: 0;
}
.menu-open .header .side-nav-close {
  display: flex;
}
.menu-open .header .hamburger-menu {
  opacity: 0;
  pointer-events: none;
}
.menu-open .header .menu-item:first-child {
  display: inline-block;
}
.menu-open .header .logo-wrapper {
  position: fixed;
  top: 18px;
  z-index: 1000;
}
.menu-open .header .logo-wrapper svg path {
  fill: var(--light-color) !important;
}
@media (min-width: 768px) {
  .menu-open .header .logo-wrapper {
    top: 16px;
  }
}
@media (min-width: 992px) {
  .menu-open .header .logo-wrapper {
    position: relative;
    top: auto;
  }
}

@keyframes rotateSvg {
  from {
    transform: translateX(-40%) rotate(0deg);
  }
  to {
    transform: translateX(-60%) rotate(360deg);
  }
}
@keyframes rotateSvgReverse {
  from {
    transform: translateX(-40%) rotate(360deg);
  }
  to {
    transform: translateX(-60%) rotate(0deg);
  }
}
.animate-svg-top,
.animate-svg-bottom {
  position: absolute;
  left: 0%;
  transform: translateX(-40%);
  width: 150%;
  max-width: 1908px;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(154.4375px);
}
.animate-svg-top svg,
.animate-svg-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .animate-svg-top,
  .animate-svg-bottom {
    width: 100%;
  }
}

.animate-svg-top {
  top: 0;
  animation: rotateSvg 20s linear infinite;
}

.animate-svg-bottom {
  bottom: 0;
  left: 50%;
  animation: rotateSvgReverse 28s linear infinite;
}

.banner-section {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding: 132px 0 60px;
  margin-top: -73px;
}
@media (min-width: 768px) {
  .banner-section {
    padding: 160px 0 96px;
    margin-top: -81px;
  }
}
@media (min-width: 992px) {
  .banner-section {
    padding: 200px 0 108px;
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .banner-section {
    padding: 220px 0 120px;
    min-height: 650px;
  }
}
@media (min-width: 1400px) {
  .banner-section {
    min-height: 758px;
  }
}
@media (min-width: 1600px) {
  .banner-section {
    padding: 250px 0 120px;
    margin-top: -102px;
    min-height: 945px;
  }
}
.banner-section .banner-svg-top,
.banner-section .banner-svg-bottom {
  position: absolute;
  left: 0%;
  transform: translateX(-40%);
  width: 150%;
  max-width: 1908px;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(54.4375px);
}
.banner-section .banner-svg-top svg,
.banner-section .banner-svg-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .banner-section .banner-svg-top,
  .banner-section .banner-svg-bottom {
    width: 100%;
  }
}
.banner-section .banner-svg-top {
  top: 0;
  animation: rotateSvg 20s linear infinite;
}
.banner-section .banner-svg-bottom {
  bottom: 0;
  left: 50%;
  animation: rotateSvgReverse 28s linear infinite;
}
.banner-section .hdr-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.bnr-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 992px) {
  .bnr-grid {
    flex-direction: row;
    align-items: center;
    gap: 44px;
  }
}
@media (min-width: 1200px) {
  .bnr-grid {
    gap: 96px;
  }
}
@media (min-width: 1400px) {
  .bnr-grid {
    gap: 120px;
  }
}
@media (min-width: 1600px) {
  .bnr-grid {
    gap: 160px;
  }
}

@media (min-width: 992px) {
  .bnr-content {
    flex: 0 0 44%;
    max-width: 44%;
  }
}
@media (min-width: 1600px) {
  .bnr-content {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.bnr-heading {
  font-family: var(--font-family-sans);
  font-size: var(--font-hd-1);
  font-weight: 700;
  color: var(--light-color);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .bnr-heading {
    margin-bottom: 24px;
  }
}
@media (min-width: 1600px) {
  .bnr-heading {
    margin-bottom: 30px;
  }
}

.bnr-highlights {
  margin-bottom: 28px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .bnr-highlights {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .bnr-highlights {
    margin-bottom: 36px;
    margin-top: 28px;
  }
}

.bnr-highlight-txt {
  font-size: var(--font-size-2);
  color: var(--light-color);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

.bnr-cta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}
@media (min-width: 768px) {
  .bnr-cta-wrap {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .bnr-cta-wrap {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .bnr-cta-wrap {
    margin-bottom: 36px;
  }
}
@media (min-width: 1600px) {
  .bnr-cta-wrap {
    margin-bottom: 54px;
  }
}

.bnr-btn {
  background: #425DE8;
  color: var(--light-color);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: var(--font-size-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, box-shadow 0.2s;
}
.bnr-btn:hover {
  background: #2E44D4;
  box-shadow: 0 4px 18px rgba(66, 93, 232, 0.45);
}
.bnr-btn .btn-arrow {
  display: flex;
  align-items: center;
}

.bnr-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--light-color);
  font-size: var(--font-size-2);
  font-weight: 500;
  transition: opacity 0.2s;
}
.bnr-platform-btn:hover {
  opacity: 0.8;
}
.bnr-platform-btn .btn-arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #425DE8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.bnr-platform-btn:hover .btn-arrow-circle {
  background: #2E44D4;
}

.bnr-tagline {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-1);
  width: 100%;
  max-width: 633px;
  padding: 18px 24px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .bnr-tagline {
    padding: 13px 24px;
  }
}
@media (min-width: 1600px) {
  .bnr-tagline {
    padding: 13px 32px;
  }
}
.bnr-tagline .tagline-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.bnr-tagline .tagline-txt {
  font-size: var(--font-size-3);
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
  line-height: 1.4;
}

.bnr-cards {
  flex: 1;
  min-width: 0;
}

.bnr-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .bnr-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .bnr-cards-grid {
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .bnr-cards-grid {
    gap: 18px;
  }
}

.bnr-card {
  background: var(--bg-1);
  border-radius: 24px;
  padding: 24px 30px;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  isolation: isolate;
}
.bnr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(45deg, rgba(0, 31, 97, 0.5) 0%, rgba(255, 255, 255, 0.3) 22%, rgba(255, 255, 255, 0.3) 78%, rgba(0, 31, 97, 0.2) 100%);
  /* Hollow center */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (min-width: 768px) {
  .bnr-card {
    padding: 32px 26px 32px 32px;
    border-radius: 40px;
  }
}
.bnr-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(66, 93, 232, 0.28);
}
.bnr-card .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.bnr-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .bnr-card .card-icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.bnr-card .card-label {
  font-size: var(--font-hd-4);
  font-weight: 600;
  color: var(--success-color);
  text-transform: uppercase;
  line-height: 1;
  padding-top: 6px;
  text-align: right;
}
@media (min-width: 768px) {
  .bnr-card .card-label {
    padding-top: 16px;
  }
}
.bnr-card .card-title {
  font-size: var(--font-hd-4);
  font-weight: 600;
  color: var(--light-color);
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (min-width: 1600px) {
  .bnr-card .card-title {
    margin-bottom: 16px;
  }
}
.bnr-card .card-desc {
  font-size: var(--font-size-4);
  color: var(--light-color2);
  line-height: 1.6;
  margin-bottom: 0;
}

.hme-intro-section .intro-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .hme-intro-section .intro-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 120px;
  }
}
@media (min-width: 1200px) {
  .hme-intro-section .intro-row {
    gap: 200px;
  }
}
@media (min-width: 1400px) {
  .hme-intro-section .intro-row {
    gap: 260px;
  }
}
@media (min-width: 1600px) {
  .hme-intro-section .intro-row {
    gap: 326px;
  }
}
.hme-intro-section .service-wrapper {
  padding: 24px 20px;
  background: var(--light-color);
  border-radius: 24px;
  box-shadow: var(--box-shadow-2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .hme-intro-section .service-wrapper {
    padding: 60px;
    border-radius: 40px;
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .hme-intro-section .service-wrapper {
    padding: 48px;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .hme-intro-section .service-wrapper:hover {
    box-shadow: var(--box-shadow-3);
  }
}
@media (min-width: 1400px) {
  .hme-intro-section .service-wrapper {
    padding: 52px;
    gap: 48px;
  }
}
@media (min-width: 1600px) {
  .hme-intro-section .service-wrapper {
    padding: 60px;
    gap: 60px;
  }
}
.hme-intro-section .service-wrapper .item {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  padding: 0 0 24px;
  border-bottom: var(--border-2);
}
.hme-intro-section .service-wrapper .item:last-child {
  padding: 0;
  border: none;
}
@media (min-width: 768px) {
  .hme-intro-section .service-wrapper .item {
    gap: 120px;
    padding: 0 0 60px;
  }
}
@media (min-width: 992px) {
  .hme-intro-section .service-wrapper .item {
    flex-direction: column;
    gap: 72px;
    padding: 0 32px 0 0;
    border-bottom: none;
    border-right: var(--border-2);
    align-items: flex-start;
  }
}
@media (min-width: 1400px) {
  .hme-intro-section .service-wrapper .item {
    gap: 80px;
    padding: 0 48px 0 0;
  }
}
@media (min-width: 1600px) {
  .hme-intro-section .service-wrapper .item {
    gap: 100px;
    padding: 0 60px 0 0;
  }
}
.hme-intro-section .service-wrapper .item .icon {
  background: var(--gradient3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hme-intro-section .service-wrapper .item .icon {
    width: 60px;
    height: 60px;
  }
}
.hme-intro-section .service-wrapper .item .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .hme-intro-section .service-wrapper .item .content {
    gap: 12px;
  }
}

.hme-infra-section {
  background: var(--gradient1);
}
@media (min-width: 992px) {
  .hme-infra-section {
    background: url(../assets/infra-bg.png) no-repeat center/cover;
  }
}
.hme-infra-section .box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: var(--bg-3);
  border-radius: 24px;
  box-shadow: var(--box-shadow-1);
}
@media (min-width: 768px) {
  .hme-infra-section .box-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hme-infra-section .box-wrapper .item {
  background: var(--light-color);
  padding: 24px 12px 24px 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .hme-infra-section .box-wrapper .item {
    padding: 32px 26px 32px 36px;
    min-height: 226px;
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .hme-infra-section .box-wrapper .item {
    min-height: 200px;
  }
  .hme-infra-section .box-wrapper .item:hover {
    box-shadow: var(--box-shadow-1);
  }
}
@media (min-width: 1200px) {
  .hme-infra-section .box-wrapper .item {
    min-height: 226px;
  }
}
@media (min-width: 1600px) {
  .hme-infra-section .box-wrapper .item {
    padding: 40px 32px 40px 48px;
    min-height: 251px;
  }
}
.hme-infra-section .box-wrapper .item .icon {
  background: var(--gradient3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hme-infra-section .box-wrapper .item .icon {
    width: 60px;
    height: 60px;
  }
}
.hme-infra-section .custom-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .hme-infra-section .custom-row {
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .hme-infra-section .custom-row {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .hme-infra-section .custom-row {
    gap: 0;
  }
}
@media (min-width: 992px) {
  .hme-infra-section .text-col {
    flex: 1 0 44%;
    order: 2;
  }
}
@media (min-width: 1600px) {
  .hme-infra-section .text-col {
    flex: 1 0 52.2%;
  }
}
@media (min-width: 992px) {
  .hme-infra-section .img-col {
    flex: 0 0 44%;
    max-width: 44%;
    order: 1;
  }
  .hme-infra-section .img-col img {
    clip-path: inset(0 20px 0 0);
  }
}
@media (min-width: 1200px) {
  .hme-infra-section .img-col {
    margin-right: -20px;
  }
}
@media (min-width: 1600px) {
  .hme-infra-section .img-col {
    flex: 0 0 47.8%;
    max-width: 610px;
  }
}
@media (min-width: 992px) {
  .hme-infra-section .pos-txt {
    position: absolute;
    bottom: 0;
    left: 44%;
  }
}
@media (min-width: 1200px) {
  .hme-infra-section .pos-txt {
    left: calc(44% - 20px);
  }
}
@media (min-width: 1600px) {
  .hme-infra-section .pos-txt {
    left: 590px;
  }
}
.hme-infra-section .img-wrapper {
  width: 100%;
}
.hme-infra-section .img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hme-mlro-section .strip {
  border-radius: 15px;
  padding: 20px;
}
@media (min-width: 768px) {
  .hme-mlro-section .strip {
    padding: 28px 48px;
  }
}
@media (min-width: 1200px) {
  .hme-mlro-section .strip {
    padding: 32px 48px;
  }
}
.hme-mlro-section .row {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (min-width: 768px) {
  .hme-mlro-section .row {
    gap: 42px;
  }
}
@media (min-width: 992px) {
  .hme-mlro-section .row {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .hme-mlro-section .row {
    gap: 80px;
  }
}
@media (min-width: 1600px) {
  .hme-mlro-section .row {
    gap: 110px;
  }
}
@media (min-width: 992px) {
  .hme-mlro-section .cols:first-child {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (min-width: 1600px) {
  .hme-mlro-section .cols:first-child {
    flex: 0 0 38.75%;
    max-width: 38.75%;
  }
}
.hme-mlro-section .cols:last-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .hme-mlro-section .cols:last-child {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .hme-mlro-section .cols:last-child {
    flex: 1 0 52%;
  }
}
@media (min-width: 1600px) {
  .hme-mlro-section .cols:last-child {
    flex: 1 0 60%;
    gap: 24px;
  }
}
.hme-mlro-section .item {
  background: var(--light-color);
  border-radius: 24px;
  padding: 24px 22px 24px 24px;
  box-shadow: var(--box-shadow-1);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .hme-mlro-section .item {
    gap: 48px;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .hme-mlro-section .item:hover {
    box-shadow: var(--box-shadow-3);
  }
}
@media (min-width: 1600px) {
  .hme-mlro-section .item {
    gap: 68px;
  }
}
.hme-mlro-section .item .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hme-mlro-section .item .icon {
    width: 60px;
    height: 60px;
  }
}
.hme-mlro-section .item .icon svg {
  width: 100%;
  height: auto;
}
.hme-mlro-section .item .txt {
  margin-right: -100px;
}
@media (min-width: 768px) {
  .hme-mlro-section .item .txt {
    margin-right: 0;
  }
}
.hme-mlro-section .card-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .hme-mlro-section .card-header {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.hme-mlro-section .card-label {
  font-size: var(--font-hd-4);
  font-weight: 600;
  color: var(--success-color);
  line-height: 1;
  padding: 10px 20px;
  border-radius: 18px;
  text-align: center;
  background: var(--bg-5);
  flex-shrink: 0;
  flex-grow: 0;
  height: 36px;
  max-height: 36px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hme-mlro-section .card-label {
    padding-top: 16px;
  }
}
.hme-mlro-section .card-title {
  font-size: var(--font-hd-4);
  font-weight: 600;
  color: var(--light-color);
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (min-width: 1600px) {
  .hme-mlro-section .card-title {
    margin-bottom: 16px;
  }
}

.hme-differ-section .content-wrapper {
  background: var(--gradient2);
  padding: 0 17px 36px 18px;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hme-differ-section .content-wrapper {
    padding: 0 32px 42px;
    border-radius: 40px;
  }
}
@media (min-width: 992px) {
  .hme-differ-section .content-wrapper {
    overflow: visible;
    position: relative;
  }
  .hme-differ-section .content-wrapper::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    display: block;
    background: var(--bg-6);
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hme-differ-section .hd-wrapper {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  background: var(--light-color);
  border: var(--border-4);
  margin: 0 10px;
}
@media (min-width: 768px) {
  .hme-differ-section .hd-wrapper {
    height: 128px;
    width: 128px;
    border-width: 4px;
    margin: 0 24px;
  }
}
@media (min-width: 992px) {
  .hme-differ-section .hd-wrapper {
    position: absolute;
    top: -32px;
    z-index: 3;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .hme-differ-section .hd-wrapper {
    top: -26px;
  }
}
.hme-differ-section .hd-wrapper .hd {
  font-size: var(--font-vs);
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}
.hme-differ-section .hd-typ4 {
  padding: 15px 0 0 20px;
}
@media (min-width: 768px) {
  .hme-differ-section .hd-typ4 {
    padding: 21px 0 0 48px;
  }
}
@media (min-width: 992px) {
  .hme-differ-section .hd-typ4 {
    padding: 21px 0 0 25px;
  }
}
.hme-differ-section .trd-col .hd-typ4, .hme-differ-section .trd-col .hd-typ2 {
  color: var(--secondary-color);
}
@media (min-width: 1200px) {
  .hme-differ-section .trd-col .item {
    margin-right: -220px;
  }
}
.hme-differ-section .vs-col {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-left: -20px;
}
@media (min-width: 992px) {
  .hme-differ-section .vs-col {
    flex-direction: column;
    padding-top: 108px;
    gap: 42px;
  }
}
.hme-differ-section .vs-col .arrow {
  width: 63px;
  height: auto;
}
@media (max-width: 991px) {
  .hme-differ-section .vs-col .arrow {
    width: -moz-max-content;
    width: max-content;
  }
  .hme-differ-section .vs-col .arrow svg {
    transform: rotate(90deg);
    position: relative;
  }
}
@media (min-width: 768px) {
  .hme-differ-section .vs-col .arrow {
    width: 107px;
  }
}
.hme-differ-section .trd-col, .hme-differ-section .gnxi-col {
  position: relative;
}
.hme-differ-section .trd-col::after, .hme-differ-section .gnxi-col::after {
  content: "";
  width: 120%;
  height: 1px;
  position: absolute;
  display: block;
  background: var(--bg-6);
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .hme-differ-section .trd-col::after, .hme-differ-section .gnxi-col::after {
    top: 74px;
  }
}
@media (min-width: 992px) {
  .hme-differ-section .trd-col::after, .hme-differ-section .gnxi-col::after {
    content: none;
  }
}
.hme-differ-section .custom-row {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (min-width: 992px) {
  .hme-differ-section .custom-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hme-differ-section .differ-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .hme-differ-section .differ-wrap {
    margin-top: 38px;
  }
}
.hme-differ-section .item {
  display: flex;
  gap: 32px;
  padding: 16px 20px;
  border-bottom: var(--border-5);
  align-items: center;
}
@media (min-width: 768px) {
  .hme-differ-section .item {
    padding: 25px 48px;
  }
}
@media (min-width: 992px) {
  .hme-differ-section .item {
    padding: 25px 24px;
  }
}

.hme-service-section .custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 768px) {
  .hme-service-section .custom-row {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .hme-service-section .custom-row {
    gap: 30px 12px;
  }
}
.hme-service-section .item {
  width: 100%;
  border-radius: 24px;
  background: var(--light-color);
  box-shadow: var(--box-shadow-1);
  padding: 18px 24px 18px 18px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .hme-service-section .item {
    border-radius: 40px;
    padding: 32px 40px;
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .hme-service-section .item {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .hme-service-section .item:hover {
    box-shadow: var(--box-shadow-3);
  }
}
.hme-service-section .item .icon {
  width: 48px;
  height: 48px;
}
.hme-service-section .item .icon svg {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .hme-service-section .item .icon {
    width: 60px;
    height: 60px;
  }
}

.footer {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.footer .bottom-wrap {
  padding: 14px 0;
  border-top: var(--border-1);
}
@media (min-width: 768px) {
  .footer .bottom-wrap {
    padding: 20px 0 24px;
  }
}
.footer .cpy-txt {
  font-size: var(--font-size-3);
  color: var(--quaternary-color);
  font-weight: 400;
  line-height: 1.625;
}
.footer .top-wrap,
.footer .bottom-wrap {
  position: relative;
  z-index: 2;
}
.footer .custom-row {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-bottom: 38px;
}
@media (min-width: 768px) {
  .footer .custom-row {
    gap: 48px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .footer .custom-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
  }
}
@media (min-width: 1200px) {
  .footer .custom-row {
    gap: 120px;
  }
}
@media (min-width: 1600px) {
  .footer .custom-row {
    gap: 196px;
    margin-bottom: 80px;
  }
}
.footer .text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .footer .text-col {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .footer .text-col {
    flex: 0 0 38.5%;
    max-width: 38.5%;
  }
}
@media (min-width: 1600px) {
  .footer .text-col {
    flex: 0 0 37.21%;
    max-width: 37.21%;
    gap: 42px;
  }
}
.footer .text-col .txt {
  font-size: var(--font-size-3);
  line-height: 1.625;
}
@media (min-width: 992px) {
  .footer .link-col {
    flex: 1 0 44%;
  }
}
.footer .logo-wrapper {
  max-width: 125px;
}
@media (min-width: 768px) {
  .footer .logo-wrapper {
    max-width: 188px;
  }
}
@media (min-width: 1200px) {
  .footer .logo-wrapper {
    max-width: 210px;
  }
}
@media (min-width: 1600px) {
  .footer .logo-wrapper {
    max-width: 246px;
  }
}
.footer .logo-wrapper svg {
  width: 100%;
  height: auto;
}
.footer .nav-links ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer .nav-links ul {
    flex-direction: row;
    gap: 95px;
  }
}
@media (min-width: 1200px) {
  .footer .nav-links ul {
    gap: 80px;
  }
}
@media (min-width: 1600px) {
  .footer .nav-links ul {
    gap: 100px;
  }
}
.footer .nav-link {
  font-size: var(--font-size-2);
  color: var(--quaternary-color);
  font-weight: 400;
  display: block;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .footer .nav-link:hover {
    color: var(--light-color);
  }
}
.footer .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.cta-section .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .cta-section .btn-wrapper {
    gap: 32px;
    flex-direction: row;
  }
}
.cta-section .hd-typ1 {
  max-width: 343px;
}
@media (min-width: 768px) {
  .cta-section .hd-typ1 {
    max-width: 690px;
  }
}
@media (min-width: 992px) {
  .cta-section .hd-typ1 {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .cta-section .hd-typ1 {
    max-width: 948px;
  }
}
@media (min-width: 1600px) {
  .cta-section .hd-typ1 {
    max-width: 1090px;
  }
}

#scroll-to {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  background: var(--success-color);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#scroll-to.top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
@media (min-width: 768px) {
  #scroll-to {
    width: 52px;
    height: 52px;
    bottom: 120px;
    right: 44px;
  }
}
@media (min-width: 992px) {
  #scroll-to {
    width: 48px;
    height: 48px;
    bottom: 140px;
    right: 100px;
  }
  #scroll-to svg {
    transition: transform 0.3s ease;
  }
  #scroll-to:hover svg {
    transform: translateY(-3px);
  }
}
@media (min-width: 1400px) {
  #scroll-to {
    bottom: 140px;
    right: 100px;
  }
}
@media (min-width: 1600px) {
  #scroll-to {
    bottom: 200px;
    right: 180px;
    width: 52px;
    height: 52px;
  }
}

.sgi-card {
  background: var(--light-color);
  box-shadow: var(--box-shadow-1);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  height: auto;
  width: 100%;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .sgi-card.typ2, .sgi-card.typ3 {
    padding: 32px;
  }
}
@media (min-width: 1600px) {
  .sgi-card.typ2, .sgi-card.typ3 {
    padding: 40px 52px 40px 40px;
  }
}
@media (min-width: 992px) {
  .sgi-card.typ2 .content-wrap .txt, .sgi-card.typ3 .content-wrap .txt {
    margin-top: 24px;
  }
}
@media (min-width: 1600px) {
  .sgi-card.typ2 .content-wrap .txt, .sgi-card.typ3 .content-wrap .txt {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .sgi-card {
    border-radius: 40px;
    padding: 32px 60px 32px 32px;
  }
}
@media (min-width: 992px) {
  .sgi-card {
    flex-direction: column;
  }
  .sgi-card:hover {
    box-shadow: var(--box-shadow-3);
  }
}
@media (min-width: 1200px) {
  .sgi-card {
    border-radius: 40px;
    padding: 40px 32px 40px 40px;
    gap: 40px;
  }
}
.sgi-card .icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 768px) {
  .sgi-card .icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.sgi-card .icon-wrap img, .sgi-card .icon-wrap svg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.sgi-card .icon-wrap .overlay-icon {
  position: absolute;
  top: 23.33%;
  left: 26.67%;
  width: 46.22%;
  height: 53.33%;
}
.sgi-card .content-wrap {
  width: calc(100% - 72px);
}
@media (min-width: 768px) {
  .sgi-card .content-wrap {
    width: calc(100% - 92px);
  }
}
@media (min-width: 1200px) {
  .sgi-card .content-wrap {
    width: 100%;
  }
}
.sgi-card .content-wrap .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #001f61;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sgi-card .content-wrap .title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .sgi-card .content-wrap .title {
    font-size: 22px;
  }
}
.sgi-card .content-wrap .txt {
  margin-top: 12px;
}

.border-card {
  background: var(--bg-1);
  border-radius: 24px;
  padding: 24px 30px;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 36px;
}
.border-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(45deg, rgba(0, 31, 97, 0.5) 0%, rgba(255, 255, 255, 0.3) 22%, rgba(255, 255, 255, 0.3) 78%, rgba(0, 31, 97, 0.2) 100%);
  /* Hollow center */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (min-width: 768px) {
  .border-card {
    padding: 32px 26px 32px 32px;
    border-radius: 40px;
  }
}
@media (min-width: 992px) {
  .border-card {
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .border-card {
    min-height: 222px;
  }
}
@media (min-width: 1600px) {
  .border-card {
    min-height: 238px;
  }
}
.border-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(66, 93, 232, 0.28);
}
.border-card .icon {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .border-card .icon {
    width: 60px;
    height: 60px;
  }
}
.border-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .border-card .card-icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.border-card .card-title {
  font-size: var(--font-hd-4);
  font-weight: 600;
  color: var(--light-color);
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (min-width: 1600px) {
  .border-card .card-title {
    margin-bottom: 16px;
  }
}
.border-card .card-desc {
  font-size: var(--font-size-4);
  color: var(--light-color2);
  line-height: 1.6;
  margin-bottom: 0;
}

.sol-section {
  background-color: var(--light-color);
}

.list-typ2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 992px) {
  .list-typ2 {
    gap: 12px 48px;
    justify-content: space-between;
  }
}
.list-typ2 .item {
  display: flex;
  font-size: var(--font-size-3);
  color: var(--light-color2);
  line-height: 1.6;
  padding-left: 40px;
}
@media (min-width: 768px) {
  .list-typ2 .item {
    padding-left: 44px;
  }
}
@media (min-width: 992px) {
  .list-typ2 .item {
    width: calc(50% - 24px);
  }
}
@media (min-width: 1200px) {
  .list-typ2 .item {
    width: calc(50% - 40px);
  }
}
@media (min-width: 1200px) {
  .list-typ2 .item {
    width: calc(50% - 54px);
  }
}
.list-typ2 .item {
  position: relative;
}
.list-typ2 .item .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 3px;
}
@media (min-width: 768px) {
  .list-typ2 .item .icon {
    width: 20px;
    height: 20px;
  }
}
.list-typ2 .item .txt {
  margin: 0;
  line-height: 1.6;
  color: var(--primary-color);
}

.sol-tab-nav-wrap {
  position: sticky;
  border-bottom: 1px solid #425DE8;
  background: #fff;
  padding-top: 4px;
  top: 73px;
  z-index: 10;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .sol-tab-nav-wrap {
    top: 81px;
    margin-top: 44px;
  }
}
@media (min-width: 1600px) {
  .sol-tab-nav-wrap {
    top: 102px;
    margin-top: 60px;
  }
}

.sol-tab-nav {
  display: flex;
  gap: 18px;
}

.sol-tab-btn {
  font-weight: 600;
  font-size: var(--font-num);
  color: var(--light-color);
  background-color: var(--success-color);
  margin-bottom: -1px;
  border-top: 1px solid #425DE8;
  border-left: 1px solid #425DE8;
  border-right: 1px solid #425DE8;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
  outline: none;
  border-radius: 15px 15px 0 0;
}
@media (min-width: 360px) {
  .sol-tab-btn {
    min-width: 160px;
  }
}
@media (min-width: 768px) {
  .sol-tab-btn {
    padding: 15px 36px;
    min-width: 270px;
    font-size: var(--font-hd-5);
  }
}
@media (min-width: 1600px) {
  .sol-tab-btn {
    min-width: 368px;
  }
}
.sol-tab-btn.active {
  color: var(--primary-color);
  background: var(--tertiary-color);
}
.sol-tab-btn:hover:not(.active) {
  color: var(--light-color2);
}

.sol-panel {
  display: none;
}
.sol-panel.active {
  display: block;
}

.sol-top-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .sol-top-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .sol-top-grid {
    gap: 60px;
  }
}
@media (min-width: 1400px) {
  .sol-top-grid {
    gap: 84px;
  }
}
.sol-top-grid .sol-col-text .hd-typ1 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .sol-top-grid .sol-col-text .hd-typ1 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .sol-top-grid .sol-col-text .hd-typ1 {
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .sol-top-grid .sol-col-aside {
    flex: 1 0 63.52%;
    max-width: 63.52%;
  }
}
.sol-top-grid.sol-top-grid--sgi .sol-col-text .btn-typ1 {
  margin-top: 24px;
}
@media (min-width: 1200px) {
  .sol-top-grid.sol-top-grid--sgi .sol-col-text .btn-typ1 {
    margin-top: 32px;
  }
}

.sol-quote-box {
  border-left: 3px solid var(--success-color);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .sol-quote-box {
    padding: 24px 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .sol-quote-box {
    padding: 28px 36px;
    margin-bottom: 36px;
  }
}

.sol-quote-line {
  font-family: var(--font-family-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-color);
  margin: 0;
}
@media (min-width: 768px) {
  .sol-quote-line {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .sol-quote-line {
    font-size: 18px;
  }
}
.sol-quote-line + .sol-quote-line {
  margin-top: 8px;
}
.sol-quote-line.sol-quote-bold {
  font-weight: 600;
  color: var(--primary-color);
}

.sol-features-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 480px) {
  .sol-features-row {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .sol-features-row {
    gap: 96px;
  }
}

.sol-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 480px) {
  .sol-feature-item {
    align-items: flex-start;
  }
}

.sol-feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-feature-icon svg {
  display: block;
}

.sol-feature-label {
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--primary-color);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .sol-feature-label {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .sol-feature-label {
    font-size: 15px;
  }
}

.sol-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .sol-flow {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.sol-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .sol-step {
    flex-direction: row;
    align-items: center;
    flex: 1;
  }
}
@media (min-width: 768px) {
  .sol-step.sol-step--last {
    flex: 0 0 auto;
  }
}

.sol-step-card {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .sol-step-card {
    padding: 28px 24px;
    min-height: 190px;
  }
}
@media (min-width: 1200px) {
  .sol-step-card {
    border-radius: 24px;
    padding: 32px 28px;
    min-height: 210px;
  }
}

.sol-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(66, 93, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sol-step-icon {
    width: 48px;
    height: 48px;
  }
}
.sol-step-icon svg {
  display: block;
}

.sol-step-title {
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--light-color);
  margin: 0;
}
@media (min-width: 768px) {
  .sol-step-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .sol-step-title {
    font-size: 20px;
  }
}

.sol-step-desc {
  font-family: var(--font-family-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--light-color2);
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .sol-step-desc {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .sol-step-desc {
    font-size: 15px;
  }
}

.sol-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  transform: rotate(90deg);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sol-step-arrow {
    padding: 0 10px;
    transform: rotate(0deg);
  }
}
.sol-step-arrow svg {
  display: block;
}

.sol-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 480px) {
  .sol-cta-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 20px;
  }
}

.sgi-cards-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .sgi-cards-row {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .sgi-cards-row {
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 992px) {
  .sgi-cards-row .sgi-card {
    width: calc(33.333% - 8px);
  }
  .sgi-cards-row .sgi-card:last-of-type {
    width: 36%;
  }
}

.sgi-tagline-bar {
  background-color: var(--light-color);
  padding: 24px 20px 24px 32px;
  border-radius: 15px;
  margin-top: 32px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .sgi-tagline-bar {
    padding: 30px 32px;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .sgi-tagline-bar:hover {
    box-shadow: var(--box-shadow-2);
  }
}
@media (min-width: 1200px) {
  .sgi-tagline-bar {
    padding: 24px 32px;
    max-width: 806px;
  }
}
@media (min-width: 1600px) {
  .sgi-tagline-bar {
    padding: 24px 32px;
    margin-top: 48px;
  }
}

.sgi-tagline-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .sgi-tagline-inner {
    gap: 52px;
  }
}
@media (min-width: 992px) {
  .sgi-tagline-inner {
    gap: 38px;
  }
}

.sgi-tagline-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sgi-tagline-icon svg {
  display: block;
}

.sgi-tagline-content {
  flex: 1;
}

.sgi-tagline-hd {
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .sgi-tagline-hd {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .sgi-tagline-hd {
    font-size: 20px;
    margin: 0 0 4px;
  }
}

.sgi-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .sgi-benefits {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .sgi-benefits {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .sgi-benefits {
    gap: 60px;
  }
}

.sgi-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .sgi-benefit-item {
    gap: 20px;
  }
}

.sgi-benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--info-color);
  border-radius: 50%;
}
.sgi-benefit-icon svg {
  display: block;
}

.sgi-benefit-body {
  flex: 1;
}

.sgi-benefit-title {
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .sgi-benefit-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .sgi-benefit-title {
    font-size: 20px;
  }
}

.sgi-contrast {
  background-color: var(--light-color);
  padding: 24px 20px 24px 24px;
  border-radius: 15px;
  margin-top: 60px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .sgi-contrast {
    padding: 32px 56px 32px 32px;
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .sgi-contrast {
    padding: 40px 40px 40px 48px;
  }
  .sgi-contrast:hover {
    box-shadow: var(--box-shadow-2);
  }
}
@media (min-width: 1600px) {
  .sgi-contrast {
    padding: 48px 48px 48px 60px;
    margin-top: 110px;
  }
}

.sgi-contrast-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .sgi-contrast-inner {
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .sgi-contrast-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .sgi-contrast-inner {
    gap: 60px;
  }
}
@media (min-width: 1600px) {
  .sgi-contrast-inner {
    gap: 144px;
  }
}
.sgi-contrast-inner .hd-typ1 {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .sgi-contrast-inner .txt {
    max-width: 550px;
  }
}

.sustainability-section {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.sustainability-section .container {
  position: relative;
  z-index: 2;
}
.sustainability-section .custom-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 768px) {
  .sustainability-section .custom-row {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .sustainability-section .custom-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px 12px;
  }
}
@media (min-width: 992px) {
  .sustainability-section .custom-row .cols {
    width: calc(33.33333% - 8px);
    max-width: calc(33.33333% - 8px);
  }
}
@media (min-width: 992px) {
  .sustainability-section .custom-row .txt {
    max-width: 320px;
  }
}
@media (min-width: 1600px) {
  .sustainability-section .custom-row .txt {
    max-width: 370px;
  }
}

.carbon-infra-section .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 768px) {
  .carbon-infra-section .card-wrapper {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .carbon-infra-section .card-wrapper {
    gap: 30px 12px;
  }
}
.carbon-infra-section .card-wrapper .sgi-card {
  position: relative;
}
.carbon-infra-section .card-wrapper .sgi-card.typ3::after {
  content: none;
}
.carbon-infra-section .card-wrapper .sgi-card:last-child::after {
  content: none;
}
.carbon-infra-section .card-wrapper .sgi-card::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 42px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="42" viewBox="0 0 23 42" fill="none"><path d="M9.98621 41.0607C10.572 41.6464 11.5217 41.6464 12.1075 41.0607L21.6535 31.5147C22.2393 30.9289 22.2393 29.9792 21.6535 29.3934C21.0677 28.8076 20.1179 28.8076 19.5322 29.3934L11.0469 37.8787L2.56159 29.3934C1.97581 28.8076 1.02606 28.8076 0.440272 29.3934C-0.145515 29.9792 -0.145515 30.9289 0.440272 31.5147L9.98621 41.0607ZM11.0469 0L9.54688 -6.55671e-08L9.54687 40L11.0469 40L12.5469 40L12.5469 6.55671e-08L11.0469 0Z" fill="%23425DE8"/></svg>') no-repeat center center;
  top: 100%;
  right: 42px;
  z-index: 1;
}
@media (min-width: 768px) {
  .carbon-infra-section .card-wrapper .sgi-card::after {
    right: 80px;
  }
}
@media (min-width: 992px) {
  .carbon-infra-section .card-wrapper .sgi-card::after {
    left: 100%;
    top: 110px;
    right: auto;
    width: 42px;
    height: 23px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="23" viewBox="0 0 42 23" fill="none"><path d="M41.0607 12.1066C41.6464 11.5208 41.6464 10.571 41.0607 9.98523L31.5147 0.439294C30.9289 -0.146493 29.9792 -0.146493 29.3934 0.439294C28.8076 1.02508 28.8076 1.97483 29.3934 2.56061L37.8787 11.0459L29.3934 19.5312C28.8076 20.117 28.8076 21.0667 29.3934 21.6525C29.9792 22.2383 30.9289 22.2383 31.5147 21.6525L41.0607 12.1066ZM0 11.0459L1.31134e-07 12.5459L40 12.5459L40 11.0459L40 9.54589L-1.31134e-07 9.5459L0 11.0459Z" fill="%23425DE8"/></svg>') no-repeat center center;
  }
}
@media (min-width: 992px) {
  .carbon-infra-section .card-wrapper .sgi-card {
    width: calc(33.333% - 8px);
  }
}

.difference-section .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 768px) {
  .difference-section .card-wrapper {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .difference-section .card-wrapper {
    gap: 30px 12px;
    justify-content: space-between;
  }
}
.difference-section .card-wrapper .dif-card {
  background-color: var(--light-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .difference-section .card-wrapper .dif-card {
    border-radius: 40px;
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .difference-section .card-wrapper .dif-card {
    width: calc(50% - 12px);
  }
  .difference-section .card-wrapper .dif-card:hover {
    box-shadow: var(--box-shadow-2);
  }
}
.difference-section .card-wrapper .dif-card .hd-typ4 {
  margin-bottom: 0;
}
.difference-section .card-wrapper .dif-card:last-child {
  background: var(--gradient4);
}
.difference-section .card-wrapper .dif-card:last-child .hd-typ4, .difference-section .card-wrapper .dif-card:last-child .txt {
  color: var(--light-color);
}
.difference-section .card-wrapper .dif-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .difference-section .card-wrapper .dif-wrapper {
    gap: 32px;
  }
}
.difference-section .card-wrapper .item {
  display: flex;
  gap: 20px;
}
@media (min-width: 768px) {
  .difference-section .card-wrapper .item {
    gap: 36px;
  }
}
@media (min-width: 992px) {
  .difference-section .card-wrapper .item {
    gap: 38px;
  }
}
.difference-section .card-wrapper .item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .difference-section .card-wrapper .item .icon {
    width: 30px;
  }
}
.difference-section .card-wrapper .item .icon svg {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */