@import url("../fonts/stylesheet.css");
@import url("base.css");
@import url("modal.css");

/* -------------------------------------------------------------------------- */
/*                              ALTECH BRAND TOKENS                            */
/* -------------------------------------------------------------------------- */
:root {
  --brand-primary: #362E83;
  --brand-primary-hover: #2B256B;
  --brand-secondary: #D64DAE;
  --brand-secondary-hover: #BD3E99;
  --brand-tertiary: #00FFFF;
  --brand-dark: #0C072F;

  --text-color: #414141;
  --surface: #ffffff;
  --surface-muted: #F2F2F2;
  --surface-soft: #F9F9F9;
  --border-color: rgba(12, 7, 47, 0.14);
  --border-color-light: rgba(255, 255, 255, 0.2);

  --font-heading: "Varien", "Urbanist", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-button: "Urbanist", "Inter", sans-serif;
}
/***** START: Main Site Styles *****/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  cursor: default;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  /* Remove the margin in Firefox and Safari */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  /* Show the overflow in Edge */
}

button,
select {
  text-transform: none;
  /* Remove the inheritance of text transform in Firefox */
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  /* 1. Add the correct box sizing in IE 10- */
  padding: 0;
  /* 2. Remove the padding in IE 10- */
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* -------------------------------------------------------------------------- */
/* HTML elements that should remain in the document, but should be visually 
hidden. */
/* -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

/* -------------------------------------------------------------------------- */
/*                             splide-core.min.css                            */
/* -------------------------------------------------------------------------- */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ------------------------------- TYPOGRAPHY ------------------------------- */
body {
  line-height: 1.5;
  font-family: var(--font-body);
  font-weight: normal;
  color: var(--text-color);
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brand-dark);
}

h1,
.h1 {
  font-size: 64px;
  line-height: 1.1;
}

h2,
.h2 {
  font-size: 48px;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 1.3;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.3;
}

h6,
.h6 {
  font-size: 18px;
  line-height: 1.3;
}

.text-link {
  position: relative;
  background-image: linear-gradient(90deg, var(--text-color));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 2px 0px;
  background-color: rgba(0, 0, 0, 0);
}
.text-link:hover, .text-link.visible {
  background-size: 100% 2px;
}
.text-link:hover {
  opacity: 0.7;
}
.text-link.red {
  color: var(--brand-primary);
  font-weight: 700;
  background-image: linear-gradient(90deg, var(--brand-primary));
}

.text-link2:hover, .text-link2.visible {
  text-decoration: underline;
}
.text-link2:hover {
  opacity: 0.7;
}

.text-red {
  color: var(--brand-primary);
}

.text-black {
  color: var(--brand-dark);
}

.text-white {
  color: #ffffff;
}

.text-white2 {
  color: rgba(255, 255, 255, 0.95);
}

.text-2xs {
  font-size: 12px;
}

.text-xs {
  font-size: 14px;
}

.text-sm {
  font-size: 16px;
}

.text-md {
  font-size: 18px;
}

.text-lg {
  font-size: 20px;
}

.text-xl {
  font-size: 22px;
}
.bold {
	font-weight: 700;
}
.underline {
	text-decoration: underline;
}
/* -------------------------------- LAYOUTING ------------------------------- */
.mob-only,
.tab-only,
.hidden {
  display: none;
}

.p-0 {
  padding: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-36 {
  margin-top: 36px;
}

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

.mt-48 {
  margin-top: 48px;
}

.mt-54 {
  margin-top: 54px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-12 {
  margin-left: 12px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}
.flex.equal > * {
  flex: 1;
}

.flex-1 {
  flex: 1;
}
.flex.h-center {
	justify-content: center;
}

.container {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 60px;
  position: relative;
}
.container.fluid {
  max-width: 1920px;
}

.splide-container {
  padding-left: calc(50vw - 757px);
  margin-left: 60px;
}

.full {
  width: 100%;
}

/* ------------------------------- COMPONENTS ------------------------------- */
.hidden {
  display: none !important;
}

.icon {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.icon.icon-60 {
  width: 60px;
  height: 60px;
}
.icon.icon-20 {
  width: 20px;
  height: 20px;
}
.icon.icon-16 {
  width: 16px;
  height: 16px;
}
.icon.icon-sc-in {
  background-image: url("../img/icons/sc-in.svg");
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-1000 {
  max-width: 1024px;
}

.mw-0 {
  max-width: none !important;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  max-width: 900px;
}
p.small {
  font-size: 16px;
}

button {
  border: none;
  cursor: pointer;
}

.btn {
  padding: 12px 24px;
  border-radius: 12px;
  gap: 12px;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-button);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--brand-tertiary);
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn .icon {
  filter: brightness(0) saturate(100%) invert(6%) sepia(48%) saturate(3387%) hue-rotate(214deg) brightness(94%) contrast(110%);
}
.btn.btn-white {
  background-color: #ffffff;
  color: var(--brand-primary);
  border-color: var(--brand-tertiary);
}
.btn.btn-white .icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(78%) saturate(4122%) hue-rotate(224deg) brightness(83%) contrast(118%);
}
.btn.btn-outline-white {
  color: #ffffff;
  border-color: var(--brand-tertiary);
}
.btn.btn-blue {
  background-color: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-tertiary);
}
.btn.btn-outline-blue {
  border-color: var(--brand-tertiary);
  color: var(--brand-primary);
}
.btn.btn-red {
  background-color: var(--brand-secondary);
  color: #ffffff;
  border-color: var(--brand-tertiary);
}
.btn:hover {
  color: #ffffff;
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-tertiary);
}
.btn.btn-red:hover {
  background-color: var(--brand-secondary-hover);
}
.btn.btn-white:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
}
.btn:hover .icon, .btn.btn-red .icon, .btn.btn-blue .icon, .btn.btn-outline-white .icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(20%) saturate(121%) hue-rotate(276deg) brightness(121%) contrast(100%);
}

.btn-circle {
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-color: rgba(0, 0, 0, 0);
}
.btn-circle.larger {
  width: 70px;
  height: 70px;
  background-size: 36px;
}
.btn-circle:hover {
  border-color: var(--brand-primary);
}

.btn-group {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
}

.label {
  display: block;
}
.label.required::after {
  content: "*";
  margin-left: 4px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-wrapper .input {
  width: 100%;
}

.input {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: border-color 0.25s;
  background-color: var(--surface-soft);
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.11);
  display: flex;
}

select.input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 12px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-wrapper .input {
  width: 100%;
}

.input-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.input-group > * {
  flex: 1 1 250px;
}
.input-group.no-half > * {
  flex: none;
}

.title-wrapper .overline {
  width: fit-content;
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  color: var(--brand-primary);
  line-height: 1.2;
}
.title-wrapper.text-center .overline {
  margin-left: auto;
  margin-right: auto;
}
.title-wrapper .title {
  position: relative;
}

.title-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px 60px;
  flex-wrap: wrap;
}
.title-between.alt-1 {
  align-items: flex-start;
}
.title-between.alt-1 > * {
  flex: 1;
}

.logo {
  width: 199px;
  height: 79px;
  background-image: url("../img/brand/logo_color.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex: none;
  display: block;
}

.overline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nowrap {
  white-space: nowrap;
}

.banner {
  background-color: var(--brand-primary) !important;
  padding: 10px 0px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 32px;
}
.banner .banner-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner .banner-hiring {
  margin-left: auto;
}
.banner .banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.banner .banner-link:hover {
  color: var(--brand-tertiary);
}
.banner .banner-phone {
  white-space: nowrap;
}
.banner .banner-divider {
  opacity: 0.8;
}


.nav {
  width: 100%;
  padding: 12px 0px;
  position: sticky;
  top: -1px;
  background-color: #ffffff;
  z-index: 10;
}
.nav .container {
  display: flex;
  justify-content: space-between;
}
.nav .nav-menus {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
}
.nav .dropdown:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/chevron-d.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  display: inline-flex;
  margin-left: 4px;
  vertical-align: middle;
}
.nav .dropdown + .dropdown-menu {
  display: none;
  background: #ffffff;
  position: absolute;
  flex-direction: column;
  margin-left: -20px;
  padding: 20px;
  gap: 12px;
  min-width: 160px;
  border-radius: 10px;
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.nav .dropdown.is-open::after {
  transform: rotate(180deg);
}
.nav .dropdown.is-open + .dropdown-menu {
  display: flex;
}
.nav .menu-btn,
.nav .close-btn {
  display: none;
}
.nav.is-scrolled {
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.04);
}
.nav .text-link.is-active {
  font-weight: 700;
}

.nav .nav-menus {
  color: #161616;
}
.nav .text-link.red {
  color: inherit;
  font-weight: inherit;
  background-image: linear-gradient(90deg, var(--brand-primary));
}

.bg-1 {
  background-color: var(--surface-muted);
}

.bg-2 {
  background-color: var(--brand-primary);
  color: #ffffff;
}
.bg-2.lined::before {
  border-color: var(--border-color-light) !important;
}

.bg-brand {
  background-color: var(--brand-primary);
  color: #ffffff;
}
.bg-brand-pattern {
  background-color: var(--brand-primary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../img/brand/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.bg-brand-pattern.light {
  background-image:url("../img/brand/background.jpg");
}
.bg-brand-pattern.lined::before {
  border-color: rgba(255, 255, 255, 0.22) !important;
}
.bg-dark {
  background-color: var(--brand-dark);
  color: #ffffff;
}
.bg-brand h1, .bg-brand h2, .bg-brand h3, .bg-brand h4, .bg-brand h5, .bg-brand h6,
.bg-brand .h1, .bg-brand .h2, .bg-brand .h3, .bg-brand .h4, .bg-brand .h5, .bg-brand .h6,
.bg-brand-pattern h1, .bg-brand-pattern h2, .bg-brand-pattern h3, .bg-brand-pattern h4, .bg-brand-pattern h5, .bg-brand-pattern h6,
.bg-brand-pattern .h1, .bg-brand-pattern .h2, .bg-brand-pattern .h3, .bg-brand-pattern .h4, .bg-brand-pattern .h5, .bg-brand-pattern .h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-dark .h1, .bg-dark .h2, .bg-dark .h3, .bg-dark .h4, .bg-dark .h5, .bg-dark .h6 {
  color: #ffffff;
}
.bg-brand .title-wrapper .overline,
.bg-brand-pattern .title-wrapper .overline,
.bg-dark .title-wrapper .overline {
  color: #ffffff;
  border-color: var(--brand-tertiary);
}

.section-hero .container {
  padding: 16px;
  display: flex;
  gap: 16px;
}
.section-hero .panel {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
}
.section-hero .panel-text {
  padding: 100px 60px;
}
.section-hero .panel-overlay {
  padding: 100px 60px;
  position: relative;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
}
.section-hero .panel-overlay .wrapper {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}
.section-hero .panel-overlay .breadcrumb .path:not(:first-child)::before {
  background: url("../img/icons/chevron-r-white.svg");
}

/* Branded interior hero */
.service-hero .panel,
.brand-hero .panel {
  min-height: 500px;
  background-color: var(--brand-dark);
  background-image: url("../img/brand/background.jpg") !important;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.service-hero .panel::after,
.brand-hero .panel::after {
  content: "";
  position: absolute;
  right: 56px;
  bottom: 0;
  width: min(32%, 420px);
  height: 94%;
  z-index: 3;
  background: url("../img/brand/mascot_color_right.png") no-repeat right bottom / contain;
  pointer-events: none;
}
.service-hero .panel-overlay,
.brand-hero .panel-overlay {
  min-height: 500px;
  padding: 72px 60px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.service-hero .panel-overlay .wrapper,
.brand-hero .panel-overlay .wrapper {
  max-width: 900px;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}
.service-hero .panel-overlay .overline,
.brand-hero .panel-overlay .overline {
  color: #ffffff;
}
.service-hero .panel-overlay h1,
.brand-hero .panel-overlay h1 {
  max-width: 760px;
  color: #ffffff;
}

.progress-bar {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 20px;
}
.progress-bar .bar {
  background: var(--text-color);
  height: 2px;
  transition: width 1500ms ease;
}

.splide-hero {
  height: 100%;
}
.splide-hero .splide__track,
.splide-hero .splide__list {
  height: inherit;
}
.splide-hero .img-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  position: absolute;
  left: 0px;
  top: 0px;
}
.splide-hero img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  -o-object-fit: cover;
     object-fit: cover;
  transition-timing-function: linear;
}
.splide-hero .is-active img {
  transform: scale(1);
}
.splide-hero .splide__pagination {
  position: absolute;
  bottom: 0px;
  padding: 32px;
  gap: 12px;
}
.splide-hero .splide__pagination__page {
  width: 36px;
  height: 6px;
  display: block;
  padding: 0px;
  border-radius: 20px;
  opacity: 0.25;
}
.splide-hero .splide__pagination__page.is-active {
  opacity: 1;
}
.splide-hero .text-wrapper {
  position: absolute;
  top: 0px;
  padding: 32px;
  color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.splide-hero .text-wrapper .icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, .25);
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ffffff;
}

.splide-work .splide__slide {
  position: relative;
  width: 44vw;
  max-width: 620px;
  min-width: 420px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(12, 7, 47, 0.06);
}
.splide-work .img-wrapper {
  height: 360px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.splide-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide-work .text-wrapper {
  position: static;
  padding: 18px 8px 0px;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: none;
}
.splide-work .text-wrapper .h5 {
  color: #161616;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}
.splide-work .text-wrapper .icon {
  flex: none;
  width: 24px;
  height: 24px;
  background-image: none !important;
  background-color: var(--brand-primary);
  -webkit-mask: url("../img/icons/warehouse-w.svg") no-repeat center / contain;
  mask: url("../img/icons/warehouse-w.svg") no-repeat center / contain;
}

.hero-marquee {
  padding: 60px 0px;
}

.marquee-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.marquee-wrapper .marquee {
  display: flex;
}
.marquee-wrapper .content {
  display: flex;
  flex: none;
  white-space: nowrap;
  animation: loopText 5s infinite linear;
}
.marquee-wrapper .item {
  padding: 0px 48px;
}
.marquee-wrapper img {
  height: 75px;
}

@keyframes loopText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.section {
  padding-top: 110px;
  padding-bottom: 110px;
}
.section.lined {
  position: relative;
}
.section.lined:before {
  content: "";
  max-width: 1380px;
  width: calc(100% - 120px);
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.section.lined.lined-left::before {
  border-left: 1px solid rgba(0, 0, 0, 0.11);
}
.section.lined.lined-left .container {
  padding-left: 120px;
}
.section.lined.lined-left-right::before {
  border-left: 1px solid rgba(0, 0, 0, 0.11);
  border-right: 1px solid rgba(0, 0, 0, 0.11);
}
.section.lined.lined-left-right .container {
  padding-left: 120px;
  padding-right: 120px;
}
.section.lined.lined-middle::before {
  background-color: rgba(0, 0, 0, 0.11);
  width: 1px;
}
.section.lined.lined-middle .content-row .content:first-child {
  padding-right: 40px;
}
.section.lined .title-wrapper .title:after {
  content: "";
  position: absolute;
  background-color: var(--brand-tertiary);
  height: 100%;
  width: 4px;
  top: 0px;
  left: -60px;
  margin-left: -2px;
}
.section.lined .white-accent::before, .section.lined .white-accent::after {
  width: 4px;
  height: 68px;
  content: "";
  background-color: #ffffff;
  position: absolute;
}
.section.lined .white-accent::before {
  top: 5%;
  left: 60px;
}
.section.lined .white-accent::after {
  bottom: 5%;
  right: 60px;
}
.section.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}
.section .limit-center {
  margin: auto;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.interlude {
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--brand-primary);
  color: #ffffff;
}
.interlude .container {
  min-height: 260px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.interlude .title-wrapper {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.interlude .title-wrapper .title,
.interlude .title-wrapper p {
  color: #ffffff;
}
.interlude .img-bg {
  position: absolute;
  width: 48%;
  height: 118%;
  top: -9%;
  right: 2%;
  left: auto;
  z-index: 1;
  background-image:
    url("../img/brand/mascot_color_right.png"),
    radial-gradient(circle at center, transparent 0 43%, var(--brand-tertiary) 43.5% 48%, transparent 48.5% 57%, rgba(0, 255, 255, 0.42) 57.5% 59%, transparent 59.5%) !important;
  background-size: contain, 92% 92%;
  background-position: center bottom, center;
  background-repeat: no-repeat;
}
.interlude .img-bg::before {
  display: none;
}
.interlude .btn {
  width: fit-content;
}
.interlude.lined::before {
  border-color: rgba(255, 255, 255, 0.22) !important;
}
.interlude.lined .title-wrapper .title::after {
  background-color: var(--brand-tertiary);
}

.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.cards.alt-1 {
  display: flex;
  flex-wrap: wrap;
}
.cards.alt-1 .card {
  flex: 1 1 300px;
}
.cards.alt-2 {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.cards.alt-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.card .img-wrapper {
  height: 300px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  padding-bottom: 0px;
}
.card .img-wrapper img {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 12px;
}
.card .text-wrapper {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card .btn-wrapper {
  margin-top: auto;
}
.card.card-blog {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.card.card-blog .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.card-blog .img-wrapper::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 0;
  left: 24px;
  z-index: 1;
  border-radius: 12px;
  background-color: rgba(12, 7, 47, 0.42);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.card.card-blog .img-wrapper .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.card.card-blog .img-wrapper .read {
  position: absolute;
  top: calc(50% + 12px);
  left: 50%;
  z-index: 2;
  width: 132px;
  height: 132px;
  border: 1px solid var(--brand-tertiary);
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--font-button);
  font-weight: 700;
  text-align: center;
  background-color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.card.card-blog .text-wrapper h4 {
  transition: color 0.25s ease;
}
.card.card-blog p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card.card-blog:hover,
.card.card-blog:focus-visible {
  border-color: var(--brand-tertiary);
  box-shadow: 0 10px 28px rgba(12, 7, 47, 0.08);
}
.card.card-blog:hover .img-wrapper::after,
.card.card-blog:focus-visible .img-wrapper::after {
  opacity: 1;
}
.card.card-blog:hover .img-wrapper .read,
.card.card-blog:focus-visible .img-wrapper .read {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.card.card-blog:hover .text-wrapper h4,
.card.card-blog:focus-visible .text-wrapper h4 {
  color: var(--brand-primary);
}
.card.alt-1 {
  border: none;
  border-radius: 0px;
}
.card.alt-1 .img-wrapper {
  height: 100%;
}
.card.alt-1 .img-wrapper img {
  position: relative;
  border-radius: 12px;
}
.card.alt-1 .text-wrapper {
  padding: 0px;
}

/* Industries cards */
.cards.alt-3 .card.alt-1 {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(12, 7, 47, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cards.alt-3 .card.alt-1 .img-wrapper {
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 16px 16px 0px;
  overflow: hidden;
}
.cards.alt-3 .card.alt-1 .img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cards.alt-3 .card.alt-1 .text-wrapper {
  position: relative;
  padding: 20px 20px 22px;
}
.cards.alt-3 .card.alt-1 .text-wrapper::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background-color: var(--brand-tertiary);
}
.cards.alt-3 .card.alt-1 .h4,
.cards.alt-3 .card.alt-1 .h5 {
  color: var(--brand-dark);
}
.cards.alt-3 .card.alt-1:hover {
  transform: translateY(-4px);
  border-color: var(--brand-tertiary);
  box-shadow: 0 14px 32px rgba(12, 7, 47, 0.12);
}
.cards.alt-3 .card.alt-1:hover .img-wrapper img {
  transform: scale(1.035);
}

.container.reviews {
  max-width: unset;
  padding: unset;
}
.splide-reviews.is-initialized:not(.is-active) .splide__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.splide-reviews .splide__track {
  overflow: hidden;
}
.splide-reviews .review {
  background-color: #ffffff;
  border: 1px solid rgba(12, 7, 47, 0.08);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-color);
  min-height: 415px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.splide-reviews .review-copy {
  max-width: 100%;
}
.splide-reviews .review-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.splide-reviews .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.splide-reviews .review-name {
  color: #171717;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}
.splide-reviews .review-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  flex: none;
  border: 1px solid #E3E3E3;
  border-radius: 50%;
  background-color: #FBFAF5;
}
.splide-reviews .review-avatar-head::before,
.splide-reviews .review-avatar-head::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #E5E1D4;
  background-color: #F4F1E8;
}
.splide-reviews .review-avatar-head::before {
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.splide-reviews .review-avatar-head::after {
  bottom: 5px;
  width: 28px;
  height: 18px;
  border-radius: 18px 18px 10px 10px;
}
.splide-reviews .review-google {
  position: absolute;
  right: -4px;
  bottom: -5px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: transparent;
  background-image: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 25% 45%, #FBBC05 45% 65%, #EA4335 65% 82%, #4285F4 82% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.splide-reviews .review-verified {
  flex: none;
  width: 22px;
  height: 22px;
}
.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
  padding-top: 48px;
  padding-bottom: 72px;
}
.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews-section::before {
  width: 390px;
  height: 250px;
  top: 0;
  left: 0;
  background-image: url("../img/icons/reviews-top-left.png");
  background-position: top left;
}
.reviews-section::after {
  width: 390px;
  height: 250px;
  right: 0;
  bottom: 0;
  background-image: url("../img/icons/reviews-bottom-right.png");
  background-position: bottom right;
}
.reviews-section > .container {
  position: relative;
  z-index: 1;
}
.reviews-section .reviews-mascot {
  display: block;
  width: 190px;
  max-width: 40vw;
  height: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}
.reviews-section .title-wrapper .overline {
  margin-bottom: 18px;
}
.reviews-section .title-wrapper .title {
  color: #ffffff;
}
.reviews-section .review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.reviews-section .review-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--brand-tertiary);
}
.reviews-section .review-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 23px;
  height: 23px;
  margin: auto;
  background-color: var(--brand-tertiary);
  -webkit-mask: url("../img/icons/arrow-r-dark.svg") no-repeat center / contain;
  mask: url("../img/icons/arrow-r-dark.svg") no-repeat center / contain;
}
.reviews-section .review-arrow-prev::before {
  transform: rotate(180deg);
}
.reviews-section .review-arrow:hover,
.reviews-section .review-arrow:focus-visible {
  background-color: var(--brand-primary);
  border-color: var(--brand-tertiary);
}
.reviews-section .btn-blue {
  min-width: 240px;
}
.stars {
  display: flex;
  gap: 4px;
}
.stars .star {
  width: 22px;
  height: 22px;
  background-color: #F47B14;
  -webkit-mask: url("../img/icons/star-full.svg") no-repeat center / contain;
  mask: url("../img/icons/star-full.svg") no-repeat center / contain;
}


ul.list {
  display: flex;
  flex-direction: column;
  gap: 0.5ch;
}
ul.list li {
  position: relative;
  margin-left: 14px;
}
ul.list li::before {
  content: "";
  width: 0.5ch;
  height: 0.5ch;
  border-radius: 50%;
  background-color: var(--brand-dark);
  top: 1ch;
  left: -14px;
  position: absolute;
}

ul.list-group li {
  padding: 12px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}
ul.list-group .label {
  display: flex;
  gap: 12px;
  align-items: center;
}
ul.list-group .label::before {
  flex: none;
  content: "";
  width: 0.75ch;
  height: 0.75ch;
  border-radius: 50%;
  background-color: var(--brand-primary);
  margin-top: 0.75ch;
}
ul.list-group.larger li {
  padding: 16px 0px;
}

/* Branded gear bullets */
ul.list.list-gears li {
  margin-left: 26px;
}
ul.list.list-gears li::before {
  width: 16px;
  height: 16px;
  left: -26px;
  top: 0.35em;
  border-radius: 0;
  background: url("../img/icons/gear.svg") no-repeat center / contain;
}
ul.list-group.list-gears .label::before {
  width: 16px;
  height: 16px;
  margin-top: 0.2em;
  border-radius: 0;
  background: url("../img/icons/gear.svg") no-repeat center / contain;
}

ul.list-boxed li {
  display: flex;
  gap: 16px;
  padding: 16px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}
ul.list-boxed li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}
ul.list-boxed .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.content-row {
  display: flex;
  gap: 80px;
}
.content-row .img-in {
  border-radius: 12px;
  min-height: 100px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content-row .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.stats .stat {
  border-radius: 12px;
  padding: 32px;
  background-color: #ffffff;
  font-size: 16px;
  flex: 1 1 260px;
}
.stats .value {
  color: var(--brand-primary);
  margin-bottom: 24px;
}
.stats .overline {
  margin-bottom: 12px;
  color: var(--brand-dark);
}
.bg-brand .stats .stat,
.bg-brand-pattern .stats .stat {
  background-color: var(--brand-dark);
  border: 1px solid var(--brand-tertiary);
  color: #ffffff;
}
.bg-brand .stats .value,
.bg-brand-pattern .stats .value {
  color: var(--brand-tertiary);
}
.bg-brand .stats .overline,
.bg-brand-pattern .stats .overline {
  color: #ffffff;
}


.pagination-wrapper {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination-wrapper .page {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pagination-wrapper .page:not(.inactive, .is-active):hover {
  background-color: var(--surface-muted);
}
.pagination-wrapper .page.is-active {
  background-color: var(--brand-primary);
  color: #ffffff;
  font-weight: 700;
}

.tags-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  font-size: 16px;
  font-family: "Urbanist";
  padding: 6px 16px;
  background-color: var(--surface-muted);
  border-radius: 8px;
  display: inline-flex;
}
.tag:hover {
  background-color: #e5e5e5;
}
.tag.is-active {
  background-color: var(--brand-primary);
  color: #ffffff;
}
.tag.alt-1 {
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #ffffff;
  color: var(--brand-primary);
}

.breadcrumb .path {
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb .path:not(:first-child)::before {
  flex: none;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icons/chevron-r.svg") no-repeat center;
  background-size: contain;
  margin-left: 4px;
  margin-right: 6px;
  opacity: 0.6;
  display: inline-block;
  vertical-align: middle;
}

.share-to {
  display: flex;
  gap: 8px;
}
.share-to .item {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0);
}
.share-to .item:hover {
  background-color: var(--surface-muted);
}

/* Blog post hero */
.blog-post-hero {
  padding-bottom: 170px;
}
.blog-post-hero .panel {
  overflow: visible;
  background-position: center;
}
.blog-post-hero-content {
  padding: 70px 64px 0;
}
.blog-post-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
  color: #ffffff;
}
.blog-post-breadcrumb .path {
  color: #ffffff;
}
.blog-post-breadcrumb .path:not(:first-child)::before {
  background-image: url("../img/icons/chevron-r-white.svg");
  opacity: 1;
}
.blog-post-breadcrumb .current {
  max-width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-post-hero-meta {
  max-width: 1120px;
  margin: 28px auto 0;
  text-align: center;
}
.blog-post-category {
  display: inline-flex;
  padding: 5px 16px;
  border: 1px solid var(--brand-tertiary);
  border-radius: 4px;
  color: #ffffff;
}
.blog-post-hero h1 {
  color: #ffffff;
  font-size: clamp(46px, 4.4vw, 68px);
  line-height: 1.08;
}
.blog-post-date {
  color: #ffffff;
}
.blog-post-featured-image {
  display: block;
  width: 100%;
  height: clamp(360px, 34vw, 520px);
  margin: 56px auto -170px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 28px rgba(12, 7, 47, 0.14);
}

.article .container {
  max-width: 1380px;
}
.article .container:has(.article-table-of-contents) {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  align-items: start;
}
.article .container:has(.article-table-of-contents) .article-table-of-contents {
  grid-column: 1;
}
.article .container:has(.article-table-of-contents) .article-content {
  grid-column: 2;
  max-width: 940px;
  padding-left: 64px;
  border-left: 1px solid var(--border-color);
}
.article .article-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}
.article-table-of-contents {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  margin: 0;
  padding: 0 48px 20px 0;
  border: 0;
  background: transparent;
  scrollbar-width: thin;
}
.article-table-of-contents::before {
  content: "";
  display: block;
  width: 118px;
  height: 155px;
  margin: 0 auto 26px;
  background: url("../img/brand/mascot_color_right.png") no-repeat center bottom / contain;
}
.article-table-of-contents h2 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.2;
}
.article-table-of-contents ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.article-table-of-contents li {
  margin: 0;
}
.article-table-of-contents a {
  position: relative;
  display: block;
  padding-left: 16px;
  color: #202020;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-table-of-contents a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: transparent;
}
.article-table-of-contents a:hover,
.article-table-of-contents a:focus-visible,
.article-table-of-contents a.is-active {
  color: var(--brand-secondary);
}
.article-table-of-contents a.is-active::before {
  background-color: var(--brand-tertiary);
}

.article-content {
  font-size: 18px;
  line-height: 1.55;
}
.article-content > *:first-child {
  margin-top: 0px;
}
.article-content > h2:first-child {
  position: relative;
  margin: 0 0 28px;
  padding-left: 28px;
}
.article-content > h2:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background-color: var(--brand-tertiary);
}
.article-content img {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.article-content p {
  margin-top: 24px;
  margin-bottom: 24px;
}
.article-content a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-content a:hover {
  color: var(--brand-secondary);
}
.article-content h2 {
  margin-top: 56px;
  margin-bottom: 32px;
}
.article-content h3 {
  margin-top: 44px;
  margin-bottom: 16px;
}
.article-content h3[id],
.article-content h2[id] {
  scroll-margin-top: 130px;
}
.article-content h4 {
  margin-top: 32px;
  margin-bottom: 8px;
}

.article-footer {
  margin-top: 60px;
  padding-top: 60px;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  display: flex;
  justify-content: space-between;
}

.subscribe-input {
  width: 360px;
}

.img-square {
  border-radius: 12px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.teams {
  display: grid;
  gap: 40px 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.teams .team .divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.11);
  margin: 20px 0px;
}

.splide-journey {
  margin-left: -60px;
  margin-right: -60px;
  position: relative;
}
.splide-journey::after, .splide-journey::before {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.splide-journey::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--surface-muted));
  right: 0px;
  top: 0px;
}
.splide-journey::before {
  background: linear-gradient(90deg, var(--surface-muted), rgba(0, 0, 0, 0));
  left: 0px;
  top: 0px;
}
.splide-journey li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.splide-journey li:first-child .divider::before {
  left: 50%;
  width: 50%;
}
.splide-journey li:last-child .divider::before {
  left: auto;
  right: 50%;
  width: 50%;
}
.splide-journey img {
  width: 256px;
}
.splide-journey .divider {
  height: 32px;
  width: 100%;
  position: relative;
  margin-top: 20px;
  margin-bottom: 8px;
}
.splide-journey .divider::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: calc(50% - 1px);
  left: 0px;
}
.splide-journey .divider::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  outline: 8px solid var(--surface-muted);
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
}
.splide-journey .year {
  color: var(--brand-primary);
}
.splide-journey .desc {
  padding: 0px 16px;
  margin-top: 12px;
  font-size: 16px;
  max-width: 350px;
}
.splide-journey .splide__arrow {
  position: absolute;
  z-index: 2;
  background-image: url("../img/icons/arrow-r-2.svg");
  background-color: #ffffff;
  top: 25%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.splide-journey .splide__arrow.splide__arrow--prev {
  left: 48px;
  transform: rotate(180deg);
}
.splide-journey .splide__arrow.splide__arrow--next {
  right: 48px;
}
.splide-journey .splide__arrow:disabled {
  display: none;
}
.splide-journey .splide__arrow svg {
  display: none;
}

.splide-service li {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(12, 7, 47, 0.06);
  overflow: hidden;
}
.splide-service li img {
  border-radius: 10px;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.splide-service li .btn-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.splide-service li .btn-wrapper .btn {
  flex: 1;
  width: auto;
  margin-top: 0 !important;
  white-space: nowrap;
}
.splide-service-prev,
.splide-service-next {
  width: 52px !important;
  height: 52px !important;
  background-size: 24px !important;
  border-color: var(--brand-tertiary) !important;
}
.splide-service-prev {
  background-color: #ffffff !important;
  background-image: url("../img/icons/arrow-l-dark.svg") !important;
}
.splide-service-next {
  background-color: var(--brand-primary) !important;
  background-image: url("../img/icons/arrow-r.svg") !important;
}
.splide-service-prev:hover,
.splide-service-next:hover {
  background-color: var(--brand-primary-hover) !important;
}

.splide-process {
  margin-left: -60px;
  margin-right: -60px;
}
.splide-process li {
  display: flex;
  align-items: center;
  max-width: 1380px;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  background-color: rgba(12, 7, 47, 0.42);
  color: #ffffff;
  opacity: 0.18;
  transition: opacity 0.25s, background-color 0.25s;
}
.splide-process li:hover,
.splide-process li.is-active {
  opacity: 1;
}
.splide-process li.is-active {
  background-color: rgba(12, 7, 47, 0.58);
}
.splide-process .text-wrapper {
  padding: 36px 40px;
  flex: 1;
}
.splide-process .overline {
  color: var(--brand-tertiary);
}
.splide-process .h3,
.splide-process p {
  color: #ffffff;
}
.splide-process .img-wrapper {
  padding: 20px;
  flex: 1;
  height: 100%;
}
.splide-process .img-in {
  min-height: 220px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.splide-process-steps {
  display: flex;
}
.splide-process-steps .step {
  flex: 1;
  text-align: center;
  padding: 0;
  background: inherit;
}
.splide-process-steps .step .text {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
}
.splide-process-steps .step .divider {
  height: 3px;
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}
.splide-process-steps .step .divider::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 1px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.55);
}
.splide-process-steps .step .divider::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}
.splide-process-steps .step.is-active .text {
  color: var(--brand-tertiary);
}
.splide-process-steps .step.is-active .divider::after {
  background-color: var(--brand-tertiary);
}
.splide-process-steps .step:hover .text,
.splide-process-steps .step:focus .text {
  color: var(--brand-tertiary);
}

.gallery-grid {
  width: 100%;
  position: relative;
}
.gallery-grid .gallery-item {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-grid .gallery-item .text-wrapper {
  padding: 20px 24px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.small-note {
  display: inline-flex;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 8px;
  align-items: center;
}
.small-note .icon {
  flex: none;
  width: 32px;
  height: 32px;
}


/* ------------------------------ ALTO PROMPT ------------------------------- */
.alto-contact {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  text-decoration: none;
  filter: drop-shadow(0 10px 20px rgba(12, 7, 47, 0.22));
}
.alto-contact:hover,
.alto-contact:focus-visible {
  color: #ffffff;
}
.alto-prompt {
  width: 0;
  max-width: 0;
  min-height: 76px;
  margin-right: -28px;
  padding: 14px 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  white-space: nowrap;
  border-radius: 999px 0 0 999px;
  background-color: var(--brand-secondary);
  transition: width 0.3s ease, max-width 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.alto-title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
.alto-link {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.alto-avatar {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  flex: none;
  padding: 4px;
  border-radius: 50%;
  overflow: visible;
  transition: transform 0.25s ease;
}
.alto-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.alto-notification {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background-color: #FF7A00;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}
.alto-contact:hover .alto-prompt,
.alto-contact:focus-visible .alto-prompt,
.alto-contact:focus-within .alto-prompt {
  width: 235px;
  max-width: 235px;
  padding-left: 32px;
  padding-right: 54px;
  opacity: 1;
}
.alto-contact:hover .alto-avatar,
.alto-contact:focus-visible .alto-avatar {
  transform: scale(1.03);
}

.footer {
  background-color: var(--brand-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6,
.footer .h1, .footer .h2, .footer .h3, .footer .h4, .footer .h5, .footer .h6 {
  color: #ffffff;
}
.footer .overline {
  color: #ffffff;
}
.footer a:hover {
  color: var(--brand-tertiary);
}
.footer .footer-brand {
  display: block;
  width: 265px;
  max-height: 220px;
  object-fit: contain;
  object-position: left bottom;
}
.footer .footer-top {
  padding: 72px 0px 60px;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.footer .footer-top .group {
  flex: 1;
}
.footer .company {
  flex: 1.15;
  margin-right: 20px;
}
.footer .company .limit {
  max-width: 430px;
}
.footer .company .h5 {
  text-transform: uppercase;
}
.footer .info {
  flex: 1.4;
  max-width: 520px;
}
.footer .info .areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px 28px;
}
.footer .info .area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .info .area::before {
  content: "";
  flex: none;
  height: 16px;
  width: 16px;
  background-color: var(--brand-tertiary);
  -webkit-mask: url("../img/icons/pin.svg") no-repeat center / contain;
  mask: url("../img/icons/pin.svg") no-repeat center / contain;
}
.footer .links {
  flex: 0.65;
  max-width: 200px;
}
.footer .links .link-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .socials {
  display: flex;
  gap: 12px;
}
.footer .social-link {
  position: relative;
  border-color: rgba(255, 255, 255, 0.8);
}
.footer .social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: var(--brand-tertiary);
}
.footer .social-facebook::before {
  -webkit-mask: url("../img/icons/sc-fb.svg") no-repeat center / contain;
  mask: url("../img/icons/sc-fb.svg") no-repeat center / contain;
}
.footer .social-linkedin::before {
  -webkit-mask: url("../img/icons/sc-in.svg") no-repeat center / contain;
  mask: url("../img/icons/sc-in.svg") no-repeat center / contain;
}
.footer .social-instagram::before {
  -webkit-mask: url("../img/icons/sc-ig.svg") no-repeat center / contain;
  mask: url("../img/icons/sc-ig.svg") no-repeat center / contain;
}
.footer .social-link:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-tertiary);
}
.footer .supports {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer .supports .support {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #ffffff;
  padding: 8px;
}
.footer .supports img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footer-bottom {
  padding: 28px 0px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.footer .tnc {
  display: flex;
  gap: 20px;
}



/* -------------------------------------------------------------------------- */
/*                               CAREERS PAGE                                 */
/* -------------------------------------------------------------------------- */
#openings .cards {
  grid-template-columns: 1fr;
  gap: 32px;
}
#openings .card {
  box-shadow: 0 8px 24px rgba(12, 7, 47, 0.06);
}
#openings .card .text-wrapper {
  padding: 28px 32px;
}
.job-heading {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
}
#openings .job-heading .overline {
  padding: 6px 14px;
  border-radius: 4px;
  background-color: var(--brand-secondary);
  color: #ffffff;
  line-height: 1.1;
}
.job-meta {
  display: flex;
  gap: 10px 40px;
  flex-wrap: wrap;
}
.job-meta .tag {
  padding: 0;
  gap: 8px;
  align-items: center;
  border-radius: 0;
  background-color: transparent;
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: default;
}
.job-meta .tag:hover {
  background-color: transparent;
}
.job-meta .tag::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  background-color: var(--brand-primary);
  -webkit-mask: url("../img/icons/gear.svg") no-repeat center / contain;
  mask: url("../img/icons/gear.svg") no-repeat center / contain;
}
.job-meta .tag.tag-location::before {
  -webkit-mask: url("../img/icons/pin.svg") no-repeat center / contain;
  mask: url("../img/icons/pin.svg") no-repeat center / contain;
}
.job-meta .tag.tag-wrench::before {
  -webkit-mask: url("../img/icons/wrench.svg") no-repeat center / contain;
  mask: url("../img/icons/wrench.svg") no-repeat center / contain;
}
.job-meta .tag.tag-bill::before {
  -webkit-mask: url("../img/icons/bill.svg") no-repeat center / contain;
  mask: url("../img/icons/bill.svg") no-repeat center / contain;
}
.job-meta .tag.tag-clock::before {
  -webkit-mask: url("../img/icons/clock.svg") no-repeat center / contain;
  mask: url("../img/icons/clock.svg") no-repeat center / contain;
}
.job-meta .tag.tag-handshake::before {
  -webkit-mask: url("../img/icons/handshake.svg") no-repeat center / contain;
  mask: url("../img/icons/handshake.svg") no-repeat center / contain;
}
.job-meta .tag.tag-office::before {
  -webkit-mask: url("../img/icons/office.svg") no-repeat center / contain;
  mask: url("../img/icons/office.svg") no-repeat center / contain;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.benefit-grid > div + div {
  padding-left: 40px;
  border-left: 1px solid var(--border-color);
}
#openings .benefit-grid .list-group li {
  padding: 6px 0;
  border-bottom: 0;
}
#openings .btn-group .btn {
  width: auto;
}

/* -------------------------------------------------------------------------- */
/*                                 HOME PAGE                                  */
/* -------------------------------------------------------------------------- */
.home-hero .hero-brand-panel {
  min-height: 720px;
  background-color: var(--brand-primary);
  isolation: isolate;
}
.home-hero .hero-brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 7, 47, 0.12), rgba(12, 7, 47, 0));
  pointer-events: none;
  z-index: -1;
}
.home-hero .hero-brand-panel .panel-text {
  position: relative;
  z-index: 2;
}
.home-hero .hero-brand-panel h1 {
  max-width: 620px;
  color: #ffffff;
}
.home-hero .hero-brand-panel p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.95);
}
.home-hero .hero-brand-panel .btn-group {
  position: relative;
  z-index: 3;
}
.home-hero .hero-phone {
  background-color: rgba(12, 7, 47, 0.5);
}
.home-hero .hero-phone:hover {
  background-color: var(--brand-primary);
}
.home-hero .hero-mascot {
  position: absolute;
  right: -4px;
  bottom: 0;
  z-index: 1;
  width: min(38%, 300px);
  max-height: 72%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
}

.trusted-section .title-between .content {
  color: rgba(255, 255, 255, 0.95);
}
.trusted-section .stats .stat {
  min-height: 280px;
}

.project-showcase .splide-container {
  margin-top: 28px;
}

.van-parallax {
  min-height: 500px;
  background-image: url("../img/brand/altech_van_wrap.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 48%;
  background-attachment: fixed;
}

.home-contact-cta {
  background-position: center;
}
.home-contact-cta .limit-center {
  max-width: 680px;
}
.home-contact-cta .overline {
  padding: 4px 12px;
  border: 1px solid var(--brand-tertiary);
  border-radius: 4px;
}
.home-contact-cta .btn-white {
  color: var(--brand-primary);
}

@media only screen and (max-width: 1300px) {
	.nav .menu-btn {
    display: flex;
    align-items: center;
    background-color: var(--surface-muted);
    border: none;
  }
  .nav .menu-btn:hover {
    color: var(--brand-dark);
  }
  .nav .close-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url("../img/icons/close.svg");
  }
  .nav .dropdown + .dropdown-menu {
    position: relative;
    box-shadow: none;
    border: none;
    padding-top: 8px;
    padding-left: 40px;
    padding-bottom: 8px;
  }
  .nav .dropdown:after {
    width: 32px;
    height: 32px;
    background-size: contain;
  }
  .nav .navicon {
    width: 32px;
    height: 32px;
    background: url("../img/icons/menu.svg") no-repeat center;
    background-size: contain;
  }
  .nav .nav-menus {
    position: fixed;
    top: 0px;
    right: 0px;
    overflow: auto;
    background-color: #ffffff;
    display: block;
    width: 100%;
    max-width: 420px;
    height: 100%;
    z-index: -1;
    transition: all 0.4s ease;
    transform: translateX(100%);
    transform-origin: top right;
    visibility: hidden;
    padding: 40px;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.25);
    gap: 16px;
  }
  .nav .text-link, .nav button {
    font-size: 24px;
  }
  .sidebar-open {
    overflow: hidden;
  }
  .sidebar-open .nav::before {
    content: "";
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 1;
  }
  .sidebar-open .nav .nav-menus {
    z-index: 99;
    visibility: visible;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1200px) {
  .home-hero .hero-brand-panel {
    min-height: 620px;
  }
  .home-hero .hero-mascot {
    width: 270px;
  }
  .section-hero .container {
    flex-direction: column;
  }
  .section-hero .panel-text, .section-hero .panel-overlay {
    padding: 80px 60px;
  }
  .section-hero .splide-hero {
    height: 500px;
  }
  .splide-technician {
    margin-left: -60px;
    margin-right: -60px;
  }
  .teams .team .divider {
    margin: 12px 0px;
  }
  .title-between.alt-1 {
    flex-direction: column;
    gap: 32px;
  }
  .title-between.alt-1 .title-wrapper {
    max-width: none;
  }
}
@media only screen and (max-width: 1024px) {
  .article .container:has(.article-table-of-contents) {
    grid-template-columns: 1fr;
  }
  .article .container:has(.article-table-of-contents) .article-table-of-contents,
  .article .container:has(.article-table-of-contents) .article-content {
    grid-column: 1;
  }
  .article-table-of-contents {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0 0 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
  }
  .article-table-of-contents::before {
    width: 100px;
    height: 130px;
    margin-left: 0;
  }
  .article .container:has(.article-table-of-contents) .article-content {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }
  .cards.alt-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-row {
    flex-direction: column-reverse;
  }
  .content-row.wrap-invert {
    flex-direction: column;
  }
  .section.lined.lined-middle::before {
    width: calc(100% - 120px);
    background-color: rgba(0, 0, 0, 0);
    border-left: 1px solid rgba(0, 0, 0, 0.11);
  }
  .section.lined.lined-middle .container {
    padding-left: 120px;
  }
  .section.lined.lined-middle .content-row .content:first-child {
    padding: 0px;
  }
  .footer .footer-top {
    flex-wrap: wrap;
    gap: 80px;
  }
  .footer .group.info {
    max-width: none;
  }
  .footer .group.company {
    flex: 100%;
    margin-right: 0px;
  }
  .footer .group.company .limit {
    max-width: none;
  }
}
@media only screen and (max-width: 768px) {
  .job-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  #openings .card .text-wrapper {
    padding: 24px 20px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit-grid > div + div {
    padding-left: 0;
    border-left: 0;
  }
  #openings .btn-group .btn {
    width: 100%;
  }
  .blog-post-hero {
    padding-bottom: 90px;
  }
  .blog-post-hero-content {
    padding: 40px 20px 0;
  }
  .blog-post-breadcrumb {
    align-items: flex-start;
  }
  .blog-post-breadcrumb .current {
    max-width: 220px;
  }
  .blog-post-hero-meta {
    margin-top: 24px;
  }
  .blog-post-hero h1 {
    font-size: 38px;
  }
  .blog-post-featured-image {
    height: 260px;
    margin-top: 36px;
    margin-bottom: -90px;
  }
  .article-content {
    font-size: 16px;
  }
  .article-content > h2:first-child {
    padding-left: 20px;
  }
  .article-table-of-contents {
    margin-bottom: 36px;
    padding-bottom: 32px;
  }
  .article-table-of-contents::before {
    width: 86px;
    height: 110px;
  }
  .article-table-of-contents h2 {
    font-size: 24px;
  }
  .home-hero .hero-brand-panel {
    min-height: 700px;
  }
  .home-hero .hero-brand-panel .panel-text {
    padding-bottom: 250px;
  }
  .home-hero .hero-brand-panel h1,
  .home-hero .hero-brand-panel p {
    max-width: none;
  }
  .home-hero .hero-mascot {
    width: 210px;
    max-height: 310px;
    right: 10px;
  }
  .service-hero .panel,
  .service-hero .panel-overlay,
  .brand-hero .panel,
  .brand-hero .panel-overlay {
    min-height: 520px;
  }
  .service-hero .panel-overlay,
  .brand-hero .panel-overlay {
    padding: 48px 24px 210px;
    align-items: flex-start;
  }
  .service-hero .panel::after,
  .brand-hero .panel::after {
    right: 20px;
    width: 220px;
    height: 52%;
  }
  .service-hero .panel-overlay .wrapper,
  .brand-hero .panel-overlay .wrapper {
    max-width: none;
  }
  .splide-work .splide__slide {
    width: 84vw;
    min-width: 300px;
    padding: 14px;
  }
  .splide-work .img-wrapper {
    height: 250px;
  }
  .splide-work .text-wrapper {
    justify-content: flex-start;
    padding: 14px 4px 2px;
  }
  .splide-service li {
    padding: 16px;
  }
  .splide-service li img {
    height: 240px;
  }
  .splide-service li .btn-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .splide-service li .btn-wrapper .btn {
    width: 100%;
  }
  .van-parallax {
    min-height: 280px;
    background-attachment: scroll;
    background-position: center;
  }
  body {
    font-size: 16px;
  }
  .banner {
    padding: 8px 0px;
    font-size: 13px;
  }
  .banner .container {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }
  .banner .banner-hiring {
    margin-left: 0;
  }
  h1,
  .h1 {
    font-size: 42px;
  }
  h2,
  .h2 {
    font-size: 34px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  .mob-only {
    display: block;
  }
  .hide-mob {
    display: none !important;
  }
  .container {
    padding: 0px 20px;
  }
  .splide-container {
    margin-left: 20px;
  }
  .logo {
    height: 60px;
    width: 150px;
  }
  .btn {
    width: 100%;
  }
  .nav .menu-btn {
    width: 48px;
    height: 48px;
    padding: 0px;
  }
  .nav .menu-btn .text {
    display: none;
  }
  .content-row {
    gap: 60px;
  }
  .tags-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0px 20px;
  }
  .tags-wrapper .tag {
    white-space: nowrap;
  }
  .tags-wrapper + .mt-60 {
    margin-top: 40px;
  }
  .section-hero .panel-text,
  .section-hero .panel-overlay {
    padding: 44px 24px;
  }
  .panel-overlay .wrapper {
    min-height: 240px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section.lined::before {
    width: calc(100% - 40px) !important;
  }
  .section.lined.lined-left .container, .section.lined.lined-middle .container {
    padding-left: 40px;
  }
  .section.lined.lined-left-right .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section.lined .title-wrapper .title::after {
    left: -20px;
  }
  .section.lined .white-accent::before {
    left: 20px;
  }
  .section.lined .white-accent::after {
    right: 20px;
  }
  .cards,
  .cards.alt-2,
  .cards.alt-3 {
    grid-template-columns: 1fr;
  }
  .card .text-wrapper {
    padding: 20px;
  }
  .splide-hero .text-wrapper {
    padding: 20px;
  }
  .splide-hero .splide__pagination {
    padding: 20px;
    width: 100%;
  }
  .splide-hero .splide__pagination li {
    flex: 1;
  }
  .splide-hero .splide__pagination button {
    width: 100%;
  }
  .splide-work .text-wrapper {
    padding: 20px;
  }
  .splide-reviews,
  .splide-technician,
  .splide-journey,
  .splide-process {
    margin-left: -20px;
    margin-right: -20px;
  }
  .splide-technician li {
    max-width: 320px;
  }
  .splide-reviews .review {
    padding: 20px;
    flex: none;
    width: 80vw;
  }
  .splide-journey::before, .splide-journey::after {
    display: none;
  }
  .splide-journey .splide__arrow.splide__arrow--prev {
    left: 12px;
  }
  .splide-journey .splide__arrow.splide__arrow--next {
    right: 12px;
  }
  .splide-process li {
    flex-direction: column;
    height: auto;
    min-height: 280px;
    opacity: 1;
  }
  .splide-process .text-wrapper {
    padding: 28px 24px;
  }
  .splide-process .img-wrapper {
    padding-top: 8px;
    width: 100%;
  }
  .splide-process .img-in {
    min-height: 150px;
  }
  .splide-process-steps {
    display: none;
  }
  .subscribe-input {
    width: 100%;
  }
  .interlude {
    min-height: 620px;
    padding-bottom: 300px;
  }
  .interlude .container {
    min-height: 0;
  }
  .interlude .img-bg {
    width: 100%;
    height: 300px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: 260px auto, 320px 320px;
    background-position: center bottom, center bottom;
  }
  .interlude .btn {
    width: 100%;
  }
  .reviews-section {
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .reviews-section::before {
    width: 220px;
    height: 150px;
  }
  .reviews-section::after {
    width: 220px;
    height: 150px;
  }
  .reviews-section .reviews-mascot {
    width: 145px;
    max-width: 55vw;
    margin-bottom: 14px;
  }
  .splide-reviews .review {
    min-height: 380px;
    padding: 24px 22px 20px;
    font-size: 16px;
  }
  .alto-contact {
    right: 18px;
    bottom: 18px;
  }
  .alto-avatar {
    width: 72px;
    height: 72px;
  }
  .alto-notification {
    width: 26px;
    height: 26px;
    top: -7px;
    right: -7px;
    font-size: 12px;
  }
  .alto-prompt {
    display: none;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 48px;
  }
  .footer .footer-brand {
    width: 240px;
  }
  .footer .info .areas {
    grid-template-columns: 1fr;
  }
  .footer .info {
    order: 1;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}
:focus-visible {
  outline: 2px solid var(--brand-tertiary);
  outline-offset: 3px;
}

/***** END: Main Site Styles *****/