/* hero section */
.hero-section {
  background-color: #171233;
  background-image: url("../img/temp/grid-bg.svg");
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) and (min-height: 800px) {
  .hero-section {
    min-height: 100dvh;
  }
}
@media (min-width: 667px) and (max-width: 1000px) and (orientation: landscape) {
  .hero-section {
    min-height: 140dvh;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 0, 118, 0.3), 14%, transparent 70%);
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.hero-section:hover::before {
  transform: translate(-50%, -50%) scale(8);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  line-height: 1;
}
@media (max-width: 1440px) {
  .hero-section h1 {
    font-size: clamp(35px, 6.2vw, 80px);
  }
}
@media (max-width: 765px) {
  .hero-section h1 {
    font-size: clamp(35px, 5.4vw, 80px);
  }
}
@media (max-width: 375px) {
  .hero-section h1 {
    font-size: clamp(29px, 4.4vw, 80px);
  }
}
.hero-section p {
  font-size: 18px;
  color: #9FA9B4;
}
@media (max-width: 767px) {
  .hero-section p br {
    display: none;
  }
}
.hero-section .top-line {
  margin-bottom: 10px;
}
.hero-section .top-line span {
  color: #9FA9B4;
}
.hero-section .top-line .lined-text::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: #630ED4;
  margin: 0 8px 4px 0;
}
.hero-section .top-line .dotted-text::before {
  background-color: #8801FE;
}

/* header navigation */
.nav-menu a,
.logo img {
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: 0.3s;
  padding: 40px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.35s ease, backdrop-filter 0.4s ease;
}
.site-header .nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .nav-menu .nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  align-items: center;
  padding: 0;
}
.site-header .nav-menu .nav-list li a {
  text-decoration: none;
}
@media (min-width: 992px) {
  .site-header .nav-menu .nav-list li a {
    color: #fff;
    text-decoration: none;
  }
}
@media (max-width: 991px) {
  .site-header .nav-menu .nav-list li a {
    color: #111827;
  }
}
.site-header .nav-menu .nav-list li a:hover {
  color: #9000FF;
}
@media (min-width: 992px) {
  .site-header .nav-menu .nav-list li.cta a {
    border: 1px solid #5b21b0;
    border-radius: 2px;
    min-height: 45px;
    line-height: 45px;
    padding: 0 20px;
    display: block;
  }
  .site-header .nav-menu .nav-list li.cta a:hover {
    background-color: #5b21b0;
    color: #fff;
  }
}
.site-header .menu-toggle {
  display: none;
  outline: none;
}
.site-header.scrolled {
  background: #fff;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 15px 0;
  transition-delay: 0s, 0.05s, 0.05s;
}
.site-header.scrolled .nav-menu .nav-list li a {
  color: #111827;
}
.site-header.scrolled .nav-menu .nav-list li a:hover {
  color: #5b21b0;
}
@media (min-width: 992px) {
  .site-header.scrolled .nav-menu .nav-list li.cta a:hover {
    background-color: #5b21b0;
    color: #fff;
  }
}
.site-header.scrolled .menu-toggle span {
  background: #171233;
}
.site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}
.site-header:not(.scrolled) .logo-white {
  display: block;
}
.site-header:not(.scrolled) .logo-color {
  display: none;
}
.site-header.scrolled, .site-header.menu-open {
  background: #fff;
}
.site-header.scrolled .logo-white, .site-header.menu-open .logo-white {
  display: none;
}
.site-header.scrolled .logo-color, .site-header.menu-open .logo-color {
  display: block;
}
.site-header.menu-open {
  margin-top: 0;
}
.site-header.menu-open .nav-menu .nav-list li a {
  color: #171233;
}
.site-header.menu-open .menu-toggle span {
  background-color: #171233;
}
@media (max-width: 991px) {
  .site-header .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
  }
  .site-header .menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    display: block;
    transition: all 0.3s ease;
  }
  .site-header .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .site-header .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .site-header .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    border-top: 1px solid #e6e6e6;
    box-shadow: 0 12px 150px rgba(0, 0, 0, 0.1);
  }
  .site-header .nav-menu .nav-list {
    flex-direction: column;
    gap: 15px;
    max-width: 720px;
    margin: auto;
    padding: 0 15px;
  }
  .site-header .nav-menu .nav-list li {
    width: 100%;
  }
  .site-header .nav-menu .nav-list a {
    display: block;
    width: 100%;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
  }
  .site-header .nav-menu .nav-list a:hover {
    padding-left: 18px;
    color: #9000FF !important;
    transition: all 0.3s ease-in-out;
  }
  .site-header .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 768px) {
  .site-header .nav-menu .nav-list {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .site-header .nav-menu .nav-list {
    padding: 0;
  }
}

.site-footer {
  background: #171233;
  color: #9FA9B4;
  padding: 70px 0 0;
  border-top: 1px solid #322A5C;
  font-size: 13px;
}
.site-footer a {
  color: #9FA9B4;
  transition: color 0.25s ease;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}
.site-footer p {
  color: #9FA9B4;
}
.site-footer p.label {
  color: #fff;
  font-weight: 600;
}

.footer-top {
  padding: 0 60px 40px 60px;
}
@media (max-width: 1200px) {
  .footer-top {
    padding: 0 40px 30px 40px;
  }
}
@media (max-width: 768px) {
  .footer-top {
    padding: 0 20px 30px 20px;
  }
}
@media (max-width: 575px) {
  .footer-top {
    padding: 0 8px 30px 8px;
  }
}
.footer-top > div {
  margin-bottom: 30px;
}

.footer-title {
  margin-bottom: 20px;
  font-size: 20px;
  color: #fff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.office-block {
  padding: 60px 0 60px 60px;
}
@media (max-width: 1200px) {
  .office-block {
    padding: 30px 0 30px 0;
  }
}
.office-block:first-child {
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1200px) {
  .office-block:first-child {
    border-right: 0;
    padding-bottom: 0;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .office-block:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.label {
  margin-bottom: 10px;
  color: #fff;
}

.footer-bottom {
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
}
@media (max-width: 1200px) {
  .footer-bottom {
    padding: 24px 40px;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    padding: 24px 22px;
  }
}
@media (max-width: 575px) {
  .footer-bottom {
    padding: 24px 8px;
  }
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171233;
  font-weight: 900;
  font-size: 16px;
}
.social-links a:hover {
  background: #9000FF;
}

.footer-middle {
  padding: 0 70px;
}
@media (max-width: 1200px) {
  .footer-middle {
    padding: 0 55px;
  }
}
@media (max-width: 768px) {
  .footer-middle {
    padding: 0 35px;
  }
}
@media (max-width: 575px) {
  .footer-middle {
    padding: 0 22px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 50px;
  }
}
/* contact form */
.cmb-form {
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 2px;
}
.cmb-form .form-control:focus,
.cmb-form input:focus,
.cmb-form textarea:focus,
.cmb-form select:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  background-color: inherit;
}
.cmb-form label {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
}
.cmb-form textarea::-moz-placeholder, .cmb-form input::-moz-placeholder {
  font-size: 16px;
  opacity: 0.7;
}
.cmb-form textarea::placeholder,
.cmb-form input::placeholder {
  font-size: 16px;
  opacity: 0.7;
}
.cmb-form input.form-control,
.cmb-form textarea {
  background-color: #E0E5E8;
  border: 1px solid #D2D2D2;
  border-radius: 2px;
  min-height: 50px;
}
.cmb-form .btn {
  width: 100%;
}

.email-text {
  color: #9FA9B4;
  text-decoration: none;
}
.email-text:hover {
  color: #fff;
  transition: color 0.25s ease;
  text-decoration: none;
}

.cambria-rcc h2 {
  line-height: 1;
  font-size: clamp(30px, 3.1vw, 60px);
}
@media (max-width: 768px) {
  .cambria-rcc h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .cambria-rcc p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .cambria-rcc img.img-fluid {
    width: 100%;
  }
}

/* =========================================
   GLOBAL STYLE
========================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  background-color: #F0F3F5;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.grecaptcha-badge {
  visibility: hidden;
}

.font-didot, .feature-card h3 {
  font-family: "GFS Didot", serif;
  font-weight: 400;
  font-style: normal;
}

.font-jakarta, .faq-question span, .faq-question h3, .feature-card h4, .card-front .card-title, .tag-pills-container .tag-pills, .cmb-form textarea,
.cmb-form input {
  font-family: "Plus Jakarta Sans", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "GFS Didot", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: clamp(35px, 4.2vw, 80px);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

@media (max-width: 768px) {
  br {
    display: none;
  }
}

.primary-cta {
  background-color: #9000FF;
  color: #fff;
  border-radius: 2px;
  min-height: 50px;
  display: inline-block;
  line-height: 50px;
  padding: 0 15px;
  min-width: 160px;
  text-align: center;
}
.primary-cta:hover {
  background-color: #AA3BFF;
  color: #fff;
  text-decoration: none;
  transition: ease 0.3s;
}
@media (max-width: 425px) {
  .primary-cta {
    width: 100%;
  }
}

.secondary-cta {
  color: #fff;
  border-radius: 2px;
  min-height: 50px;
  display: inline-block;
  line-height: 50px;
  padding: 0 15px;
  min-width: 160px;
  text-align: center;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(91, 33, 176);
  -o-border-image: initial;
     border-image: initial;
}
.secondary-cta:hover {
  background-color: rgb(91, 33, 176);
  border: 1px solid transparent;
  text-decoration: none;
  color: #fff;
  transition: ease 0.3s;
}
@media (max-width: 425px) {
  .secondary-cta {
    width: 100%;
  }
}

.tertiary-cta {
  background-color: #6300b7;
  color: #fff;
  border-radius: 2px;
  min-height: 50px;
  display: inline-block;
  line-height: 50px;
  padding: 0 15px;
  min-width: 160px;
  text-align: center;
}
.tertiary-cta:hover {
  background-color: #44017d;
  color: #fff;
  text-decoration: none;
  transition: ease 0.3s;
}

p {
  color: #5F6B7A;
  line-height: 28px;
}

.dotted-text::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  margin: 0 8px 3px 0;
}

.dotted-text--black::before {
  background-color: #111827;
}

.dotted-text--purple::before {
  background-color: #7d32f4;
}

.color-primary {
  color: #212529;
}

.color-secondary-text, .card-front .card-title {
  color: #5F6B7A;
}

.color-white {
  color: #fff;
}

.color-accent {
  color: #8800FF;
}

.color-accent2 {
  color: #7c31f2 !important;
}

.color-accent3 {
  color: #2f1263 !important;
}

.filter-primary {
  filter: invert(17%) sepia(67%) saturate(7222%) hue-rotate(259deg) brightness(83%) contrast(91%);
}

.filter-accent {
  filter: invert(11%) sepia(64%) saturate(4805%) hue-rotate(269deg) brightness(111%) contrast(129%);
}

.filter-invert {
  filter: invert(200%) sepia(122%) saturate(7027%) hue-rotate(259deg) brightness(50%) contrast(195%);
}

.filter-white {
  filter: invert(100%) sepia(0%) saturate(7442%) hue-rotate(74deg) brightness(98%) contrast(113%);
}

.link-primary {
  color: #6300b7 !important;
  font-weight: 500;
  transition: ease 0.3s;
}
.link-primary:hover {
  color: #44017d !important;
  transition: color 0.25s ease;
}

.link-secondary {
  color: #FFF;
  font-weight: 500;
}
.link-secondary:hover {
  color: #FFF;
  transition: color 0.25s ease;
}

.link-tertiary {
  color: #5F6B7A;
  font-weight: 500;
}
.link-tertiary:hover {
  color: #212224;
  transition: color 0.25s ease;
  text-decoration: none !important;
}

.link-accent2 {
  color: #cc8fff !important;
  font-weight: 500;
  transition: ease 0.3s;
}
.link-accent2:hover {
  color: #cc8fff !important;
  opacity: 0.8;
  transition: color 0.25s ease;
}

.background-white {
  background-color: #fff !important;
}

.background-transparent {
  background-color: transparent !important;
}

.background-mute-purple {
  background-color: #1f1a40 !important;
}
.background-mute-purple h2, .background-mute-purple h3 {
  color: #fff;
}
.background-mute-purple p, .background-mute-purple li {
  color: #888d9c;
}

.background-deep-purple {
  background-color: #171233;
}
.background-deep-purple h2, .background-deep-purple h3, .background-deep-purple h4 {
  color: #fff;
}
.background-deep-purple p,
.background-deep-purple .micro-text {
  color: #888d9c !important;
}
@media (max-width: 376px) {
  .background-deep-purple .micro-text {
    letter-spacing: 1.5px;
  }
}

.micro-text {
  letter-spacing: 4px;
  font-size: 13.5px;
  margin-right: 5px;
  font-size: clamp(12px, 1.3vw, 13.5px);
}
@media (max-width: 425px) {
  .micro-text {
    line-height: 2;
  }
}
@media (max-width: 376px) {
  .micro-text {
    letter-spacing: 1.5px;
  }
}

.height-unset {
  height: unset !important;
}

.section-content {
  padding: clamp(60px, 8vw, 120px) 0;
}

/* stats section */
.stats-section {
  background-color: #E8ECEE;
  padding: 25px;
}
.stats-section .stat-item .stat-number {
  font-family: "GFS Didot", serif;
  font-size: 32px;
  font-size: clamp(24px, 3.6vw, 32px);
}
.stats-section .stat-item .stat-label {
  text-transform: uppercase;
  color: #5F6B7A;
  font-size: clamp(14px, 1.3vw, 18px);
}
@media (min-width: 600px) {
  .stats-section .stat-item .stat-label br {
    display: none;
  }
}

.tag-pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: auto;
  -moz-column-gap: 1px;
       column-gap: 1px;
  row-gap: 10px;
}
@media (max-width: 1200px) {
  .tag-pills-container {
    display: block;
  }
}
.tag-pills-container .tag-pills {
  background-color: #3a1c77;
  padding: 5px 10px;
  color: #BEC3C9;
  border-radius: 3px;
  font-weight: 100;
  margin-right: 10px;
  opacity: 0.9;
  transition: 0.5s;
  font-size: 12px;
}
@media (max-width: 1200px) {
  .tag-pills-container .tag-pills {
    display: inline-block;
    margin-bottom: 15px;
  }
}
.tag-pills-container .tag-pills:hover {
  opacity: 1;
  color: #fff;
}

.btn {
  border: 0;
}

.cta-link {
  display: block;
  font-weight: 500;
  text-decoration: none;
  transition: ease 0.3s;
}
.cta-link:hover {
  text-decoration: none;
}
.cta-link img {
  margin-right: 3px;
}

.cta-link--black {
  color: #111827;
}
.cta-link--black:hover {
  color: #630ED4;
}

.cta-link--white {
  color: #FFF;
}
.cta-link--white:hover {
  color: #630ED4;
}

/* =========================================
  VARIALBLE COLOR
========================================= */
/* =========================================
   GLOBAL GRIDS CARDS
========================================= */
.grid-col-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-col-4 {
    grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
  }
}
@media (max-width: 425px) {
  .grid-col-4 {
    grid-template-columns: repeat(1, 1fr); /* Creates 1 equal column */
  }
}

.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .grid-col-5 {
    grid-template-columns: repeat(3, 1fr); /* Creates 2 equal columns */
  }
}
@media (max-width: 425px) {
  .grid-col-5 {
    grid-template-columns: repeat(1, 1fr); /* Creates 1 equal column */
  }
}

.flex-col-3 {
  width: calc(33.33% - 50px);
}

.card-grid {
  display: grid;
  gap: 16px; /* Spacing between items */
}

.card-grid-item {
  background-color: #fff;
  color: white;
  text-align: center;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.card-grid-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transform: translate(0, -5px);
}
.card-grid-item:hover .card-front {
  opacity: 0;
  visibility: visible;
  transition: all 0.2s ease;
}
.card-grid-item:hover .card-hidden {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}
@media (max-width: 425px) {
  .card-grid-item {
    min-height: 6rem;
  }
}

.card-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 18px;
  margin-top: 32px;
}
.card-flex .card-flex-item {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0 4px 10px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.card-flex .card-flex-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transform: translate(0, -5px);
}
.card-flex .card-flex-item:hover .card-front {
  opacity: 0;
  visibility: visible;
  transition: all 0.2s ease;
}
.card-flex .card-flex-item:hover .card-hidden {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}
.card-flex .card-flex-item figure {
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #bbb;
}
.card-flex .card-flex-item figure img {
  height: 40px;
  width: 40px;
}
.card-flex .card-flex-item .card-flex-title {
  margin-bottom: 18px;
  font-weight: 500;
}
.card-flex .card-flex-item .card-flex-content {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}

.card-icon {
  min-height: 40px;
  min-width: 40px;
}

.card-front {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.2s ease;
  opacity: 1;
  width: 100%;
  height: 100%;
  align-content: space-evenly;
  overflow: hidden;
  padding: 15px;
}
.card-front img {
  height: 40px;
  width: 40px;
  padding-bottom: 1rem;
}
.card-front .card-title {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px;
}

.card-hidden {
  height: 100%;
  width: 100%;
  text-align: center;
  margin: 0;
  background-color: #fff;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  line-height: 1.5em;
  align-content: center;
}
.card-hidden p {
  font-size: 12px;
  line-height: 1.5;
}

/* grid purple style */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0 auto;
  gap: 2px;
}
@media (max-width: 525px) {
  .feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-card {
  padding: 28px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-card h3 {
  font-size: clamp(32px, 5vw, 40px);
}
.feature-card h4 {
  font-weight: 500;
  font-size: 18px;
}

/* =========================================
   GLOBAL LOGO TABS
========================================= */
.logo-item {
  opacity: 0;
  transform: translateY(20px);
}
.logo-item a {
  color: #9FA9B4;
  transition: ease 0.2s;
}
.logo-item a:hover {
  text-decoration: none;
  color: #fff;
}

.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 475px) {
  .tab-switcher {
    display: block;
  }
}
.tab-switcher .nav-link {
  padding: 10px 20px;
  border-radius: 2px;
  color: #9FA9B4;
  transition: all 0.25s ease;
}
.tab-switcher .nav-link.active {
  background: #8800FF;
  color: #fff;
}
.tab-switcher .nav-link:hover {
  color: #fff;
}
@media (max-width: 475px) {
  .tab-switcher .nav-link {
    text-align: center;
  }
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 18px;
  margin-top: 32px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #1E1841;
  border-radius: 2px;
  font-size: 16px;
  color: #9FA9B4;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.logo-item .logo-icon {
  width: 35px;
  height: 35px;
  opacity: 0.8;
  transition: all 0.25s ease;
}
.logo-item:hover .logo-icon {
  opacity: 1;
  transition: all 0.25s ease;
}
.logo-item:hover {
  color: #cdd3da;
  transition: all 0.25s ease;
  transform: translateY(-4px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
}

.tab-pane.active .logo-item {
  animation: logoFadeUp 0.5s ease forwards;
}
.tab-pane.active .logo-item:nth-child(1) {
  animation-delay: 0.05s;
}
.tab-pane.active .logo-item:nth-child(2) {
  animation-delay: 0.1s;
}
.tab-pane.active .logo-item:nth-child(3) {
  animation-delay: 0.15s;
}
.tab-pane.active .logo-item:nth-child(4) {
  animation-delay: 0.2s;
}
.tab-pane.active .logo-item:nth-child(5) {
  animation-delay: 0.25s;
}
.tab-pane.active .logo-item:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes logoFadeUp {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .tab-switcher {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .tab-switcher .nav-link {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
  .logo-grid {
    gap: 12px;
    margin-top: 24px;
  }
  .logo-item {
    padding: 10px 14px;
    font-size: 14px;
    gap: 8px;
  }
}
/* =========================================
   GLOBAL ACCORDION
========================================= */
.faq-accordion {
  text-align: left;
  margin-top: 35px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: auto;
}
.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  color: #212529;
}
.faq-question:focus {
  outline: none;
}
.faq-question span:first-child,
.faq-question h3:first-child {
  flex: 1;
  text-align: left;
}
.faq-question span, .faq-question h3 {
  color: #212529;
  font-size: 1rem;
}

.faq-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}
.faq-icon img {
  display: block;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded=true] .faq-icon img {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 40px 24px 0;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  line-height: 28px;
  color: #5F6B7A;
}

.collapse.show .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.collapsing {
  transition: height 0.35s ease;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 0;
    gap: 16px;
  }
  .faq-answer {
    padding: 0 28px 18px 0;
    max-width: 100%;
  }
  .faq-icon img {
    width: 14px;
    height: 14px;
  }
}
/*- START accordion timeline -*/
#accordionProcess {
  max-width: 800px;
  margin: auto;
}
#accordionProcess .card::after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #e3e3e3;
  position: absolute;
  left: 28px;
}
#accordionProcess .card {
  border: none;
}
#accordionProcess .card:first-child::after {
  top: 24px;
}
#accordionProcess .card:last-child::after {
  bottom: 25px;
}
#accordionProcess .process-number {
  background-color: #6300b7;
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 15px;
}
#accordionProcess .process-number::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: #e3e3e3;
  position: absolute;
  top: 18px;
  z-index: -1;
  left: 100%;
}
#accordionProcess .process-number::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: rgba(227, 227, 227, 0.68);
  position: absolute;
  border-radius: 100%;
  left: 118%;
  top: 10px;
}
#accordionProcess .btn-block {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
  padding-left: 0;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  padding: 0 10px;
  margin: 10px 0;
}
#accordionProcess .card-header {
  background-color: transparent;
  padding: 0;
  border: none;
}
#accordionProcess .card-header h2 {
  text-decoration: none;
}
#accordionProcess .button-content {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0 4px 10px;
  padding: 1rem 1rem;
  border-radius: 2px;
}
#accordionProcess .button-content::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: rgb(155, 155, 155);
  position: absolute;
  border-radius: 100%;
  left: 56px;
  top: 45%;
  z-index: 20;
}
#accordionProcess .button-content h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
#accordionProcess .card-body {
  padding-left: 5rem;
}
@media (max-width: 768px) {
  #accordionProcess .button-content {
    font-size: 1rem;
  }
}

/*- END accordion timeline -*/
/* =========================================
   GLOBAL CARD MODEL
========================================= */
.card-model {
  background-color: #fff;
  padding: 60px 33px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.card-model .micro-text {
  color: #5F6B7A;
  letter-spacing: 2px;
}
@media (max-width: 376px) {
  .card-model .micro-text {
    letter-spacing: 1.5px;
  }
}
.card-model h3 {
  margin-top: 22px;
  margin-bottom: 20px;
  font-size: clamp(24px, 4vw, 24px);
}
.card-model .cta-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-model .cta-link img {
  transition: transform 0.3s ease;
}
.card-model p {
  margin-bottom: 42px;
}
.card-model:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.card-model:hover .cta-link img {
  transform: translateX(4px);
}
.card-model .card-model-link {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card-model .card-model-link .arrow-link {
  display: inline-block;
  transition: transform 0.25s ease;
}
.card-model .card-model-link:hover {
  text-decoration: none;
}
.card-model .card-model-link:hover .arrow-link {
  transform: translate(4px, -8px);
  transition-delay: 0.05s;
}

/* =========================================
   LIST STYLE
========================================= */
.list-circle {
  list-style-type: none;
}
.list-circle li {
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" %3F><svg height="12px" version="1.1" viewBox="0 0 20 20" width="12px" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" xmlns:xlink="http://www.w3.org/1999/xlink"><title/><desc/><defs/><g fill="none" fill-rule="evenodd" id="Page-1" stroke="none" stroke-width="1"><g fill="%236300b7" id="Core" transform="translate(-296.000000, -338.000000)"><g id="radio-button-off" transform="translate(296.000000, 338.000000)"><path d="M10,0 C4.5,0 0,4.5 0,10 C0,15.5 4.5,20 10,20 C15.5,20 20,15.5 20,10 C20,4.5 15.5,0 10,0 L10,0 Z M10,18 C5.6,18 2,14.4 2,10 C2,5.6 5.6,2 10,2 C14.4,2 18,5.6 18,10 C18,14.4 14.4,18 10,18 L10,18 Z" id="Shape"/></g></g></g></svg>');
  background-repeat: no-repeat;
  background-position: left 8px;
  padding: 0px 0 8px 30px;
  font-weight: 300;
  color: #5F6B7A;
}
.list-circle li strong {
  font-weight: 600;
  color: #212529 !important;
}

.list-svg-icon {
  list-style: none;
  margin-bottom: 0;
}
.list-svg-icon li {
  display: flex;
}
.list-svg-icon img {
  margin-right: 10px;
  height: 100%;
}

.list-circle-check,
.icon-circle-check--lightpurple {
  padding-top: 0;
}
.list-circle-check li,
.icon-circle-check--lightpurple li {
  list-style-type: none;
  color: #5F6B7A;
  line-height: 1.5;
}
.list-circle-check li svg,
.icon-circle-check--lightpurple li svg {
  color: #8800FF;
  display: inline-block;
  border: 1px solid #8800FF;
  border-radius: 100%;
  padding: 2px;
  margin-right: 5px;
  background: #fff;
}
.list-circle-check li a,
.icon-circle-check--lightpurple li a {
  color: #5F6B7A;
  font-weight: normal;
}
.list-circle-check li a:hover,
.icon-circle-check--lightpurple li a:hover {
  color: #8800FF;
}

.list-circle-check li {
  background-image: url('data:image/svg+xml,<svg fill="%236300b7" width="20px" height="20px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M 16 3 C 8.800781 3 3 8.800781 3 16 C 3 23.199219 8.800781 29 16 29 C 23.199219 29 29 23.199219 29 16 C 29 14.601563 28.8125 13.207031 28.3125 11.90625 L 26.6875 13.5 C 26.886719 14.300781 27 15.101563 27 16 C 27 22.101563 22.101563 27 16 27 C 9.898438 27 5 22.101563 5 16 C 5 9.898438 9.898438 5 16 5 C 19 5 21.695313 6.195313 23.59375 8.09375 L 25 6.6875 C 22.699219 4.386719 19.5 3 16 3 Z M 27.28125 7.28125 L 16 18.5625 L 11.71875 14.28125 L 10.28125 15.71875 L 15.28125 20.71875 L 16 21.40625 L 16.71875 20.71875 L 28.71875 8.71875 Z"></path></svg>');
  background-repeat: no-repeat;
}

.icon-circle-check--lightpurple li {
  background-image: url('data:image/svg+xml,<svg fill="%23cc8fff" width="20px" height="20px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M 16 3 C 8.800781 3 3 8.800781 3 16 C 3 23.199219 8.800781 29 16 29 C 23.199219 29 29 23.199219 29 16 C 29 14.601563 28.8125 13.207031 28.3125 11.90625 L 26.6875 13.5 C 26.886719 14.300781 27 15.101563 27 16 C 27 22.101563 22.101563 27 16 27 C 9.898438 27 5 22.101563 5 16 C 5 9.898438 9.898438 5 16 5 C 19 5 21.695313 6.195313 23.59375 8.09375 L 25 6.6875 C 22.699219 4.386719 19.5 3 16 3 Z M 27.28125 7.28125 L 16 18.5625 L 11.71875 14.28125 L 10.28125 15.71875 L 15.28125 20.71875 L 16 21.40625 L 16.71875 20.71875 L 28.71875 8.71875 Z"></path></svg>');
  background-repeat: no-repeat;
}

/* =========================================
   GLOBAL ANIMATION SYSTEM
========================================= */
.arrow-link {
  position: absolute;
  right: 30px;
  top: 30px;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}
/* scroll */
.scroll-text {
  transform: rotate(90deg);
  color: #fff;
  position: absolute;
  bottom: 20%;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform-origin: left center;
  animation: scroll-enter 0.8s ease forwards;
}
@media (max-width: 576px) {
  .scroll-text {
    left: 20px;
    bottom: 110px;
  }
}
.scroll-text .arrow {
  display: inline-block;
}
.scroll-text .arrow img {
  width: 14px;
  opacity: 0.6;
}
.scroll-text.active .arrow img {
  animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-enter {
  0% {
    opacity: 0;
    transform: rotate(90deg) translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: rotate(90deg) translateX(0);
  }
}
/* =========================================
   GLOBAL MOTION SYSTEM
   Reusable / Lightweight / Multi-page Ready
========================================= */
:root {
  --motion-duration: 1.5s;
  --motion-distance: 24px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-stagger: 0.3s;
  --motion-blur: 8px;
}

.motion {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease), filter var(--motion-duration) var(--motion-ease);
}

.motion.is-visible {
  opacity: 1;
}

.motion-fade {
  transform: none;
}

.motion-up {
  transform: translateY(var(--motion-distance));
}

.motion-down {
  transform: translateY(calc(var(--motion-distance) * -1));
}

.motion-left {
  transform: translateX(calc(var(--motion-distance) * -1));
}

.motion-right {
  transform: translateX(var(--motion-distance));
}

.motion-scale {
  transform: scale(0.96);
}

.motion-blur {
  filter: blur(var(--motion-blur));
  transform: translateY(12px);
}

.motion.is-visible.motion-fade,
.motion.is-visible.motion-up,
.motion.is-visible.motion-down,
.motion.is-visible.motion-left,
.motion.is-visible.motion-right,
.motion.is-visible.motion-scale,
.motion.is-visible.motion-blur {
  transform: none;
}

.motion.is-visible.motion-blur {
  filter: blur(0);
}

.motion-fast {
  transition-duration: 0.45s;
}

.motion-slow {
  transition-duration: 1s;
}

.motion-delay-1 {
  transition-delay: 0.08s;
}

.motion-delay-2 {
  transition-delay: 0.16s;
}

.motion-delay-3 {
  transition-delay: 0.24s;
}

.motion-delay-4 {
  transition-delay: 0.32s;
}

.motion-delay-5 {
  transition-delay: 0.4s;
}

.motion-delay-6 {
  transition-delay: 0.48s;
}

.motion-stagger > .motion:nth-child(1) {
  transition-delay: calc(var(--motion-stagger) * 1);
}
.motion-stagger > .motion:nth-child(2) {
  transition-delay: calc(var(--motion-stagger) * 2);
}
.motion-stagger > .motion:nth-child(3) {
  transition-delay: calc(var(--motion-stagger) * 3);
}
.motion-stagger > .motion:nth-child(4) {
  transition-delay: calc(var(--motion-stagger) * 4);
}
.motion-stagger > .motion:nth-child(5) {
  transition-delay: calc(var(--motion-stagger) * 5);
}
.motion-stagger > .motion:nth-child(6) {
  transition-delay: calc(var(--motion-stagger) * 6);
}

.motion-hover-lift {
  transition: transform 0.35s var(--motion-ease), box-shadow 0.35s var(--motion-ease);
}

.motion-hover-lift:hover {
  transform: translateY(-6px);
}

.motion-hover-arrow img,
.motion-hover-arrow svg {
  transition: transform 0.3s ease;
}

.motion-hover-arrow:hover img,
.motion-hover-arrow:hover svg {
  transform: translate(4px, -4px);
}

.motion-parallax {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.08s linear;
}

@media (max-width: 767.98px) {
  .motion-parallax {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion,
  .motion-hover-lift,
  .motion-hover-arrow img,
  .motion-hover-arrow svg,
  .motion-parallax {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* =========================================
   GLOBAL VARIABLES
   Reusable / Lightweight / Multi-page Ready
========================================= */
.testimonial-slider,
.portfolio-slider {
  padding-bottom: 35px !important;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testimonial-slider .testimonial-card,
.testimonial-slider .portfolio-card,
.portfolio-slider .testimonial-card,
.portfolio-slider .portfolio-card {
  background: #FFFFFF;
  box-shadow: 0px 20px 20px rgba(59, 42, 111, 0.03);
  border-radius: 2px;
  padding: 38px 24px;
  border-radius: 2px;
  height: 100%;
  cursor: grab;
}
.testimonial-slider .testimonial-card h3,
.testimonial-slider .portfolio-card h3,
.portfolio-slider .testimonial-card h3,
.portfolio-slider .portfolio-card h3 {
  font-size: 24px;
}
.testimonial-slider .testimonial-card .sector-name,
.testimonial-slider .portfolio-card .sector-name,
.portfolio-slider .testimonial-card .sector-name,
.portfolio-slider .portfolio-card .sector-name {
  display: block;
  color: #5F6B7A;
}
.testimonial-slider .testimonial-card .star-rating,
.testimonial-slider .portfolio-card .star-rating,
.portfolio-slider .testimonial-card .star-rating,
.portfolio-slider .portfolio-card .star-rating {
  margin-bottom: 10px;
  margin-top: 10px;
  display: block;
}
.testimonial-slider .testimonial-card p,
.testimonial-slider .portfolio-card p,
.portfolio-slider .testimonial-card p,
.portfolio-slider .portfolio-card p {
  margin-top: 25px;
}
.testimonial-slider .testimonial-card strong,
.testimonial-slider .portfolio-card strong,
.portfolio-slider .testimonial-card strong,
.portfolio-slider .portfolio-card strong {
  font-weight: 700;
}

.background-deep-purple .testimonial-slider .testimonial-card,
.background-deep-purple .testimonial-slider .portfolio-card,
.background-deep-purple .portfolio-slider .testimonial-card,
.background-deep-purple .portfolio-slider .portfolio-card {
  background-color: #1f1a40;
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto !important;
}

.swiper-wrapper .portfolio-card .slide-container .img-prev {
  width: auto;
}

/*- START card slider -*/
.slide-container {
  margin: auto;
  width: 100%;
  height: 270px;
  max-width: 350px;
  position: relative;
  padding: 0 15px;
  background-color: transparent;
}
.slide-container .proj-preview {
  position: relative;
  align-items: center;
  justify-content: center;
  display: block;
  transition: ease 0.3s;
}
.slide-container .proj-preview .card {
  box-shadow: 0 5px 20px 0 rgba(64, 47, 153, 0.22), 0 5px 50px 0 rgba(64, 47, 153, 0.22);
  margin: 0;
  padding: 0;
  overflow: hidden;
  transform: rotate(0deg);
  transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  background-color: #fff;
}
.slide-container .proj-preview .card:first-child {
  width: 220px;
  height: 240px;
  z-index: 6;
  margin: auto;
}
.slide-container .proj-preview .card:nth-child(2),
.slide-container .proj-preview .card:nth-child(3) {
  position: absolute;
  top: 60px;
  width: 180px;
  height: 210px;
  opacity: 0.8;
  z-index: 2;
}
.slide-container .proj-preview .card:nth-child(2) {
  right: 0;
}
.slide-container .proj-preview .card:nth-child(3) {
  left: 0;
}
.slide-container .proj-preview img {
  display: block;
  max-width: 100%;
  align-self: center;
  transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
  opacity: 1;
}
.slide-container .proj-preview img.lazy {
  visibility: hidden;
  opacity: 0;
}
.slide-container .proj-preview img:not(.lazy) {
  height: auto;
}
.slide-container .proj-preview:hover {
  padding-top: 10px;
}
.slide-container .proj-preview:hover .card {
  padding: 0;
  overflow: hidden;
}
.slide-container .proj-preview:hover .card:first-child {
  width: 160px;
  height: 300px;
}
.slide-container .proj-preview:hover .card:nth-child(2),
.slide-container .proj-preview:hover .card:nth-child(3) {
  width: 160px;
  height: 220px;
  top: 40px;
  opacity: 1;
}
.slide-container .proj-preview:hover .card:nth-child(2) {
  right: 0;
  transform: rotate(-5deg);
}
.slide-container .proj-preview:hover .card:nth-child(3) {
  left: 0;
  transform: rotate(5deg);
}

/*- END card slider -*/
/* =========================================
   GLOBAL CUSTOM ALIGNMENTS
========================================= */
.align-v {
  height: 100%;
  align-content: center;
}

@media (max-width: 425px) {
  .d-xs-block {
    display: block !important;
  }
}

@media (max-width: 425px) {
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 2rem !important;
  }
  .ml-xs-0 {
    margin-left: 0 !important;
  }
  .pl-xs-0 {
    padding-left: 0 !important;
  }
  .p-xs-4 {
    padding: 2rem !important;
  }
}
/* =========================================
   GLOBAL CUSTOM WIDTH and SPACES
========================================= */
.w-16rem {
  width: 16.25rem;
  padding-left: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 425px) {
  .w-16rem {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media (max-width: 425px) {
  .w-75 {
    width: 100% !important;
  }
}

.banner-content {
  position: absolute !important;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  bottom: initial;
  align-content: center;
}

.banner-bg {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  width: 100%;
  opacity: 0.1;
}
.banner-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("../img/temp/grid-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.int-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.int-banner-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0.1;
}

.int-banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.int-hero-header,
.int-hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .int-hero-section {
    min-height: 100svh;
  }
  .int-banner-img {
    -o-object-position: center;
       object-position: center;
  }
}
.btn-see-more:hover #SeeMore {
  color: #fff;
}
.btn-see-more #SeeMore {
  color: #fff;
  display: block;
  margin-left: 5px;
  width: 25px;
  height: 25px;
  float: right;
}
.btn-see-more #SeeMore .icon-expand {
  margin-top: 15px;
}
.btn-see-more #SeeMore .icon-expand, .btn-see-more #SeeMore .icon-compress {
  width: 20px;
  height: 20px;
}
.btn-see-more.is-active #SeeMore .icon-expand {
  margin-top: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card-grid-icon {
  padding: 60px 30px;
  height: 100%;
}
.card-grid-icon img.filter-white {
  margin-bottom: 15px;
}/*# sourceMappingURL=style-about.css.map */