@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("https://pro.fontawesome.com/webfonts/fa-brands-400.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Agrandir";
  src: url("/wp-content/themes/arimac/assets/fonts/Agrandir-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Agrandir";
  src: url("/wp-content/themes/arimac/assets/fonts/Agrandir-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Agrandir";
  src: url("/wp-content/themes/arimac/assets/fonts/Agrandir-TextBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Navigation styles extracted from index.html */
:root {
  --primary-color: #e63c2e;
  --black: #000000;
  --white: #ffffff;
  --light-black: #2f2f2f;
  --dark-theme-white: #eaeaea;
  --sub-nav-border: rgba(208, 208, 208, 0.4);
}

* {
  box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Agrandir", sans-serif !important;
	color: var(--light-black);
	line-height: 1.5;
}

* {
	-webkit-tap-highlight-color: transparent;
}

.mb-0 {
	margin-bottom: 0;
}
/*img {
  background-color: #f2f2f2;
  transition: opacity 0.3s ease;
}

img.lazyloaded {
  opacity: 1;
}*/

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 0px 0px 0 rgba(78, 78, 78, 0.1),
    0 0px 30px 0 rgba(83, 82, 82, 0.1);
}

.nav-wrap {
  display: block;
  width: 88.9%;
  margin: 0 auto;
  background-color: var(--white);
  padding: 15px 0;
}

.nav-wrap-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
	.logo-wrap {
		order: 0;
		width: calc(100% - 238px);
	}
	.nav-mid-section {
		order: 1;
	}
}
@media (max-width: 1200px) {
  .nav-mid-section {
    margin-left: auto;
  }
}
@media (max-width: 1200px){
	#mega-menu-wrap-primary .mega-menu-toggle{
		display:flex !important;		
	}
}
#mega-menu-wrap-primary{
	display:flex!important;
}
@media only screen and (max-width: 1200px) {
    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
        left: 0;
    }
}

@media only screen and (max-width: 1200px) {
    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        width: 100%;
        padding: 72px 16px 16px;
        background: #ffffff;
    }
} 

@media only screen and (max-width: 1200px) {
    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        flex-direction: column;
        flex-wrap: nowrap;
        background-color: white;
        padding: 0px;
        display: none;
        position: fixed;
        width: 300px;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        top: 0;
        box-sizing: border-box;
        transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999999999;
        overscroll-behavior: contain;
        visibility: hidden;
        display: flex;
    }
}
@media only screen and (max-width: 1200px) {
    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        left: -100%;
    }
}
@media only screen and (max-width: 1200px) {
    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
        display: flex;
        visibility: visible;
    }
}

/* @media only screen and (max-width: 1200px){
	#mega-menu-wrap-primary .mega-menu-toggle{
		display:block!important;
	}
} */
.nav-logo {
  width: 50px;
  cursor: pointer;
	height: auto;
}

.nav-logo.light {
  display: block;
}

.nav-logo.dark {
  display: none;
}

.link-wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.link-wrap--dropdown .dropdown-trigger.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-link {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--light-black);
  line-height: 21px;
  text-decoration: none;
  padding: 3px 6px;
  margin: 0 6px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color);
}

.dropdown-arrow {
  transition: 0.4s;
}

.dropdown-arrow.light {
  display: block;
}

.dropdown-arrow.dark {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  padding: 12px 20px;
  border: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.07);
  display: none;
  min-width: 200px;
}

.dropdown-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-menu a {
  padding: 7px;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  line-height: 21px;
  text-decoration: none;
  display: block;
  transition: 0.4s;
}

.dropdown-menu a:hover {
  color: var(--primary-color);
}

.dropdown.open .dropdown-menu {
  display: block;
}

.company-dropdown {
  min-width: 425px;
  padding: 16px 20px;
}

.company-dropdown-grid {
  display: grid;
  grid-template-columns: 43% 27% 30%;
  gap: 20px;
  width: 100%;
}

.company-column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--sub-nav-border);
}

.company-column:last-child {
  border-right: none;
}

.company-column-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-black);
  margin: 0 0 8px 0;
  padding: 0;
}

.company-link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  text-decoration: none;
  transition: 0.4s;
  margin-bottom: 2px;
}

.company-link:hover {
  color: var(--primary-color);
}

.contact-btn-header .banner-contact-btn {
  opacity: 0;
  transition: all 0.3s ease;
  height: 40px;
  padding: 6px 18px;
  min-width: 140px;
  font-size: 16px;
  line-height: 18px;
  pointer-events: none;
  border-radius: 999px;
  border: none;
  color: var(--white);
  background: linear-gradient(277.75deg, #9747ff 29.69%, #e63c2e 97.02%);
  cursor: pointer;
}

.contact-btn-header.btn--active .banner-contact-btn {
  opacity: 1;
  pointer-events: all;
}

.toggle-mode-wrap {
  width: 26px;
}

.theme-switch-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  margin: 0;
  border: none;
  cursor: pointer;
}

.theme-switch-wrap .switch-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--light-black);
  background: var(--white);
  cursor: pointer;
  transition: 0.4s;
}

.theme-switch-wrap .switch-btn.btn-light {
  background: var(--light-black);
}

.theme-switch-wrap .switch-btn.btn-dark {
  background: var(--white);
}

.mobile-menu {
  margin-left: 32px;
  display: none;
}

.menu-icon {
  display: block;
  width: 16px;
  height: 12px;
  border: none;
  position: relative;
  z-index: 100;
  appearance: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  box-shadow: none;
}

.menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  margin: auto;
  background: var(--black);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.menu-icon .top {
  transform: translateY(-8px);
}

.menu-icon .bottom {
  transform: translateY(8px);
}

.menu-icon.active span {
  background: var(--primary-color);
}

.menu-icon.active .top {
  transform: rotate(-45deg);
}

.menu-icon.active .mid {
  transform: translateX(-20px) rotate(360deg);
  opacity: 0;
}

.menu-icon.active .bottom {
  transform: rotate(45deg);
}

.sidebar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 40%;
  margin-left: -40%;
  height: 100%;
  min-height: 100vh;
  background: var(--white);
  transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  z-index: 1100;
  overflow-y: auto;
}

.sidebar-wrap[data-collapse="true"] {
  margin: 0;
}

.sidebar-wrap-inner {
  width: 100%;
}

.sidebar-close-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  height: 58px;
  padding: 0 16px;
  margin-bottom: 8px;
}

.sidebar-close-wrap button {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.sidebar-close-wrap img.light {
  display: block;
}

.sidebar-close-wrap img.dark {
  display: none;
}

.sidebar-accordion {
  padding: 16px;
}

.accordion-item {
  border-bottom: 1.5px solid #ebebeb;
  margin-bottom: 24px;
}

.accordion-header {
  background-color: transparent;
  width: 100%;
  border: none;
  padding: 0 0 16px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: var(--light-black);
  cursor: pointer;
}

.accordion-header .caret {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.accordion-item.open .accordion-header .caret {
  transform: rotate(180deg);
}

.accordion-panel {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.35s ease;
}

.accordion-item.open .accordion-panel {
	height: auto;
	will-change: opacity;
	opacity: 1;
	height: auto;
	overflow-y: unset;
}

.accordion-item.active .caret {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.sub-link {
  padding: 0 16px 16px;
}

.sub-link a {
  display: block;
  font-size: 16px;
  text-decoration: none;
  color: var(--light-black);
  border-bottom: 1px solid #ebebeb;
  padding: 12px 0;
  font-weight: 400;
}

.sub-link a:last-child {
  border-bottom: none;
}

.sub-link-header {
  display: inline;
  font-weight: 600;
}

.sub-sub-link {
  display: block;
  margin-left: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1090;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 769px) {
  .nav-wrap {
    width: 92.2%;
    padding: 18px 0;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .link-wrap {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 992px) {
  .sidebar-wrap {
    width: 55%;
    margin-left: -55%;
  }
}

@media (max-width: 576px) {
  .sidebar-wrap {
    width: 100%;
    margin-left: -100%;
  }

  .contact-btn-header .banner-contact-btn {
    height: 36px;
    padding: 6px;
    min-width: 124px;
    font-size: 14px;
    line-height: 14px;
  }
}

html[data-theme="dark"] body {
	background: #262626;
}

html[data-theme="dark"] {
  background: #1a1a1a;
  color: var(--white);
}

html[data-theme="dark"] .fixed-nav,
html[data-theme="dark"] .nav-wrap {
  background: #1a1a1a;
}

html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .company-column-title,
html[data-theme="dark"] .company-link,
html[data-theme="dark"] .accordion-header,
html[data-theme="dark"] .sub-link a {
  color: var(--white);
}

html[data-theme="dark"] .nav-logo.light,
html[data-theme="dark"] .dropdown-arrow.light,
html[data-theme="dark"] .sidebar-close-wrap img.light {
  display: none;
}

html[data-theme="dark"] .nav-logo.dark,
html[data-theme="dark"] .dropdown-arrow.dark,
html[data-theme="dark"] .sidebar-close-wrap img.dark {
  display: block;
}

html[data-theme="dark"] .theme-switch-wrap .switch-btn {
  border-color: var(--white);
}

html[data-theme="dark"] .theme-switch-wrap .switch-btn.btn-dark {
  background: var(--white);
}

html[data-theme="dark"] .theme-switch-wrap .switch-btn.btn-light {
  background: var(--light-black);
}

html[data-theme="dark"] .menu-icon span,
html[data-theme="dark"] .menu-icon.active span {
  background: var(--white);
}

html[data-theme="dark"] .sidebar-wrap {
  background: #1a1a1a;
}

html[data-theme="dark"] .accordion-item {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .sub-link a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .dropdown-menu {
  background: var(--black);
  box-shadow: 0px 3.67px 5.13px 0px #0000000c;
}

html[data-theme="dark"] .dropdown-menu a {
  color: var(--white);
}

html[data-theme="dark"] .company-column {
  border-right: 1px solid var(--dark-theme-white);
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.mt-10 {
  margin-top: 40px;
}

.footer-wrap {
  background: linear-gradient(
      0deg,
      rgba(243, 243, 243, 0.5) 0%,
      rgba(243, 243, 243, 0.5) 100%
    ),
    #ffffff;
  position: relative;
  z-index: 0;
  margin-top: 0;
}

.footer-wrap-container {
  display: block;
  margin: 0 auto;
  width: 88.9%;
}

.footer-wrap-inner {
  padding-top: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f3f3f3;
}

.footer-wrap-inner .section-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 -12px;
}

.footer-wrap-inner .section {
  padding: 0 12px;
}

.footer-wrap-inner .section {
  flex: 1 1 0;
  min-width: 160px;
}

.footer-wrap-inner .section:last-child {
  flex: 0 0 auto;
}

.footer-wrap-inner .footer-bottom {
  padding: 0;
  justify-content: flex-start;
}

.footer-address-heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-black);
  line-height: 18px;
  margin: 0 0 24px;
}

.footer-address-sub {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #767676;
  margin: 0 0 8px;
  opacity: 0.6;
}

.footer-address-sub:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 38px;
}

.footer-bottom .social-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-bottom .social-media img {
  width: 40px;
  height: 40px;
}

.footer-bottom .social-media i{
	font-size: 20px !important;
}

.footer-bottom .social-media img.light {
  display: block;
}

.footer-bottom .social-media img.dark {
  display: none;
}

.footer-bottom .terms-section a {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  transition: 0.4s;
  display: block;
  text-decoration: none;
  color: var(--light-black);
  padding: 0 12px;
}

.footer-bottom .terms-section a:hover {
  color: var(--primary-color);
}

.footer-bottom .terms-section .copy-right {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: var(--light-black);
  opacity: 0.6;
  margin: 12px 0 0;
}

.mobile-footer {
  display: none;
  padding-top: 24px;
}

.mobile-footer .accordion-item {
  margin-bottom: 23px;
}

.mobile-footer .accordion-item:last-child {
  margin-bottom: 0;
}

.mobile-footer .accordion-header {
	font-family: "Agrandir", sans-serif !important;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	outline: 0;
	cursor: pointer;
	min-height: 48px;
	font-size: 26px;
	font-weight: 500;
	line-height: 39px;
	color: var(--light-black);
}

.mobile-footer .accordion-header .caret {
  font-size: 30px;
  display: flex;
  transition: 0.4s;
}

.mobile-footer .accordion-item.open .accordion-header .caret {
  transform: rotate(180deg);
}


.mobile-footer .accordion-panel {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.35s ease;
}


.mobile-footer .accordion-item.open .accordion-panel {
	height: auto;
	will-change: opacity;
	opacity: 1;
	height: auto;
	overflow-y: unset;
}

.mobile-footer .link-wrap {
	padding: 10px 0 0 10px;
	display: block !important;
}

.mobile-footer .link-wrap ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-footer .link-wrap ul.menu .menu-item a {
	font-size: 14px;
	line-height: 28px;
	display: block;
	font-weight: 500;
	color: #767676;
	text-decoration: none;
	transition: .4s;
	margin-bottom: 10px;
	text-decoration: none;
}

.mobile-footer .link-wrap ul.menu .menu-item a:hover {
	color: #e63c2e;
}

.mobile-footer .footer-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  color: #767676;
  text-decoration: none;
  transition: 0.4s;
  margin-bottom: 10px;
}

.mobile-footer .footer-link:hover {
  color: var(--primary-color);
}

.mobile-footer .width-50 {
  width: 48%;
}

.mobile-slider-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mobile-slider-section .slider-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--light-black);
  margin: 0;
}

.mobile-slider-section .slider-controls {
  display: flex;
  gap: 8px;
}

.mobile-slider-section .slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.mobile-slider-section .slider-btn:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.mobile-slider-section .slider-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-slider-section .slider-container::-webkit-scrollbar {
  display: none;
}

.mobile-slider-section .address-card {
  flex: 0 0 260px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
}

.mobile-slider-section .address-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-black);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.mobile-slider-section .address-card-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .footer-wrap-container {
    width: 92.2%;
  }

  .footer-wrap {
    margin-top: 100px;
  }

  .footer-wrap-inner {
    padding-top: 24px;
    padding-bottom: 22px;
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom .social-media {
    order: 2;
  }

  .footer-bottom .terms-section {
    order: 0;
    padding: 0 0 26px;
  }

  .mobile-footer {
    display: block;
  }
}

@media (max-width: 991.98px) {
	.footer-wrap {
		margin-top: 0;
	}
	.mobile-footer .accordion-item {
		margin-bottom: 18px;
		border-bottom: none;
	}
}

@media (max-width: 767.98px) {
  .footer-wrap-container {
    width: 91.5%;
  }
}

@media (max-width: 991.98px) {
	.mobile-footer .accordion-header {
		min-height: 24px;
		font-size: 16px;
		line-height: 24px;
		font-weight: 400;
		height: 24px;
	}

	.mobile-footer .accordion-header .caret {
		width: 26px;
		height: 26px;
	}

	.mobile-footer .footer-link {
		font-size: 14px;
		line-height: 28px;
	}
}

@media (max-width: 576px) {
  .mobile-footer .width-50 {
    width: 100%;
  }
}

@media (max-width: 480px) {
	.mobile-slider-section .slider-title {
		font-size: 16px;
	}
	.mobile-slider-section .slider-btn {
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 375px) {
  .footer-bottom .social-media {
    width: 100%;
    padding: 18px 0;
    justify-content: space-around;
  }

  .footer-bottom .social-media img {
    width: 35px;
    height: 35px;
  }
}

html[data-theme="dark"] .footer-wrap {
  background: #1a1a1a;
}

html[data-theme="dark"] .footer-wrap-inner {
  border-color: rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .footer-address-heading,
html[data-theme="dark"] .footer-address-sub,
html[data-theme="dark"] .mobile-footer .accordion-header,
html[data-theme="dark"] .mobile-footer .footer-link,
html[data-theme="dark"] .mobile-slider-section .slider-title,
html[data-theme="dark"] .footer-bottom .terms-section a,
html[data-theme="dark"] .footer-bottom .terms-section .copy-right {
  color: var(--white);
}

html[data-theme="dark"] .footer-address-sub,
html[data-theme="dark"] .footer-bottom .terms-section .copy-right {
  opacity: 0.8;
}

html[data-theme="dark"] .footer-bottom .social-media i {
	color: #fff;
}

html[data-theme="dark"] .footer-bottom .social-media img.light {
  display: none;
}

html[data-theme="dark"] .footer-bottom .social-media img.dark {
  display: block;
}

html[data-theme="dark"] .mobile-slider-section .slider-btn {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

html[data-theme="dark"] .mobile-slider-section .address-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .mobile-slider-section .address-card-title {
  color: var(--white);
}

html[data-theme="dark"] .mobile-slider-section .address-card-text {
  color: #ccc;
}

html[data-theme="dark"] .mobile-footer .accordion-header .caret {
	filter: brightness(0) invert(1);
}

:root {
  --gradient-theme: linear-gradient(277.75deg, #9747ff 29.69%, #e63c2e 97.02%);
  --cta-gradient: radial-gradient(42.33% 70.51% at 50% 50%, rgba(16, 16, 16, 0.93) 0%, #141414 100%);
}

.overflow-hidden {
  overflow: hidden;
}

.relative-section {
  position: relative;
}

.between-section-gap {
  padding: 70px 0;
}

.per-fix {
  padding-top: 75px;
}

.home-page-bg {
  background: #ffffff;
}

html[data-theme="dark"] .home-page-bg {
  background: radial-gradient(42.33% 70.51% at 50% 50%,#515151 0,#262626 100%);
}

/*.home-blog-section .blog-grid .blog-card:last-child {
  display: none;
}*/

.home-blog-section .blog-tiles .section-header-blog {
    flex-direction: row !important;
    gap: 1rem !important;
    align-items: center;
    justify-content: space-between;
}

.inline-block {
  display: inline-block;
}

.gradiant-bg-btn {
	font-family: "Agrandir", sans-serif !important;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
	padding: 12px 16px;
	border-radius: 100px;
	box-shadow: 0 11px 29px 0 rgba(255, 10, 10, 0.18);
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: color 0.4s;
	min-height: 48px;
	line-height: 0;
	border: none;
}

.gradiant-bg-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: 100px;
	background: #ffffff;
	z-index: -1;
	transition: all 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.gradiant-bg-btn:hover {
	color: #ffffff;
	text-decoration: none;
}

.gradiant-bg-btn:hover::before {
	width: 100%;
	background: transparent;
}

.gradiant-bg-btn svg, .gradiant-bg-btn img {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-left: 0;
	transition: margin-left 0.4s ease;
}

.gradiant-bg-btn:hover svg {
	margin-left: 7px;
}

.gradiant-bg-btn-weight {
  font-weight: 500;
}

.direction-button {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 157px;
  text-decoration: none;
  position: relative;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(264.67deg, #9747ff 0.77%, #e63c2e 90.19%) border-box;
  padding: 6px 8px;
  min-width: 153px;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  cursor: pointer;
  transition: all 0.6s;
  overflow: hidden;
  z-index: 0;
}

.direction-button::before {
  transition: all 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100px;
  z-index: 1;
}

.direction-button:hover::before {
  width: 100%;
}

.direction-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.direction-button .arrow-icon {
  margin-left: 8px;
  transition: 0.4s;
  width: 20px;
  position: relative;
  z-index: 2;
  color: #9747ff;
}

.direction-button .btn-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, #e63c2e 20%, #9747ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s;
}

.direction-button:hover .btn-text {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.direction-button:hover .arrow-icon {
  transform: translateX(0.25rem);
  color: #ffffff;
}

@media (max-width: 640px) {
  .direction-button {
    font-size: 0.8125rem;
    min-width: 140px;
    min-height: 44px;
    width: 140px;
  }
}

html[data-theme="dark"] .direction-button {
	background: linear-gradient(#1a1a1a, #1a1a1a) padding-box, linear-gradient(264.67deg, #9747ff .77%, #e63c2e 90.19%) border-box;
	border: 2px solid #0000;
}

html[data-theme="dark"] .direction-button::before {
	background: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
}

html[data-theme="dark"] .direction-button .arrow-icon {
	color: #9747ff;
}

html[data-theme="dark"] .direction-button .btn-text {
	background: linear-gradient(90deg, #e63c2e 20%, #9747ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #0000;
}

html[data-theme=dark] .direction-button:hover .btn-text {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

html[data-theme=dark] .direction-button:hover .arrow-icon {
    color: #fff;
}

.gradient-text-para .container-hero {
  display: block;
  width: 88.9%;
  margin: 0 auto;
  padding: 120px 20px 32px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .gradient-text-para .container-hero {
    width: 88.9%;
    padding: 40px 16px 40px 16px;
  }
}

.gradient-text-para .container-hero-more-pad {
  padding: 70px 20px 70px 20px;
}

.gradient-text-para .hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--light-black);
  margin-top: 0;
}

.gradient-text-para .hero-title .highlight {
  background: var(--gradient-theme);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 400;
}

@media (max-width: 1366px) {
  .gradient-text-para .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .gradient-text-para .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 1024px) {
  .gradient-text-para .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .gradient-text-para .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .gradient-text-para .hero-title {
    font-size: 25px;
  }
}

.gradient-text-para .hero-br {
  display: inline;
}

@media (max-width: 1024px) {
  .gradient-text-para .hero-br {
    display: none;
  }
}

.gradient-text-para .hero-subtitle {
  font-size: 28px;
  color: #767676;
  margin: 32px auto 0;
  font-weight: 400;
}

@media (max-width: 1366px) {
  .gradient-text-para .hero-subtitle {
    font-size: 26px;
	  line-height:39px;
  }
}

@media (max-width: 1200px) {
  .gradient-text-para .hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .gradient-text-para .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .gradient-text-para .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .gradient-text-para .hero-subtitle {
    font-size: 16px;
  }
}

html[data-theme="dark"] .gradient-text-para .hero-title,
html[data-theme="dark"] .gradient-text-para .hero-subtitle {
  color: var(--dark-theme-white);
}

.tab-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: auto;
  padding: 0 16px;
  
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-nav-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: "Agrandir", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height:24px;
  cursor: pointer;
  margin: 0 8px;
  text-wrap: nowrap;
  outline: none;
  border: 1px solid #f3f3f3;
  border-radius: 39px;
  box-shadow: none;
  padding: 12px 24px;
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s;
}
.tab-nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: black;
  transition: width 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: -1;
}
.tab-nav-item:hover::before {
  width: 100%;
}
.tab-nav-item:hover {
  color: white;
}
html[data-theme="dark"] .tab-nav-item:hover {
  color: white;
  border-color: var(--black)
}
/* .tab-nav-item span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 12px 24px;
  text-align: center;
  background: #f3f3f3;
  color: var(--light-black);
  transition: 0.4s;
  border-radius: 39px;
  border: 1px solid #f3f3f3;
} */

.tab-nav-item.active{
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.brands-logo-wrap {
  display: block;
  width: 73.9%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .brands-logo-wrap {
    width: 92.2%;
  }
}

@media (max-width: 767.98px) {
  .brands-logo-wrap {
    width: 91.5%;
  }
}

.logo-tab-nav {
  padding-bottom: 48px;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.logo-list-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 16px 10px;
  width: 88px;
  height: 88px;
}

@media (max-width: 1200px) {
  .logo-list-inner {
    margin: 25px 9px;
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 767.98px) {
  .logo-list-inner {
    margin: 15px 9px;
    width: 60px;
    height: 60px;
  }
}

.logo-list-inner img {
  opacity: 1;
  filter: none;
  transition: 0.4s;
  width: 85%;
  height: auto;
}

@media (max-width: 767.98px) {
  .logo-list-inner img {
    width: 80%;
  }
}

html[data-theme="dark"] .logo-list-inner {
  background: var(--white);
  border-radius: 12px;
}

.stats-section {
  position: relative;
  padding: 30px 32px;
  overflow: hidden;
}

.stats-section__background {
  position: absolute;
  inset: 0;
}

.stats-section__container {
  position: relative;
  width: 85.9%;
  margin: 0 auto;
}

.stats-section__grid {
  display: grid;
  gap: 3rem;
}

.stats-section__grid--1-col {
  grid-template-columns: 1fr;
  max-width: 20rem;
  margin: 0 auto;
}

.stats-section__grid--2-col {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin: 0 auto;
}

.stats-section__grid--3-col {
  grid-template-columns: 1fr;
}

.stats-section__grid--4-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .stats-section__grid--2-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section__grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-section__grid--4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-section__grid {
    gap: 2rem;
  }

  .stats-section__grid--4-col {
    grid-template-columns: repeat(4, 2fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-size: 72px;
  font-weight: 400;
  color: var(--light-black);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
	display: inline-flex;
}

@media (max-width: 1366px) {
  .stat-item__number {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .stat-item__number {
    font-size: 45px;
  }
}

@media (max-width: 1024px) {
  .stat-item__number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .stat-item__number {
    font-size: 35px;
  }
}

.stat-item__description {
  font-size: 22px;
  color: #767676;
  font-weight: 400;
  line-height: 1.625;
  max-width: 14rem;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .stat-item__description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .stat-item__description {
    font-size: 15px;
  }
}

html[data-theme="dark"] .stat-item__number,
html[data-theme="dark"] .stat-item__description {
  color: var(--dark-theme-white);
}

.cta-banner-home .career-container {
  display: block;
  margin: 0 auto 70px;
  width: 88.9%;
}

@media (max-width: 768px) {
  .cta-banner-home .career-container {
    margin: 0 auto 40px;
  }
}

.cta-banner-home .career-banner {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background: var(--cta-gradient);
  padding: 1.8rem;
  text-align: center;
  background-image: url("/wp-content/uploads/2026/01/cta-dotted-bg.webp");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta-banner-home .career-banner {
    padding: 2.7rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner-home .career-banner {
    padding: 2.7rem;
  }
}

.cta-banner-home .banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-home .banner-title {
  font-size: 52px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .cta-banner-home .banner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-banner-home .banner-title {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .cta-banner-home .banner-title {
    font-size: 30px;
  }
}

.cta-banner-home .highlight {
  background: var(--gradient-theme);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-banner-home .banner-subtitle {
  color: var(--white);
  font-size: 28px;
  max-width: 55rem;
  margin: 0 auto 2.6rem;
}

@media (max-width: 1200px) {
  .cta-banner-home .banner-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .cta-banner-home .banner-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-banner-home .banner-subtitle {
    font-size: 16px;
  }
}

.cta-banner-home .btn-area {
  display: flex;
  justify-content: center;
}

.cta-banner-home .btn-wrap {
  min-width: fit-content;
  border: none;
}

.home-top-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: hidden;
  height: calc(100vh - 75.25px);
}

@media (max-width: 1200.98px) {
  .home-top-banner {
    padding-bottom: 10vh;
  }
}

@media (max-width: 767.98px) {
  .home-top-banner {
    padding-bottom: 10vh;
  }
}

@media (max-width: 576px) {
  .home-top-banner {
    padding-bottom: 0;
  }
}

.home-top-banner-inner {
  position: relative;
  display: block;
  margin: 0 0 0 auto;
  width: 100%;
  padding: 0;
}

@media (max-width: 576px) {
  .home-top-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
  }
}

.home-top-banner-inner .banner-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 5.55%;
}

.home-top-banner-inner .banner-section .gradiant-bg-btn {
	min-width: 146px;
}

@media (max-width: 1200px) {
  .home-top-banner-inner .banner-section {
    padding-left: 3.9%;
  }
}

@media (max-width: 767.98px) {
  .home-top-banner-inner .banner-section {
    padding: 0 4.25%;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
	.home-top-banner-inner .banner-section {
		width: 100%;
	}
	.home-top-banner-inner .banner-section .gradiant-bg-btn {
		width: 100%;
	}
}

.home-top-banner-inner .text-wrap {
  width: 80%;
  position: relative;
  padding-top: 14%;
}

@media (max-width: 1200px) {
  .home-top-banner-inner .text-wrap {
    padding-top: 19%;
  }
}

@media (max-width: 767.98px) {
  .home-top-banner-inner .text-wrap {
    width: 100%;
    padding-top: 30%;
  }
}

@media (max-width: 576px) {
  .home-top-banner-inner .text-wrap {
    padding-top: 0;
  }
}

.home-top-banner .typing-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-top-banner .heading {
  font-size: 94px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -6px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .home-top-banner .heading {
    font-size: 64px;
  }
}

.home-top-banner .heading--sub {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0;
  font-weight: 400;
  margin: 30px 0 0;
  position: relative;
  z-index: 20;
}

@media (max-width: 1200px) {
  .home-top-banner .heading--sub {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 991.98px) {
  .home-top-banner .heading--sub {
    font-size: 24px;
    line-height: 32px;
  }
}

.mobile-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

@media (max-width: 600px) {
  .mobile-banner-image {
    height: 100%;
  }
}

.static-heading {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  line-height: 72px;
}

#typewriterText {
	font-weight: 500;
}

@media (max-width: 1600px) {
  .static-heading {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 1200px) {
  .static-heading {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 991.98px) {
  .static-heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 767.98px) {
  .static-heading {
    font-size: 29px;
    line-height: 37px;
  }
}

@media (max-width: 576px) {
  .static-heading {
    font-size: 32px;
    line-height: 45px;
	  min-height:135px;
  }

  .static-heading .inline-block {
    display: block;
  }

  .static-heading .link-break {
    display: none;
  }
}

.text-white {
  color: #ffffff !important;
}

.platforms-section {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  background: radial-gradient(42.33% 70.51% at 50% 50%, #515151 0%, #262626 100%);
  overflow: visible;
}

.platform-wrapper {
  height: 200vh; /* controls scroll duration */
}

/*.platforms-section.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
} */

.platforms-section .platform-container {
  width: 88.9%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.platforms-section .grid-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024.5px) {
  .platforms-section .grid-layout {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (max-width: 768px) {
  .platforms-section {
    padding: 40px 0;
  }
}


.content-section-platforms .content-space {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-section-platforms .header-space {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 12px;
}

.content-section-platforms .section-label {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.content-section-platforms .main-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 78px;
  color: var(--white);
  margin: 0px;
}
@media (min-width: 1024.5px) {
	.content-section-platforms {
		position: sticky;
		top: 8rem;
	}
}

@media (max-width: 1200px) {
  .content-section-platforms .main-title {
    font-size: 45px;
    line-height: 60px;
  }
}

@media (max-width: 480px) {
  .content-section-platforms .main-title {
    font-size: 38px;
    line-height: 45px;
  }
}

.content-section-platforms .description {
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .content-section-platforms .description {
    font-size: 17px;
  }
}

.platforms-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.platform-card {
  backdrop-filter: blur(104px);
  background: rgba(130, 130, 130, 0.29);
  border-radius: 8px;
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.platform-card .card-header {
  border-bottom: 1px solid var(--white);
  padding-bottom: 24px;
  margin-bottom: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.platform-card .card-title {
  font-size: 20.94px;
  font-weight: 500;
  border-radius: 4.19px;
  background-color: #3c3c3c;
  color: var(--white);
  padding: 4px 8px;
  margin:0px;
}

@media (max-width: 1200px) {
  .platform-card .card-title {
    font-size: 18.94px;
  }
}

.platform-card .logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  min-height: 120px;
}

.platform-card .logo-container {
  text-align: center;
}

.platform-card .logo-container img {
	height: auto;
	max-width: 175px;
}

.platform-card .card-description {
  color: var(--white);
  font-size: 15px;
  line-height: 22.7px;
  text-align: start;
  padding: 0 32px;
}

.blog-tiles .insights-blogs-wrap {
  display: block;
  margin: 0 auto;
  width: 88.9%;
  padding: 70px 0;
}

@media (max-width: 768px) {
  .blog-tiles .insights-blogs-wrap {
    padding: 40px 0;
  }
}

.blog-tiles .section-header-blog {
  display: flex;
  flex-direction: column;
	gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-tiles .section-subtitle {
  background: linear-gradient(#e63c2e, #9747ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-tiles .section-title {
  font-size: 52px;
  font-weight: 400;
  color: #2f2f2f;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 1200px) {
  .blog-tiles .section-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .blog-tiles .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .blog-tiles .section-title {
    font-size: 1.75rem;
  }
}

.blog-tiles .blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .blog-tiles .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-tiles .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-tiles .blog-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 8px 10px 24px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-tiles .blog-card:hover {
  box-shadow: 8px 12px 32px 0 rgba(0, 0, 0, 0.15);
}

.blog-tiles .blog-card:hover .card-image img {
  transform: scale(1.05);
}

.blog-tiles .card-image {
  position: relative;
  overflow: hidden;
}

.blog-tiles .card-image img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-tiles .card-content {
  padding: 1.5rem;
}

.blog-tiles .card-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.blog-tiles .card-description {
  color: #767676;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .blog-tiles .section-header-blog {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .blog-tiles .section-title br {
    display: none;
  }
}

html[data-theme="dark"] .blog-tiles .section-title,
html[data-theme="dark"] .blog-tiles .card-title {
  color: var(--dark-theme-white);
}

html[data-theme="dark"] .blog-tiles .blog-card {
  background-color: #1b1b1b;
}

html[data-theme="dark"] .blog-tiles .card-description {
  color: var(--dark-theme-white);
}

.glow-single-color {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}

.glow-corner {
  position: absolute;
  pointer-events: none;
}

.glow-red,
.glow-purple {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  pointer-events: none;
  animation-name: glow-animation;
  animation-duration: inherit;
}

.glow-red {
  --color: #e63c2ecc;
}

.glow-purple {
  --color: #9747ffe5;
}

.glow-corner[data-position="top-right"] {
  top: 0;
  right: 0;
}

.glow-corner[data-position="top-right"] .glow-red {
  top: 0;
  right: 0;
}

.glow-corner[data-position="top-right"] .glow-purple {
  top: calc(-180px * var(--scale));
  right: calc(360px * var(--scale));
}

.glow-corner[data-position="top-left"] {
  top: 0;
  left: 0;
}

.glow-corner[data-position="top-left"] .glow-red {
  top: 0;
  left: 0;
}

.glow-corner[data-position="top-left"] .glow-purple {
  top: calc(-180px * var(--scale));
  left: calc(360px * var(--scale));
}

.glow-corner[data-position="bottom-left"] {
  bottom: 0;
  left: 0;
}

.glow-corner[data-position="bottom-left"] .glow-red {
  bottom: 0;
  left: 0;
}

.glow-corner[data-position="bottom-left"] .glow-purple {
  bottom: calc(-180px * var(--scale));
  left: calc(360px * var(--scale));
}

.glow-corner[data-position="bottom-right"] {
  bottom: 0;
  right: 0;
}

.glow-corner[data-position="bottom-right"] .glow-red {
  bottom: 0;
  right: 0;
}

.glow-corner[data-position="bottom-right"] .glow-purple {
  bottom: calc(-180px * var(--scale));
  right: calc(360px * var(--scale));
}

@keyframes glow-animation {
  0% {
    box-shadow: 0 0 calc(160px * var(--scale)) calc(160px * var(--scale)) var(--color);
  }
  50% {
    box-shadow: 0 0 calc(270px * var(--scale)) calc(270px * var(--scale)) var(--color);
  }
  100% {
    box-shadow: 0 0 calc(160px * var(--scale)) calc(160px * var(--scale)) var(--color);
  }
}

.footer-link-col ul#menu-footer-menu li, ul#menu-solutions li {
	display: flex !important;
}

ul#menu-footer-menu, ul#menu-solutions, ul#menu-consultancy, ul#menu-creative-studio, ul#menu-arimac-subsidiaries {
    display: inline-block;
    list-style: none;
    padding-left: 0;
}
ul#menu-footer-menu li, ul#menu-solutions li{
    display: inline-block;
}
ul#menu-solutions li,  ul#menu-consultancy li, ul#menu-creative-studio li, ul#menu-arimac-subsidiaries li{
	width: 100%;
}
ul#menu-solutions li a,  ul#menu-consultancy li a, ul#menu-creative-studio li a, ul#menu-arimac-subsidiaries li a{
	display: block;
    font-size: 14px;
    color: #767676;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.4s;
    font-weight: 500;
    line-height: 32px;
}
.footer-link-col ul .menu-item a:hover {
	color: #e63c2e !important;
}
.footer-bottom .social-media i {
    font-size: 14px;
    padding: 0px 5px;
    color: #000;
}
.toggle-mode-wrap {
    width: 26px;
    display: flex;
    margin-left: 20px;
}
/* New Desktop Footer Styles */
.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -12px;
  /* margin-bottom: 60px; */
}

.footer-link-col {
  /* width: 23%; */
  /* margin-bottom: 20px;
  padding-right: 10px; */
  min-width: 170px;
  padding: 0 12px;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-black);
  margin-bottom: 24px;
  margin-top: 0px;
}

.footer-desktop-link {
  display: block;
  font-size: 14px;
  color: #767676;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.4s;
  font-weight: 500;
  line-height: 32px;
}

.footer-desktop-link:hover {
  color: var(--primary-color);
}

.footer-mid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer-address-group {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
}

.footer-address-col {
  min-width: 160px;
  flex: 0 0 auto;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  /* padding-top: 55px; */
  /* Visual adjustment to align with bottom of address or similar */
  align-self: flex-start;
}

/* Social icons SVG styling */
.footer-social-wrapper svg {
  width: 40px;
  height: 40px;
  fill: var(--light-black);
  transition: 0.4s;
  padding: 10px;
}

.footer-social-wrapper a:hover svg {
  fill: var(--primary-color);
}

html[data-theme="dark"] .footer-social-wrapper svg {
  fill: var(--white);
}

/* Dark mode overrides for new footer elements */
html[data-theme="dark"] .footer-col-title {
  color: var(--white);
}

html[data-theme="dark"] .footer-desktop-link {
  color: #ccc;
}

html[data-theme="dark"].dropdown-menu a:hover {
  color: var(--primary-color);
}
/* Submenu links */
html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item> a.mega-menu-link {
    background-color: #000000 !important;
    color: #ffffff !important;
}
html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item> a.mega-menu-link:hover{
	color: #e63c2e !important;
}
/* Footer menu links - white in dark mode */
html[data-theme="dark"] .footer-wrap .menu li a {
    color: #ffffff !important;
}
.chat-embed-combined-wrapper {
	z-index: 5 !important;
}
.chat-embed-combined-wrapper.voice-active {
	z-index: 10003 !important;
}
.chat-embed-combined-panel-wrap, .chat-embed-combined-panel, .chat-embed-combined-messages {
	pointer-events: none !important;
}
.chat-embed-combined-panel-wrap.chat-embed-open,
.chat-embed-combined-panel-wrap.chat-embed-open .chat-embed-combined-panel,
.chat-embed-combined-panel-wrap.chat-embed-open .chat-embed-combined-messages {
    pointer-events: all !important;
}
.cky-btn-accept {
    border: 2px solid #6c2bd9 !important;
    background: linear-gradient(268.3deg, #6c2bd9 -5.05%, #c53030 75.54%) !important;
    color: #ffffff !important;
}

.cky-btn-reject,
.cky-btn-customize {
    border: 2px solid #6c2bd9 !important;
    color: #2d2d2d !important;
    background: #ffffff !important;
}
html[data-theme="dark"] option {
    color: #000;
}	


#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	transition: .3s;
}

@media (min-width: 769px) {
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link[aria-expanded="true"] .mega-indicator {
        transform: rotate(180deg);
    }
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.current-active-menu > a.mega-menu-link {
	color: #e63c2e;
}

html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
	color: #ffffff;
}

html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.current-active-menu > a.mega-menu-link {
	color: #e63c2e !important;
}

html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	color: #e63c2e !important;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.platform-banner-inner, .banner-section .text-wrap, .hero-container .hero-content, .arimac-journal, .main-grid, .case-studies-page-wrap {
	animation: fadeUp 1s;
}

.case-study-video-player {
	position: relative;
	width: 100%;
	max-width: 946px;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 24px;
	overflow: hidden;
	margin: 0 auto;
	background: #000;
}

.case-study-video-player__media {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	background: #000;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 767.98px) {
	.case-study-video-player__media {
		aspect-ratio: 16 / 9;
	}
}

.case-study-video-player__media::-webkit-media-controls {
	display: none !important;
	-webkit-appearance: none;
}

.case-study-video-player__media::-webkit-media-controls-enclosure {
	display: none !important;
	-webkit-appearance: none;
}

.case-study-video-player__media::-webkit-media-controls-panel {
	display: none !important;
	-webkit-appearance: none;
}

.case-study-video-player__overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.case-study-video-player__overlay:focus-visible {
	outline: 3px solid rgba(113, 39, 255, 0.35);
	outline-offset: 4px;
}

.case-study-video-player__overlay.is-playing {
	opacity: 0;
}

.case-study-video-player__overlay:hover,
.case-study-video-player__overlay:focus-visible,
.case-study-video-player__overlay.is-playing:hover,
.case-study-video-player__overlay.is-playing:focus-visible {
	opacity: 1;
}

.case-study-video-player .case-study-video-player__overlay .icon {
	width: 132px;
	height: 132px;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
	transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 767.98px) {
	.case-study-video-player .case-study-video-player__overlay .icon {
		width: 88px;
		height: 88px;
	}
}

.case-study-video-player .icon-play {
  display: block;
}

.case-study-video-player .icon-pause {
  display: none;
}

.case-study-video-player__overlay.is-playing .icon-play {
  display: none;
}

.case-study-video-player__overlay.is-playing .icon-pause {
  display: block;
}

/*mobile sidebar*/
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:last-child {
	display: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
	padding: 0px 12px;
}
@media only screen and (max-width: 1200px) {
	#mega-menu-wrap-primary {
		order: 2;
	}
	#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
		width: 100%;
		padding: 72px 16px 16px;
		background: #ffffff;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
		border-bottom: 1.5px solid #ebebeb;
		margin-bottom: 24px;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:last-child {
		display: block;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
		background-color: transparent;
		outline: none;
		box-shadow: none;
		width: 100%;
		border: none;
		padding: 0 0 16px;
		text-align: left;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		font-size: 22px;
		font-weight: 500 !important;
		line-height: 36px;
		letter-spacing: -.01em;
		color: #2f2f2f !important;
		min-height: 52px;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
		padding: 0 16px 16px;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		display: block;
		font-size: 16px;
		text-decoration: none;
		color: #2f2f2f;
		border-bottom: 1px solid #ebebeb;
		padding: 12px 0;
		font-weight: 400;
		line-height: normal;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li:last-child a.mega-menu-link {
		border-bottom: none !important;
	}
	#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open ~ button.mega-close {
		top: 16px;
        right: 16px;
        left: unset;
        z-index: 99999999999;
        cursor: pointer;
        visibility: visible;
        opacity: 1;
        display: flex;
        position: fixed;
	}
	#mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close:before {
		background-image: url(/wp-content/uploads/2026/04/sidebar-close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        font-size: 0;
        width: 24px;
        height: 24px;
        display: flex;
        content: "";
        font-family: dashicons;
        font-weight: normal;
        color: white;
        align-items: center;
        justify-content: center;
	}
	
	html[data-theme="dark"] #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
		background: #1a1a1a;
	}
	html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
		border-bottom: 1.5px solid hsla(0,0%,100%,.302);
	}
	html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
		color: #ffffff !important;
		background-color: #1a1a1a !important;
	}
	html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		color: #ffffff !important;
		background-color: #1a1a1a !important;
	}
	html[data-theme="dark"] #mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close:before {
		filter: brightness(0) invert(1);
	}
	html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
		background-color: #1a1a1a !important;
	}
	html[data-theme="dark"] #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		border-bottom: 1px solid hsla(0,0%,100%,.302);
	}
}
html[data-theme="dark"] #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, html[data-theme="dark"] #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, html[data-theme="dark"] #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	background-color: #ffffff;
}
/*mobile sidebar*/

.tab-scroll {
  overflow-y: auto;
  max-height: 100%; /* or fixed height if needed */
	animation:fadeRight 1s;
}

/* Hide scrollbar */
.tab-scroll::-webkit-scrollbar {
  display: none;
}

.tab-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.custom-wrp {
    display: flex;
    align-items: center;
}
.custom-wrp img {
    width: 60px;
    height: max-content;
    margin-left: 10px;
    margin-top: -15px;
}

/*cky box visibility*/
.cky-hide.cky-consent-container {
	z-index: -1 !important;
}

/* Hide while loading */
/* Hide only images that have data-ll-status but not yet loaded */
img[data-ll-status]:not([data-ll-status="loaded"]) {
    opacity: 0;
    display: block;
    width: 100%;
}

/* Fade in when loaded */
img[data-ll-status="loaded"] {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Shimmer on direct parent */
:is(figure, div, a, span, li):has(> img[data-ll-status]:not([data-ll-status="loaded"])) {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    min-height: 20px;
}

/* Shimmer on direct parent - Dark mode */
html[data-theme="dark"] :is(figure, div, a, span, li):has(> img[data-ll-status]:not([data-ll-status="loaded"])) {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
}

/* Stop shimmer once loaded */
:is(figure, div, a, span, li):has(> img[data-ll-status="loaded"]) {
    background: none;
    animation: none;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* cookie policy pop dark mode*/
html[data-theme="dark"] .cky-consent-container .cky-consent-bar{
	background:black !important;
	border:1px solid black !important;
}
html[data-theme="dark"] .cky-notice .cky-title{
	color:white !important;
}
html[data-theme="dark"] .cky-consent-bar .cky-notice-des p{
	color:white !important;
}
html[data-theme="dark"] .cky-btn-customize, html[data-theme="dark"] .cky-btn-reject{
	background:black !important;
	color:white !important;
}


.cky-btn-revisit-wrapper {
    display: none !important;
}
